summaryrefslogtreecommitdiff
path: root/qpid/doc/book/src/NET-User-Guide.xml
blob: 7bfa20b8c86f9fcaea369c8ec62879676a871a29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
<?xml version="1.0" encoding="utf-8"?>
<!--
 
 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you under the Apache License, Version 2.0 (the
 "License"); you may not use this file except in compliance
 with the License.  You may obtain a copy of the License at
 
   http://www.apache.org/licenses/LICENSE-2.0
 
 Unless required by applicable law or agreed to in writing,
 software distributed under the License is distributed on an
 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 
-->

<section>
  <title>
    Apache Qpid: Open Source AMQP Messaging - .NET User Guide
  </title>
  <section role="h1" id="NETUserGuide-Tutorial">
    <title>
      Tutorial
    </title>
    <para>
      This tutorial consists of a series of examples using the three
      most commonly used exchange types - Direct, Fanout and
      Topic
      exchanges. These examples show how to write applications that use
      the most common messaging paradigms.
    </para>
    <itemizedlist>
      <listitem>
	<para>direct</para>
	<para>In the direct examples, a message producer writes to the direct
	exchange, specifying a routing key. A message consumer reads
	messages from a named queue. This illustrates clean separation
	of concerns - message producers need to know only the exchange
	and the routing key, message consumers need to know only which
	queue to use on the broker.
	</para>
      </listitem>
      <listitem>
	<para>fanout</para>
	<para>The fanout examples use a fanout exchange and do not use
	routing keys. Each binding specifies that all messages for a
	given exchange should be delivered to a given queue.
	</para>
      </listitem>
      <listitem>
	<para>pub-sub</para>
	<para>In the publish/subscribe examples, a publisher
	application writes messages to an exchange, specifying a
	multi-part key. A subscriber application subscribes to
	messages that match the relevant parts of these keys, using a
	private queue for each subscription.
	</para>
      </listitem>
      <listitem>
	<para>request-response</para>
	<para>In the request/response examples, a simple service accepts
	requests from clients and sends responses back to them. Clients
	create their own private queues and corresponding routing keys.
	When a client sends a request to the server, it specifies its
	own routing key in the reply-to field of the request. The
	server uses the client's reply-to field as the routing key for
	the response.
	</para>
      </listitem>
    </itemizedlist>
    <section role="h2" id="NETUserGuide-RunningtheExamples">
      <title>
	Running the
	Examples
      </title>
      <para>
	Before running the examples, you need to unzip the file
	Qpid.NET-net-2.0-M4.zip, the following tree is created:
      </para>
      
            
      <programlisting>
&lt;home&gt;
  |-qpid
     |-lib (contains the required dlls)
     |-examples
          |- direct
          |    |-example-direct-Listener.exe
          |    |-example-direct-Producer.exe
          |- fanout
          |    |-example-fanout-Listener.exe
          |    |-example-fanout-Producer.exe
          |- pub-sub
          |    |-example-pub-sub-Listener.exe
          |    |-example-pub-sub-Publisher.exe
          |- request-response
               |-example-request-response-Client.exe
               |-example-request-response-Server.exe
      </programlisting>
            
      
      <para>
	Make sure your PATH contains the directory
	&lt;home&gt;/qpid/lib
	The examples can be run by executing the provided exe files:
      </para>
          
            
      <programlisting>
$ cd &lt;home&gt;/qpid/examples/examplefolder
$ example-...-.exe [hostname] [portnumber]
      </programlisting>
      
      
      <para>
	where [hostname] is the qpid broker host name
	(default is localhost) and [portnumber] is the port number on which the
	qpid broker is accepting connection (default is 5672).
      </para>
      <!--h2-->
    </section>

    <section role="h2" id="NETUserGuide-CreatingandClosingSessions">
      <title>
	Creating
	and Closing Sessions
      </title>

    <para>
      All of the examples have been written using the Apache Qpid .NEt
      0.10 API. The examples use the same skeleton code to initialize
      the program, create a session, and clean up before exiting:
    </para>
    
    
    <programlisting>
using System;
using System.IO;
using System.Text;
using System.Threading;
using org.apache.qpid.client;
using org.apache.qpid.transport;

