Phone D40/D50/D70 remote control

Hi to everybody,
first of all sorry for my English…

I’m very interesting to change my snom phones (320 and 370) with Digium phones (D50 and D70). I have written an addressbook in php/mysql. When a user founds a number to call in the addressbook, he click a button and the call starts from the phone on the user’s desktop. It is possible because snom 320/370 accept some command via http:

  1. to make a call: “http://username:password@phone_ip/command.htm?number=DISPLAY_NAME<NUMBER_TO_DIAL>”

  2. to hangup: “http://username:password@phone_ip/command.htm?key=CANCEL”

  3. to transfer a call: "http://username:password@phone_ip/command.htm?key=TRANSFER"
    AND then “http://username:password@phone_ip/command.htm?key_dtmf=NUMBER_TO_TRANSFER”

All this commands are send to the snom phones using php curl command ($url is one of the above commands):

$handle = curl_init($url);
curl_setopt($handle, CURLOPT_HEADER, FALSE);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, FALSE);
curl_exec($handle);
curl_close($handle);

Is possible to do that with digium phone D40 , D50 and D70 ?
If is possible, where can I find a list of commands accepted by digium phones ?

Thanks a lot…

Zeuxnet

Negative. Digium’s phones don’t currently offer such capability.

Ok, but is there a way to “tell” to the phone (by php script or by asterisk) to dial a number, to hangup or to transfer a call?

thanks

Negative. The phones don’t offer a remote control API as you’ve described.