Loïc MAZE wrote:
> Hi, > > I'm a beginner with Axis 2 and I would like to know how to implement a > stateful web service using HttpSession. I've spent several hours on > this mailing but I’ve found absolutely nothing. ya , we dont have enough documents explaining session management stuff (I am on the process of writing a document on this area). > Can somebody supply a concrete example of axis session ? Any > information in this regard will be highly appreciated. Managing transport level session require you to change axis2.xml , need to add the following parameter; <parameter name="manageTransportSession" locked="false">true</parameter> Then you need to deploy your services with its scope being "transportsession" . In the client side when you invoking the service you have an option to manage session as well. To understand the concept pls have a look at http://svn.apache.org/repos/asf/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/ServiceGroupContextTest.java > Best regards, > Loïc -- Thanks, Deepal ................................................................ ~Future is Open~ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
