1. Lost Session at JWSP-Client coderanch.comHi! It is a known Problem, that sometimes the session from an instance of an WebServiceClient Object (JWSDP) to the the Server Objects ist lost? In my special case I have a webapplication that uses JWSDP-Clients to communicate with a middleware application (a very komplex service). In the webapplication a request can cause a creation of a new Instance of a ... |
2. new browser window pops up once session is lost coderanch.com |
3. session lost in MultipartRequest coderanch.comHi, I'm adding in file uploading features to my application. I'm having a problem that whenever I use enctype ="multipart/form-data" in my jsp page, the session will become null. It works fine when I remove the above enctype, but the file uploading no longer function. Do you have any idea how to over come this problem? Any suggestion will be highly ... |
4. Problems with lost sessions coderanch.comWe seem to have encountered a problem related to a recent update of IE. It seems to apply to update Q813951. The problem is that if we use redirection to a new page in a new window we lose the session. (The new page is in the same domain.) It seems like the session cookie gets lost and IE no longer ... |
5. is this the case of session lost? coderanch.comI'm having a problem related to the servlet I am using to check the requests made. Every request of my application has an "acao" field, in order to tell what this servlet will do, so the first thing I check when getting the request is its value. The first page is the login. The servlet can easily get the "acao", and ... |
6. Problems with lost sessions coderanch.comI have this problem... Lets say we have 3 jsp pages (or servlets).... A ----> B ----> C----> When I pass session variables from A to B, the session persistence seems to be ok, I'm getting all the values and everything looks great. When I pass these values from B to C it seems some of these session variables are missing.. ... |
7. session lost when including another file from another server coderanch.comHere is my code: |
8. Lost session value coderanch.comHi! This question might be very easy... I have 2 different applications where the first one links to the other. I want to set the name om the user in the session and then use this in the next. What I am doing is: 1. String name="STRHEI";//request.getAttribute("name").toString(); session.setAttribute("bruker",name); Tips 2. session = request.getSession(true); String profils=(String)session.getAttribute("bruker"); System.out.println("jsp="+profils); Prints out null.... Why ... |
9. Session attributes get lost on Firefox coderanch.comHi, I have a problem with storing session attribute on Firefox. I created a session and set two session attributes in it. But on the next web page, when I tried to retrieve the attributes, they returned null. This only happened on Firefox. IE works fine. Does anyone know how to solve the problem? Thanks a lot. Sandra |
10. lost session attributes coderanch.com |
11. Session lost on page refresh coderanch.comHello, I have a webapplication deployed on WAS5.1; it has a page that has to auto-refresh every 30 seconds. To do so, i put two attributes on the incoming request for the page: request.setAttribute("refresh_url", "my_url"); request.setAttribute("refresh_time", "30"); So far, so good. The page loads and refreshes every 30 seconds. Is it required to "enable cookies" in the webcontainer? Then everything works. ... |
12. Session Variables lost! coderanch.comHi All, I've been working on this issue for a couple of days and i cannot come up with a good explanation for it. Well the issue is this: I have a url which forwards to a particular page having two particular variables (a & b). These variables are stored using: request.getSession().setAttribute("a", a); Then when the user tries to join on ... |
13. session variable lost coderanch.com |
14. Session is lost in new browser window. coderanch.comI am using Servlet filter to secure help documents in the site. If the session is expired or user enters the document URL directly into browser, it redirects user to log in page. Web.xml |
15. window open lost session forums.oracle.comI have a jsp app and it lost session when I try to popup new window Googled around, millions of results but no helps It seems problem is in my IE 8 If anyone has expeience with the issue, please give me a help. Thank you Edited by: mycoffee on Jul 28, 2010 1:45 PM |
16. ConnectionFactory lost, but session not invalidated. forums.oracle.com |
17. Contents in session are lost forums.oracle.comThis is about contents set in a session. When a request is received I save contents in the session: user id, etc. (I can see they are set). Then, when a new request arrives, the contents saved in the session are gone. Can anyone suggest me what maybe going wrong, I am using java 1.5. Deploying in jboss. Thank you in ... |
18. Session attribute is lost while going from one action to other action forums.oracle.comHi All I am working on struts application. The problem that I am facing is my session attribute is losing. I am doing following steps. 1. Setting some values in ActionForm (note this action form is in session scope for each action using it) from homepage. 2. then submit the form and go to searchation. 3. perform some task and set ... |