wsIntegration
Click here for a complete list of operations.
RegisterWithNetwork
Test
The test form is only available for methods with primitive types as parameters.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 /RosecomUAT/Service/wsIntegration.asmx HTTP/1.1
Host: rosecommunications.salestarconnect.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/salestarservices_1/wsIntegration/RegisterWithNetwork"
<?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>
<RegisterWithNetwork xmlns="http://tempuri.org/salestarservices_1/wsIntegration">
<iNetworkID>int</iNetworkID>
<CustomerID>int</CustomerID>
<bPrepay>boolean</bPrepay>
<NetworkSaleID>string</NetworkSaleID>
<bBillme>boolean</bBillme>
<sortcode>string</sortcode>
<accountNum>string</accountNum>
<accholderName>string</accholderName>
<intentiontoport_msisdn>string</intentiontoport_msisdn>
<intentiontoport_network>string</intentiontoport_network>
<intentiontoport_tarriftype>string</intentiontoport_tarriftype>
<threeproposition>string</threeproposition>
<Catalogue>string</Catalogue>
<threedevice>string</threedevice>
<threetariff>string</threetariff>
<threeadditions>
<string>string</string>
<string>string</string>
</threeadditions>
<strUID>string</strUID>
<strPass>string</strPass>
<url>string</url>
</RegisterWithNetwork>
</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>
<RegisterWithNetworkResponse xmlns="http://tempuri.org/salestarservices_1/wsIntegration">
<RegisterWithNetworkResult>
<string>string</string>
<string>string</string>
</RegisterWithNetworkResult>
</RegisterWithNetworkResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /RosecomUAT/Service/wsIntegration.asmx HTTP/1.1
Host: rosecommunications.salestarconnect.com
Content-Type: application/soap+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>
<RegisterWithNetwork xmlns="http://tempuri.org/salestarservices_1/wsIntegration">
<iNetworkID>int</iNetworkID>
<CustomerID>int</CustomerID>
<bPrepay>boolean</bPrepay>
<NetworkSaleID>string</NetworkSaleID>
<bBillme>boolean</bBillme>
<sortcode>string</sortcode>
<accountNum>string</accountNum>
<accholderName>string</accholderName>
<intentiontoport_msisdn>string</intentiontoport_msisdn>
<intentiontoport_network>string</intentiontoport_network>
<intentiontoport_tarriftype>string</intentiontoport_tarriftype>
<threeproposition>string</threeproposition>
<Catalogue>string</Catalogue>
<threedevice>string</threedevice>
<threetariff>string</threetariff>
<threeadditions>
<string>string</string>
<string>string</string>
</threeadditions>
<strUID>string</strUID>
<strPass>string</strPass>
<url>string</url>
</RegisterWithNetwork>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+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>
<RegisterWithNetworkResponse xmlns="http://tempuri.org/salestarservices_1/wsIntegration">
<RegisterWithNetworkResult>
<string>string</string>
<string>string</string>
</RegisterWithNetworkResult>
</RegisterWithNetworkResponse>
</soap12:Body>
</soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /RosecomUAT/Service/wsIntegration.asmx/RegisterWithNetwork?iNetworkID=string&CustomerID=string&bPrepay=string&NetworkSaleID=string&bBillme=string&sortcode=string&accountNum=string&accholderName=string&intentiontoport_msisdn=string&intentiontoport_network=string&intentiontoport_tarriftype=string&threeproposition=string&Catalogue=string&threedevice=string&threetariff=string&threeadditions=string&threeadditions=string&strUID=string&strPass=string&url=string HTTP/1.1 Host: rosecommunications.salestarconnect.com
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <ArrayOfString xmlns="http://tempuri.org/salestarservices_1/wsIntegration"> <string>string</string> <string>string</string> </ArrayOfString>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /RosecomUAT/Service/wsIntegration.asmx/RegisterWithNetwork HTTP/1.1 Host: rosecommunications.salestarconnect.com Content-Type: application/x-www-form-urlencoded Content-Length: length iNetworkID=string&CustomerID=string&bPrepay=string&NetworkSaleID=string&bBillme=string&sortcode=string&accountNum=string&accholderName=string&intentiontoport_msisdn=string&intentiontoport_network=string&intentiontoport_tarriftype=string&threeproposition=string&Catalogue=string&threedevice=string&threetariff=string&threeadditions=string&threeadditions=string&strUID=string&strPass=string&url=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <ArrayOfString xmlns="http://tempuri.org/salestarservices_1/wsIntegration"> <string>string</string> <string>string</string> </ArrayOfString>