HTTP + SOAP12
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /soap12 HTTP/1.1
Host: burnets.co.nz
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetBasket xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCommerce.RazorStore.Services.Commands" />
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetBasketResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCommerce.RazorStore.Services.Commands">
<Basket xmlns:d2p1="http://schemas.datacontract.org/2004/07/UCommerce.RazorStore.Services.Model">
<d2p1:DiscountTotal>0</d2p1:DiscountTotal>
<d2p1:FormattedDiscountTotal>String</d2p1:FormattedDiscountTotal>
<d2p1:FormattedOrderTotal>String</d2p1:FormattedOrderTotal>
<d2p1:FormattedSubTotal>String</d2p1:FormattedSubTotal>
<d2p1:FormattedTaxTotal>String</d2p1:FormattedTaxTotal>
<d2p1:FormattedTotalItems>String</d2p1:FormattedTotalItems>
<d2p1:LineItems>
<d2p1:LineItem>
<d2p1:FormattedTotal>String</d2p1:FormattedTotal>
<d2p1:ImageUrl>String</d2p1:ImageUrl>
<d2p1:OrderLineId>0</d2p1:OrderLineId>
<d2p1:Price>0</d2p1:Price>
<d2p1:ProductName>String</d2p1:ProductName>
<d2p1:Quantity>0</d2p1:Quantity>
<d2p1:Sku>String</d2p1:Sku>
<d2p1:Total>0</d2p1:Total>
<d2p1:UnitDiscount>0</d2p1:UnitDiscount>
<d2p1:Url>String</d2p1:Url>
<d2p1:VAT>0</d2p1:VAT>
<d2p1:VATRate>0</d2p1:VATRate>
<d2p1:VariantSku>String</d2p1:VariantSku>
</d2p1:LineItem>
</d2p1:LineItems>
<d2p1:OrderTotal>0</d2p1:OrderTotal>
<d2p1:SubTotal>0</d2p1:SubTotal>
<d2p1:TaxTotal>0</d2p1:TaxTotal>
<d2p1:TotalItems>0</d2p1:TotalItems>
</Basket>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
</d2p1:ResponseError>
</d2p1:Errors>
</ResponseStatus>
</GetBasketResponse>
</soap12:Body>
</soap12:Envelope>