...

        private static void Main(string[] args)
        {
            string host = args.Length &gt; 0 ? args[0] : "localhost";
            int port = args.Length &gt; 1 ? Convert.ToInt32(args[1]) : 5672;
            Client connection = new Client();
            try
            {
                connection.connect(host, port, "test", "guest", "guest");
                ClientSession session = connection.createSession(50000);

                //--------- Main body of program --------------------------------------------

                connection.close();
            }
            catch (Exception e)
            {
                Console.WriteLine("Error: \n" + e.StackTrace);
            }
        }
...
    </programlisting>
      <!--h2-->
    </section>            
    
    <section role="h2" id="NETUserGuide-WritingDirectApplications">
      <title>
	Writing
	Direct Applications
      </title>

    <para>
      This section describes two programs that implement direct
      messaging using a Direct exchange:
      • org.apache.qpid.example.direct.Producer (from
      example-direct-producer) publishes messages to the amq.direct
      exchange, using the routing key routing_key.
      •org.apache.qpid.example.direct.Listener (from
      example-direct-Listener) uses a message listener to receive
      messages from the queue named message_queue.
    </para>
    <section role="h3" id="NETUserGuide-RunningtheDirectExamples">
      <title>
	Running the
	Direct Examples
      </title>
    <para>
      1) Make sure your PATH contains the directory
      &lt;home&gt;/qpid/lib
    </para>
    <para>
      2) Make sure that a qpid broker is running:
    </para>
    
    
    <programlisting>
$ ps -eaf | grep qpidd
    </programlisting>
            
    
    <para>
      If a broker is running, you should see the qpidd process in the
      output of the above
      command.
    </para>
    <para>
      3) Read the messages from the message queue using direct
      listener, as follows:
    </para>
    
    
    <programlisting>
$ cd &lt;home&gt;/qpid/examples/direct
    </programlisting>
            
    
    <para>
      With cygwin:
    </para>
    
    
    <programlisting>
$ ./example-direct-Listener.exe [hostname] [portnumber]
    </programlisting>
            
          
    <para>
      or with mono:
    </para>
          
            
    <programlisting>
$ mono ./example-direct-Listener.exe [hostname] [portnumber]
    </programlisting>
            
          
    <para>
      This program is waiting for messages to be published, see next
      step:
    </para>
    <para>
      4) Publish a series of messages to the amq.direct exchange by
      running direct producer, as follows:
    </para>
    
    
    <programlisting>
$ cd &lt;home&gt;/qpid/examples/direct
    </programlisting>
            
          
    <para>
      With cygwin:
    </para>
    
    
    <programlisting>
$ ./example-direct-Producer.exe  [hostname] [portnumber]
    </programlisting>
            
    
    <para>
      or with mono:
    </para>
    
    
    <programlisting>
$ mono ./example-direct-Producer.exe [hostname] [portnumber]
    </programlisting>
            
          
    <para>
      This program has no output; the messages are routed to the
      message queue, as instructed by the binding.
    </para>
    <para>
      5) Go to the windows where you are running your listener. You
      should see the following output:
    </para>
    
    
    <programlisting>
Message: Message 0
Message: Message 1
Message: Message 2
Message: Message 3
Message: Message 4
Message: Message 5
Message: Message 6
Message: Message 7
Message: Message 8
Message: Message 9
Message: That's all, folks!
    </programlisting>
            
    
    <para>
      Now we will examine the code for each of these programs. In each
      section, we will discuss only
      the code that must be added to the skeleton shown in Section
      "Creating and Closing Sessions".
    </para>
      <!--h3-->
    </section>

    <section role="h3" id="NETUserGuide-ReadingMessagesfromtheQueue">
      <title>
	Reading
	Messages from the Queue
      </title>

    <para>
      The program , listener.cs, is a message listener that receives
      messages from a queue.
    </para>
    <para>
      First it creates a queue named message_queue, then binds it to
      the amq.direct exchange using the binding key routing_key.
    </para>
    
    
    <programlisting>
//--------- Main body of program --------------------------------------------
// Create a queue named "message_queue", and route all messages whose
// routing key is "routing_key" to this newly created queue.
session.queueDeclare("message_queue");
session.exchangeBind("message_queue", "amq.direct", "routing_key");    
    </programlisting>
            
    
    <para>
      The queue created by this program continues to exist after the
      program exits, and any message whose routing key matches the key
      specified in the binding will be routed to the corresponding
      queue by the broker. Note that the queue could have been be
      deleted using the following code:
    </para>
    
    
    <programlisting>
