Implementing an emergency alert with Skype? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T04:53:27Z http://stackoverflow.com/feeds/question/721386 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/721386/implementing-an-emergency-alert-with-skype 1 Implementing an emergency alert with Skype? Robert Gould 2009-04-06T13:15:46Z 2009-07-20T18:15:34Z <p>For a system I'm working on I need to call a list of Phone numbers programatically when something breaks. Basically a simple phone based alert system, and am guessing it could be done with Skype, but I'm wondering if anyone has experience doing this, Skype or not.</p> <p>Anyways links and or tutorials would be great help.</p> <p>Thanks</p> http://stackoverflow.com/questions/721386/implementing-an-emergency-alert-with-skype/721401#721401 1 Answer by ceejayoz for Implementing an emergency alert with Skype? ceejayoz 2009-04-06T13:21:09Z 2009-04-06T13:21:09Z <p>You might consider a system like <a href="http://www.twilio.com/" rel="nofollow">Twilio</a> instead. Try the demo account (1000 free minutes) - it's very powerful and easy to set up.</p> http://stackoverflow.com/questions/721386/implementing-an-emergency-alert-with-skype/721405#721405 2 Answer by Alekc for Implementing an emergency alert with Skype? Alekc 2009-04-06T13:21:47Z 2009-04-06T13:21:47Z <p>I would go with sms. You can have a clearer error's message than skype's phone generated with robotic voice :)</p> <p>Just search google with "sms gateways", for the operator's list. Almost all of them give api and code examples for interfacing.</p> http://stackoverflow.com/questions/721386/implementing-an-emergency-alert-with-skype/721680#721680 0 Answer by bobince for Implementing an emergency alert with Skype? bobince 2009-04-06T14:21:06Z 2009-04-06T14:21:06Z <p>You could do it with any other VoIP system; hacking it together with SIP or XMPP networks should be fairly easy as they are standards with libraries avaialble for many platforms.</p> <p>But Skype is a closed network, with a closed (and heavily protected) binary client. Even if you did manage to work out how to interoperate with it (and many have failed), they could just update the client code to keep you locked out. Skype is no fun at all.</p> <p>About the best you could manage at the moment would be to use <a href="http://en.wikipedia.org/wiki/Microsoft%5FUI%5FAutomation" rel="nofollow">UI automation</a> to simulate interaction with the real Skype client. (yuck.)</p>