Click here to Skip to main content
15,881,812 members
Articles / Web Development / IIS

Windows Communication Foundation QuickStart - Multiple Binding VS2010

Rate me:
Please Sign up or sign in to vote.
4.92/5 (22 votes)
23 Jun 2010CPOL9 min read 105.6K   2.4K   91  
The article is about step by step demonstration to implement simple WCF service,host and Client
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/WcfCustomerService" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/WcfCustomerService" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType name="Customer">
    <xs:sequence>
      <xs:element minOccurs="0" name="CustomerID" type="xs:int" />
      <xs:element minOccurs="0" name="CustomerName" nillable="true" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="Customer" nillable="true" type="tns:Customer" />
</xs:schema>

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
Technical Lead
Australia Australia
Whatsup-->Exploring--> MVC/HTML5/Javascript & Virtualization.......!
www.santoshpoojari.blogspot.com

Comments and Discussions