I was asked to create, with Netbeans (glassfish), a Java Web service asynchronos that communicates with a external BPEL process.Is it possible? Can someone help me? give me some examples?
thanks
sorry for my English, I am Italian.
I was asked to create, with Netbeans (glassfish), a Java Web service asynchronos that communicates with a external BPEL process.Is it possible? Can someone help me? give me some examples?
thanks
sorry for my English, I am Italian.
Invoking a standard BPEL process should be the same as communicating with any other web service. You can either get the WSDL and generate stubs based on that or you can use the dynamic dispatch API to invoke the service.
A BPEL process itself is a Web Service. So it'll have its WSDL.
Since you are using Async, You'll have to define two partner roles.
You'll also have to implement the callback port for the BPEL Web Service.