Documentation: property for asynchronous sending incorrect in website tutorial
documentation
--------------------------------------------------------------------------------------------
Key: AMQNET-376
URL: https://issues.apache.org/jira/browse/AMQNET-376
Project: ActiveMQ .Net
Issue Type: Improvement
Components: ActiveMQ
Affects Versions: 1.5.3
Reporter: Andrew Liles
Assignee: Jim Gomes
Priority: Trivial
In this page
http://activemq.apache.org/nms/activemq-async-sends.html
there are 4 defects in the documentation:
1.
var cf = new ConnectionFactory("tcp://locahost:61616?nms.useAsyncSend=true");
should read
var cf = new ConnectionFactory("tcp://locahost:61616?nms.AsyncSend=true");
2.
((ConnectionFactory)connectionFactory).UseAsyncSend = true;
should read
((ConnectionFactory)connectionFactory).AsyncSend = true;
3.
((Apache.NMS.ActiveMQ.Connection)connection).UseAsyncSend = true;
should read:
((Apache.NMS.ActiveMQ.Connection)connection).AsyncSend = true;
4.
there is a link labelled "Should I use transactions"
which takes you this 404:
http://activemq.apache.org/ACTIVEMQ/should-i-use-transactions.html
the link should take you here:
http://activemq.apache.org/should-i-use-transactions.html
Compare with: http://activemq.apache.org/async-sends.html
Other documentation that might have defects like 1,2,3:
On http://activemq.apache.org/nms/activemq-uri-configuration.html
connection.AsyncSend is correctly listed, (no nms.* settings are shown).
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira