Click here to Skip to main content
15,896,730 members
Articles / Programming Languages / C#

Sample Starter Project Using WCF and MSMQ

Rate me:
Please Sign up or sign in to vote.
4.88/5 (14 votes)
4 Jan 2009CPOL6 min read 147.6K   5K   79  
This project is provided as a starter application to get you started with WCF and MSMQ. It uses MsmqIntegrationBinding. The sample messages borrow their structure from the Northwind database, but that database is not a requirement.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <!-- use appSetting to configure MSMQ queue name -->
    <add key="queueName" value=".\private$\northwindqueue" />
  </appSettings>

</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
United States United States
ASP.Net Developer
Seattle, WA

Comments and Discussions