There are many examples on the web describing what a SOAP envelope should look like. W3Schools has this example:
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
<soap:Body>
<m:GetPrice xmlns:m="http://www.w3schools.com/prices">
<m:Item>Apples</m:Item>
</m:GetPrice>
</soap:Body>
</soap:Envelope>
But where do I know from that I have to use "GetPrice" and "Item" (in this example)? Where is this data defined? Is it a WSDL file I - as client developer - can look into?
I'd really like to have a working example of a SOAP request and response as all those I found so far (on the web and StackOverflow) are either depricated hence unusable or with example code like this.
Regards, jaySon