Invoke a cloud endpoint using SoapUI
To test our cloud endpoint we are going to use SoapUI again to simulate our flight tracking and incident system. Instead of creating a new SOAP project, we have created one for you to use to make these steps easier. Import the SoapUI project from the chapter resources. This can be done through the File menu and selecting Import Project. Open the project file FlightScheduleUpdate-Ch10-soapui-project.xml
, which can be found in the book's resources for this chapter. This SoapUI project contains the SOAP binding to send messages to our orchestration and a test suite with two test cases. The first test case includes four calls to the orchestration, each with a different flight identification and a different outcome. Each call takes a different path in the orchestration. The second test case will call the orchestration twice; one call executes the otherwise branch and the other call will result in a fault as shown in the following screenshot:
Before we can...