Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameDescriptionScreens (Click to view
WSDL URLWebservice WSDL URL to be called.

Figure 1: SOAP Tool Properties

Operation NameOperation Name
UsernameCredential - Username
Password Credential - Password
ParametersValues in sequence order of the operation parameters.
SOAP Body (XML)

The XML content of <soap:Body> tag.

Parameters setting is ignored when SOAP Body is used.

SOAP Action
SOAP Action is required when SOAP Body is used and SOAP version is 1.1

...

Image Removed

Figure 4: Advanced Properties
NameDescriptionScreens (Click to view)
 Debug Mode

When checked, debug messages will be printed out in the server log for troubleshooting purpose.

...

In the server's console, one will see the returned formatted data as the following

...

:

Code Block
INFO  07 Jun 2013 10:54:37 SoapTool  - <ns1:GetGeoIPResult xmlns:ns1="http://www.webservicex.net/"><ns1:ReturnCode>1</ns1:ReturnCode><ns1:IP>8.8.8.8</
ns1:IP><ns1:ReturnCodeDetails>Success</ns1:ReturnCodeDetails><ns1:CountryName>United States</ns1:CountryName><ns1:CountryCode>USA</ns1:CountryCode></n
s1:GetGeoIPResult>
INFO  07 Jun 2013 10:54:37 SoapTool  - {"GetGeoIPResult":{"CountryName":"United States","ReturnCodeDetails":"Success","ReturnCode":"1","IP":"8.8.8.8",
"CountryCode":"USA"}}

Image Added

Figure 4: Advanced Properties

Tutorials

Example 1

In the example above, we are making a webservice call to  http://www.webservicex.net/geoipservice.asmx , calling the method GetGeoIP.

...