I am observing some unusual behaviour in the deployment of my web app. I would
like to configure the Orion server to not add the "session" query string to
URL's within my JSP pages (since I am not using sessions).
To do this I add the line:
<session-tracking autoencode-absolute-urls="false" autoencode-urls="false"/>
to config/global-web-application.xml.
However, when the application is deployed, the comparable line in orion-web.xml
reads:
<session-tracking autoencode-urls="true" />
and not as I expected as configured above (and of course autoencoding of URL's
is activated). If I manually edit the orion-web.xml file to turn off
session-tracking, then the server behaves correctly - however these edits are
lost when redployment occurs.
Is this a deployment bug in Orion or am I not configuring the default deployment
parameters correctly?
Thanks,
Tony