Deploying war file in standaline axis2server

2010-09-13 Thread Daniel Pomrehn
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

RE: Field level variables

2010-09-13 Thread Meeusen, Christopher W.
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

RE: AW: Field level variables

2010-09-13 Thread Martin Gainty
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

AW: Field level variables

2010-09-13 Thread Stadelmann Josef
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 {