You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2018/09/07 16:09:26 UTC

[08/18] qpid-interop-test git commit: QPIDIT-125: Updated QUICKSTART.md to include info on installing Amqp.Net Lite

QPIDIT-125: Updated QUICKSTART.md to include info on installing Amqp.Net Lite


Project: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/commit/a8fd570e
Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/a8fd570e
Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/a8fd570e

Branch: refs/heads/0.2.x
Commit: a8fd570e833336ef3c60ebb58b88d08001d44a20
Parents: 1612465
Author: Kim van der Riet <kp...@apache.org>
Authored: Mon Jul 9 12:37:06 2018 -0400
Committer: Kim van der Riet <kp...@apache.org>
Committed: Mon Jul 9 12:47:35 2018 -0400

----------------------------------------------------------------------
 QUICKSTART.md | 29 +++++++++++++++++++++++++----
 1 file changed, 25 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/a8fd570e/QUICKSTART.md
----------------------------------------------------------------------
diff --git a/QUICKSTART.md b/QUICKSTART.md
index 6f33dba..d123ac7 100644
--- a/QUICKSTART.md
+++ b/QUICKSTART.md
@@ -319,16 +319,37 @@ errors in the test on CentOS7 (which does not yet auto-detect but assumes the av
 
 ### 5.1 AMQP.Net Lite Client
 
-(TODO: import details to this document)
-
 A detailed description of how to install and run the AMQP.Net Lite client on Fedora may be found at Apache
 JIRA [QPIDIT-105](https://issues.apache.org/jira/browse/QPIDIT-105), and can easily be adapted to other
 Linux operating systems. The following packages need to be installed:
 
  * Mono
- * Pre-compiled AMQP.Net Lite library
+ * Pre-compiled AMQP.Net Lite library (available from https://www.nuget.org/api/v2/package/AMQPNetLite/)
+
+See the above JIRA for detailed instructions. Here is a summary:
+
+Download/install the Amqp.Net Lite dlls. They are initially zipped, unzip them into a well-known location.
+Make sure you can find the path to the required .dll file for the version you are using, for example:
+
+```
+/abs/path/to/amqp.netlite/lib/net45
+```
+
+When building qpid-interop-test (section 3 above), add the following environment variable to the cmake parameters:
+`-DAMQPNETLITE_LIB_DIR=<abs/path/to/amqp.netlite/lib/net45>`. When cmake completes, look for the following:
+
+```
+-- BUILD_AMQPNETLITE = ON
+```
+
+which shows that the dll was found and the .netlite tests will be enabled. If you see the following,
+then the required dll was not found:
 
-See the above JIRA for detailed instructions.
+```
+-- BUILD_AMQPNETLITE = OFF
+```
+The messages immediately preceding this will give a clue as to why it was not found, one of `AMQPNETLITE_LIB_DIR`
+not defined or `Amqp.Net.dll` was not found in the path.
 
 ### 5.2 Rhea JavaScript Client
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org