You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2010/11/14 18:37:35 UTC

svn commit: r1035027 - /qpid/trunk/qpid/java/client/example/src/main/java/README.txt

Author: robbie
Date: Sun Nov 14 17:37:35 2010
New Revision: 1035027

URL: http://svn.apache.org/viewvc?rev=1035027&view=rev
Log:
QPID-2943: remove references from the README.txt file to examples that no longer exist

Modified:
    qpid/trunk/qpid/java/client/example/src/main/java/README.txt

Modified: qpid/trunk/qpid/java/client/example/src/main/java/README.txt
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/client/example/src/main/java/README.txt?rev=1035027&r1=1035026&r2=1035027&view=diff
==============================================================================
--- qpid/trunk/qpid/java/client/example/src/main/java/README.txt (original)
+++ qpid/trunk/qpid/java/client/example/src/main/java/README.txt Sun Nov 14 17:37:35 2010
@@ -23,267 +23,11 @@ Note: you must have write privileges to 
 the examples.
 
 
-Running the Direct Examples
+Running the Examples
 ===========================
 
 To run these programs, do the following:
 
-   1. Make sure that a qpidd broker is running:
-
-      $ ps -eaf | grep qpidd
-
-      If a broker is running, you should see the qpidd process in the
-      output of the above command.
-
-   2. In the java directory, use runSample.sh to run the Consumer
-      program:
-
-      $  ./runSample.sh org.apache.qpid.example.jmsexample.direct.Consumer
-      Using QPID_HOME: /usr/share/java/
-      Using QPID_SAMPLE: /usr/share/doc/rhm-0.3
-      Consumer: Setting an ExceptionListener on the connection as sample uses a MessageConsumer
-      Consumer: Creating a non-transacted, auto-acknowledged session
-      Consumer: Creating a MessageConsumer
-      Consumer: Starting connection so MessageConsumer can receive messages
-
-   3. In a separate window, use runSample.sh to run the Producer
-      program:
-
-      $  ./runSample.sh org.apache.qpid.example.jmsexample.direct.Producer
-      Using QPID_HOME: /usr/share/java/
-      Using QPID_SAMPLE: /usr/share/doc/rhm-0.3
-      Producer: Creating a non-transacted, auto-acknowledged session
-      Producer: Creating a Message Producer
-      Producer: Creating a TestMessage to send to the destination
-      Producer: Sending message: 1
-      Producer: Sending message: 2
-      Producer: Sending message: 3
-      Producer: Sending message: 4
-      Producer: Sending message: 5
-      Producer: Sending message: 6
-      Producer: Sending message: 7
-      Producer: Sending message: 8
-      Producer: Sending message: 9
-      Producer: Sending message: 10
-      Producer: Closing connection
-      Producer: Closing JNDI context
-
-   4. Now go back to the window where the Consumer program is
-      running. You should see the following output:
-
-      Consumer: Received  message:  Message 1
-      Consumer: Received  message:  Message 2
-      Consumer: Received  message:  Message 3
-      Consumer: Received  message:  Message 4
-      Consumer: Received  message:  Message 5
-      Consumer: Received  message:  Message 6
-      Consumer: Received  message:  Message 7
-      Consumer: Received  message:  Message 8
-      Consumer: Received  message:  Message 9
-      Consumer: Received  message:  Message 10
-      Consumer: Received final message That's all, folks!
-      Consumer: Closing connection
-      Consumer: Closing JNDI context
-
-
-
-Running the Fanout Examples
-===========================
-
-To run these programs, do the following:
-
-   1. Make sure that a qpidd broker is running:
-
-      $ ps -eaf | grep qpidd
-
-      If a broker is running, you should see the qpidd process in the
-      output of the above command.
-
-   2. In the java directory, use runSample.sh to run the Consumer or
-   Listener program, specifying a unique queue name, which must be
-   “fanoutQueue1”, “fanoutQueue2”, or “fanoutQueue3”:
-
-      $ ./runSample.sh org.apache.qpid.example.jmsexample.fanout.Consumer fanoutQueue1
-      Using QPID_HOME: /usr/share/java/
-      Using QPID_SAMPLE: /usr/share/doc/rhm-0.3
-      Consumer: Setting an ExceptionListener on the connection as sample uses a MessageConsumer
-      Consumer: Creating a non-transacted, auto-acknowledged session
-      Consumer: Creating a MessageConsumer
-      Consumer: Starting connection so MessageConsumer can receive messages
-
-      You can do this in up to three windows, specifying a different
-      name for each queue.
-
-   3. In a separate window, use runSample.sh to run the Producer
-   program:
-
-      $  ./runSample.sh org.apache.qpid.example.jmsexample.fanout.Producer
-      Using QPID_HOME: /usr/share/java/
-      Using QPID_SAMPLE: /usr/share/doc/rhm-0.3
-      Producer: Creating a non-transacted, auto-acknowledged session
-      Producer: Creating a Message Producer
-      Producer: Creating a TestMessage to send to the destination
-      Producer: Sending message: 1
-      Producer: Sending message: 2
-      Producer: Sending message: 3
-      Producer: Sending message: 4
-      Producer: Sending message: 5
-      Producer: Sending message: 6
-      Producer: Sending message: 7
-      Producer: Sending message: 8
-      Producer: Sending message: 9
-      Producer: Sending message: 10
-      Producer: Closing connection
-      Producer: Closing JNDI context
-
-   4. Now go back to the window where the Listener program is
-   running. You should see output like this:
-
-      Consumer: Received  message:  Message 1
-      Consumer: Received  message:  Message 2
-      Consumer: Received  message:  Message 3
-      Consumer: Received  message:  Message 4
-      Consumer: Received  message:  Message 5
-      Consumer: Received  message:  Message 6
-      Consumer: Received  message:  Message 7
-      Consumer: Received  message:  Message 8
-      Consumer: Received  message:  Message 9
-      Consumer: Received  message:  Message 10
-      Consumer: Received final message That's all, folks!
-      Consumer: Closing connection
-      Consumer: Closing JNDI context
-
-
-Running the Publish/Subscribe Examples
-======================================
-
-To run these programs, do the following:
-
-   1. Make sure that a qpidd broker is running:
-
-      $ ps -eaf | grep qpidd
-
-      If a broker is running, you should see the qpidd process in the
-      output of the above command.
-
-   2. In the java directory, use runSample.sh to run the Listener
-      program:
-
-      $  ./runSample.sh org.apache.qpid.example.jmsexample.pubsub.Listener
-      Using QPID_HOME: /usr/share/java/
-      Using QPID_SAMPLE: /usr/share/doc/rhm-0.3
-      Listener: Setting an ExceptionListener on the connection as sample uses a TopicSubscriber
-      Listener: Creating a non-transacted, auto-acknowledged session
-      Listener: Creating a Message Subscriber for topic usa
-      Listener: Creating a Message Subscriber for topic europe
-      Listener: Creating a Message Subscriber for topic news
-      Listener: Creating a Message Subscriber for topic weather
-      Listener: Starting connection so TopicSubscriber can receive messages
-
-   3. In a separate window, use runSample.sh to run the Publisher
-      program:
-
-      $  ./runSample.sh org.apache.qpid.example.jmsexample.pubsub.Publisher
-      Using QPID_HOME: /usr/share/java/
-      Using QPID_SAMPLE: /usr/share/doc/rhm-0.3
-      Publisher: Creating a non-transacted, auto-acknowledged session
-      Publisher: Creating a TestMessage to send to the topics
-      Publisher: Creating a Message Publisher for topic usa.weather
-      Publisher: Sending message 1
-      Publisher: Sending message 2
-      Publisher: Sending message 3
-      Publisher: Sending message 4
-      Publisher: Sending message 5
-      Publisher: Sending message 6
-      Publisher: Creating a Message Publisher for topic usa.news
-      Publisher: Sending message 1
-      Publisher: Sending message 2
-      Publisher: Sending message 3
-      Publisher: Sending message 4
-      Publisher: Sending message 5
-      Publisher: Sending message 6
-      Publisher: Creating a Message Publisher for topic europe.weather
-      Publisher: Sending message 1
-      Publisher: Sending message 2
-      Publisher: Sending message 3
-      Publisher: Sending message 4
-      Publisher: Sending message 5
-      Publisher: Sending message 6
-      Publisher: Creating a Message Publisher for topic europe.news
-      Publisher: Sending message 1
-      Publisher: Sending message 2
-      Publisher: Sending message 3
-      Publisher: Sending message 4
-      Publisher: Sending message 5
-      Publisher: Sending message 6
-      Publisher: Closing connection
-      Publisher: Closing JNDI context
-
-   4. Now go back to the window where the Listener program is
-      running. You should see output like this:
-
-      Listener: Received message for topic: usa: message 1
-      Listener: Received message for topic: weather: message 1
-      Listener: Received message for topic: usa: message 2
-      Listener: Received message for topic: weather: message 2
-      Listener: Received message for topic: usa: message 3
-      Listener: Received message for topic: weather: message 3
-      Listener: Received message for topic: usa: message 4
-      Listener: Received message for topic: weather: message 4
-      Listener: Received message for topic: usa: message 5
-      Listener: Received message for topic: weather: message 5
-      Listener: Received message for topic: usa: message 6
-      Listener: Received message for topic: weather: message 6
-      . . .
-      Listener: Shutting down listener for news
-      Listener: Shutting down listener for weather
-      Listener: Shutting down listener for usa
-      Listener: Shutting down listener for europe
-      Listener: Closing connection
-      Listener: Closing JNDI context
-
-
-Running the Request/Response Examples
-=====================================
-
-To run these programs, do the following:
-
-   1. Make sure that a qpidd broker is running:
-
-      $ ps -eaf | grep qpidd
-
-      If a broker is running, you should see the qpidd process in the output of the above command. 
-
-   2. In the java directory, use runSample.sh to run the Server
-      program:
-
-      $ ./runSample.sh org.apache.qpid.example.jmsexample.requestResponse.Server
-      Using QPID_HOME: /usr/share/java/
-      Using QPID_SAMPLE: /usr/share/doc/rhm-0.3
-      Server: Setting an ExceptionListener on the connection as sample uses a MessageConsumer
-      Server: Creating a non-transacted, auto-acknowledged session
-      Server: Creating a MessageConsumer
-      Server: Creating a MessageProducer
-      Server: Starting connection so MessageConsumer can receive messages
-
-   3. In a separate window, use runSample.sh to run the Client
-      program:
-
-      $ ./runSample.sh org.apache.qpid.example.jmsexample.requestResponse.Client
-      Using QPID_HOME: /usr/share/java/
-      Using QPID_SAMPLE: /usr/share/doc/rhm-0.3
-      Client: Setting an ExceptionListener on the connection as sample uses a MessageConsumer
-      Client: Creating a non-transacted, auto-acknowledged session
-      Client: Creating a QueueRequestor
-      Client: Starting connection
-      Client:         Request Content= Twas brillig, and the slithy toves
-      Client:         Response Content= TWAS BRILLIG, AND THE SLITHY TOVES
-      Client:         Request Content= Did gire and gymble in the wabe.
-      Client:         Response Content= DID GIRE AND GYMBLE IN THE WABE.
-      Client:         Request Content= All mimsy were the borogroves,
-      Client:         Response Content= ALL MIMSY WERE THE BOROGROVES,
-      Client:         Request Content= And the mome raths outgrabe.
-      Client:         Response Content= AND THE MOME RATHS OUTGRABE.
-      Client: Closing connection
-      Client: Closing JNDI context
-
+   1. Make sure that a Qpid broker is running.
+   2. In the java directory, use runSample.sh to run the program:
+      $  ./runSample.sh <class name> <arguments>
\ No newline at end of file



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org