Hosting WCF Service in IIS
All right!! So I have created a WCF service and I want to consume it…what do I do? Where do I host the service? The first choice that comes to one’s mind (and which most of the examples talk about) is creating a console application and hosting the WCF service within this application. But this option is good only when you want to host the service quickly and test it out. In a practical scenario, we would require a service which sits there and is available all the time and allows a message based activation. Also, wouldn’t it be great if we can get rid of the extra code that we have to write just to host the service? Fortunately, WCF provides various options when it comes to hosting a service. These options are:
1. Console application
2. Winform application
3. IIS
4. Windows service
5. Windows Activation Service.
Of course, the choice of the host restricts the type of transport that you can use for that service. I will not go into those details in this post. Let us look at how we can host the WCF service in IIS. When we use IIS to host WCF services, the services are integrated into ASP .NET. Thus the WCF services can take advantage of some of the inherent feature of ASP .NET such as process recycling, process health monitoring, message-based activation and idle shutdown. So let us get started…
Create a WCF service
1. Create a blank solution and add a WCF Service Library project to it. For the purpose of this post, I am going to create a simple GreetingService that has a method Greet. This method accepts a single parameter name and returns a string “Hello “ appended to name
2. The following is the code for the GreetingService WCF service. We define a service contract, mark the operations in that contract that are going to be exposed to the external world and then implement the service.
using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
namespace Wcf.Samples.ServiceLibrary
{
[ServiceContract()]
public interface IGreeting
{
[OperationContract()]
string Greet(string name);
}
}
GreetingService.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Wcf.Samples.ServiceLibrary
{
public class GreetingService : IGreeting
{
#region IGreeting Members
public string Greet(string name)
{
return "Hello - " + name;
}
#endregion
}
}
3. Now that you added the service contract and its implementation (the GreetingService), build the project.
Host the service in IIS
1. Now we create a Web site that will host the WCF service that we created in the previous section. For this, right-click the solution in the solution explorer and from the context menu, select Add -> New Web site ->WCF Service as shown in the following figure.
2. This will create a WCF Service Web site into your solution along with the standard folders that get created for a Web site project (App_Code, App_Data etc). A new type of file called Service.svc will be generated and placed into the root of the Web site project, along with the corresponding code-behind file (Service.cs). The Service.cs is provided to implement a WCF service, which then can be referred in the Service.svc file. Since we already have created the WCF service in a separate assembly, we will refer to it in the Service.svc. As such we don’t need Service.cs and hence, it can be deleted.
3. Open Service.svc file and modify the single line in it like this:
<%@ ServiceHost Language="C#" Debug="true" Service="Wcf.Samples.ServiceLibrary.GreetingService" %>
4. In the above statement we point to the fully-qualified class name that implements the service that we want to host in IIS.
5. Add the reference of the Wcf.Samples.ServiceLibrary project to the web-site project and build the web-site.
6. This completes the creation of WCF service. Now, in order to let the service communicate with the external world, we need to define the communication behavior of the service. For defining this behavior, we will use the Service Configuration tool that comes along with Visual Studio 2005.
7. From the main menu of Visual Studio 2005, select Tools -> WCF Service Configuration Editor. The WCF Configuration Editor window will open up. Select File -> Open -> Config File… from the main menu. Browse and select the Web.config file of the WCF web-site.
8. Once selected, the screen will be displayed as follows. The Web.config already has the configuration for the default service MyService under the Services node in the left-panel. Select this service and deleted it. We are going to create a new configuration for our service.
9. Right-click the Services node and select “New service” from the context menu. A service with service type NewServiceType will be created. On the right-panel, select the property “Name” and click the ellipsis. Service Type Browser will open up. Browse the bin folder of the web-site and locate the service assembly Wcf.Samples.ServiceLibrary and double-click it. The Service Type Browser dialog now will list the service “Wcf.Samples.ServiceLibrary.GreetingService” service. Select this service and click Open. This will set the service-type that we are going to configure.
10. Now for the above service, we first need to specify the end-point. Right-click Endpoints node in the left-panel of the WCF Service Configuration Editor and select “New Endpoint”. This will create a default end-point with its properties being displayed in the right-panel.
11. Set the following properties:
Name |
defaultEp |
Address |
https://localhost:28053/GreetingService/Service.svc · Here 28053 is the port-number where the local web-server is running. You need to check your port number and enter it here appropriately. |
Binding |
basicHttpBinding |
Contract |
Wcf.Samples.ServiceLibrary.IGreeting · You can click the ellipses to open the Contract Type Browser and select the appropriate assembly and contract from the bin directory of the web-site. |
12. This sets the basic communication for our service. In order to enable the service for metadata exchange (thereby allowing us the browse its wsdl), we need to set the metadata exchange properties for the service. To do this, expand the Advanced node in the left-panel, right-click Service Behaviors and select “New Service Behavior Configuration”. This will add a new Behavior Configuration by the default name NewBehavior. Behavior is a collection of attributes (here, service attributes) that can be set and applied to the service together. Right now, we are going to define a behavior that allows the metadata exchange on the service. Set the Name property of the new behavior configuration to mexBehavior.
13. In the “Behavior element extension position” (lower part of the right-panel), click “Add” button. This opens up a dialog “Adding Behavior Element Extension Sections”. Select serviceMetadata from the list and click “Add” on the dialog. This adds the extension serviceMetadata to the grid in the right-panel. Double-click the extension to open up its property-page. Set the property HttpGetEnabled to true.
14. Now that we have defined the behavior separately, we need to associate the behavior with our service. To do this, select the Wcf.Samples.ServiceLibrary.GreetingService under the Services node in the left panel. The right-panel will display its properties. Select the BehaviorConfiguration property, and select “mexBehavior” from the drop-down.
15. This sets the service configuration and allows the service to communicate with the external world. Save the configuration by selecting the menu File->Save. Close the WCF Service Configuration Editor.
16. Test that the service is hosted by running the WCF Web Site application. The following screen should be displayed.
You can test this service by creating a Console application and adding a proxy (generate the proxy by running the svcutil.exe utility). In the next post, I will explain how to invoke a WCF service hosted in IIS through the new WCF Adapter in BizTalk R2.
Till then… happy coding J
Comments
- Anonymous
May 20, 2007
PingBack from http://tristanbates.wordpress.com/2007/05/21/hosting-wcf-service-in-iis/ - Anonymous
May 21, 2007
Good stuff! - Anonymous
May 22, 2007
Thanks a lot for step by step instructions.Its really good when somebody is starting to program in WCF, like me!! :) - Anonymous
June 04, 2007
With the new version of TeamGuide using a WCF service to distribute the Process MeNtOR content to our... - Anonymous
June 12, 2007
The contract name 'Wcf.Samples.ServiceLibrary.IGreeting' could not be found in the list of contracts implemented by the service 'GreetingService'. - Anonymous
June 12, 2007
Help meee....!!!!!!!!!!I am geeting error like this..The contract name 'Wcf.Samples.ServiceLibrary.IGreeting' could not be found in the list of contracts implemented by the service 'GreetingService'. - Anonymous
July 15, 2007
interesting - Anonymous
August 20, 2007
I`m getting errorNo protocol binding matches the given address 'http://localhost:8000/GreetingService/Service.svc'. Protocol bindings are configured at the Site level in IIS or WAS configuration. - Anonymous
September 26, 2007
naruto music videos myspace codes - Anonymous
October 11, 2007
Hi, if I add a new method in the service, then i removed service refference in the client and add a new reefference to that using service url. but it is accepting only old method in the proxy, i am unable to find my new method in the service. can you solve my problem. i have thought this due to caching. i have tried with new service project then my second method is accessing..Thanks in advanceseshadri - Anonymous
October 23, 2007
The comment has been removed - Anonymous
October 26, 2007
I got error when I host this in windows xp.Thanks in advance... - Anonymous
October 26, 2007
That too if it is placed in virtual directory, access denied kind of error came. - Anonymous
November 06, 2007
Your example is great, and works perfect... however, in the step to create a Web site that will host the WCF service, you have selected the Location to create this website in the FileSystem rather than HTTP. If you run through this same example, and select HTTP the example does NOT work anymore. Can you please explain why, and do you know how to fix it? Thank you for your help and time. - Anonymous
November 21, 2007
Is it possible to initialize and access a global object which will be accessed by multiple client requests? Say for example, we want to know the inventory of an item in the ware house. Inventory of all items is read from database and stored in a global memory object during the first client request or creating the WCF host. Subsequently, if any user logs in, WCF should access this global memory object and return the inventory for the item requested without reading from the database again.I am not able to initialize this object and each time a user requests comes, the whole process started all over again. Thanks in advance for your help - Anonymous
November 21, 2007
I think I found the answer in the following article:http://www.iis.net/articles/view.aspx/IIS7/Hosting-Web-Applications/Windows-Communication-Foundation--WCF-/Writing-a-Web-Service-hosted-in-IIS7?Page=4Thanks - Anonymous
December 15, 2007
Do you need to create an .svc file for each service that you want to host in IIS? If so, how would you go about extracting the combined proxies and config of each service? - Anonymous
December 26, 2007
I made a WCF service library and use it in a wcf service but when i run this service i got the following error:There is no compatible TransportManager found for URI 'http://localhost:2755/GreetingService/Service.svc'. This may be because that you have used an absolute address which points outside of the virtual application. Please use a relative address instead.Can anyone help me to figure it out? - Anonymous
February 04, 2008
Can you please let me know What is the difference between hosting the WCF application in IIS and other application? - Anonymous
March 05, 2008
hi,the article was nice.when i am trying to implement I`m getting this errorNo protocol binding matches the given address 'http://localhost:8000/GreetingService/Service.svc'. Protocol bindings are configured at the Site level in IIS or WAS configuration. - Anonymous
March 05, 2008
hi,the article was nice.when i am trying to implement I`m getting this errorNo protocol binding matches the given address 'http://localhost:8000/GreetingService/Service.svc'. Protocol bindings are configured at the Site level in IIS or WAS configuration.please help me in that - Anonymous
March 15, 2008
sir,how to consume the wcf service using asp.net - Anonymous
March 18, 2008
To add a little more to this great thread is to publish the service in an IIS VD and then using it just a we use an ASMX file and consume it in an asp .net app by web refrencing it. If we use the publishing route, we have to update the end point not to enclude the port number in its configuration. - Anonymous
March 28, 2008
I also get the same issue that other readers mentioned. Is it something to do with IIS pointing to the wrong version of the Framework? Mine appears to point to 2.0, but 3/3.5 isn't available in the dropdown list.No protocol binding matches the given address 'http://localhost/GreetingService/Service.svc'. Protocol bindings are configured at the Site level in IIS or WAS configuration. - Anonymous
March 31, 2008
No protocol binding error is normally due to your configurations (both server and client). The server will use a binding like basicHttp and your client should use the same. - Anonymous
April 03, 2008
Oops !!! "Server Application Unavailable" error page when tried navigating to the "Services.svc" file in the service's virtual directory, through browser.Later, registed the apsnet_wp (using aspnet_regiis -i -enable) for .Net 2.0 and it goes well. - Anonymous
April 09, 2008
Thanks a lot for the details.Very informative - Anonymous
April 19, 2008
This is a digest of WCF Security resources I was collecting for some time. Drop me a comment in case - Anonymous
May 01, 2008
This is a very good article... as a starting i found it very usefull..Can u plz help me on Hosting MSMQ service.Because endpoint get changed here..same for protocol..Thanks ! - Anonymous
May 11, 2008
This is a digest of WCF Security resources I was collecting for some time. Drop me a comment in case it is useful. - Anonymous
May 16, 2008
I was getting the same error message "No protocol binding matches the given address 'http://localhost:8000/GreetingService/Service.svc'. Protocol bindings are configured at the Site level in IIS or WAS configuration." as General and rohini.The problem was that this address http://localhost:8000/GreetingService/Service.svc was different from the address specified in the web.config in endpoint section. So check your web.config. You can configure the website not to use the default Web server but to use IIS in the properties of the website.Thank you for the tutorial! - Anonymous
May 26, 2008
How can we use IPC binding to host a service in WAS - Anonymous
June 25, 2008
Remove any addresses from your web.config, address="" and mex address="mex"Let IIS set the URI based on where you place the files. - Anonymous
July 13, 2008
Thank you, that helped me a lot :) - Anonymous
July 20, 2008
Hi, Amit this article was really useful and easy to understand. - Anonymous
July 20, 2008
The comment has been removed - Anonymous
August 20, 2008
Hi,Nice Article. In VS 2008 we have a project template called "WCF Service Application".Thanks,Ashutosh - Anonymous
November 05, 2008
gnobber, I noticed you were also wondering about whether the .svc files are necessary in IIS. So far I'm also unable to find the solution to this question. I'll be posting any follow up to this question as part the topic I posted up on the MSDN forums.How do I expose WCF web services in IIS without using .svc files?http://social.msdn.microsoft.com/Forums/en-US/netfxnetcom/thread/13c10940-e705-4c7e-8494-b28dac3b95e4 - Anonymous
December 28, 2008
i m not able to view .svc file - Anonymous
March 02, 2009
The comment has been removed - Anonymous
March 11, 2009
Thanks for this step-by-step explaination.It helped me alot in understanding WCF Services.Great blog !!! - Anonymous
March 25, 2009
very good article for beginners..... - Anonymous
March 25, 2009
I am getting the following error while browsing a WCF Service published on IISModule: IIS Web CoreNotification: BeginRequestHandler: Not yet determinedError Code: 0x800700b7Config Error: Cannot add duplicate collection entry of type 'add' with unique key attribute 'name' set to 'ScriptHandlerFactory' Config File: ?C:UsersAdministratorDesktopCS-CatalogCS WebServiceweb.configRequested URL: http://localhost:100/CS Service/CatalogManager.svcPhysical Path: C:UsersAdministratorDesktopCS-CatalogCS WebServiceCatalogManager.svcLogon Method: Not yet determinedLogon User: Not yet determined<remove name="WebServiceHandlerFactory-Integrated"/> 134: <add name="ScriptHandlerFactory" verb="" path=".asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> 135: <add name="ScriptHandlerFactoryAppServices" verb="" path="_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>There are no duplicate entries in the config file. Can anyone help me if have faced similar issues before - Anonymous
April 21, 2009
How can i stop my wcf service which is hosted in IIS - Anonymous
April 21, 2009
hOW TO STOP WCF SERVICE HOSTED BY IIS - Anonymous
April 28, 2009
run Internet Information Services from Control Panel and hit the stop icon at the proper WCF Service - Anonymous
July 21, 2009
The comment has been removed - Anonymous
August 01, 2009
Hi,It is a good article about how to create a WCF service and run in VS. However, I'd expect the detailed steps of how to copy/install/deploy it to IIS (what directories should be created, what configuration should be set etc.) By this, its title is very misleading. - Anonymous
September 04, 2009
can we host wcf service on port 80 in IIS 5.1 (windows xp SP2)? - Anonymous
October 17, 2009
Is web.config file and client config file in WCF are the same? - Anonymous
October 27, 2009
re: how to enhance a running serverice without interupt - Anonymous
December 13, 2009
The comment has been removed - Anonymous
January 28, 2010
I was stuck when i publish on IIS until i found i had to change the asp.net version in "properties/asp.net".... - Anonymous
April 20, 2010
The comment has been removed - Anonymous
April 20, 2010
----------------------------- Correct Web.Config file---------------------- Continues-...<services>
-----Fact--------------Do not have multiple Endpoints.Do not confuse the IIS by hardcoding Adress/Port Number ect.Let endpoint Address be blank and IIS resolve the address automatically<service behaviorConfiguration="mexBehavior" name="WcfServiceLibrary1.EmployeeService"> <endpoint address="" binding="basicHttpBinding" contract="WcfServiceLibrary1.IEmployeeService"/> </service>
- Anonymous
August 04, 2010
Its Very cool...I loved it...Tanks ..... - Anonymous
June 14, 2011
Really Good one stuff.................Highly Appriciate with this Artical...................Thanks,Chandresh Patel - Anonymous
October 04, 2011
Really nice and easy to understand post.Thanks a Lot. - Anonymous
February 08, 2012
More walkthrough on how to actually create WCF service and then host it in IIS is heretechnologyriver.blogspot.com/.../prerequisites-check-windows-7.html