Re: Multiple classes

2010-02-26 Thread Vincent FINET
According to my experience Web Service are stateless. On Fri, Feb 26, 2010 at 1:16 PM, jamie wrote: > Hi Everyone > > Thanks for your suggestions regarding multiple classes. I've decided to use > multiple web services for each section of the API, however, I cannot get > services within the ser

Re: Multiple classes

2010-02-26 Thread Vincent FINET
2(String a) {..} } public class B() { public void execB1(String a) {..} public void execB2(String a) {..} } On Fri, Feb 26, 2010 at 9:38 AM, Vincent FINET wrote: > Your approach is pretty much like a "remote object instance" approach (like > CORBA for instance). > > We

Re: Multiple classes

2010-02-26 Thread Vincent FINET
B, if you call a function (execA1, execA2, execB1, ...) you call a local function and not a remote fonction. When you have this in mind, you might reorder your sequence. Best regards, Vincent FINET On Thu, Feb 25, 2010 at 6:00 PM, jamie wrote: > Hi There > > I am an Axis newbie, try