Call windows service from a web application
-
Hi, I've made a windows application and i want to call it from a web application. How can i call it from a web application. Should i use web service to do so? If yes then how can i call from web service. Please give me material according to this. Thanks
-
Hi, I've made a windows application and i want to call it from a web application. How can i call it from a web application. Should i use web service to do so? If yes then how can i call from web service. Please give me material according to this. Thanks
You can use
Process.Start()
. but this will start the application in server, not in client machine.All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
You can use
Process.Start()
. but this will start the application in server, not in client machine.All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
Thanks a lot. I want to do it on server. So, it would help me a lot. Thanks again