Yes I am able to request http://localhost/MyApp/jsp/Login.jsp .After 
entering the login values when I press enter
a servlet is called the URL for which is http://localhost/MyApp/Login  but 
it is not able to locate the servlet and gives a Not found error .....

I have made this entry in the web.xml

        <servlet>
                <servlet-name>Login</servlet-name>
                <servlet-class>com.base.login.web.Login</servlet-class>
        </servlet>
        <servlet-mapping>
                <servlet-name>AgentLogin</servlet-name>
                <url-pattern>AgentLogin</url-pattern>
        </servlet-mapping>

The Login servlet class is present in the directory 
Web-Inf/classes/com/base/login/web.

Plese help me out.

Bhootnath

-----Original Message-----
From:   Dmitri Colebatch [SMTP:[EMAIL PROTECTED]]
Sent:   Monday, June 18, 2001 11:08 AM
To:     [EMAIL PROTECTED]
Subject:        Re: URGENT: Problem's in configuring Tomcat 3.2.1 with Apache 
1.3.20

are you able to request http://localhost/MyApp/jsp/myjsp.jsp?

On Thu,  1 Jun 2000 20:45, you wrote:
> Hi
>    I am trying to configure Tomcat 3.2.1 with Apache 1.3.20 on Win NT sp 
6
>    I have configure Tomcat successfully but when I try to connect it with
> apache the problem starts.
>
>
>    When I type the URL  http://localhost:80/MyApp in my browser it shows 
me
> the directory structure of my application. And at the same time I get an
> error in my error.log of apache which says:
>
>  [error] [client 127.0.0.1] client denied by server configuration:
> c:/jakarta-tomcat-3.2.1/webapps/MyApp/meta-inf [error] [client 127.0.0.1]
> client denied by server configuration:
> c:/jakarta-tomcat-3.2.1/webapps/MyApp/web-inf
>
> what can be the cause of this problem . How do I get over it
>
> all my servlet classes are inside the directory MyApp/WEB-INF/classes/
> all my jsp's are inside the directory MyApp/jsp
>
> Please help me out to solve my problem.

Reply via email to