To override the Content-type in your clients, use the HTTP Accept Header, append the .soap11 suffix or ?format=soap11
HTTP + SOAP11
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /soap11 HTTP/1.1
Host: sdk.lovettcommercial.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: post_vendor_login
<?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:Body>
<post_vendor_login xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TenantSDK.post.login">
<email>String</email>
<password>String</password>
</post_vendor_login>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<?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:Body>
<post_vendor_loginResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TenantSDK.post.login">
<message xmlns="http://schemas.datacontract.org/2004/07/TenantSDK.post">String</message>
<result xmlns="http://schemas.datacontract.org/2004/07/TenantSDK.post">0</result>
<activeyn>false</activeyn>
<adminyn>String</adminyn>
<cAddress>
<cAddressDat>
<address>String</address>
<besttime>String</besttime>
<closed>String</closed>
<idcia>String</idcia>
<idcity>String</idcity>
<idproject>String</idproject>
<namecity>String</namecity>
<ownername>String</ownername>
<verified>String</verified>
</cAddressDat>
</cAddress>
<email>String</email>
<found>String</found>
<level>String</level>
<ptoken>String</ptoken>
<ptokensecret>String</ptokensecret>
<serverdate>String</serverdate>
<token>String</token>
<tokensecret>String</tokensecret>
<username>String</username>
<vendors>
<ba_VendorsDat>
<achstatus>String</achstatus>
<billto>String</billto>
<cianame>String</cianame>
<firstname>String</firstname>
<idcia>String</idcia>
<idvendor>String</idvendor>
<idvendorach>String</idvendorach>
<invoiceyn>false</invoiceyn>
<lastname>String</lastname>
<masteridcia>String</masteridcia>
<nvendor>String</nvendor>
<vendorcontact>String</vendorcontact>
<webaccess>String</webaccess>
</ba_VendorsDat>
</vendors>
<vtoken>String</vtoken>
<vtokensecret>String</vtokensecret>
</post_vendor_loginResponse>
</soap:Body>
</soap:Envelope>