session.queueDelete("message_queue");
    </programlisting>
    
    
    <para>
      To create a message listener, create a class derived from
      IMessageListener, and override the messageTransfer method,
      providing the code that should be executed when a message is
      received.
    </para>
    
    
    <programlisting>
public class MessageListener : IMessageListener
{
  ......
  public void messageTransfer(IMessage m)
  {
  .....
}
    </programlisting>
    
    
    <para>
      The main body of the program creates a listener for the
      subscription; attaches the listener to a message queue; and
      subscribe to the queue to receive messages from the queue.
    </para>
    
    
    <programlisting>
lock (session)
{
  // Create a listener and subscribe it to the queue named "message_queue"
  IMessageListener listener = new MessageListener(session);
  session.attachMessageListener(listener, "message_queue");                              
  session.messageSubscribe("message_queue");
  // Receive messages until all messages are received
  Monitor.Wait(session);
}
    </programlisting>
            
    
    <para>
      The MessageListener's messageTransfer() function is called
      whenever a message is received. In this example the message is
      printed and tested to see if it is the final message. Once the
      final message is received, the messages are acknowledged.
    </para>
    
    
    <programlisting>
BinaryReader reader = new BinaryReader(m.Body, Encoding.UTF8);
byte[] body = new byte[m.Body.Length - m.Body.Position];
reader.Read(body, 0, body.Length);
ASCIIEncoding enc = new ASCIIEncoding();
string message = enc.GetString(body);
 Console.WriteLine("Message: " + message);
// Add this message to the list of message to be acknowledged 
_range.add(m.Id);       
if( message.Equals("That's all, folks!") )
{
  // Acknowledge all the received messages 
  _session.messageAccept(_range);     
  lock(_session)
  {
      Monitor.Pulse(_session);
  }
}
    </programlisting>
      <!--h3-->
    </section>    
    
    <section role="h3" id="NETUserGuide-PublishingMessagestoaDirectExchange">
      <title>
	Publishing
	Messages to a Direct Exchange
      </title>
    <para>
      The second program in the direct example, Producer.cs, publishes
      messages to the amq.direct exchange using the routing key
      routing_key.
    </para>
    <para>
      First, create a message and set a routing key. The same routing
      key will be used for each message we send, so you only need to
      set this property once.
    </para>
    
    
    <programlisting>
IMessage message = new Message();
// The routing key is a message property. We will use the same
// routing key for each message, so we'll set this property
// just once. (In most simple cases, there is no need to set
// other message properties.)
message.DeliveryProperties.setRoutingKey("routing_key"); 
    </programlisting>
            
          
    <para>
      Now send some messages:
    </para>
          
            
    <programlisting>
// Asynchronous transfer sends messages as quickly as
// possible without waiting for confirmation.
for (int i = 0; i &lt; 10; i++)
{
  message.clearData();
  message.appendData(Encoding.UTF8.GetBytes("Message " + i));                  
  session.messageTransfer("amq.direct", message);                    
}
    </programlisting>
            
          
    <para>
      Send a final synchronous message to indicate termination:
    </para>
    
            
    <programlisting>
// And send a syncrhonous final message to indicate termination.
message.clearData();
message.appendData(Encoding.UTF8.GetBytes("That's all, folks!"));
session.messageTransfer("amq.direct", "routing_key", message); 
session.sync();
    </programlisting>
      <!--h3-->
    </section>
            
      <!--h2-->
    </section>

    
    <section role="h2" id="NETUserGuide-WritingFanoutApplications">
      <title>
	Writing
	Fanout Applications
      </title>

    <para>
      This section describes two programs that illustrate the use of a
      Fanout exchange.
    </para>
    <itemizedlist>
      <listitem>
	<para>Listener.cs makes a unique queue private for each instance of
	the listener, and binds that queue to the fanout exchange. All
	messages sent to the fanout exchange are delivered to each
	listener's queue.
	</para>
      </listitem>
      <listitem>
	<para>Producer.cs publishes messages to the fanout exchange. It
	does not use a routing key, which is not needed by the fanout
	exchange.
	</para>
      </listitem>
    </itemizedlist>
    <section role="h3" id="NETUserGuide-RunningtheFanoutExamples">
      <title>
	Running the
	Fanout Examples
      </title>

    <para>
      1) Make sure your PATH contains the directory
      &lt;home&gt;/qpid/lib
    </para>
    <para>
      2) Make sure that a qpid broker is running:
    </para>
    
    
    <programlisting>
$ ps -eaf | grep qpidd
    </programlisting>
    
    
    <para>
      If a broker is running, you should see the qpidd process in the
      output of the above
      command.
    </para>
    <para>
      3) In separate windows, start one or more fanout listeners as
      follows:
    </para>
    
    
    <programlisting>
$ cd &lt;home&gt;/qpid/examples/direct
    </programlisting>
            
    
    <para>
      With cygwin:
    </para>
    
    
    <programlisting>
$ ./example-fanout-Listener.exe [hostname] [portnumber]
    </programlisting>
            
    
    <para>
      or with mono:
    </para>
    
    
    <programlisting>
$ mono ./example-fanout-Listener.exe [hostname] [portnumber]
    </programlisting>
            
    
    <para>
      The listener creates a private queue, binds it to the amq.fanout
      exchange, and waits for messages to arrive on the queue. When the
      listener starts, you will see the following message:
    </para>
    
    
    <programlisting>
Listening
    </programlisting>
            
    
    <para>
      This program is waiting for messages to be published, see next
      step:
    </para>
    <para>
      4) In a separate window, publish a series of messages to the
      amq.fanout exchange by running fanout producer, as follows:
    </para>
    
    
    <programlisting>
$ cd &lt;home&gt;/qpid/examples/direct
    </programlisting>
            
    
    <para>
      With cygwin:
    </para>
    
    
    <programlisting>
$ ./example-fanout-Producer.exe  [hostname] [portnumber]
    </programlisting>
    
    
    <para>
      or with mono:
    </para>
    
    
    <programlisting>
$ mono ./example-fanout-Producer.exe [hostname] [portnumber]
    </programlisting>
    
    
    <para>
      This program has no output; the messages are routed to the
      message queue, as prescribed by the binding.
    </para>
    <para>
      5) Go to the windows where you are running listeners. You should
      see the following output for each listener:
    </para>
    
    
    <programlisting>
Message: Message 0
Message: Message 1
Message: Message 2
Message: Message 3
Message: Message 4
Message: Message 5
Message: Message 6
Message: Message 7
Message: Message 8
Message: Message 9
Message: That's all, folks!
    </programlisting>
            
    
    <para>
      Now we will examine the code for each of these programs. In each
      section, we will discuss only
      the code that must be added to the skeleton shown in Section
      "Creating and Closing Sessions".
    </para>

      <!--h3-->
    </section>

      <!--h2-->
    </section>

    <section role="h2" id="NETUserGuide-ConsumingfromaFanoutExchange">
      <title>
	Consuming from a
	Fanout Exchange
      </title>

    <para>
      The first program in the fanout example, Listener.cs, creates a
      private queue, binds it to the amq.fanout exchange, and waits for
      messages to arrive on the queue, printing them out as they
      arrive. It uses a Listener that is identical to the one used in
      the direct example:
    </para>
    
    
    <programlisting>
  public class MessageListener : IMessageListener
    {
        private readonly ClientSession _session;
        private readonly RangeSet _range = new RangeSet();
        public MessageListener(ClientSession session)
        {
            _session = session;
        }

        public void messageTransfer(IMessage m)
        {
            BinaryReader reader = new BinaryReader(m.Body, Encoding.UTF8);
            byte[] body = new byte[m.Body.Length - m.Body.Position];
            reader.Read(body, 0, body.Length);
            ASCIIEncoding enc = new ASCIIEncoding();
            string message = enc.GetString(body);
            Console.WriteLine("Message: " + message);
            // Add this message to the list of message to be acknowledged 
            _range.add(m.Id);
            if (message.Equals("That's all, folks!"))
            {
                // Acknowledge all the received messages 
                _session.messageAccept(_range);
                lock (_session)
                {
                    Monitor.Pulse(_session);
                }
            }
        }
    }
    </programlisting>
            
          
    <para>
      The listener creates a private queue to receive its messages and
      binds it to the fanout exchange:
    </para>
    
    
    <programlisting>
string myQueue = session.Name;
session.queueDeclare(myQueue, Option.EXCLUSIVE, Option.AUTO_DELETE);
session.exchangeBind(myQueue, "amq.fanout", "my-key");
    </programlisting>
            
    
    <para>
      Now we create a listener and subscribe it to the queue:
    </para>
    
    
    <programlisting>
lock (session)
{
   Console.WriteLine("Listening");
   // Create a listener and subscribe it to my queue.
   IMessageListener listener = new MessageListener(session);
   session.attachMessageListener(listener, myQueue);
   session.messageSubscribe(myQueue);
   // Receive messages until all messages are received
   Monitor.Wait(session);
}
    </programlisting>
            
    
    <section role="h3" id="NETUserGuide-PublishingMessagestotheFanoutExchange">
      <title>
	Publishing
	Messages to the Fanout Exchange
      </title>

    <para>
      The second program in this example, Producer.cs, writes messages
      to the fanout queue.
    </para>
    
    
    <programlisting>
// Unlike topic exchanges and direct exchanges, a fanout
// exchange need not set a routing key. 
IMessage message = new Message();
// Asynchronous transfer sends messages as quickly as
// possible without waiting for confirmation.
for (int i = 0; i &lt; 10; i++)
{
    message.clearData();
    message.appendData(Encoding.UTF8.GetBytes("Message " + i));
    session.messageTransfer("amq.fanout", message);
}

// And send a syncrhonous final message to indicate termination.
message.clearData();
message.appendData(Encoding.UTF8.GetBytes("That's all, folks!"));
session.messageTransfer("amq.fanout", message);
session.sync();
    </programlisting>

      <!--h3-->
    </section>

      <!--h2-->
    </section>            
    
    <section role="h2" id="NETUserGuide-WritingPublish-2FSubscribeApplications">
      <title>
	Writing
	Publish/Subscribe Applications
      </title>

    <para>
      This section describes two programs that implement
      Publish/Subscribe messaging using a topic exchange.
    </para>
    <para>
      • Publisher.cS sends messages to the amq.topic exchange,
      using the multipart routing keys usa.news, usa.weather,
      europe.news, and europe.weather.
      • Listener.cs creates private queues for news, weather,
      usa, and europe, binding them to the amq.topic exchange using
      bindings that match the corresponding parts of the multipart
      routing keys.
    </para>
    <para>
      In this example, the publisher creates messages for topics like
      news, weather, and sports that happen in regions like Europe,
      Asia, or the United States. A given consumer may be interested in
      all weather messages, regardless of region, or it may be
      interested in news and weather for the United States, but
      uninterested in items for other regions. In this example, each
      consumer sets up its own private queues, which receive precisely
      the messages that particular consumer is interested in.
    </para>
    <section role="h3" id="NETUserGuide-RunningthePublishSubscribeExamples">
      <title>
	Running
	the Publish-Subscribe Examples
      </title>
    <para>
      1) Make sure your PATH contains the directory
      &lt;home&gt;/qpid/lib
    </para>
    <para>
      2) Make sure that a qpid broker is running:
    </para>
    
    
    <programlisting>
$ ps -eaf | grep qpidd
    </programlisting>

    
    <para>
      If a broker is running, you should see the qpidd process in the
      output of the above
      command.
    </para>
    <para>
      3) In separate windows, start one or more topic subscribers as
      follows:
    </para>
    
    
    <programlisting>
$ cd &lt;home&gt;/qpid/examples/direct
    </programlisting>
            
    
    <para>
      With cygwin:
    </para>
    
    
    <programlisting>
$ ./example-pub-sub--Listener.exe [hostname] [portnumber]
    </programlisting>
            
    
    <para>
      or with mono:
    </para>
    
    
    <programlisting>
$ mono ./example-pub-sub-Listener.exe [hostname] [portnumber]
    </programlisting>
            
    
    <para>
      You will see output similar to this:
    </para>
    
    
    <programlisting>
Listening for messages ...
Declaring queue: usa
Declaring queue: europe
Declaring queue: news
Declaring queue: weather
    </programlisting>
    
    
    <para>
      Each topic consumer creates a set of private queues, and binds
      each queue to the amq.topic exchange together with a binding that
      indicates which messages should be routed to the queue.
    </para>
    <para>
      4) In another window, start the topic publisher, which publishes
      messages to the amq.topic exchange, as follows:
    </para>
    
    
    <programlisting>
