Author: rhs
Date: Wed Oct 24 19:02:26 2012
New Revision: 1401826

URL: http://svn.apache.org/viewvc?rev=1401826&view=rev
Log:
added intro to proton-c README and added java README

Added:
    qpid/proton/trunk/proton-j/README
Modified:
    qpid/proton/trunk/proton-c/README

Modified: qpid/proton/trunk/proton-c/README
URL: 
http://svn.apache.org/viewvc/qpid/proton/trunk/proton-c/README?rev=1401826&r1=1401825&r2=1401826&view=diff
==============================================================================
--- qpid/proton/trunk/proton-c/README (original)
+++ qpid/proton/trunk/proton-c/README Wed Oct 24 19:02:26 2012
@@ -1,3 +1,29 @@
+Proton is library for speaking AMQP, including:
+
+  + The AMQP Messenger API, a simple but powerful interface to send
+    and receive messages over AMQP.
+
+  + The AMQP Protocol Engine, a succinct encapsulation of the full
+    AMQP protocol machinery.
+
+Proton is designed for maximum embeddability:
+
+  + minimal dependencies
+
+  + minimal assumptions about application threading model
+
+Proton is designed to scale up and down:
+
+  + transparently supports both simple peer to peer messaging and
+    complex globally federated topologies
+
+Proton is multi-lingual:
+
+  + designed for easy language bindings
+     - includes full fidelity data exchange:
+         maps, lists, strings, custom data structures, and more
+
+Please see http://qpid.apache.org/proton for a more info.
 
 == Build Instructions ==
 

Added: qpid/proton/trunk/proton-j/README
URL: 
http://svn.apache.org/viewvc/qpid/proton/trunk/proton-j/README?rev=1401826&view=auto
==============================================================================
--- qpid/proton/trunk/proton-j/README (added)
+++ qpid/proton/trunk/proton-j/README Wed Oct 24 19:02:26 2012
@@ -0,0 +1,45 @@
+Proton is library for speaking AMQP, including:
+
+  + The AMQP Messenger API, a simple but powerful interface to send
+    and receive messages over AMQP.
+
+  + The AMQP Protocol Engine, a succinct encapsulation of the full
+    AMQP protocol machinery.
+
+Proton is designed for maximum embeddability:
+
+  + minimal dependencies
+
+  + minimal assumptions about application threading model
+
+Proton is designed to scale up and down:
+
+  + transparently supports both simple peer to peer messaging and
+    complex globally federated topologies
+
+Proton is multi-lingual:
+
+  + designed for easy language bindings
+     - includes full fidelity data exchange:
+         maps, lists, strings, custom data structures, and more
+
+Please see http://qpid.apache.org/proton for a more info.
+
+== Build Instructions ==
+
+To use the java implementation via jython, follow these instructions
+from the directory containing this file:
+
+  mvn compile
+  export JYTHON_PATH=$PWD/target/classes
+
+Once this is done you can run the python test suite via jython to
+validate the java implementation:
+
+  tests/jython-test
+
+You can also set the PROTON_TESTS environment variable if you wish to
+run the test suite as part of the maven build:
+
+  export PROTON_TESTS=$PWD/tests
+  mvn test



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to