Re: Servlet Engine Question

1999-04-02 Thread Hans Bergsten
Chris Pratt wrote: > > Why would it convert the period to a slash? Shouldn't it be: >getServletPath -> /foo/bar.thtml >getPathInfo-> null You're right of course. The slash was a typo. Sorry about that. -- Hans Bergsten [EMAIL PROTECTED] Gefion Software http://www.ge

Re: Servlet Engine Question

1999-04-02 Thread Chris Pratt
Why would it convert the period to a slash? Shouldn't it be: getServletPath -> /foo/bar.thtml getPathInfo-> null (*Chris*) - Original Message - From: Hans Bergsten <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 01, 1999 5:59 PM Subj

Re: Servlet Engine Question

1999-04-01 Thread Hans Bergsten
Gabriel Wong wrote: > > Folks, > > Should request.getServletPath() return only the servlet name > (mypackage.myservlet) or servlet preceded by any path alias > (/mypathalias/mypackage.myservlet) ? Neither. It should return the part of the URI path used to identify the servlet. So if you have a ma

Servlet Engine Question

1999-04-01 Thread Gabriel Wong
Folks, Should request.getServletPath() return only the servlet name (mypackage.myservlet) or servlet preceded by any path alias (/mypathalias/mypackage.myservlet) ? Gabriel Wong http://www.ezwebtools.com __