You are on page 1of 17

Performing for multiple operations using Service and SOAP

1. Create an abstract WSDL and define input and outputs. When we use service, we
must use schema to define inputs and outputs. Select element instead of Type.

2. Define the operation you want to perform. Multiple operations have been defined
here.

3. Next we need to generate concrete WSDL to share with the client. This we can
get once we generate web service.

Service and operations(process definition for each operation) get generated.

This is the concrete WSDL generated. Save it within your project with .wsdl extension.

This is concrete wsdl.


4. Perform your operation in the new process generated.

5. Create a client process and use SOAPRequestReply which will invoke concrete
WSDL.

You will receive output in the variable d.


6. To get the desired result you must start client process and service(acts as server)
together.

When we invoke the soap, automatically the operation process starts and performs the
operation.

You might also like