I guess your 3rd party product is using relative paths. If you can't change to
absolute paths, try to redirect with another program. This a bit of a messy
solution, but should work if you can change the file that the program redirects
to. You can create another servlet which simply does a redirect to your html file
using the Location header, and have your 3rd party program redirect to this
servlet.

Brad Chesman

Steve Snodgrass wrote:

> Greetings,
>
> I'm trying to migrate an application that is currently running under Sun's
> JavaWebServer over to Apache JServ.  The servlets run OK, but I'm having a
> problem caused by the differences in the way that JServ/JWS work.  JWS allows
> you to create aliases for arbitrary URLs that will run a servlet.  So the
> application is set up this way in under JWS:
>
> /mantix
>     mxlogin.html
>     mxprocesslogin -> servlet com.mx.webtime.servlets.MxProcessLogin
>     mxtimesheet.html
>
> The mxlogin.html file has a form that invokes mxprocesslogin, which proceeds
> to issue a redirect to mxtimesheet.html.  This all works under JWS, but under
> JServ I had to do this using the Apache Alias directive:
>
> /mantix
>     mxlogin.html
>     mxprocesslogin -> URL /servlets/com.mx.webtime.servlets.MxProcessLogin
>     mxtimesheet.html
>
> The problem is that when mxprocesslogin issues the redirect, it's running
> under the /servlets URL, so it tries to redirect you to
> /servlets/mxtimesheet.html instead of /mantix/mxtimesheet.html.  Can anyone
> think of a way around this?  I don't have the source code for the servlet
> (it's a 3rd party app).
>
> Thanks.
>
> --
> Steve "Pheran" Snodgrass * [EMAIL PROTECTED] * FORE Systems Unix Administrator
> Geek Code: GCS d? s: a- C++ US++++$ P+++ L+ w PS+ 5++ b++ DI+ D++ e++ r++ y+*
>   "I want to take over the world because I'm an egomaniac."  --Larry Wall
>
> ----------------------------------------------------------------
> To subscribe:        [EMAIL PROTECTED]
> To unsubscribe:      [EMAIL PROTECTED]
> READ THE FAQ!!!!     <http://java.apache.org/faq/>
> Archives and Other:  <http://java.apache.org/main/mail.html/>
> Problems?:           [EMAIL PROTECTED]



----------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
READ THE FAQ!!!!     <http://java.apache.org/faq/>
Archives and Other:  <http://java.apache.org/main/mail.html/>
Problems?:           [EMAIL PROTECTED]

Reply via email to