Retailer
Click here for a complete list of operations.
GetOrders
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /Retailer.asmx HTTP/1.1 Host: 831483.bhlmuz689.asia Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://tempuri.org/LazboyWeb/Retailer/GetOrders" <?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> <GetOrders xmlns="http://tempuri.org/LazboyWeb/Retailer"> <lvLogin>string</lvLogin> <lvPassword>string</lvPassword> </GetOrders> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 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> <GetOrdersResponse xmlns="http://tempuri.org/LazboyWeb/Retailer"> <GetOrdersResult> <xsd:schema>schema</xsd:schema>xml</GetOrdersResult> </GetOrdersResponse> </soap:Body> </soap:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /Retailer.asmx/GetOrders?lvLogin=string&lvPassword=string HTTP/1.1 Host: 831483.bhlmuz689.asia
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <DataSet xmlns="http://tempuri.org/LazboyWeb/Retailer"> <schema xmlns="http://www.w3.org/2001/XMLSchema">schema</schema>xml</DataSet>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /Retailer.asmx/GetOrders HTTP/1.1 Host: 831483.bhlmuz689.asia Content-Type: application/x-www-form-urlencoded Content-Length: length lvLogin=string&lvPassword=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <DataSet xmlns="http://tempuri.org/LazboyWeb/Retailer"> <schema xmlns="http://www.w3.org/2001/XMLSchema">schema</schema>xml</DataSet>