We have a web service implementation which maintains a bit of internal state. Now we want to add a separate web service interface which accesses the same internal state of the first web service. Essentially, it'd be two interfaces into the same underlying program. We can package the two web services within the same AAR file, as two services in the same service group.
In this setup, would the two services share a classloader (in which case they could share instantiated classes)? Or is there some other axis2 mechanism for the two implementations to communicate with each other?