On 1.
Invoke servlet will go where you tell it to go.
Examine URL-PATTERN under \conf\web.xml:
<!-- The mapping for the invoker servlet -->
<!-- Comment this out if you do not want "invoker" service -->
<servlet-mapping>
<servlet-name>invoker</servlet-name>
<url-pattern>/servlet/*</url-pattern>
</servlet-mapping>
Hope this helps
----- Original Message -----
From: "Nick Stoianov" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 15, 2001 7:20 PM
Subject: problem with mod_jk and Tomcat
> Hi,
>
> I have the following problem. I was running Apache JServ and decided to
> upgrade to Tomcat with mod_jk and Apache. The installation went well. The
> sample servlets and JSPs work well. But now I'm having the following
problems:
>
> 1. My old servlets that were working with Jserv don't work with Tomcat. I
> tried to find the reason and I found out that to invoke the servlets you
have
> to go to http://localhost/servlet/the_name_of_the_servlet
> Ok....but my servlets have redirections to http://localhost/servlets (not
> servlet) . I changed the JkMount in mod_jk.conf to mount /servlets for
the
> servlet files. But it still doesn't work.
> My question is: how can I make tomcat to look for servlets in /servlets
(not
> in /servlet)?
>
> 2. When I try to run the /admin JSP page I get ERROR 500:
> javax.servlet.ServletException: URL contains encoded special chars
>
>
> I will really appreciate if someone helps me with these problems.
>
> Nick Stoianov