Http session is always created, even if transport session management is disable.
--------------------------------------------------------------------------------
Key: AXIS2-1833
URL: http://issues.apache.org/jira/browse/AXIS2-1833
Project: Apache Axis 2.0 (Axis2)
Issue Type: Bug
Components: transports
Affects Versions: 1.1
Environment: Server: apache Tomcat 4.1.29
Os: w2k
Axis2 1.1
Reporter: Willy ANTOINE
When the transport session management is disable in axis2.xml file like this:
<parameter name="manageTransportSession" locked="true">false</parameter>
A session is created for each POST requests.
This occurs because in the AxisServlet.createAndSetInitialParamsToMsgCtxt
method, called from doPost, there is the following line:
msgContext.setProperty(SESSION_ID, req.getSession().getId());
This line must be included in the if statement at the begining of this method.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]