in C Sharp by (5.2k points)
What are the Possible Ways of Hosting a WCF Service

1 Answer

0 votes
by (5.2k points)

For a 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
    1. Console Application
    2. Windows Application
    3. Windows Service
  2. Hosting on Web Server
    1. IIS 6.0 (ASP.NET Application supports only HTTP)
    2. Windows Process Activation Service (WAS) i.e. IIS 7.0 supports HTTP, TCP, NamedPipes, MSMQ.

Related questions

0 votes
asked Apr 14, 2020 in C Sharp by GeorgeBell (5.2k points)
0 votes
0 votes
asked Aug 12, 2020 in C Sharp by RShastri (1.7k points)
0 votes
asked Aug 12, 2020 in C Sharp by RShastri (1.7k points)
0 votes
asked Aug 12, 2020 in C Sharp by RShastri (1.7k points)
0 votes
0 votes
0 votes
asked Aug 12, 2020 in C Sharp by RShastri (1.7k points)
0 votes
asked Jun 8, 2020 in C Sharp by DavidAnderson (9.0k points)
0 votes
0 votes
asked Apr 14, 2020 in C Sharp by GeorgeBell (5.2k points)
0 votes
asked Apr 14, 2020 in C Sharp by GeorgeBell (5.2k points)
0 votes
asked Aug 12, 2020 in Design Patterns by RShastri (1.7k points)
...