Depending on the customers’ knowledge and expertise the choice between the different solutions can be made accordingly.
In this blog-post I will explain some of these options in short:
String input = “1450″; // Here you need to define the request-operation of your bpel process String xml = Locator Locator locator = new Locator(“default”,”bpel”); // construct the normalized message and send to Oracle BPEL Process Manager This means you need to define the same code as defined in the above java-sample Other options can be explored as well, but these are the most common ones to think of.
“<asyncloanflowprocessrequest
xmlns=”http://xmlns.oracle.com/AsyncLoanFlow”>
<input>”+input+”</input></asyncloanflowprocessrequest>”;
IDeliveryService deliveryService = (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME);
NormalizedMessage nm = new NormalizedMessage();
nm.addPart(“payload”, xml );
deliveryService.post(“AsyncLoanFlow”, “initiate”, nm);
in a jsp-script tag.