Darn, I had so many other things to do this week. Now I&#39;m going to be fiddling around with this...<br><br>-Pete<br><br><div><span class="gmail_quote">On 05/06/07, <b class="gmail_sendername"><a href="mailto:michael@michaelshiloh.com">
michael@michaelshiloh.com</a></b> &lt;<a href="mailto:michael@michaelshiloh.com">michael@michaelshiloh.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
This just came across on the SVHMPC list, and it seems to have great<br>potential, even though I haven&#39;t taken the time yet to understand it fully.<br>This is what the BT website says:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Need to integrate highly secure services such as Messaging, Voice, Location,
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Authentication, Conference Call, Profile, or Contacts into an application?<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Now you can with as little as one line of code.&nbsp;&nbsp;We currently offer tools<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for .Net, Java, PHP, and Python, and we are developing additional innovative
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;services to allow you to build ever more powerful solutions using BT&#39;s<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;global infrastructure.<br><br>Note also that the info comes from a BT employee on the SVHMPC mailing list,<br>so there is a good line of contact from &quot;our&quot; community to BT.
<br><br><br>---------- Forwarded message ----------<br>Date: Tue, 5 Jun 2007 13:33:16 +0100<br>From: <a href="mailto:thomas.cooksey@bt.com">thomas.cooksey@bt.com</a><br>To: <a href="mailto:svhmpc@telefono.revejo.org">svhmpc@telefono.revejo.org
</a><br>Subject: [SVHMPC] BT&#39;s 21CN SDK<br><br>I really hate to tout my own company, but I&#39;ve just been talking to a<br>colleague of mine about the 21CN SDK (21CN is the name BT&#39;s giving to<br>this uber IP network). The SDK is available for .NET, java, PHP &amp; python
<br>and uses web services running on an internet-accessible BT server (I.e.<br>anyone can use it). You can do all sorts of things with it, find the<br>location (lat/long) of a GSM mobile, initiate calls, send SMS etc.<br>
<br>The services are currently in beta and are as such free to use. Anyway,<br>have a look: <a href="http://sdk.bt.com/">http://sdk.bt.com/</a><br><br><br>Looking at some example java code, to start a 2-way call you do:<br>
<br>Import com.bt.sdk.thirdpartycall;<br>public static void main(String[] args)<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;String callee = &quot;tel:+1719yournbr&quot;;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;String caller = &quot;tel:+1719callnbr&quot;;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ThirdPartyCall tpc = new ThirdPartyCall(callee, caller);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;tpc.startCall();<br>}<br><br><br>When the code executes, both the caller and callee&#39;s phones will ring.<br>When they pick up, they&#39;ll be talking to each other. To send an sms it&#39;s<br>even simpler:<br>
<br>public static void main(String[] args) throws Exception<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MessageManager mm = new MessageManager();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mm.send(&quot;tel:447712345678&quot;, &quot;Hello World!&quot;);<br>}<br><br><br>Surely this could be useful for something?
<br><br>Cheers,<br><br>Tom<br><br>PS: Apologies again for the blatant plug of BT&#39;s products. :-)<br><br>_______________________________________________<br>SVHMPC mailing list<br><a href="mailto:SVHMPC@telefono.revejo.org">
SVHMPC@telefono.revejo.org</a><br><a href="http://telefono.revejo.org/mailman/listinfo/svhmpc_telefono.revejo.org">http://telefono.revejo.org/mailman/listinfo/svhmpc_telefono.revejo.org</a><br><br></blockquote></div><br>