top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are the possible ways of hosting a WCF service? Explain.

+2 votes
258 views
What are the possible ways of hosting a WCF service? Explain.
posted Feb 13, 2015 by Khusboo

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

Windows Communication Foundation service to host, we need at least a managed process, a ServiceHost instance and an Endpoint configured. Possible approaches for hosting a service are:
1. Hosting in a Managed Application/ Self Hosting
2. Console Application
3. Windows Application
4. Windows Service
5. Hosting on Web Server
6. IIS 6.0 (ASP.NET Application supports only HTTP)
Windows Process Activation Service (WAS) i.e. IIS 7.0 supports HTTP, TCP, NamedPipes, MSMQ.

For More: http://www.codeproject.com/Articles/550796/A-Beginners-Tutorial-on-How-to-Host-a-WCF-Service

answer Feb 13, 2015 by Amit Kumar Pandey
...