Multi Threading in webMethods6

Hi,
I am trying to invoke two Flow services from within a java service. I used Service.doThreadedInvoke(…), but looks like only the first service is running and not the second. Am i missing something. I need both to run in concurrent manner as if it is invoked independently.

Anyone please help… Thanks

I’m not sure I understand. Is this the scenario:

Service1 is called.
Service1 is executing.
ServiceThread st2 = Service.doThreadedInvoke( … Service2 …)
ServiceThread st3 = Service.doThreadedInvoke( … Service3 …)
then get the results from st2 and st3.

You are saying the Service2 and Service3 are not both running concurrently?