summaryrefslogtreecommitdiff
path: root/cpp/examples
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
commit2dbe3051984f6b93e357a94b8a01f768e1c412bf (patch)
treea86934d09e617e2b0628ba44c07c0620f4c64841 /cpp/examples
parent58fae72a6e0f73226a5e4eb7e879810e602fb3d8 (diff)
downloadqpid-python-2dbe3051984f6b93e357a94b8a01f768e1c412bf.tar.gz
Added some Windows-related info
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@780060 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/examples')
-rw-r--r--cpp/examples/README26
1 files changed, 23 insertions, 3 deletions
diff --git a/cpp/examples/README b/cpp/examples/README
index 7bf35b53de..f28eb29937 100644
--- a/cpp/examples/README
+++ b/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).