Hi!
I'm using axis2-1.5.1 with the standalone server started via
$AXIS2_HOME/bin/axis2server.sh
But I have trouble deploying a war file. What have I to do, that the service
appears when calling axis2/services/ in browser? I see only the version
webservice by now.
I have no seperate Tomcat or other
Thanks everyone for the responses. After reading the responses, and some
testing I've confirmed that not specifying a scope in the service descriptor
makes axis2 instantiate a new instance of our pojo service class with each new
request. I've also since changed these variables, because there w
http://wso2.org/library/articles/axis2-session-management-part-2
Martin
__
Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité
Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger
sein, so bitten wir hoe
Christopher
Jeff is correct;
in service.xml there is scope="soapsession"
This makes axis2 creating a new instance of your service class
for each new user-session.
For that your service class demands 3 more methods
public void init(ServiceContext sCtx) throws XMLStreamException {