hi all...
i have a web app that uses sca and exposes a service. within another webapp
i want to call the service on the first sca app. is this the correct way to
call the service:
SCADomain scaDomain = SCADomain.newInstance("Test.composite");
TestService testService = scaDomain.getService(
TestService.
testService.doSomething(...);
i figured all i would need on the second app would be the tuscany jars and a
reference to the first service (a composite with a reference to the first sca
service). i'm also wondering if this needs to be done for each request in my
controller?
thx abeclass, "TestServiceComponent");