Hello All,
i made a servlet what I try to call from my .jsp like:
<form name="myForm" method="post" action="
When I submit my form I got a failure that my servlet doesn't exist there.
I have done with the servlet configuration in directory:
\Tomcat4.1\webapps\test\WEB-INF\web.xml
<servlet>
<servlet-name>
DownloadServlet
</servlet-name>
<servlet-class>
test.DownloadServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>DownloadServlet</servlet-name> <url-pattern>/servlet/DownloadServlet</url-pattern>
</servlet-mapping>
I made a "DownloadServlet.jar" file what I put here:
Tomcat 4.1\webapps\test\WEB-INF\lib
Is somebody has idea where I did a mistake?
Thank you in advice!
i made a servlet what I try to call from my .jsp like:
<form name="myForm" method="post" action="
When I submit my form I got a failure that my servlet doesn't exist there.
I have done with the servlet configuration in directory:
\Tomcat4.1\webapps\test\WEB-INF\web.xml
<servlet>
<servlet-name>
DownloadServlet
</servlet-name>
<servlet-class>
test.DownloadServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>DownloadServlet</servlet-name> <url-pattern>/servlet/DownloadServlet</url-pattern>
</servlet-mapping>
I made a "DownloadServlet.jar" file what I put here:
Tomcat 4.1\webapps\test\WEB-INF\lib
Is somebody has idea where I did a mistake?
Thank you in advice!