June 2004
Intermediate to advanced
848 pages
21h 28m
English
Here is the code for a servlet that can process the HTML form that we created in the section How form data is sent to a URL on page 694. We're going to send a reply that suggests a suitable pet based on the weight and leg count the user submitted.
Make sure that your CLASSPATH has the servlet jar files in it, as shown in the following command, applicable to Windows:
javac -Djava.ext.dirs="\program files\apache software foundation\Tomcat 5.0\common\lib" PetServlet.java
Note: The example command is just one line, but is too wide to print that way in a book. The “-Dproperty=value” option defines a property with that value to the compiler system. The “java.ext.dirs” property is the pathname ...
Read now
Unlock full access