Chat with our AI personalities
Most processors have a special symbol key; on Microsoft Word go to "INSERT" then "SYMBOLS" and look for it there
Hi John, Are you trying to use magic jack plus with our without a PC ? Have you watched this video - http://aid.magicjack.com/UseMJ-Plus_No_PC.mp4 It might answer your questions. Please let me know if you need anything else.
You can always use a free program calledEraser.This option however is only available for PC users running Windows.The software is open source and can be downloaded from its own web site at http:/eraser.heidi.ie
60. How can anybody in the whole world not be able to answer that? If someone was able to use a computer to type the question how can that not answer a basic question like that. I'll not figure people out.I just don't get it. @Angelo212: What an arrogant a55hole you are. I can use a computer, I fix PC's and smartphones for a living, it doesn't mean I have to be a smart-a55 like you. Numbers confuse me and always have since grade school when my teacher used to beat me for getting my numbers mixed up. I guess that feeling has stuck with me.
You Run a Servlet by deploying it on the server, which in this case is tomcat. We need to deploy the servlet in the Web Applications context. When we talk of a Web application's context, we are referring to that Web application's root directory or path within a particular server. A special directory exists within the application hierarchy named WEB-INF. This directory contains all things related to the application that aren't in the document root of the application. It is this WEB-INF directory that is the Web application's root directory, also referred to as the context. The most important file here is web.xml, the name of the WebApp deployment descriptor. Let us take a look at the various contents (files & folders) that will be present inside this WEB-INF directory: 1. /WEB-INF/web.xml - This is the Deployment Descriptor file 2. /WEB-INF/classes/ - This is the directory where all your java class files will be placed 3. /WEB-INF/lib/ - This is the folder where all your JAR files go. my tomcat is installed in c:\dev\java\Jakarta-tomcat-4.0.1. This is my TOMCAT_HOME. Remember that, this path that is referred by TOMCAT_HOME might vary from PC to PC depending on the installation preferences of the user. To Deploy the Servlet, you need to place the .class file corresponding to your servlet in the /WEB-INF/classes/ folder