Skip to content

Commit 6db18df

Browse files
author
Emile Joubert
committed
Fix namespaces in WCF demo
1 parent d2fdef3 commit 6db18df

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

projects/examples/wcf/configDemo/Client/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<endpoint address="soap.amqp:///Hello"
77
binding="rabbitMQBinding"
88
bindingConfiguration="rabbitMQConfig"
9-
contract="WcfServiceLibrary1.IHelloContract"
9+
contract="RabbitMQ.ServiceModel.Examples.ConfigDemo.WcfServiceLibrary1.IHelloContract"
1010
name="Service1OverRabbit" />
1111
</client>
1212

projects/examples/wcf/configDemo/Server/App.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<system.serviceModel>
44

55
<services>
6-
<service name="WcfServiceLibrary1.HelloService">
6+
<service name="RabbitMQ.ServiceModel.Examples.ConfigDemo.WcfServiceLibrary1.HelloService">
77
<host>
88
<baseAddresses>
99
<add baseAddress="soap.amqp:///" />
@@ -13,7 +13,7 @@
1313
address="Hello"
1414
binding="rabbitMQBinding"
1515
bindingConfiguration="rabbitMQConfig"
16-
contract="WcfServiceLibrary1.IHelloContract"/>
16+
contract="RabbitMQ.ServiceModel.Examples.ConfigDemo.WcfServiceLibrary1.IHelloContract"/>
1717
</service>
1818
</services>
1919

0 commit comments

Comments
 (0)