but it's more than just "take away the package". If you map your servlet to this: <url-pattern>/foobar</url-pattern>
then your form should say : <form method="POST" action="foobar"> (I just didn't want anyone to think that you invoke a servlet by calling it's class name). so in fact, you want bizDispathcer (no capital b). > -----Original Message----- > From: Ben Souther [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 16, 2004 5:57 AM > To: Tomcat Users List > Subject: Re: Display of Static Resources > > > <form method="POST" action="com.client.BizDispatcher"> > > Take the package name out of the action attribute. > <form method="POST" action="BizDispatcher"> > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
