This text file contains example code from: Chapter 5 - WCF Services Book - SOA with .NET & Windows Azure: Realizing Service-Orientation with the Microsoft Platform Series - Prentice Hall Service-Oriented Computing Series from Thomas Erl (www.soabooks.com/community) Certification - These examples are used as part of the Certified SOA .NET Developer curriculum (www.soaschool.com) <programlisting linenumbering="unnumbered">using System; using System.ServiceModel; namespace <emphasis role="strong">HelloWorld</emphasis> { [<emphasis role="pd_red">ServiceContract</emphasis> (<emphasis role="pd_red">Namespace</emphasis>=NewNamespace", <emphasis role="pd_red">Name</emphasis>="NewContract")] public interface <emphasis role="pd_red">IGreetings</emphasis> { [OperationContract(Name="GreetRequestor")] string Greet(); } }</programlisting> </example>