This text file contains example code from: Chapter 13 - Orchestration Patterns with WF 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">public interface ICustomerService { CustomerInfoResponse GetCustomerInfo( CustomerInfoRequest request); } [Serializable] <?docpage num="400"?>[XmlRoot(Namespace= "http://example.org/Service/Customer")] public class CustomerInfoRequest { ... } [Serializable] [XmlRoot(Namespace = "http://example.org/Service/Customer")] <emphasis role="pd_red">public class CustomerInfoResponse</emphasis> <emphasis role="pd_red">{</emphasis> <emphasis role="pd_red">...</emphasis> <emphasis role="pd_red">}</emphasis></programlisting> </example>