Click here to Skip to main content
15,886,026 members
Articles / Programming Languages / C#

WCF: The Right Way. A Quick Reference Guide

Rate me:
Please Sign up or sign in to vote.
4.77/5 (17 votes)
3 Oct 2010CPOL6 min read 69.6K   1.9K   85  
A developer workflow of the manual way of creating and consuming WCF Services developed by Miguel Castro
<?xml version="1.0"?>
<services>

  <service name="emx.tcp.mcwcf.Service.Services.PersonService" 
           behaviorConfiguration="MyServiceTypeBehaviors">

      <endpoint address=""
              bindingConfiguration="BasicHttpBinding_DataService"
              binding="basicHttpBinding"
              contract="emx.tcp.mcwcf.Contract.IPersonService" />
  </service>
  
</services>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Encore Software
Australia Australia
Contractor in Desktop and Web applications.
Gold Coast, Queensland.

Comments and Discussions