I am new to the world of web services, and I have seen in various tutorials that some of them are used xs:stringfor a data type and some are used xsd:stringfor messages at w3schools.com. tut looks like this:
<message name="getTermResponse">
<part name="value" type="xs:string"/>
</message>
And, for example, in Apress Beginning PHP and MySQL there is the following code:
<message name="getTermResponse">
<part name="value" type="xsd:string"/>
</message>
What is the difference between the two? which one to use when?
source
share