$ cd &lt;home&gt;/qpid/examples/direct
    </programlisting>
            
    
    <para>
      With cygwin:
    </para>
    
    
    <programlisting>
$ ./example-pub-sub-Producer.exe  [hostname] [portnumber]
    </programlisting>
    
    
    <para>
      or with mono:
    </para>
    
    
    <programlisting>
$ mono ./example-pub-sub-Producer.exe [hostname] [portnumber]
    </programlisting>
            
    
    <para>
      This program has no output; the messages are routed to the
      message queues for each topic_consumer as specified by the
      bindings the consumer created.
    </para>
    <para>
      5) Go back to the window for each topic consumer. You should see
      output like this:
    </para>
    
    
    <programlisting>
Message: Message 0 from usa
Message: Message 0 from news
Message: Message 0 from weather
Message: Message 1 from usa
Message: Message 1 from news
Message: Message 2 from usa
Message: Message 2 from news
Message: Message 3 from usa
Message: Message 3 from news
Message: Message 4 from usa
Message: Message 4 from news
Message: Message 5 from usa
Message: Message 5 from news
Message: Message 6 from usa
Message: Message 6 from news
Message: Message 7 from usa
Message: Message 7 from news
Message: Message 8 from usa
Message: Message 8 from news
Message: Message 9 from usa
....
Message: That's all, folks! from weather
Shutting down listener for control
Message: That's all, folks! from europe
Shutting down listener for control
    </programlisting>
    
    
    <para>
      Now we will examine the code for each of these programs. In each
      section, we will discuss only
      the code that must be added to the skeleton shown in Section
      "Creating and Closing Sessions".
    </para>
      <!--h3-->
    </section>


    <section role="h3" id="NETUserGuide-PublishingMessagestoaTopicExchange">
      <title>
	Publishing
	Messages to a Topic Exchange
      </title>

    <para>
      The first program in the publish/subscribe example, Publisher.cs,
      defines two new functions: one that publishes messages to the
      topic exchange, and one that indicates that no more messages are
      coming.
    </para>
    <para>
      The publishMessages function publishes a series of five messages
      using the specified routing key.
    </para>
    
    
    <programlisting>
private static void publishMessages(ClientSession session, string routing_key)
{
 IMessage message = new Message();
 // Asynchronous transfer sends messages as quickly as
 // possible without waiting for confirmation.
 for (int i = 0; i &lt; 10; i++)
 {
    message.clearData();
    message.appendData(Encoding.UTF8.GetBytes("Message " + i));
    session.messageTransfer("amq.topic", routing_key, message);
 }
}
    </programlisting>
    
    
    <para>
      The noMoreMessages function signals the end of messages using the
      control routing key, which is reserved for control messages.
    </para>
    
    
    <programlisting>
private static void noMoreMessages(ClientSession session)
{
  IMessage message = new Message();
  // And send a syncrhonous final message to indicate termination.
  message.clearData();
  message.appendData(Encoding.UTF8.GetBytes("That's all, folks!"));
  session.messageTransfer("amq.topic", "control", message);
  session.sync();
}
    </programlisting>
    
    
    <para>
      In the main body of the program, messages are published using
      four different routing keys, and then the end of messages is
      indicated by a message sent to a separate routing key.
    </para>
    
    
    <programlisting>
publishMessages(session, "usa.news");
publishMessages(session, "usa.weather");
publishMessages(session, "europe.news");
publishMessages(session, "europe.weather");

noMoreMessages(session);
    </programlisting>
      <!--h3-->
    </section>    
    
    <section role="h3" id="NETUserGuide-ReadingMessagesfromtheQueue2">
      <title>
	Reading
	Messages from the Queue
      </title>

    <para>
      The second program in the publish/subscribe example, Listener.cs,
      creates a local private queue, with a unique name, for each of
      the four binding keys it specifies: usa.#, europe.#, #.news, and
      #.weather, and creates a listener.
    </para>
    
    
    <programlisting>
