Skip to content

Instantly share code, notes, and snippets.

@georgkreimer
Created January 7, 2011 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save georgkreimer/769570 to your computer and use it in GitHub Desktop.
Save georgkreimer/769570 to your computer and use it in GitHub Desktop.
this:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:wsdl="http://v1.example.com">
<env:Body>
<wsdl:GetUser>
<firstName>The</firstName>
<lastName>Hoff</lastName>
<FAME>Knight Rider</FAME>
<FAME>Baywatch</FAME>
</wsdl:GetUser>
</env:Body>
</env:Envelope>
should be:
<env:Envelope
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:wsdl="http://v1.example.com">
<env:Body>
<wsdl:CreateUser>
<firstName>The</firstName>
<lastName>Hoff</lastName>
<FAME>Knight Rider</FAME>
<FAME>Baywatch</FAME>
</wsdl:CreateUser>
</env:Body>
</env:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment