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: tstextweb20.np.bluebet.com.au
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: StatswarsMultiPriceRequest
<?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>
<StatswarsMultiPriceRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TBS.Frontend.RequestLayer">
<Markets xmlns:d2p1="http://schemas.datacontract.org/2004/07/TBS.Frontend.MessageContracts">
<d2p1:SameGameMultiLeg>
<d2p1:EventId>0</d2p1:EventId>
<d2p1:FixedMarketId>0</d2p1:FixedMarketId>
<d2p1:FixedWin>0</d2p1:FixedWin>
<d2p1:GroupByHeader>String</d2p1:GroupByHeader>
<d2p1:MarketType>String</d2p1:MarketType>
<d2p1:MarketTypeDesc>String</d2p1:MarketTypeDesc>
<d2p1:OutcomeId>0</d2p1:OutcomeId>
<d2p1:OutcomeName>String</d2p1:OutcomeName>
<d2p1:Points>0</d2p1:Points>
</d2p1:SameGameMultiLeg>
</Markets>
</StatswarsMultiPriceRequest>
</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>
<StatswarsMultiPriceResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TBS.Frontend.Messaging.DataContracts">
<ErrorNo>0</ErrorNo>
<Identity>0</Identity>
<Message>String</Message>
<Price>0</Price>
</StatswarsMultiPriceResult>
</soap:Body>
</soap:Envelope>