Hi ,
We have deployed our applcation on tomcat server built on servlets and jsp.
We have also set the domain name and are redirecting the domain name to Static Ip where our application.
Everything is working fine in Firefox.But in IE6 and IE7 we are facing issues related to sessions.
Example:
it works when we access directly
http://143.21.14.75:8080/myapp previously we were using response.sendRedirect() now that is changed to
request.getRequestDispatcher().forward() and the application is working fine
but when i hit refresh it takes me to the index(login) page.
I see in my browser address bar that mydomain.com is only visible even when
I visit different pages(it doesn't show mydomain.com/support.jsp or mydomain.com/careers.jsp)
the company who redirect to our static IP use frames as show below
<html>
<head>
</head>
<frameset border="0" rows="100%,*">
<frame frameborder="0" src="http://143.21.14.75:8080/myapp">
</frame>
<frame noresize="" frameborder="0">
</frame>
</frameset>
</html>
i hit refresh at resource.jsp and i see in the status bar
http://143.21.14.75:8080/myapp/? and finally the index(login.jsp) page
is viewed.
I am unable to take my application live because of this issue.
Please help me to solve. Thankyou for your time and consideration