Hi, I’m looking for IP remote channels and their methods including Capabilities.
Actually I’m able to control the TV using ms.remote.control method(via WebSocket) but looking for any event subscription or any Documentation that how we can get the volume status, Current input source and launch an application etc.
http://<TV_IP>:9110/ip_control Response:
<?xml version="1.0"?>
<root xmlns="urn:samsung.com:device-1-0" xmlns:sec="http://www.sec.co.kr/dlna">
<specVersion>
<major>1</major>
<minor>0</minor>
</specVersion>
<device>
<deviceType>urn:samsung.com:device:IPControlServer:1</deviceType>
<friendlyName>55" Crystal UHD</friendlyName>
<manufacturer>Samsung Electronics</manufacturer>
<manufacturerURL>http://www.samsung.com/sec</manufacturerURL>
<modelDescription>Samsung TV IPControl</modelDescription>
<modelName>UA55DU8300ULXL</modelName>
<modelNumber>AllShare1.0</modelNumber>
<modelURL>http://www.samsung.com/sec</modelURL>
<serialNumber>0AXN3PBX400330H</serialNumber>
<UDN>uuid:e917da70-ce53-4135-b96d-539550d9ca0e</UDN>
<iconList>
<icon>
<mimetype>image/jpeg</mimetype>
<width>48</width>
<height>48</height>
<depth>24</depth>
<url>/icon_SML.jpg</url>
</icon>
<icon>
<mimetype>image/jpeg</mimetype>
<width>120</width>
<height>120</height>
<depth>24</depth>
<url>/icon_LRG.jpg</url>
</icon>
<icon>
<mimetype>image/png</mimetype>
<width>48</width>
<height>48</height>
<depth>24</depth>
<url>/icon_SML.png</url>
</icon>
<icon>
<mimetype>image/png</mimetype>
<width>120</width>
<height>120</height>
<depth>24</depth>
<url>/icon_LRG.png</url>
</icon>
</iconList>
<serviceList>
<service>
<serviceType>urn:samsung.com:service:IPControlService:1</serviceType>
<serviceId>urn:samsung.com:serviceId:IPControlService</serviceId>
<controlURL>/upnp/control/IPControlService1</controlURL>
<eventSubURL>/upnp/event/IPControlService1</eventSubURL>
<SCPDURL>/IPControlService_1.xml</SCPDURL>
</service>
</serviceList>
</device>
</root>
But when I’m trying to get the capabilities/actions xml by http://<TV_IP>:9110/IPControlService_1.xml
. Getting very useless data.
<?xml version="1.0" encoding="utf-8"?>
<scpd xmlns="urn:samsung.com:service-1-0">
<specVersion>
<major>1</major>
<minor>0</minor>
</specVersion>
</scpd>
What are the available channels and methods for IP remote over websocket on Port 8001 and 8002?
Thanks!