1. IE8 losing session details stackoverflow.comI have a Java web app that intermittently loses session data. The problem only occurs with users on IE8. I have used IEWatch to monitor the http traffic, and it seems ... |
2. How to avoid session sharing provided by IE8 programatically in java/j2ee application? stackoverflow.comMicrosoft, in an effort to make Internet Explorer 8 "more stable" and “faster�, have changed the underlying architecture of the browser and introduced a function called "Loosely-Coupled IE" (LCIE) which works ... |
3. How to start a new session if a user click on the new tab in IE or mozilla on websphere portal? stackoverflow.comI have one "user search" portlet on the home page of one application running on websphere portal server which displays the matching user records as per the search criteria filled in ... |
4. Session issue in IE browsers stackoverflow.comWe are using IE 8 and the issue scenario is as below:
|
5. Internet Explorer 6 Sending Random GET stackoverflow.comWe have a button in our web application that when clicked starts a long running process. Depending on the parameters of this process, the http request sometimes takes a long time ... |
6. Internet Explorer and Session Beans coderanch.comDoes anybody know of any peculiarities when using Internet Explorer to access a page that uses a session bean? My test was very simple: a page with a form that submits to a page that instantiates the session bean and populates it with the form data. I then retrieve the contents of the bean for display. I found that if I ... |
7. sessions with IE browser coderanch.comI am trying to set some values in the session using session.putValue("userId",userId) and get the values from session using session.getValue("userId") It works fine with Netscape browser ver 4.76 but not with IE 5. Sometime it works and sometime it does not work. I am using IPlanet 4.0 web server. Do I have to set something in the browser to make it ... |
8. IE 5.5 patch caused session.isNew() to be true always coderanch.comJust wanna share an experience here: - I've done various tests and find out that the session ID is the same as they traverse across pages. But, the session.isNew() is always "true". For example: - BigDecimal bg = new BigDecimal("123"); session.setAttribute("bg",bg); Object obj=session.getAttribute("bg"); // test if(session.isNew()) System.out.println("Session is new"); I've placed a similar check on its following JSP page. And it's ... |
9. Session counter: ok Mozilla, !ok in IE coderanch.comHi, I tried a simple counter that persists using a HttpSession object very similar to that in post 'Session Tracker' somewhat lower in the list. It works fine in Mozilla: refreshing increments the counter, upon opening a second browser the same counter (same ID) starts at the incremented value and after closing all windows and restarting the counter the value is ... |
10. Can't block session cookies in IE6 for trusted sites coderanch.comHi, Even if you block cookies in IE6 but the client and server are running in a trusted zone (e.g. localhost or LAN) you still won't block session cookies. In order to block session cookies in a localhost or a LAN you should make the localhost or LAN as a restricted site, then and only then you'll be able to block ... |
11. Session Problem with Internet Explorer coderanch.comHow to set Internet Explorer to run all new browser windows ( new IE instance) using single browser process. This is with respect to Session. If the client uses multiple Internet Explorer, they will be getting different session provided the browser is not opened using ctrl+n or File>> New >> window. Whereas this is not causing a problem in Opera and ... |
12. Session not working on IE with high security coderanch.comTough in space?, Get J2EE servlet container under 150Kbytes here |
13. Viewing session cookies in IE? coderanch.comWhen you view the cookies in IE (tools->internet options->settings->view files) it does not show session cookies, only persistent cookies. Is there any way to view session cookies in IE? We are running into a problem here where IE refuses to accept a session cookie. I found out that IE will only accept 20 session cookies and then it will refuse them. ... |
14. IE session gets cleared coderanch.comhi, i am having a problem with the session in IE. actually the thing is when i login i set the session and go to home but in IE when the user clicks on a menu item it gets logged out. can any one suggest or say what is the problem with it. only in IE the session gets cleared. i ... |
15. Internet Explorer expires session when sent from secure to non secure page coderanch.comIt just keeps getting better for me as I test my site pages in Internet Explorer. I'm having problems that the other browsers do not present. Here's the scenario - 1) I open a new IE window. 2) Navigate to a secure page (https) for logging in. 3) If login is successful, user is sent to a non secure (http) page. ... |
16. session issue with ie on linex server coderanch.comhi friends, Recently I m facing problem with session management. I am using Strut2 + Spring in my web app. the issue is when I am logged in my application in mozilla or crome the session is workin fine but in ie its expire. But when I go through the tomcat manager its working fine in all the browser. what i ... |
17. session attributes IE problem forums.oracle.comHello, I have a project which in base of a series of user choices, dispays some information. I'm using jsp and servlets. After the user makes the first choice, I save this choice in a session attribute, and so on. The problem is we choose something else, in IE, it does not refresh the info.. In Mozilla it works, and also ... |