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

Developing and Consuming WCF Service - Separating Service, Contract, Proxy and Client

Rate me:
Please Sign up or sign in to vote.
1.65/5 (6 votes)
2 Mar 2010CPOL2 min read 31.5K   483   17  
Describes how to develop and consume WCF service for large enterprize systems
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
   
    <services>
      <service name="WCFService.AWService">
        <endpoint address="net.tcp://localhost:9005/AWEndPoint"
                  binding="netTcpBinding" 
                  contract="WCFContracts.IAWContract" />       
      </service>
      
      
    </services>
   
    
  </system.serviceModel>
  
</configuration>

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
Team Leader
India India
Anees is working as Sr. Team Lead based in Delhi(India).He is Post graduated in Computer applications and science.

He is having around 11 years of design,analysis and coding experience in Sharepoint, ASP.NET, C#, VB.NET, SQL Server 2000/05, Reporting Services,Analysis Services,VB 6.0 and Crystal Reports.

Comments and Discussions