Can't use SSL with scope="transportsession"
-------------------------------------------

                 Key: AXIS2-3141
                 URL: https://issues.apache.org/jira/browse/AXIS2-3141
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
    Affects Versions: 1.2
         Environment: Windows XP Professional, Tomcat 4.1.30, Axis2 1.2.
            Reporter: Andrew Martin


When I try to invoke my service via https, Axis2 1.2 throws a
NullPointerException:

Caused by: java.lang.NullPointerException
        at 
org.apache.axis2.engine.InstanceDispatcher.fillContextsFromSessionContext(InstanceDispatcher.java:123)
        at 
org.apache.axis2.engine.InstanceDispatcher.invoke(InstanceDispatcher.java:70)
        at org.apache.axis2.engine.Phase.invoke(Phase.java:383)
        at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:203)
        at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:131)
        at 
org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:279)
        at 
org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:116)
        ... 33 more

I think I found what's causing it.  My service is defined like this in
services.xml:
<service name="..." scope="transportsession">...</service>

If I remove 'scope="transportsession"', Axis2 no longer throws this
Exception, and my own code is invoked (though it causes my code to fail,
since mc.getSessionContext() returns null).

Is there any reason why 'scope="transportsession"' would work via http
but not https?

I get the same error with version.aar if I change its services.xml to this:
<service name="Version" scope="transportsession">
    <Description>
        This service is to get the running Axis version
    </Description>
    <parameter name="ServiceClass" 
locked="false">sample.axisversion.Version</parameter>
    <operation name="getVersion">
    <messageReceiver  class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" 
/>
    </operation>
</service>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to