Console.WriteLine("Listening for messages ...");
// Create a listener                    
prepareQueue("usa", "usa.#", session);
prepareQueue("europe", "europe.#", session);
prepareQueue("news", "#.news", session);
prepareQueue("weather", "#.weather", session);
    </programlisting>
    
    
    <para>
      The prepareQueue() method creates a queue using a queue name and
      a routing key supplied as arguments it then attaches a listener
      with the session for the created queue and subscribe for this
      receiving messages from the queue:
    </para>
    
    
    <programlisting>
// Create a unique queue name for this consumer by concatenating
// the queue name parameter with the Session ID.     
Console.WriteLine("Declaring queue: " + queue);
session.queueDeclare(queue, Option.EXCLUSIVE, Option.AUTO_DELETE);

// Route messages to the new queue if they match the routing key.
// Also route any messages to with the "control" routing key to
// this queue so we know when it's time to stop. A publisher sends
// a message with the content "That's all, Folks!", using the
// "control" routing key, when it is finished.

session.exchangeBind(queue, "amq.topic", routing_key);
session.exchangeBind(queue, "amq.topic", "control");

// subscribe the listener to the queue
IMessageListener listener = new MessageListener(session);
session.attachMessageListener(listener, queue);
session.messageSubscribe(queue);
    </programlisting>
      <!--h3-->
    </section>    
      <!--h2-->
    </section>
    
    <section role="h2" id="NETUserGuide-WritingRequest-2FResponseApplications">
      <title>
	Writing
	Request/Response Applications
      </title>

    <para>
      In the request/response examples, we write a server that accepts
      strings from clients and converts them to upper case, sending the
      result back to the requesting client. This example consists of
      two programs.
    </para>
    <itemizedlist>
      <listitem>
	<para>Client.cs is a client application that sends messages to the
	server.
	• Server.cs is a service that accepts messages, converts
	their content to upper case, and sends the result to the
	amq.direct exchange, using the request's reply-to property as
	the routing key for the response.
	</para>
      </listitem>
    </itemizedlist>
    <section role="h3" id="NETUserGuide-RunningtheRequest-2FResponseExamples">
      <title>
	Running
	the Request/Response Examples
      </title>
    <para>
      1) Make sure your PATH contains the directory
      &lt;home&gt;/qpid/lib
    </para>
    <para>
      2) Make sure that a qpid broker is running:
    </para>
    
    
    <programlisting>
$ ps -eaf | grep qpidd
    </programlisting>
            
    
    <para>
      If a broker is running, you should see the qpidd process in the
      output of the above
      command.
    </para>
    <para>
      3) Run the server.
    </para>
    <para>
      $ cd &lt;home&gt;/qpid/examples/direct
    </para>
          
    
    <programlisting>
      With cygwin: 
    </programlisting>
            
          
    <para>
      $ ./example-request-response-Server.exe [hostname] [portnumber]
    </para>
          
            
    <programlisting>
      or with mono:
    </programlisting>
            
          
    <para>
      $ mono ./example-request-response-Server.exe  [hostname] [portnumber]
    </para>
          
            
    <programlisting>
      You will see output similar to this:
    </programlisting>
            
          
    <para>
      Waiting for requests
    </para>
    
    
    <programlisting>
4) In a separate window, start a client:

$ cd &lt;home&gt;/qpid/examples/direct
    </programlisting>
            
          
    <para>
      With cygwin:
    </para>
          
            
    <programlisting>
$ ./example-request-response-Client.exe [hostname] [portnumber]
    </programlisting>
            
          
    <para>
      or with mono:
    </para>
    
    
    <programlisting>
$ mono ./example-request-response-Client.exe [hostname] [portnumber]
    </programlisting>
            
    
    <para>
      You will see output similar to this:
    </para>
    
    
    <programlisting>
Activating response queue listener for: clientSystem.Byte[]
Waiting for all responses to arrive ...
Response: TWAS BRILLIG, AND THE SLITHY TOVES
Response: DID GIRE AND GYMBLE IN THE WABE.
Response: ALL MIMSY WERE THE BOROGROVES,
Response: AND THE MOME RATHS OUTGRABE.
Shutting down listener for clientSystem.Byte[]
Response: THAT'S ALL, FOLKS!
    </programlisting>
    
    
    <para>
      4) Go back to the server window, the output should be similar to
      this:
    </para>
    
    
    <programlisting>
