Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. javerd

    User Defined Class Frame Popup

    Maybe you need a JDialog instead a Frame? You can make a modal JDialog an you don't need to disable components... Javier
  2. javerd

    Javadocs

    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
  3. javerd

    Servlets: Keeping HTTPRequest between requests

    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...
  4. javerd

    Servlets: Keeping HTTPRequest between requests

    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...
  5. javerd

    Servlets: Keeping HTTPRequest between requests

    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...
  6. javerd

    Servlets: Keeping HTTPRequest between requests

    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...

Part and Inventory Search

Back
Top