When I call Application.forward from a PSP file I get a 404 error from
Apache that the redirected page cannot be found. This is because the forward
method's url rewriting code appears to be geared toward use of a .cgi module
with servlets.

So, for example in source.psp, the statement app.forward(trans,
'target.psp') results in '404 source.psp/var/www/html/target.psp not found.'
I understand how this would be correct if I was using a
cgi-bin/WebKit.cgi/Context/Servlet uri.

I'm trying to implement the SecureCountVisit example (from WebKit/Examples)
but using PSP instead of servlets.
It seems like in the example code, that the forward method is able to cause
the login form to be displayed without setting an action parameter on the
form and without actually changing the servlet from SecureCountVisits to
LoginPage. This has the effect of having the form's action parameter refer
to itself (which causes the SecureCountVisit servlet to be called to handle
the login)

How do you make Application.forward write the correct url when using PSP
instead of directly calling servlets? I think I can see how sendRedirect
could be used to work around this but I'd like to avoid this if possible
since it seems like I'd have to write more code to pass variables around in
the request object so that the state stays correct.

brett



_______________________________________________________________

Sponsored by:
ThinkGeek at http://www.ThinkGeek.com/
_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to