> Do I have to do something different with the url-pattern if I 
> want to use
> getPathInfor()?
> 

Yes this is the problem, your servlet must be mapped to "/twauthid/*" be
able to use getPathInfo(), note that you need your old mapping to be
able to serve request to the "/twauthid" url alone..


8<--------------------------------------------------------------------
 
    <servlet>
        <servlet-name>TWAUTHID</servlet-name>
        <servlet-class>twauthid</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>TWAUTHID</servlet-name>
        <url-pattern>/twauthid/*</url-pattern>
    </servlet-mapping>

8<--------------------------------------------------------------------

Saludos ,
Ignacio J. Ortega

Reply via email to