To be more clear, here is what I want to be able to do in Webobjects. The following code works when run as a J2EE app under tomcat. Is there any way I can communicate with the other J2EE App using webobjects in this same way so that the other app doesn't know the difference?
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
HttpSession session = request.getSession(); String sessionKey = (String) session.getAttribute("otherj2eeAppSession"); session.setAttribute("otherj2eeAppSession", sessionKey); request.getRequestDispatcher("info.jsp").forward(request, response); }
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
|