-
Notifications
You must be signed in to change notification settings - Fork 2
/
sapo.txt
79 lines (62 loc) · 2.86 KB
/
sapo.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
=============== LISTA CANAIS ==================================================
POST http://212.113.188.171/7085C6DB86B6/ChannelListService/control/
SOAPACTION "urn:schemas-nds-com:service:Channel-List:1#GetChannelListDetail"
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<s:Body>
<u:GetChannelListDetail xmlns:u="urn:schemas-nds-com:service:Channel-List:1">
<uuid>uuid:F80B7487-6622-4F91-AE51-CADB783A3AEF</uuid>
<channelListId>a2214641</channelListId>
<locator>dvb://36.42.644</locator>
<channelNumber>81</channelNumber>
</u:GetChannelListDetail>
</s:Body>
</s:Envelope>
=============== CANAL UP/DOWN ==================================================
POST http://212.113.188.171/7085C6DB86B6/RemoteControlService/control/
SOAPACTION "urn:schemas-nds-com:service:Remote-Control:1#SendKey"
Content-Type text/xml; charset="utf-8"
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<s:Body>
<u:SendKey xmlns:u="urn:schemas-nds-com:service:Remote-Control:1">
<uuid>uuid:8863CAA7-BB33-4611-AFAD-730280622589</uuid>
<key>57600</key>
</u:SendKey>
</s:Body>
</s:Envelope>
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<s:Body>
<u:SendKey xmlns:u="urn:schemas-nds-com:service:Remote-Control:1">
<uuid>uuid:8863CAA7-BB33-4611-AFAD-730280622589</uuid>
<key>57601</key>
</u:SendKey>
</s:Body>
</s:Envelope>
=============== SET CANAL ==================================================
POST http://212.113.188.171/7085C6DB86B6/ChannelSelectionService/control/
SOAPACTION: "urn:schemas-nds-com:service:Channel-Selection:1#SetSelectedChannel"
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<s:Body>
<u:SetSelectedChannel xmlns:u="urn:schemas-nds-com:service:Channel-Selection:1">
<uuid>uuid:F80B7487-6622-4F91-AE51-CADB783A3AEF</uuid>
<channelListId>a2214641</channelListId>
<locator>dvb://36.24.32d</locator>
<channelNumber>3</channelNumber>
</u:SetSelectedChannel>
</s:Body>
</s:Envelope>
=============== VOLUME ==================================================
POST http://212.113.188.171/7085C6DB86B6/VolumeService/control/
SOAPACTION urn:schemas-nds-com:service:Volume:1#SetVolumeLevel
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<s:Body>
<u:SetVolumeLevel xmlns:u="urn:schemas-nds-com:service:Volume:1">
<uuid>uuid:F80B7487-6622-4F91-AE51-CADB783A3AEF</uuid>
<level>1</level>
</u:SetVolumeLevel>
</s:Body>
</s:Envelope>