Hi all,

I want to migrate a single webapplication from Tomcat 4.1.27 to Tomcat
4.1.30.
So I installed the new version on my server.
After configuration I copied my webapplication from 4.1.27 to 4.1.30. It is
a ROOT-webapp.

In this application there a 3 servlets with the follwing mapping configured:

        <servlet-mapping>
                <servlet-name>login</servlet-name>
                <url-pattern>/login/</url-pattern>
        </servlet-mapping>

        <servlet-mapping>
                <servlet-name>appmanager</servlet-name>
                <url-pattern>/lappmanager</url-pattern>
        </servlet-mapping>

        <servlet-mapping>
                <servlet-name>app</servlet-name>
                <url-pattern>/*</url-pattern>
        </servlet-mapping>

In 4.1.27 I can call http://xxx/login and http://xxx/appmanager without any
problems. Every other request goes to the app-servlet.
In 4.1.30 every request goes to the app-servlet. Even http://xxx/login and
http://xxx/appmanager.

And also the method request.getPathInfo() return null. I don't know why.

What's goin' wrong?

  - Jens


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to