
Identify Operations to Implement
You can use SoapUI to identify an operation you need to implement by making the API fail. You use the OrderTshirt
operation to create a request in SOAP UI to place an order for a large t-shirt for John. The API cannot handle this operation and a SOAP fault occurs.
-
In SoapUI, create a new SOAP project using the URL for your deployed Mule APIkit project for the initial WSDL.
In this workflow, the URL ishttp://localhost:8081/TshirtService/TshirtServicePort?wsdl
: -
In SoapUI, request a large t-shirt for John by entering some values into the request envelope:
-
Select Projects > TshirtServicePort?wsdl > TshirtServiceSoapBinding > OrderTshirt > Request 1.
-
Enter L between the
<size>
tags. -
Enter John between the
<name>
tags.
-
-
Submit the request.
The result is the SOAP fault.
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <soap:Fault xmlns:soap="http://schemas.xmlsoap.org/soap/envelope"> <faultcode>soap:Server</faultcode> <faultstring>Operation [OrderTshirt:\soapkit-config] not implemented</faultstring> </soap:Fault> </soap:Body> </soap:Envelope>