You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2003/04/09 14:38:22 UTC

DO NOT REPLY [Bug 18854] New: - Client adds multiple sessionID SOAP headers when SimpleSessions enabled

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18854>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18854

Client adds multiple sessionID SOAP headers when SimpleSessions enabled

           Summary: Client adds multiple sessionID SOAP headers when
                    SimpleSessions enabled
           Product: Axis
           Version: 1.1rc2
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Basic Architecture
        AssignedTo: axis-dev@ws.apache.org
        ReportedBy: kevinj@develop.com


I have an Axis server and client and I've enabled SimpleSessions. If the client
does something like this

sessions.add(23.32, 56.98);
sessions.add(23.32, 56.98);
sessions.add(23.32, 56.98);
sessions.add(23.32, 56.98);

Then in the fourth call I get this in the HTTP

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Header>
  <ns1:sessionID soapenv:actor="" soapenv:mustUnderstand="0" xsi:type="xsd:long"
xmlns:ns1="http://xml.apache.org/axis/session">7986970909899987006</ns1:sessionID>
  <ns1:sessionID soapenv:actor="" soapenv:mustUnderstand="0" xsi:type="xsd:long"
xmlns:ns1="http://xml.apache.org/axis/session">7986970909899987006</ns1:sessionID>
  <ns1:sessionID soapenv:actor="" soapenv:mustUnderstand="0" xsi:type="xsd:long"
xmlns:ns1="http://xml.apache.org/axis/session">7986970909899987006</ns1:sessionID>


i.e. the sessionID header is added for each call to the method,

Kevin Jones