QUOTE(dna2 @ Tue Aug 29 2006, 15:58) [snapback]292317[/snapback]
Hi,
I'm developing a scheduler with VB.NET and .NET 2.0.
I made a Windows Service and a DLL for the event scheduler.
I want to send SMS at scheduled times. I've tested my code on a Windows Form and it works great!
ProblemWhen the windows service check for Skype is found that is running
When I try to attach Skype from the service, I receive a Wait Timeout error. I believe this is because the authorization screen for a third part component is not able to show up.
Error Message: Wait timeout. at SKYPE4COMLib.SkypeClass.Attach(Int32 Protocol, Boolean Wait)
at EventSchedulerActions.SkypeSMS.SendSMS(String phone, String message)
Question:Is there any method to open the 'Allow software....' dialog for an executable using the API? I like to register my app at once with a button.
Thanks in advance
Danilo
Danilo,
I too need this kind of functionality.
I have a simple electronic calendar I wrote for my family running on our home server. As my kids keep forgetting their appointments, I would like the server to send reminders to them. Since the client PCs do not necessarely run when an appointment takes place, I want messages to be sent from a windows service on the server.
A windows service has no windows. So to be able to send messages through Skype, send-SMS requests should be processable even if the GUI based client is not running.
Of obvious reasons, Skype has so far been extremely user centric. Opening for SMS through an API makes scenarios like your scheduler and my calendar interesting, not at least due to the reasonable cost of an SMS through Skype. However the API must be independent of the user to make these scenarios possible. The questions are: Will Skype make this rewrite? How will it change the architecture of Skype? What will the time frame be?
Peter