This text file contains example code from: Chapter 11 - Service-Orientation with .NET Part III: Reusability and Agnostic Service Models 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">TransmitterClientProxy proxy = new TransmitterClientProxy(); int smsid = proxy.SendShortTextMessage ( 12309723, //customer id "T0pSecre7", //password 1, //priority "You recieved this SMS from Standard Mold", //message of SMS 7002348234781, //receiver null, //delay hours true, //delivery report wanted "https://standardmold.com/delivery_report/{messageId} /{state}" // delivery report address );</programlisting> </example>