WCF Interview Question – How to achieve Self-Hosting in WCF?

Answer: 

The following steps are followed to do Self-hosting.

Step1:    //Create a URI to serve as the base address

// Address as well binding

Uri httpUrl = new Uri("http://localhost:8010/MyService/HelloWorld");

Step2: //Create ServiceHost

 ServiceHost host = new ServiceHost(typeof(ClassLibrary1.HelloWorldService),httpUrl);

Step3: //Add a service endpoint

host.AddServiceEndpoint(typeof(ClassLibrary1.IHelloWorldService) , new WSHttpBinding(), "");

Step4: //Enable metadata exchange

ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;           
host.Description.Behaviors.Add(smb);

Step5: //Start the Service

host.Open();

Step6:

Console.WriteLine("Service is host at " + DateTime.Now.ToString());          
Console.WriteLine("Host is running... Press <Enter> key to stop");           
Console.ReadLine();

Please click here to see more WCF interview questions

Regards,

Visit Authors blog for more WCF interview questions

About these ads

About c# and .NET Interview questions

This blog is for developers who want to crack .NET and C# interviews. It has all tips and tricks needed to crack .NET interviews , C# interview , SQL Server interview , Java interview , WCF Interview , Silverlight interview , WPF interview , LINQ interview , Entity framework Interview.
This entry was posted in .NET and C# training, .Net Interview Questions, C# interview questions, Csharp interview questions, How to achieve Self-Hosting in WCF, programming interview questions, WCF, WCF interview questions and tagged , , , , , , , . Bookmark the permalink.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s