I have a "big picture" question: Can my web service call another web service?
I am using axis2 as my platform for running the services.
It goes something like this:
and the second service:
At this point one would expect, assuming both services are up and running, calling FirstService.getWelcomeMessage() would return "Hello stranger".
I mean I have
another RPCServiceClient invoking "getWelcomeMessage" over the web.
What I get is an exception on the server side (which is running both of the services).
I can post the exception and log itself, but this isn't really a technical question, but rather "can I do that?". (It could be that each service object in axis i srunning in some sandbox
and it's
thread (if any) has all kind of weird limitations... I wouldn't know.)
Please help!