Hello

I think this:


    <form method="POST" action="GetInput">


Should read:


    <form method="POST" action="/myapplication/GetInput">


Also, consider packing your classes, so that this servlet registration:


    <servlet>
        <servlet-name>GetInput</servlet-name>
        <servlet-class>GetInput</servlet-class>
     </servlet>


Becomes something like:


    <servlet>
        <servlet-name>GetInput</servlet-name>
        <servlet-class>com.foo.bar.GetInput</servlet-class>
     </servlet>


Packaging is not necessary to invoke a servlet, but it used to be necessary
if you used JavaBeans in JSPs. (Maybe JavaBeans in JSPs is old hat now, I'm
not sure.)


Finally, $TOMCAT_HOME is not used. Only $CATALINA_HOME is needed.


Good luck!


Harry
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to