how to communicate between windows application and Silverlight? -


I have a very old application developed in Delphi C ++, it has an API for which it has access. The app has given a sample source code that contains a Windows application that uses this API which uses the Windows Messaging system, which is a register warning message. Now I would like to create an interface for Silverlight, I have currently thought of exposing data as a service using WCF and consumed it in Silverlight. Is it possible or is there any other alternative solution? Please give me a suggestion as I am a newbie.

You will need to communicate through WCF or better still as the security model of Silverlight lets you access the client's computer But will not allow any other application to communicate directly.


Comments