Free Web Services - Herong's Tutorial Examples - Version 1.11, by Dr. Herong Yang

Submit Test Requests to the Server

This section provides a tutorial example on how to submit a test request to the server represented by the port location defined in the WSDL document

To validate the test request created in the previous tutorial, I used the submit function to call the web service with the test request.

1. Continue from the previous tutorial.

2. Look at the icon area below the title bar of the request editor, the port location, http://www.herongyang.com/Service/Hello_SOAP_11.php, provided in my WSDL document is displayed.

3. Click the triangle icon, the one that says "Submit request to specified endpoint URL". In a second or two, the SOAP response received from my Hello Web service server will be displayed.
soapUI 3.6.1 Submit Test Request

Here is content of the response received for the test request:

<soapenv:Envelope
   xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
   xmlns:hy="http://www.herongyang.com/Service/">
   <soapenv:Header/>
   <soapenv:Body>
      <hy:HelloResponse>
         Hello from server - herongyang.com.
      </hy:HelloResponse>
   </soapenv:Body>
</soapenv:Envelope>

Last update: 2011.

Table of Contents

 About This Book

soapUI 3.6.1 - Web Service Testing Tool

 What Is soapUI 3.6.1?

 Downloading and Installing soapUI 3.6.1

 Validating and Inspecting WSDL Documents

 Using Interface Viewer on Bindings

 Generating Test Requests on Operations

Submit Test Requests to the Server

 REST Web Service and soapUI

 GetCountries - Get All Countries and Territories

 GetCurrencies - Get Currencies from All Countries and Territories

 GetGMTbyCountry - Get GMT Information of a Given Country

 GetISD - Get ISD Phone Code of a Given Country

 GetCitiesByCountry - Get Cities by Country

 LatLonListCityNames - Return Latitudes and Longitudes of US Cities

 GetInfoByState - Get ZIP Codes of a Given US State

 GetAirportInformationByCountry - Get Airport Code by Country

 GetGeoIP - Get Country by IP Address

 ConvertTemp - Convert Temperature Unit

 ChangeLengthUnit - Convert Length Unit

 ConvertWeight - Convert Weight Unit

 ChangeAreaUnit - Convert Area Unit

 Code39 - Generate Bar Code Images in Code 39 Format

 GenerateBarCode - Generate Bar Code Images

 GetMortgagePayment - Calculate Mortgage Payment

 ConversionRate - Get Currency Exchange Rate

 GetQuote - Get Stock Quote

 getTime - Get the Current Time

 GetSunSetRiseTime - Get Airport Code by Country

 GetWeatherByZipCode - Get Weather by ZIP Code in US

 NDFDgenByDay - US Weather Forecast by Day

 NDFDgen - US-Weather Forecast for a Single Location

 questionSearch - Search Yahoo! Questions and Answers

 flickr.interestingness.getList - Get Interesting Photos

 Hotwire - Get Travel Ticker Deals

 References

 Printable Copy - PDF Version

Submit Test Requests to the Server - Updated in 2011, by Dr. Herong Yang