Waiting for requests
Request: Twas brillig, and the slithy toves
Request: Did gire and gymble in the wabe.
Request: All mimsy were the borogroves,
Request: And the mome raths outgrabe.
Request: That's all, folks!
    </programlisting>
    
    
    <para>
      Now we will examine the code for each of these programs. In each
      section, we will discuss only the code that must be added to the
      skeleton shown in Section "Creating and Closing Sessions".
    </para>
      <!--h3-->
    </section>


    <section role="h3" id="NETUserGuide-TheClientApplication">
      <title>
	The Client
	Application
      </title>

    <para>
      The first program in the request-response example, Client.cs,
      sets up a private response queue to receive responses from the
      server, then sends messages the server, listening to the response
      queue for the server's responses.
    </para>
    
    
    <programlisting>
string response_queue = "client" + session.getName();
// Use the name of the response queue as the routing key
session.queueDeclare(response_queue);
session.exchangeBind(response_queue, "amq.direct", response_queue);

// Create a listener for the response queue and listen for response messages.
Console.WriteLine("Activating response queue listener for: " + response_queue);
IMessageListener listener = new ClientMessageListener(session);
session.attachMessageListener(listener, response_queue);
session.messageSubscribe(response_queue);
    </programlisting>
    
    
    <para>
      Set some properties that will be used for all requests. The
      routing key for a request is request.
      The reply-to property is set to the routing key for the client's
      private queue.
    </para>
    
    
    <programlisting>
IMessage request = new Message();
request.DeliveryProperties.setRoutingKey("request");
request.MessageProperties.setReplyTo(new ReplyTo("amq.direct", response_queue));
    </programlisting>
            
    
    <para>
      Now send some requests...
    </para>
    
    
    <programlisting>
string[] strs = {
                 "Twas brillig, and the slithy toves",
                 "Did gire and gymble in the wabe.",
                 "All mimsy were the borogroves,",
                 "And the mome raths outgrabe.",
                 "That's all, folks!"
                };
foreach (string s in strs)
{
 request.clearData();
 request.appendData(Encoding.UTF8.GetBytes(s));
 session.messageTransfer("amq.direct", request);
}
    </programlisting>
    
    
    <para>
      And wait for responses to arrive:
    </para>
    
    
    <programlisting>
Console.WriteLine("Waiting for all responses to arrive ...");
Monitor.Wait(session);
    </programlisting>
      <!--h3-->
    </section>            
    
    <section role="h3" id="NETUserGuide-TheServerApplication">
      <title>
	The Server
	Application
      </title>

    <para>
      The second program in the request-response example, Server.cs,
      uses the reply-to property as the routing key for responses.
    </para>
    <para>
      The main body of Server.cs creates an exclusive queue for
      requests, then waits for messages to arrive.
    </para>
    
    
    <programlisting>
const string request_queue = "request";
// Use the name of the request queue as the routing key
session.queueDeclare(request_queue);
session.exchangeBind(request_queue, "amq.direct", request_queue);

lock (session)
{
 // Create a listener and subscribe it to the request_queue      
 IMessageListener listener = new MessageListener(session);
 session.attachMessageListener(listener, request_queue);
 session.messageSubscribe(request_queue);
 // Receive messages until all messages are received
 Console.WriteLine("Waiting for requests");
 Monitor.Wait(session);
}
    </programlisting>
            
    
    <para>
      The listener's messageTransfer() method converts the request's
      content to upper case, then sends a response to the broker, using
      the request's reply-to property as the routing key for the
      response.
    </para>
    
    
    <programlisting>
BinaryReader reader = new BinaryReader(request.Body, Encoding.UTF8);
byte[] body = new byte[request.Body.Length - request.Body.Position];
reader.Read(body, 0, body.Length);
ASCIIEncoding enc = new ASCIIEncoding();
string message = enc.GetString(body);
Console.WriteLine("Request: " + message);
            
// Transform message content to upper case
string responseBody = message.ToUpper();

// Send it back to the user
response.clearData();
response.appendData(Encoding.UTF8.GetBytes(responseBody));
_session.messageTransfer("amq.direct", routingKey, response);
    </programlisting>

      <!--h3-->
    </section>
      <!--h2-->
    </section>
    <!--h1-->
	</section>
            
          
      </section>