I have created a standalone application with WPF and I need to use some of its functions via web.
In few words, I would like that an user can access a web page and have the chance to insert some data and invoke some of the functions present in desktop application, which is running on a remote machine.
My idea is to create a
Grailsweb appplication that interacts with myWPFapplication, that is installed on the same machine.What could be the right approach ?
Is it possible to expose some of desktop application methods via webservices and invoke it from the web app? Or do I need to create a sort of API library and install both web app and desktop app in the same machine?
How can I create webservices or API for a WPF C# appplication?