summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-05-29 18:29:37 +0000
committerStephen D. Huston <shuston@apache.org>2009-05-29 18:29:37 +0000
commit9821f413a4a9f25fdcae617a9bebf73cf21cb71a (patch)
treefca7cca484dddc71495c7eca77bb7120175b6d33 /qpid/cpp
parent770f751a27220a1a81680cfdff041684778e5f85 (diff)
downloadqpid-python-9821f413a4a9f25fdcae617a9bebf73cf21cb71a.tar.gz
Added some Windows-related info
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@780060 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/examples/README26
1 files changed, 23 insertions, 3 deletions
diff --git a/qpid/cpp/examples/README b/qpid/cpp/examples/README
index 7bf35b53de..f28eb29937 100644
--- a/qpid/cpp/examples/README
+++ b/qpid/cpp/examples/README
@@ -11,9 +11,12 @@ each example.
Ex:- ./declare_queues 127.0.0.1 5673
-The qpid C++ broker (known as qpidd) is found
-- if installed, installed as /usr/sbin/qpidd
-- in /path-to-qpid-source/cpp/src/
+When the Qpid C++ broker is installed, it is located in:
+- Linux: /usr/sbin/qpidd
+- Windows: C:\Program Files\Apache\qpidc-0.5\bin\qpidd.exe
+
+In a C++ source distribution the broker is located in the src subdirectory
+(generally, from this examples directory, ../src).
== Direct ==
@@ -40,6 +43,11 @@ On Linux:
# ./direct_producer
# ./listener
+On Windows:
+ C:\Program Files\Apache\qpidc-0.5\examples\direct> declare_queues
+ C:\Program Files\Apache\qpidc-0.5\examples\direct> direct_producer
+ C:\Program Files\Apache\qpidc-0.5\examples\direct> listener
+
== Fanout ==
This is an example on how to create Fanout exchange applications using Qpid.
@@ -64,6 +72,10 @@ On Linux:
# ./listener
# ./fanout_producer
+On Windows:
+ C:\Program Files\Apache\qpidc-0.5\examples\fanout> listener
+ C:\Program Files\Apache\qpidc-0.5\examples\direct> fanout_producer
+
== Publisher/Subscriber ==
Showing The ability to create topic Publishers and Subscribers using Qpid is
@@ -91,6 +103,10 @@ On Linux:
# ./topic_listener
# ./topic_publisher
+On Windows:
+ C:\Program Files\Apache\qpidc-0.5\examples\pub-sub> topic_listener
+ C:\Program Files\Apache\qpidc-0.5\examples\pub-sub> topic_publisher
+
== Request/Response ==
This example shows a simple server that will accept string from a client and
@@ -111,6 +127,10 @@ On Linux:
# ./server
# ./client
+On Windows:
+ C:\Program Files\Apache\qpidc-0.5\examples\request-response> server
+ C:\Program Files\Apache\qpidc-0.5\examples\request-response> client
+
== QMF Agent ==
This example demonstrates integration with the Qpid Management Framework (QMF).