How can i call a windows service using silver light?
A:
If it's a managed service that's in your control, you could host a WCF service in it for silverlight to communicate with.
Gurdas Nijor
2009-12-17 06:32:08
A:
Using WCF is, as noted, the simplest solution. An alternative, if you don't want the (substantial) overhead introduced by WCF, is to use sockets, as demonstrated, for instance, here. If you control both sides of the equation, a framework like SocketsLight can take some of the pain out of sockets programming.
Ken Smith
2009-12-17 08:49:32