Hosting a Silverlight compatible Web Service in a Windows Service - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:20:33Z http://stackoverflow.com/feeds/question/780457 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/780457/hosting-a-silverlight-compatible-web-service-in-a-windows-service 0 Hosting a Silverlight compatible Web Service in a Windows Service Jeremy Edwards 2009-04-23T06:06:17Z 2009-06-25T23:06:58Z <p>Is it possible to create a Windows Service (background apps accessible in services.msc) application and host an ASP.NET WebService or a Silverlight compatible WebService within it?</p> <p>I want to create a WebService that performs COM interop calls to something and decided that a Windows Service that interfaces with COM directly as well as hosting the WebService would be the most flexible way to go. I can then create a ASP.NET website and Silverlight application to interact with the WebService.</p> <p>The other way is to have the ASP.NET perform the COM interop calls on the server side but how safe is this and does .NET even allow that?</p> http://stackoverflow.com/questions/780457/hosting-a-silverlight-compatible-web-service-in-a-windows-service/780466#780466 1 Answer by John Saunders for Hosting a Silverlight compatible Web Service in a Windows Service John Saunders 2009-04-23T06:09:29Z 2009-04-23T06:09:29Z <p>You cannot host an ASMX web service in a Windows Service. You can, and should, do it with WCF, which replaces ASMX.</p> <p>On the other hand, there's no reason you can't use COM interop in an ASP.NET application, as easily as you can with any other .NET application. The only thing to be aware of is multithreading; since it will be called from a service, your COM object will be getting called on multiple threads, which it may not expect.</p>