Has somebody an idea how to authorize any computer so that the TV accepts messages and displays them?
On a german forum, someone sent some sample code:
Code: Select all
POST /PMR/event/MessageBoxService HTTP/1.1
Host: 192.168.178.20:52235
SoapAction: "urn:samsung.com:service:MessageBoxService:1#AddMessage"
Content-Type: text/xml; charset="utf-8"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<soap:Body>
<u:AddMessage xmlns:u="urn:samsung.com:service:MessageBoxService:1">
<MessageID>12345</MessageID>
<MessageType>text/xml; charset="utf-8"</MessageType>
<Message>hello world</Message>
</u:AddMessage>
</soap:Body>
</soap:Envelope>
The syntax seems to be usable because if it is formated differently, the server returns "invalid request - 402".