I'm developing in PeopleSoft and the you access the PIA portal through a URL such as https://mywebserver.com/psp/ps/EMPLOYEE/CRM/?cmd=login. However, at some integration points, it will go through the non-portal URL https://mywebserver.com/psc/ps/EMPLOYEE/CRM/?cmd=login. Notice how both are at the root level.
If I set cookie-path=/psp then the URL through /psc won't work correctly and vice versa.
For a clean PEN test, is there a way Weblogic can be set up to allow multiple values for a cookie path? I'm trying to achieve something like this in the weblogic.xml:
<session-descriptor>
<cookie-path>/psc;/psp</cookie-path>
</session-descriptor>