Skip to content

Instantly share code, notes, and snippets.

@shaneog
Created September 13, 2012 14:47
Show Gist options
  • Save shaneog/3714771 to your computer and use it in GitHub Desktop.
Save shaneog/3714771 to your computer and use it in GitHub Desktop.
SOAP XML Request
<?xml version="1.0"?>
<s:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<ServiceRequest xmlns="http://tempuri.org/">
<rqst xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Credentials xmlns="">
<Password>XXXXXX</Password>
<UserName>XXXXXXX</UserName>
</Credentials>
<RequestType xmlns="">Login</RequestType>
<TypeOfService xmlns="">Unknown</TypeOfService>
</rqst>
</ServiceRequest>
</s:Body>
</s:Envelope>
@shaneog
Copy link
Author

shaneog commented Sep 13, 2012

WSDL

<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:i0="http://tempuri.org/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" name="DynamicDataService" targetNamespace="">
<wsdl:import namespace="http://tempuri.org/" location="http://services.carsolize.com/BookingServices/DynamicDataService.svc?wsdl=wsdl0"/>
<wsdl:types/>
<wsdl:service name="DynamicDataService">
<wsdl:port name="BasicHttpBinding_IDynamicDataService" binding="i0:BasicHttpBinding_IDynamicDataService">
<soap:address location="http://services.carsolize.com/BookingServices/DynamicDataService.svc"/>
</wsdl:port>
<wsdl:port name="BasicHttpBinding_IDynamicDataService1" binding="i0:BasicHttpBinding_IDynamicDataService1">
<soap:address location="https://rd00155d3a1f6b/BookingServices/DynamicDataService.svc"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment