Hi,
I've this little PHP script, which rings a Cisco IPPhone.
It works, fine, no problem.
Now I want the HS to send the XML message to the phone, to make it ring.
In Kommunikation, IP/EIB Telegramme, I've setup a communication as below. The question is, do I need to just send the XML stuff as in
or do I need to send the html headers as well ? as seen in WireShark ?
Should I select to send CR/LF as well ?
So far, I tried several combinations, no luck
Thank you for any hint.
I've this little PHP script, which rings a Cisco IPPhone.
PHP-Code:
<?php
Header("Content-type: text/xml");
Header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
Header("Cache-Control: no-cache");
error_reporting(E_ALL);
$menu = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n";
$menu .= "<CiscoIPPhoneExecute>\n";
$menu .= "<ExecuteItem URL=\"Dial:1002\"/>\n";
$menu .= "</CiscoIPPhoneExecute>\n";
echo $menu;
?>
Now I want the HS to send the XML message to the phone, to make it ring.
In Kommunikation, IP/EIB Telegramme, I've setup a communication as below. The question is, do I need to just send the XML stuff as in
Code:
<?xml version="1.0" encoding="UTF-8"> <CiscoIPPhoneExecute> ExecuteItem URL="Dial:1002" </CiscoIPPhoneExecute>
Should I select to send CR/LF as well ?
So far, I tried several combinations, no luck

Thank you for any hint.
Kommentar