• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Issue with IE7 and IE8 (possibily due to cookies)

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, I am facing an issue with IE7 and IE8. The web appliction I am developing on is deployed on Weblogic 10.3. It uses wicket 4.18. Now on IE7/8, when I open the browser and login on domain (e.g. jam.comp.com mapped to 127.0.0.1) I am able to successfully reach to the home page. Now if I open up another tab in same IE window and try to login to subdomain (e.g. subdomain.jam.comp.com mapped to 127.0.0.1) I am pushed back to the login page. There is only occurring in IE 7 and 8 and working fine in firefox and chrome.

Now in the weblogic.xml I have this:

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 9.1.0//EN" "http://www.bea.com/servers/wls910/dtd/weblogic-web-jar.dtd">
<weblogic-web-app>
<!-- WebLogic session descriptors -->
<session-descriptor>
<session-param>
<param-name>CookieName</param-name>
<param-value>MYCookie</param-value>
</session-param>
<session-param>
<param-name>PersistentStoreCookieName</param-name>
<param-value>MYCookie</param-value>
</session-param>
<session-param>
<param-name>PersistentStoreType</param-name>
<param-value>memory</param-value>
</session-param>
<session-param>
<param-name>CookiesEnabled</param-name>
<param-value>true</param-value>
</session-param>
<url-rewriting-enabled>false</url-rewriting-enabled>
<encode-session-id-in-query-params>false</encode-session-id-in-query-params>
</session-descriptor>
</weblogic-web-app>

If I open the subdomain (subdomain.jam.comp.com) in a new IE window with domain already open in another IE window, this issue does not occur and I am able to login through subdomain.

This seems to be an issue due to browser session cookie. If while login, for all the cookies whose name contains "ookie", I set - setMaxAge(0), setPath("/"), doamin this issue seems to resolved on local machine, but it happens on real deployment environment. Not sure if this sii\ the right approach to this issue.

Please share how can this issue be resolved.

Thanks in advance
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic