|
December 1, 2001 Determining the Web Service's Input and Output Data Types Tips: December 2001
Yehuda Shiran, Ph.D.
|
|
When calling a Web service, you need to first find out what parameters the Web service expects, and in which format they need to be represented. Let's take the echoService example. Let's further assume that we are interested in the echoString method. You search for the string "echoString" and find the relevant operation:
Searching further for the echoStringRequest and echoStringResponse message definitions yields:
From the definition above you see that the input string and the returned string are both of the type xsd:string. The prefix xsd denotes the XML Schema Reference, i.e. the standard definition of XML by the W3C (World Wide Web Consortium).
People who read this tip also read these tips: Look for similar tips by subject: |