added samples
[windows-sources.git] / sdk / samples / WCFSamples / TechnologySamples / Basic / Binding / MsmqIntegration / MSMQToWCF / VB / Service / App.config
blob9abdf1121bbc6dec0476ca5a7a10587366f27a63
1 <?xml version="1.0" encoding="utf-8" ?>
2 <configuration>
3 <appSettings>
4 <!-- use appSetting to configure MSMQ queue name -->
5 <add key="orderQueueName" value=".\private$\Orders" />
6 </appSettings>
7 <system.serviceModel>
8 <services>
9 <service
10 name="Microsoft.ServiceModel.Samples.OrderProcessorService">
11 <endpoint address="msmq.formatname:DIRECT=OS:.\private$\Orders"
12 binding="msmqIntegrationBinding"
13 bindingConfiguration="OrderProcessorBinding"
14 contract="Microsoft.ServiceModel.Samples.IOrderProcessor">
15 </endpoint>
16 </service>
17 </services>
19 <bindings>
20 <msmqIntegrationBinding>
21 <binding name="OrderProcessorBinding" >
22 <security mode="None" />
23 </binding>
24 </msmqIntegrationBinding>
25 </bindings>
27 </system.serviceModel >
29 </configuration>