WiiSOAP/SOAP-WSC/IAS/checkRegistration.xml
CornierKhan1 b289356589
Like Snoot said: "be free my files"
No, it's not functional yet.
2018-08-23 21:37:00 +10:00

66 lines
2.3 KiB
XML

<!--
OSC Note:
This is an IAS SOAP Template for checking if a Wii Shop Account is registered.
The actual contents between each XML Statement have been censored for security reasons.
-->
<!-- Request -->
POST /ias/services/IdentityAuthenticationSOAP HTTP/1.1
Host: ias.shop.wii.com
User-Agent: RVL ECSHOP 4.8.0 Jul 27 2012 16:52:03
Connection: Keep-Alive
Accept: application/xml
Accept-Charset: UTF-8
Content-type: text/xml; charset=utf-8
SOAPAction: urn:ias.wsapi.broadon.com/CheckRegistration
Content-Length: 829
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ias="urn:ias.wsapi.broadon.com">
<SOAP-ENV:Body>
<ias:CheckRegistration xsi:type="ias:CheckRegistrationRequestType">
<ias:Version>2.0</ias:Version>
<ias:MessageId>ECSHOP-$DeviceId-$MessageId</ias:MessageId>
<ias:DeviceId>$DeviceId</ias:DeviceId>
<ias:Region>$Region</ias:Region>
<ias:Country>$Country</ias:Country>
<ias:Language>$Language</ias:Language>
<ias:SerialNumber>$SerialNumber</ias:SerialNumber>
</ias:CheckRegistration>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
<!-- Response -->
HTTP/1.1 200 OK
Date: Sun, 08 Jul 2018 12:57:25 GMT
Server: Apache/2.2.19
Keep-Alive: timeout=15, max=300
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: text/xml;charset=utf-8
282
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<CheckRegistrationResponse xmlns="urn:ias.wsapi.broadon.com">
<Version>2.0</Version>
<DeviceId>$DeviceId</DeviceId>
<MessageId>ECSHOP-$DeviceId-$MessageId</MessageId>
<TimeStamp>$TimeStamp</TimeStamp>
<ErrorCode>0</ErrorCode>
<ServiceStandbyMode>false</ServiceStandbyMode>
<OriginalSerialNumber></OriginalSerialNumber>
<DeviceStatus>$DeviceStatus</DeviceStatus>
</CheckRegistrationResponse>
</soapenv:Body>
</soapenv:Envelope>
0