ºÝºÝߣs from "Paul Downey (BT) and Uros Rapajic (BT): Mashing-up the Mobile" about integrating the Web with the mobile phone using the BT Web21C SDK at WWW2007 Banff, May 2007
http://www2007.org/prog-Developers.php
1 of 80
Downloaded 624 times
More Related Content
Mashing up The Mobile
1. mobile
MA S H * * *
Paul Downey & Uros Rapajic (BT)
May 2007
17. SMS
10 outgoing international messages
160 characters each
Voice Call
10 international calls
2 minutes each
Conference Call
10 international calls
4 participants 2 minutes each
42. /*
* make one phone ring another
*/
$web21c = new Web21c('myapp');
$voice = $web21c->ThirdPartyCall();
$voice->makeCall(
quot;tel:+178..quot;,
quot;sip:uros@..quot;
);
43. /*
* send text message
*/
$m = $web21c->MessagingOneWay();
$m->sendMessage(array(quot;tel:+447..quot;),
quot;myappquot;,
quot;I'm on the train!quot;
);