Hi, there.

I have developed two Axis2 web services. Both integrate with Spring 
following http://axis.apache.org/axis2/java/core/docs/spring.html#a26
Both services work correctly when deployed alone but, if both are deployed, 
only 
the service that was last deployed works. The previously deployed services fail 
with:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/";>
   <soapenv:Body>
      <soapenv:Fault>
         <faultcode>soapenv:Server</faultcode>
         <faultstring>unknown</faultstring>
         <detail/>
      </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>

My guess is that both services are using the same application context so, as if 
each time one of them is deployed it makes a refresh of the context, the 
previous definitions are lost. If so, how can I have a per-service application 
context?
Anyway what do you think is causing this issue? How can I solve it?

Many thanks in advance.




---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to