Discussion:
CookieErrorView
(too old to reply)
j***@usmint.treas.gov
2006-11-14 21:55:36 UTC
Permalink
I am having an issue when one user logs in simultaneously from two different browsers (IE). In our development environment which is working properly, if you log into browser A, then log into browser B, then click to a secured (https) page in browser A the URL of the browser says:

https://development/webapp/wcs/stores/servlet/Logoff?cf=err

and you are displayed the CookieErrorView - which is correct.

In integration, the URL of the browser says:

http://integration:443/webapp/wcs/stores/servlet/Logoff?cf=err

but you are not displayed the correct page. Sometimes you see what looks like a Websphere invalid cookie page, and sometimes you get the CookieErrorView but with several missing images and broken links.

Our integration site has several web servers and app servers and I am thinking that the whole ":443" thing instead of "https" could be causing the issue. How can I change this redirect so that it redirects to "https" and not ":443"?
geo
2006-11-15 13:30:03 UTC
Permalink
You cannot be logged in as the same user more than 1 time, hence the
CookieErrorView which is the correct view. You can review the logs after
the error to determine which appserver is out of sync. If you are seeing
more than one view the application is not synchronized across your
application stack, which is usually concerning. I would update your
application across the stack, just to ensure all servers are on the same
codebase.
Post by j***@usmint.treas.gov
I am having an issue when one user logs in simultaneously from two
different browsers (IE). In our development environment which is working
properly, if you log into browser A, then log into browser B, then click to
https://development/webapp/wcs/stores/servlet/Logoff?cf=err
and you are displayed the CookieErrorView - which is correct.
http://integration:443/webapp/wcs/stores/servlet/Logoff?cf=err
but you are not displayed the correct page. Sometimes you see what looks
like a Websphere invalid cookie page, and sometimes you get the
CookieErrorView but with several missing images and broken links.
Our integration site has several web servers and app servers and I am
thinking that the whole ":443" thing instead of "https" could be causing
the issue. How can I change this redirect so that it redirects to "https"
and not ":443"?
j***@usmint.treas.gov
2006-11-15 14:23:01 UTC
Permalink
Where can I find how this redirect to port ":443" instead of "https" is being done? The codebase is exactly the same so I am thinking there must be a setting on the WebSphere side somewhere that redirects to ":443"?

Also, the if I am signed in and put the following URL in my browser and press enter:

https://development/webapp/wcs/stores/servlet/Logoff?cf=err

..I AM logged off, which is correct. But if I am signed in and put the following URL in my browser and press enter:

http://development:443/webapp/wcs/stores/servlet/Logoff?cf=err

..IT DOES NOT log you off so this issue will definitely need to be addressed.
geo
2006-11-16 14:26:04 UTC
Permalink
It is good the second did not log you off as it is not valid.

http://development:443/webapp/wcs/stores/servlet/Logoff?cf=err

is looking for an http server on port 443, that server is https

try
https://development:443/webapp/wcs/stores/servlet/Logoff?cf=err
Post by j***@usmint.treas.gov
Where can I find how this redirect to port ":443" instead of "https" is
being done? The codebase is exactly the same so I am thinking there must
be a setting on the WebSphere side somewhere that redirects to ":443"?
https://development/webapp/wcs/stores/servlet/Logoff?cf=err
..I AM logged off, which is correct. But if I am signed in and put the
http://development:443/webapp/wcs/stores/servlet/Logoff?cf=err
..IT DOES NOT log you off so this issue will definitely need to be addressed.
j***@usmint.treas.gov
2006-11-16 22:45:01 UTC
Permalink
That is what I am trying to do...but how do I make it go to that URL? Where is the setting on Websphere to change where it redirects to?

Jim

Loading...