Skip to content

Instantly share code, notes, and snippets.

@luisdalmolin
Created July 26, 2011 14:02
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 luisdalmolin/1106838 to your computer and use it in GitHub Desktop.
Save luisdalmolin/1106838 to your computer and use it in GitHub Desktop.
Webservice SOAP
POST /servico/nododoarquivo.asmx HTTP/1.1
Host: sofis.servehttp.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://servidor/NomeDaFuncao"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<Credenciais xmlns="http://sofis.com.br/">
<codigo>string</codigo>
<senha>string</senha>
</Credenciais>
</soap:Header>
<soap:Body>
<AutenticaUsuario xmlns="http://sofis.com.br/">
<identificacao>string</identificacao>
<nascimento>dateTime</nascimento>
<senha>string</senha>
</AutenticaUsuario>
</soap:Body>
</soap:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment