Click here to Skip to main content
6,629,885 members and growing! (19,763 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » Windows Communication Foundation » General     Beginner

Simple Web Service using WCF (Windows Communication Framework)

By Mark Pryce-Maher

This article shows you how easy it is to set up a web service using Windows Communication Framework.
Windows, Visual Studio, WCF, Dev
Posted:2 Jan 2007
Views:74,967
Bookmarked:53 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
16 votes for this article.
Popularity: 5.50 Rating: 4.57 out of 5

1
1 vote, 6.3%
2

3
2 votes, 12.5%
4
13 votes, 81.3%
5

Web Service running

Introduction

This article shows you how easy it is to setup a web service using WCF (Windows Communication Framework). Using the source I've provided as a template, you can quickly create your own web services. This article does not deal with a client consuming the web service (you will have to wait until part 2).

Background

I've been playing around with WCF for a while, since the early CTP's. I found it difficult to find good samples/examples. Either they didn't work or I was either too lazy or too stupid to get them working. All I wanted was something that worked with very little effort (or understanding) on my part. I just wanted something I could install and get running!!!

Of course at some point everyone will have to understand the ABC's (but that can wait for another day). When you start to learn a new technology, especially a Beta or CPT - you just want it to work, figuring out how it works can wait for another day.....

So I put together a simple WCF Web service, that you can just download and get running in a few minutes (for lazy developers - like myself!)

Getting Started

You are going to need Visual Studio 2005 (it might work with other versions of Visual Studio, but I've not tested in and I'm not going to!!), and .NET 3.0 (I would get the entire package from here instead).

Then just download the source from above.

Using the code

Download the example code and open up the solution in Visual Studio 2005.

The are two projects, the Web service and the Implementation of the class. [Fig 1]

Fig 1 - showing the 2 projects

I have chosen to use the dev web server that is built into Visual Studio, it's just easier, less setup and mucking around. But there is no reason not to use IIS (if you know how to). When your code goes into production you will be using IIS, but for now I'm going to leave it alone.

There are two parts to the web service, the .svc file and the web.config.

WCFService.svc

<% @ServiceHost Service="WCFSample.EchoImplementation"%>

Web.Config

<system.serviceModel>
    <services>
        <service name="WCFSample.EchoImplementation" 
            behaviorConfiguration="returnFaults">
        <endpoint contract="WCFSample.IEchoContract" 
            binding="basicHttpBinding"/>
        <endpoint contract="IMetadataExchange" 
            binding="mexHttpBinding" address="mex">
        </endpoint>
    </service>
</services>

The Service from the ServiceHost attribute in the WCFService.svc file should match one of the service names in the web.config. The service name and endpoint contract should both match the implementation and contracts from the WCF Project Template.

The WCF Project Template is made up of 3 parts, the contract [data contract or message], the implementation and the interface [ServiceContract] (yes, the ABC's had to come in somewhere).

The Service Contract

The WCFContract.cs contains the interface for this service.

[ServiceContract]
interface IEchoContract
{
    [OperationContract]
    EchoMessage Echo(EchoMessage Message);
}   

The Data Contract

The Message which gets sent around is contained in the WCFContract.cs

[DataContract]
public class EchoMessage
{
    private string _OutMessage;
    private string _ReturnMessage;

    [DataMember]
    public string OutMessage
    {
        get { return _OutMessage; }
        set { _OutMessage = value; }
    }

    [DataMember]
    public string ReturnMessage
    {
        get { return _ReturnMessage; }
        set { _ReturnMessage = value; }
    }
}   

The Implementation

The implementation of the web service is in WCFImplementation.cs

class EchoImplementation : IEchoContract
{
    public EchoMessage Echo(EchoMessage Message)
    {
        EchoMessage _returningMessage = new EchoMessage();

        _returningMessage.ReturnMessage = Message.OutMessage;

        return _returningMessage;
    }
}

For this example, I used the EchoMessage to pass the data between the client and the web service, but this could be any class that has [DataContract] as an attribute.

Your Go...

Now it's your turn. The code sample is a very simple service, but the structure can be copied for other web services, the example can be scaled out so there is a one to many or many to many relation between the .svc files and classes.

History

  • 1st Jan 2007 - Released Initial version

References

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Mark Pryce-Maher


Member
I've been a programmer for longer than I care to remember. It all started with those BBC (model B's) at school, it all went down hill from there.....

This year, I am mostly coding in.. C# (WPF & WCF)

Blog Address http://markpm.blogspot.com


Occupation: Web Developer
Location: United Kingdom United Kingdom

Other popular Windows Communication Foundation articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 9 of 9 (Total in Forum: 9) (Refresh)FirstPrevNext
GeneralIncorrect file in article PinmemberhopingToCode5:34 27 May '09  
GeneralService WCF over C++ Client Pinmemberchemita_cpu1:49 6 Sep '07  
Generaldbml & WCF PinmemberDogu Tumerdem5:46 13 Aug '07  
GeneralRe: dbml & WCF PinmemberMark Pryce-Maher5:55 13 Aug '07  
GeneralRe: dbml & WCF PinmemberDogu Tumerdem6:37 13 Aug '07  
GeneralSimplicity is Beautiful PinmemberDewey16:31 29 Jul '07  
GeneralRe: Simplicity is Beautiful PinmemberMark Pryce-Maher22:18 7 Aug '07  
QuestionFail to make it work Pinmemberniro@averna.com9:41 24 Jul '07  
GeneralRe: Fail to make it work PinmemberMark Pryce-Maher22:17 7 Aug '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 2 Jan 2007
Editor: Deeksha Shenoy
Copyright 2007 by Mark Pryce-Maher
Everything else Copyright © CodeProject, 1999-2009
Web21 | Advertise on the Code Project