BEPl composite
BPEL(Business Process Execution Language): We can design Synchronous, ASynchronous, Oneway type of Service by Using BPEL When you drag a BPEL Process it will generate 3 files .xsd --- it will process inputs to the webservice and brings output from the webservice .wsdl----it will describe the webservice and locate the webservice ( It will genrate a WSDL URL once you deploy the project) .bpel---- We will see BPEL activities inside the BPEL process. We can design the Business process by using bpel activities 1.Synchronous Process( request - reply) - 1 port : In Synchronous process you will submit a request and you will get a response with in Some time frame. The default time limit for synchronous process is 45 Sec.. If it exceeds that time limit, you will get timeout error There will be only one port in Synchronous process Input and output will travel in the same port.... Examples: Online ticket booking, Online Order Booking, On-line Money Transfer can we change the default tim...