Hi,
I'd like to ask you 2 questions.
First does this make sense to you?
<servlet>
<servlet-name>cgi</servlet-name>
<servlet-class>userInterface.servlets.cgi</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>*.class</servlet-name>
<url-pattern>/docsoul/*</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>cgi_ei</servlet-name>
<servlet-class>userInterface.servlets.cgi_ei</servlet-class>
</servlet>
I'm trying to handle 2 servlets on the same server.
I get this in tomcat.log:
2001-10-05 09:50:04 - Ctx( /docsoul ): Mapping with unregistered servlet
*.class
It works fine but I'm not sure of the above message ...
Second question:
My cgi_ei is first invoked from outside tomcat domain i.e: from an external
server such
as : <form name="xxx" method="post"
action="http://xxx:3333/docsoul/servlet/cgi_ei">)
This external page process a login action and then the request is forwaded to an
internal jsp page. Again, everything works BUT the url location shows an ugly full
path of the servlet (http://xxx:3333/docsoul/servlet/cgi_ei) instead of my expected
http://xxx:3333/ ;-(
What is the obvious thing I'm doing wrong?
Thanx in advance for your help,
--mike