Can someone explain the differences between setting cookies on TomCat or a Weblogic webserver?
I discovered today during a deployment to Weblogic that a cookie can be set and retrieved in a single session. But, once the browser session is restarted the "onload="getCookie()" returns an error. In Tomcat however, it works perfectly.
When the cookie is manually distoyed prior to form load, no errors are returned. But, when attempting to return values of an existing cookie in Weblogic it errors with 'null' is null or not an object.
With Tomcat the cookie is set, retrieved and available upon new session.
What, if anything, needs attention for Weblogic to return the cookie values on new session?
Thanks