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: www.bernhardt.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: UpdateMailchimpProduct
<?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>
<UpdateMailchimpProduct xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mailchimp">
<Description xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models">String</Description>
<Handle xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models">String</Handle>
<Id xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models">String</Id>
<ImageUrl xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models">String</ImageUrl>
<Images i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models" />
<Links i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models" />
<PublishedAtForeign xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models">String</PublishedAtForeign>
<Title xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models">String</Title>
<Type xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models">String</Type>
<Url xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models">String</Url>
<Variants i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models" />
<Vendor xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models">String</Vendor>
<StoreId>String</StoreId>
</UpdateMailchimpProduct>
</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>
<Product xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MailChimp.Net.Models">
<Description>String</Description>
<Handle>String</Handle>
<Id>String</Id>
<ImageUrl>String</ImageUrl>
<Images i:nil="true" />
<Links i:nil="true" />
<PublishedAtForeign>String</PublishedAtForeign>
<Title>String</Title>
<Type>String</Type>
<Url>String</Url>
<Variants i:nil="true" />
<Vendor>String</Vendor>
</Product>
</soap:Body>
</soap:Envelope>