-
1. Re: Deployment order of BPEL processes
kurtstam Mar 21, 2010 9:46 AM (in response to kurtstam)Gary Brown says:
The services only depend upon the interfaces of the other services, not the actual implementations.
Don't think we should be expecting all services to be up and running before an invoking service is deployed - that would increase the coupling/dependencies between implementations, which is not a good thing.
What specifically needs to be done at deployment time, that couldn't wait for the actual lookup to occur prior to invocation?
-
2. Re: Deployment order of BPEL processes
kurtstam Mar 21, 2010 9:51 AM (in response to kurtstam)The issue i that createPartnerChannel is called during the deployment of the bpel.jar. So the wsdl can of the partner channel can only be read if it is deployed. This works fine if it is all contained in the one bpel.jar, however if the partner service is deployed in another archive, then we can have deployment order issues.
--Kurt
-
3. Re: Deployment order of BPEL processes
kurtstam Mar 21, 2010 10:53 PM (in response to kurtstam)Well it ended up all resolving itself. The 'createPartnerChannel' executes on a background thread, so it simply waits till the server is up.
--Kurt