Skip to content

Commit 572f310

Browse files
author
Marek Majkowski
committed
bug23320 merged into default
2 parents d44cdb0 + 97f6a0c commit 572f310

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

docs/RabbitMQ Service Model.doc

4 KB
Binary file not shown.

docs/RabbitMQ Service Model.docx

21 Bytes
Binary file not shown.

docs/RabbitMQ Service Model.pdf

-6.74 KB
Binary file not shown.

projects/examples/wcf/Test/App.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343
<rabbitMQBinding>
4444
<binding
4545
name="rabbitMQConfig"
46-
broker="amqp://dev.rabbitmq.com:5672/"
47-
protocolversion="AMQP_0_8" />
46+
broker="amqp://localhost:5672/"
47+
protocolversion="AMQP_0_9_1" />
4848
</rabbitMQBinding>
4949
</bindings>
5050
</system.serviceModel>
5151

5252
<appSettings>
53-
<add key="manual-test-broker-uri" value="amqp://dev.rabbitmq.com:5672/"/>
54-
<add key="manual-test-broker-protocol" value="AMQP_0_8"/>
53+
<add key="manual-test-broker-uri" value="amqp://localhost:5672/"/>
54+
<add key="manual-test-broker-protocol" value="AMQP_0_9_1"/>
5555
</appSettings>
5656
</configuration>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
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

1313
<bindings>
1414
<rabbitMQBinding>
1515
<binding name="rabbitMQConfig"
16-
protocolversion="AMQP_0_8"
17-
broker="amqp://dev.rabbitmq.com:5672/" />
16+
protocolversion="AMQP_0_9_1"
17+
broker="amqp://localhost:5672/" />
1818
</rabbitMQBinding>
1919
</bindings>
2020

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

Lines changed: 4 additions & 4 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,15 +13,15 @@
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

2020
<bindings>
2121
<rabbitMQBinding>
2222
<binding name="rabbitMQConfig"
23-
broker="amqp://dev.rabbitmq.com:5672/"
24-
protocolversion="AMQP_0_8"
23+
broker="amqp://localhost:5672/"
24+
protocolversion="AMQP_0_9_1"
2525
oneWay="false"/>
2626
</rabbitMQBinding>
2727
</bindings>

projects/examples/wcf/configDemo/WcfServiceLibrary1/app.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
<bindings>
2222
<rabbitMQBinding>
23-
<binding name="rabbitMQConfig" broker="amq://dev.rabbitmq.com:5672/"
24-
oneWay="true" version="AMQP_0_8" />
23+
<binding name="rabbitMQConfig" broker="amq://localhost:5672/"
24+
oneWay="true" version="AMQP_0_9_1" />
2525
</rabbitMQBinding>
2626
</bindings>
2727

0 commit comments

Comments
 (0)