Another useful link, for J2EE programming:
General doc: http://java.sun.com/j2ee/docs.html
API: http://java.sun.com/j2ee/sdk_1.3/techdocs/api/index.html
Yes, there is no way to "clone" the implementation of HTTPRequest...
I will try to extract all the info from the original request, and I'm going to create a class that "implements" the HTTPServletRequest(it will only return the data...) so we don't have to change the way we...
We want to simulate the login process of an application server like WebLogic.
We tried to put the original HTTPRequest into the Session, but the container reuse the object so the info of the original request is lost when we finnish the login process.
(We don't know how to "copy" the...
But I have the same problem, I have lost the original HTTPRequest with the URL and data... I only have the post of the login request...
The steps I follow are:
1. Original post(the most complicated case...)
2. The user is not logged in...
3. I'll send the login page as response
(I think that...
How can I keep a copy of the HTTPRequest between two calls to a servlet?
I'm using Weblogic AS 6 and the container reuse the instance of the HTTPRequest so I can't keep the request that i need...
I'm doing this because I'm implementing a transparent login method and I want to execute the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.