svn commit: r1774130 - in /qpid/java/trunk: systests/src/test/java/org/apache/qpid/server/queue/ systests/src/test/java/org/apache/qpid/test/client/queue/ test-profiles/

2016-12-14 Thread kwall
Author: kwall
Date: Wed Dec 14 08:38:21 2016
New Revision: 1774130

URL: http://svn.apache.org/viewvc?rev=1774130&view=rev
Log:
QPID-7546: Refactor LastValueQueueTest to avoid use of non-public APIs (use 
ADDRs for both the 0-9 and 0-10 paths)

Eliminated LVQTest which essentially duplicated LastValueQueueTest

Removed:

qpid/java/trunk/systests/src/test/java/org/apache/qpid/test/client/queue/LVQTest.java
Modified:

qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/queue/LastValueQueueTest.java
qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes
qpid/java/trunk/test-profiles/JavaPre010Excludes

Modified: 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/queue/LastValueQueueTest.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/queue/LastValueQueueTest.java?rev=1774130&r1=1774129&r2=1774130&view=diff
==
--- 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/queue/LastValueQueueTest.java
 (original)
+++ 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/queue/LastValueQueueTest.java
 Wed Dec 14 08:38:21 2016
@@ -41,11 +41,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 import org.apache.qpid.QpidException;
-import org.apache.qpid.client.AMQDestination;
-import org.apache.qpid.client.AMQQueue;
-import org.apache.qpid.client.AMQSession;
 import org.apache.qpid.test.utils.QpidBrokerTestCase;
-import org.apache.qpid.url.AMQBindingURL;
 
 public class LastValueQueueTest extends QpidBrokerTestCase
 {
@@ -65,13 +61,14 @@ public class LastValueQueueTest extends
 private Session _consumerSession;
 private MessageConsumer _consumer;
 
-protected void setUp() throws Exception
+@Override
+public void setUp() throws Exception
 {
 super.setUp();
 
 _queueName = getTestQueueName();
 _producerConnection = getConnection();
-_producerSession = _producerConnection.createSession(false, 
Session.AUTO_ACKNOWLEDGE);
+_producerSession = _producerConnection.createSession(true, 
Session.SESSION_TRANSACTED);
 }
 
 public void testConflation() throws Exception
@@ -85,6 +82,7 @@ public class LastValueQueueTest extends
 for (int msg = 0; msg < MSG_COUNT; msg++)
 {
 _producer.send(nextMessage(msg, _producerSession));
+_producerSession.commit();
 }
 
 _producer.close();
@@ -95,8 +93,8 @@ public class LastValueQueueTest extends
 _consumerConnection.start();
 Message received;
 
-List messages = new ArrayList();
-while((received = _consumer.receive(1000))!=null)
+List messages = new ArrayList<>();
+while((received = _consumer.receive(getReceiveTimeout())) != null)
 {
 messages.add(received);
 }
@@ -122,17 +120,14 @@ public class LastValueQueueTest extends
 for (int msg = 0; msg < MSG_COUNT/2; msg++)
 {
 _producer.send(nextMessage(msg, _producerSession));
-
+_producerSession.commit();
 }
 
-// HACK to do something synchronous
-syncProducerSession();
-
 _consumer = _consumerSession.createConsumer(_queue);
 _consumerConnection.start();
 Message received;
-List messages = new ArrayList();
-while((received = _consumer.receive(1000))!=null)
+List messages = new ArrayList<>();
+while((received = _consumer.receive(getReceiveTimeout())) != null)
 {
 messages.add(received);
 }
@@ -156,17 +151,14 @@ public class LastValueQueueTest extends
 for (int msg = MSG_COUNT/2; msg < MSG_COUNT; msg++)
 {
 _producer.send(nextMessage(msg, _producerSession));
+_producerSession.commit();
 }
 
-
-// HACK to do something synchronous
-syncProducerSession();
-
 _consumer = _consumerSession.createConsumer(_queue);
 _consumerConnection.start();
 
-messages = new ArrayList();
-while((received = _consumer.receive(1000))!=null)
+messages = new ArrayList<>();
+while((received = _consumer.receive(getReceiveTimeout())) != null)
 {
 messages.add(received);
 }
@@ -194,16 +186,14 @@ public class LastValueQueueTest extends
 for (int msg = 0; msg < MSG_COUNT/2; msg++)
 {
 _producer.send(nextMessage(msg, _producerSession));
+_producerSession.commit();
 }
 
-// HACK to do something synchronous
-syncProducerSession();
-
 _consumer = _consumerSession.createConsumer(_queue);
 _consumerConnection.start();
 Message received;
-List messages = new ArrayList();
-while((received = _consumer.receive(1000))!=null)
+List messages = new ArrayList<>();
+while((received = _consumer

svn commit: r1774132 - in /qpid/java/trunk/test-profiles: Java10Excludes Java10UninvestigatedTestsExcludes

2016-12-14 Thread kwall
Author: kwall
Date: Wed Dec 14 08:38:28 2016
New Revision: 1774132

URL: http://svn.apache.org/viewvc?rev=1774132&view=rev
Log:
QPID-7546: Mark ModelTest as excluded from the AMQP1.0 profile.  This test uses 
AMQP 0-8..0-10 only features (queue creation etc) which have no equivilent in 
AMQP 1.0.

Modified:
qpid/java/trunk/test-profiles/Java10Excludes
qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes

Modified: qpid/java/trunk/test-profiles/Java10Excludes
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/test-profiles/Java10Excludes?rev=1774132&r1=1774131&r2=1774132&view=diff
==
--- qpid/java/trunk/test-profiles/Java10Excludes (original)
+++ qpid/java/trunk/test-profiles/Java10Excludes Wed Dec 14 08:38:28 2016
@@ -37,6 +37,7 @@ org.apache.qpid.ra.QpidRAXAResourceTest#
 org.apache.qpid.test.client.ImmediateAndMandatoryPublishingTest#*
 org.apache.qpid.test.client.CloseOnNoRouteForMandatoryMessageTest#*
 org.apache.qpid.server.exchange.ReturnUnroutableMandatoryMessageTest#*
+org.apache.qpid.server.queue.ModelTest#*
 
 // Exclude tests of connection URL failover method property
 org.apache.qpid.server.failover.FailoverMethodTest#*

Modified: qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes?rev=1774132&r1=1774131&r2=1774132&view=diff
==
--- qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes (original)
+++ qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes Wed Dec 14 
08:38:28 2016
@@ -30,7 +30,6 @@ org.apache.qpid.client.redelivered.Redel
 org.apache.qpid.client.SynchReceiveTest#*
 org.apache.qpid.server.security.acl.ExternalACLTest#*
 org.apache.qpid.server.security.acl.ExhaustiveACLTest#*
-org.apache.qpid.server.queue.ModelTest#*
 org.apache.qpid.test.unit.topic.DurableSubscriptionTest#*
 org.apache.qpid.test.unit.client.MaxDeliveryCountTest#*
 org.apache.qpid.systest.rest.ConnectionRestTest#*



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



svn commit: r1774135 - in /qpid/java/trunk: systests/src/test/java/org/apache/qpid/server/logging/ConsumerLoggingTest.java test-profiles/Java10Excludes test-profiles/Java10UninvestigatedTestsExcludes

2016-12-14 Thread kwall
Author: kwall
Date: Wed Dec 14 08:38:51 2016
New Revision: 1774135

URL: http://svn.apache.org/viewvc?rev=1774135&view=rev
Log:
QPID-7546: Enable parts of ConsumerLoggingTest relating to point to point 
queues on the AMQP 1.0 test profile

Modified:

qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/logging/ConsumerLoggingTest.java
qpid/java/trunk/test-profiles/Java10Excludes
qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes

Modified: 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/logging/ConsumerLoggingTest.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/logging/ConsumerLoggingTest.java?rev=1774135&r1=1774134&r2=1774135&view=diff
==
--- 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/logging/ConsumerLoggingTest.java
 (original)
+++ 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/logging/ConsumerLoggingTest.java
 Wed Dec 14 08:38:51 2016
@@ -31,7 +31,6 @@ import javax.jms.Queue;
 import javax.jms.Session;
 import javax.jms.Topic;
 
-import org.apache.qpid.client.AMQConnection;
 import org.apache.qpid.server.model.Consumer;
 
 /**
@@ -59,15 +58,18 @@ public class ConsumerLoggingTest extends
 {
 setSystemProperty(Consumer.SUSPEND_NOTIFICATION_PERIOD, "100");
 super.setUp();
-//Remove broker startup logging messages
-_monitor.markDiscardPoint();
 
 _connection = getConnection();
 
 _session = _connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
 
-_queue = _session.createQueue(getTestQueueName() + "Queue");
-_topic = _session.createTopic(getTestQueueName() + "Topic");
+final String queueName = getTestQueueName() + "Queue";
+final String topicName = getTestQueueName() + "Topic";
+_queue = createTestQueue(_session, queueName);
+_topic = createTopic(_connection, topicName);
+
+//Remove broker startup logging messages
+_monitor.markDiscardPoint();
 }
 
 /**
@@ -296,12 +298,11 @@ public class ConsumerLoggingTest extends
 public void testSubscriptionSuspend() throws Exception, IOException
 {
 //Close session with large prefetch
-_session.close();
-
+_connection.close();
 int PREFETCH = 15;
+_connection = getConnectionWithPrefetch(PREFETCH);
+_session = _connection.createSession(true, Session.SESSION_TRANSACTED);
 
-//Create new session with small prefetch
-_session = ((AMQConnection) _connection).createSession(true, 
Session.SESSION_TRANSACTED, PREFETCH);
 
 MessageConsumer consumer = _session.createConsumer(_queue);
 

Modified: qpid/java/trunk/test-profiles/Java10Excludes
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/test-profiles/Java10Excludes?rev=1774135&r1=1774134&r2=1774135&view=diff
==
--- qpid/java/trunk/test-profiles/Java10Excludes (original)
+++ qpid/java/trunk/test-profiles/Java10Excludes Wed Dec 14 08:38:51 2016
@@ -172,8 +172,9 @@ org.apache.qpid.test.client.message.JMSD
 // test of 0-x client threading / exception handling
 org.apache.qpid.test.unit.close.JavaServerCloseRaceConditionTest#*
 
-
-
+// Durable topic subscriptions will be reimplemented with the shared topic 
subscriptions (QPID-7569)
+org.apache.qpid.server.logging.ConsumerLoggingTest#testSubscriptionCreateDurable
+org.apache.qpid.server.logging.ConsumerLoggingTest#testSubscriptionCreateDurableWithArguments
 
 
 

Modified: qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes?rev=1774135&r1=1774134&r2=1774135&view=diff
==
--- qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes (original)
+++ qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes Wed Dec 14 
08:38:51 2016
@@ -20,7 +20,6 @@
 // This file should eventually be removed as all the systests are moved to 
either
 // working, defined as broken, or excluded as they test version specific 
functionality
 
-org.apache.qpid.server.logging.ConsumerLoggingTest#*
 org.apache.qpid.server.logging.DurableQueueLoggingTest#*
 org.apache.qpid.server.logging.QueueLoggingTest#*
 org.apache.qpid.server.logging.TransientQueueLoggingTest#*



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



svn commit: r1774134 - in /qpid/java/trunk: systests/src/test/java/org/apache/qpid/server/AbruptClientDisconnectTest.java test-profiles/Java10UninvestigatedTestsExcludes

2016-12-14 Thread kwall
Author: kwall
Date: Wed Dec 14 08:38:43 2016
New Revision: 1774134

URL: http://svn.apache.org/viewvc?rev=1774134&view=rev
Log:
QPID-7546: Enable AbruptClientDisconnectTest on AMQP 1.0 test profile

Modified:

qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/AbruptClientDisconnectTest.java
qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes

Modified: 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/AbruptClientDisconnectTest.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/AbruptClientDisconnectTest.java?rev=1774134&r1=1774133&r2=1774134&view=diff
==
--- 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/AbruptClientDisconnectTest.java
 (original)
+++ 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/server/AbruptClientDisconnectTest.java
 Wed Dec 14 08:38:43 2016
@@ -41,17 +41,17 @@ import javax.jms.Session;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import org.apache.qpid.client.AMQConnectionURL;
-import org.apache.qpid.jms.ConnectionURL;
 import org.apache.qpid.test.utils.QpidBrokerTestCase;
 import org.apache.qpid.test.utils.TCPTunneler;
-import org.apache.qpid.url.URLSyntaxException;
 
+/**
+ * Tests the behaviour of the Broker when the client's connection is 
unexpectedly
+ * severed.  Test uses a TCP tunneller which is halted by the test in order to
+ * simulate a sudden client failure.
+ */
 public class AbruptClientDisconnectTest extends QpidBrokerTestCase
 {
 private static final Logger LOGGER = 
LoggerFactory.getLogger(AbruptClientDisconnectTest.class);
-private static final String CONNECTION_URL_TEMPLATE =
-
"amqp://guest:guest@clientid/?brokerlist='localhost:%d?failover='false''";
 
 private TCPTunneler _tcpTunneler;
 private Connection _tunneledConnection;
@@ -60,24 +60,24 @@ public class AbruptClientDisconnectTest
 private Connection _utilityConnection;
 
 @Override
-protected void setUp() throws Exception
+public void setUp() throws Exception
 {
 super.setUp();
 _executorService = Executors.newFixedThreadPool(3);
 
-_testQueue = getTestQueue();
 _utilityConnection = getConnection();
 _utilityConnection.start();
+final Session session = _utilityConnection.createSession(false, 
Session.AUTO_ACKNOWLEDGE);
 
 // create queue
-consumeIgnoringLastSeenOmission(_utilityConnection, _testQueue, 1, 0, 
-1);
+_testQueue = createTestQueue(session);
 
 _tcpTunneler = new TCPTunneler(getFailingPort(), "localhost", 
getDefaultAmqpPort(), 1);
 _tcpTunneler.start();
 }
 
 @Override
-protected void tearDown() throws Exception
+public void tearDown() throws Exception
 {
 try
 {
@@ -216,12 +216,15 @@ public class AbruptClientDisconnectTest
 
 
 private Connection createTunneledConnection(final ClientMonitor 
clientMonitor)
-throws URLSyntaxException, JMSException
+throws Exception
 {
-final ConnectionURL url = new 
AMQConnectionURL(String.format(CONNECTION_URL_TEMPLATE, 
_tcpTunneler.getLocalPort()));
-Connection tunneledConnection = getConnection(url);
+final int localPort = _tcpTunneler.getLocalPort();
+setSystemProperty("test.port", String.valueOf(localPort));
+setSystemProperty("test.port.alt", String.valueOf(localPort));
+
+Connection tunneledConnection = 
getConnectionFactory("default").createConnection(GUEST_USERNAME, 
GUEST_PASSWORD);
 _tcpTunneler.addClientListener(clientMonitor);
-final AtomicReference _exception = new AtomicReference();
+final AtomicReference _exception = new 
AtomicReference<>();
 tunneledConnection.setExceptionListener(new ExceptionListener()
 {
 @Override
@@ -281,7 +284,7 @@ public class AbruptClientDisconnectTest
 private class ClientMonitor implements TCPTunneler.TunnelListener
 {
 private final CountDownLatch _closeLatch = new CountDownLatch(1);
-private final AtomicReference _clientAddress = new 
AtomicReference();
+private final AtomicReference _clientAddress = new 
AtomicReference<>();
 
 @Override
 public void clientConnected(final InetSocketAddress clientAddress)

Modified: qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes?rev=1774134&r1=1774133&r2=1774134&view=diff
==
--- qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes (original)
+++ qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes Wed Dec 14 
08:38:43 2016
@@ -20,7 +20,6 @@
 // This file should eventually be removed as all the systests are moved to 

svn commit: r1774133 - in /qpid/java/trunk: systests/src/test/java/org/apache/qpid/client/SynchReceiveTest.java test-profiles/Java10UninvestigatedTestsExcludes

2016-12-14 Thread kwall
Author: kwall
Date: Wed Dec 14 08:38:35 2016
New Revision: 1774133

URL: http://svn.apache.org/viewvc?rev=1774133&view=rev
Log:
QPID-7546: Enable SynchReceiveTest on AMQP 1.0 system test profile

Modified:

qpid/java/trunk/systests/src/test/java/org/apache/qpid/client/SynchReceiveTest.java
qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes

Modified: 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/client/SynchReceiveTest.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/systests/src/test/java/org/apache/qpid/client/SynchReceiveTest.java?rev=1774133&r1=1774132&r2=1774133&view=diff
==
--- 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/client/SynchReceiveTest.java
 (original)
+++ 
qpid/java/trunk/systests/src/test/java/org/apache/qpid/client/SynchReceiveTest.java
 Wed Dec 14 08:38:35 2016
@@ -25,29 +25,25 @@ import javax.jms.MessageConsumer;
 import javax.jms.Queue;
 import javax.jms.Session;
 
-import org.apache.qpid.configuration.ClientProperties;
 import org.apache.qpid.test.utils.QpidBrokerTestCase;
 
 public class SynchReceiveTest extends QpidBrokerTestCase
 {
-private static final long AWAIT_MESSAGE_TIMEOUT = 2000;
-private static final long AWAIT_MESSAGE_TIMEOUT_NEGATIVE = 250;
 private static final int MSG_COUNT = 10;
-private final String _testQueueName = getTestQueueName();
 private Connection _consumerConnection;
-private Session _consumerSession;
 private MessageConsumer _consumer;
 private Queue _queue;
 
-protected void setUp() throws Exception
+@Override
+public void setUp() throws Exception
 {
 super.setUp();
 
 _consumerConnection = getConnection();
 _consumerConnection.start();
-_consumerSession = _consumerConnection.createSession(false, 
Session.AUTO_ACKNOWLEDGE);
-_queue = _consumerSession.createQueue(_testQueueName);
-_consumer = _consumerSession.createConsumer(_queue);
+Session consumerSession = _consumerConnection.createSession(false, 
Session.AUTO_ACKNOWLEDGE);
+_queue = createTestQueue(consumerSession);
+_consumer = consumerSession.createConsumer(_queue);
 
 // Populate queue
 Connection producerConnection = getConnection();
@@ -60,10 +56,10 @@ public class SynchReceiveTest extends Qp
 {
 for (int msg = 0; msg < MSG_COUNT; msg++)
 {
-assertNotNull("Expected message number " + msg, 
_consumer.receive(AWAIT_MESSAGE_TIMEOUT));
+assertNotNull("Expected message number " + msg, 
_consumer.receive(getReceiveTimeout()));
 }
 
-assertNull("Received too many messages", _consumer.receive(500));
+assertNull("Received too many messages", 
_consumer.receive(getShortReceiveTimeout()));
 }
 
 public void testReceiveNoWait() throws Exception
@@ -73,16 +69,14 @@ public class SynchReceiveTest extends Qp
 assertNotNull("Expected message number " + msg, 
_consumer.receiveNoWait());
 }
 
-assertNull("Received too many messages", _consumer.receive(500));
+assertNull("Received too many messages", 
_consumer.receive(getShortReceiveTimeout()));
 }
 
 public void testTwoConsumersInterleaved() throws Exception
 {
-//create a new connection with prefetch set to 1
 _consumerConnection.close();
-setTestClientSystemProperty(ClientProperties.MAX_PREFETCH_PROP_NAME, 
new Integer(1).toString());
 
-_consumerConnection = getConnection();
+_consumerConnection = getConnectionWithPrefetch(0);
 _consumerConnection.start();
 Session consumerSession1 = _consumerConnection.createSession(false, 
Session.AUTO_ACKNOWLEDGE);
 MessageConsumer consumer1 = consumerSession1.createConsumer(_queue);
@@ -95,12 +89,12 @@ public class SynchReceiveTest extends Qp
 int loops = 0;
 while(msg < MSG_COUNT && loops < maxLoops)
 {
-if (consumer1.receive(AWAIT_MESSAGE_TIMEOUT) != null)
+if (consumer1.receive(getReceiveTimeout()) != null)
 {
 msg++;
 }
 
-if (consumer2.receive(AWAIT_MESSAGE_TIMEOUT) != null)
+if (consumer2.receive(getReceiveTimeout()) != null)
 {
 msg++;
 }
@@ -109,8 +103,8 @@ public class SynchReceiveTest extends Qp
 }
 
 assertEquals("Not all messages received.", MSG_COUNT, msg);
-assertNull("Received too many messages", 
consumer1.receive(AWAIT_MESSAGE_TIMEOUT_NEGATIVE));
-assertNull("Received too many messages", 
consumer2.receive(AWAIT_MESSAGE_TIMEOUT_NEGATIVE));
+assertNull("Received too many messages", 
consumer1.receive(getShortReceiveTimeout()));
+assertNull("Received too many messages", 
consumer2.receive(getShortReceiveTimeout()));
 }
 
 public void testIdleSecondConsumer() throws 

svn commit: r1774149 - /qpid/java/trunk/test-profiles/CPPExcludes

2016-12-14 Thread kwall
Author: kwall
Date: Wed Dec 14 09:08:13 2016
New Revision: 1774149

URL: http://svn.apache.org/viewvc?rev=1774149&view=rev
Log:
QPID-7546: Update test name in CPPExcludes

Modified:
qpid/java/trunk/test-profiles/CPPExcludes

Modified: qpid/java/trunk/test-profiles/CPPExcludes
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/test-profiles/CPPExcludes?rev=1774149&r1=1774148&r2=1774149&view=diff
==
--- qpid/java/trunk/test-profiles/CPPExcludes (original)
+++ qpid/java/trunk/test-profiles/CPPExcludes Wed Dec 14 09:08:13 2016
@@ -43,9 +43,6 @@ org.apache.qpid.server.queue.SortedQueue
 // the 0-10 c++ broker does not implement DLQ
 org.apache.qpid.test.unit.client.MaxDeliveryCountTest#*
 
-//this test checks explicitly for 0-8 flow control semantics
-org.apache.qpid.test.client.ConsumerFlowControlTest#*
-
 // 0-10 c++ broker doesn't implement virtual hosts, or those wackhy exchanges
 
org.apache.qpid.test.unit.client.connection.ConnectionTest#testUnresolvedVirtualHostFailure
 org.apache.qpid.test.unit.client.connection.ConnectionTest#testDefaultExchanges
@@ -118,6 +115,8 @@ org.apache.qpid.test.client.message.Sele
 
 //QPID-942 : Implemented Channel.Flow based Producer Side flow control to the 
Broker for Java (not in CPP Broker)
 org.apache.qpid.server.queue.ProducerFlowControlTest#*
+org.apache.qpid.test.client.ProducerFlowControlTest#*
+
 //QPID-3986 : Flow control invoked on total store disk usage
 org.apache.qpid.server.store.StoreOverfullTest#*
 // 0-8/0-9/0-9-1 and/or Broker for Java specific failover tests related to the 
above Producer Flow Control mechanisms



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



qpid-jms git commit: NO-JIRA: fix race in test

2016-12-14 Thread robbie
Repository: qpid-jms
Updated Branches:
  refs/heads/master a26b7791b -> 9c02f59cc


NO-JIRA: fix race in test


Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/9c02f59c
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/9c02f59c
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/9c02f59c

Branch: refs/heads/master
Commit: 9c02f59ccb9c8a784b39176acda382e959e2b88f
Parents: a26b779
Author: Robert Gemmell 
Authored: Wed Dec 14 10:41:59 2016 +
Committer: Robert Gemmell 
Committed: Wed Dec 14 10:41:59 2016 +

--
 .../qpid/jms/integration/MessageExpirationIntegrationTest.java | 2 ++
 1 file changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/9c02f59c/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/MessageExpirationIntegrationTest.java
--
diff --git 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/MessageExpirationIntegrationTest.java
 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/MessageExpirationIntegrationTest.java
index 346019f..17c7d40 100644
--- 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/MessageExpirationIntegrationTest.java
+++ 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/MessageExpirationIntegrationTest.java
@@ -214,6 +214,8 @@ public class MessageExpirationIntegrationTest extends 
QpidJmsTestCase {
 assertTrue("didn't get expected message", success.await(5, 
TimeUnit.SECONDS));
 assertFalse("There was a failure in the listener, see logs", 
listenerFailure.get());
 
+testPeer.waitForAllHandlersToComplete(3000);
+
 testPeer.expectClose();
 connection.close();
 


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



svn commit: r1774167 - /qpid/java/trunk/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/filter/LoggingFilter.java

2016-12-14 Thread orudyy
Author: orudyy
Date: Wed Dec 14 10:58:23 2016
New Revision: 1774167

URL: http://svn.apache.org/viewvc?rev=1774167&view=rev
Log:
QPID-7549: Remove username from log messages in LoggingFilter since now it is 
always null

Modified:

qpid/java/trunk/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/filter/LoggingFilter.java

Modified: 
qpid/java/trunk/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/filter/LoggingFilter.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/filter/LoggingFilter.java?rev=1774167&r1=1774166&r2=1774167&view=diff
==
--- 
qpid/java/trunk/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/filter/LoggingFilter.java
 (original)
+++ 
qpid/java/trunk/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/filter/LoggingFilter.java
 Wed Dec 14 10:58:23 2016
@@ -51,14 +51,12 @@ public class LoggingFilter implements Fi
 HttpServletRequest httpRequest = (HttpServletRequest) request;
 HttpServletResponse httpResponse = (HttpServletResponse) response;
 String method = null;
-String user = null;
 String url = null;
 if (LOGGER.isDebugEnabled())
 {
 method = httpRequest.getMethod();
-user = HttpManagementUtil.getRequestPrincipals(httpRequest);
 url = HttpManagementUtil.getRequestURL(httpRequest);
-LOGGER.debug("REQUEST  user='{}' method='{}' url='{}'", user, 
method, url);
+LOGGER.debug("REQUEST  method='{}' url='{}'", method, url);
 }
 try
 {
@@ -68,15 +66,9 @@ public class LoggingFilter implements Fi
 {
 if (LOGGER.isDebugEnabled())
 {
-if (user == null)
-{
-// user might have been set by subsequent filters
-user = 
HttpManagementUtil.getRequestPrincipals(httpRequest);
-}
 String responseStatus = 
String.valueOf(httpResponse.getStatus());
-LOGGER.debug("RESPONSE user='{}' method='{}' url='{}' 
status='{}'", user, method, url, responseStatus);
+LOGGER.debug("RESPONSE method='{}' url='{}' status='{}'", 
method, url, responseStatus);
 }
-
 }
 }
 



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



qpid-jms git commit: QPIDJMS-238: update version for proton-j OSGi import

2016-12-14 Thread robbie
Repository: qpid-jms
Updated Branches:
  refs/heads/master 9c02f59cc -> 387656944


QPIDJMS-238: update version for proton-j OSGi import


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

Branch: refs/heads/master
Commit: 38765694403e84236691cc654f629577e6984398
Parents: 9c02f59
Author: Robert Gemmell 
Authored: Wed Dec 14 11:23:19 2016 +
Committer: Robert Gemmell 
Committed: Wed Dec 14 11:23:19 2016 +

--
 qpid-jms-client/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/38765694/qpid-jms-client/pom.xml
--
diff --git a/qpid-jms-client/pom.xml b/qpid-jms-client/pom.xml
index 3c95c4b..0132625 100644
--- a/qpid-jms-client/pom.xml
+++ b/qpid-jms-client/pom.xml
@@ -116,7 +116,7 @@
 org.apache.qpid.jms.*
 
 io.netty.*;version="[4.1.0,4.2.0)",
-org.apache.qpid.proton.*;version="[0.15.0,0.16.0)",
+org.apache.qpid.proton.*;version="[0.16.0,0.17.0)",
 *
 *
   


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



qpid-dispatch git commit: DISPATCH-582 - Additional fix. Added additional call to delivery decref during link cleanup when processing updated_deliveries

2016-12-14 Thread gmurthy
Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 5d214bd05 -> 611e7d6d0


DISPATCH-582 - Additional fix. Added additional call to delivery decref during 
link cleanup when processing updated_deliveries


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/611e7d6d
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/611e7d6d
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/611e7d6d

Branch: refs/heads/master
Commit: 611e7d6d078d1078d8e53b711285539506e536ea
Parents: 5d214bd
Author: Ganesh Murthy 
Authored: Wed Dec 14 09:56:40 2016 -0500
Committer: Ganesh Murthy 
Committed: Wed Dec 14 09:56:40 2016 -0500

--
 src/router_core/connections.c | 6 ++
 1 file changed, 6 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/611e7d6d/src/router_core/connections.c
--
diff --git a/src/router_core/connections.c b/src/router_core/connections.c
index 041e885..ddcde3c 100644
--- a/src/router_core/connections.c
+++ b/src/router_core/connections.c
@@ -492,6 +492,12 @@ static void qdr_link_cleanup_CT(qdr_core_t *core, 
qdr_connection_t *conn, qdr_li
 qdr_delivery_ref_t *ref = DEQ_HEAD(updated_deliveries);
 while (ref) {
 qdr_delivery_decref(ref->dlv);
+
+//
+// Account for the lost reference from the Proton delivery
+//
+qdr_delivery_decref(ref->dlv);
+
 qdr_del_delivery_ref(&updated_deliveries, ref);
 ref = DEQ_HEAD(updated_deliveries);
 }


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



svn commit: r1774263 - in /qpid/java/trunk: broker-core/src/main/java/org/apache/qpid/server/virtualhost/ broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/ broker-pl

2016-12-14 Thread rgodfrey
Author: rgodfrey
Date: Wed Dec 14 15:18:33 2016
New Revision: 1774263

URL: http://svn.apache.org/viewvc?rev=1774263&view=rev
Log:
QPID-7589 : Allow the creation of temporary reply addresses in the $management 
synthetic virtual host

Added:

qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ProxyMessageSource.java
   (with props)
Modified:

qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhost/AbstractVirtualHost.java

qpid/java/trunk/broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/Session_1_0.java

qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ManagementAddressSpace.java

qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ManagementNode.java

qpid/java/trunk/systests/src/test/java/org/apache/qpid/systest/management/amqp/AmqpManagementTest.java
qpid/java/trunk/test-profiles/Java10BrokenTestsExcludes

Modified: 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhost/AbstractVirtualHost.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhost/AbstractVirtualHost.java?rev=1774263&r1=1774262&r2=1774263&view=diff
==
--- 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhost/AbstractVirtualHost.java
 (original)
+++ 
qpid/java/trunk/broker-core/src/main/java/org/apache/qpid/server/virtualhost/AbstractVirtualHost.java
 Wed Dec 14 15:18:33 2016
@@ -2695,6 +2695,10 @@ public abstract class AbstractVirtualHos
 {
 return (T) createChild((Class)clazz, attributes);
 }
+else if(clazz.isAssignableFrom(Queue.class))
+{
+return (T) createChild(Queue.class, attributes);
+}
 else
 {
 throw new IllegalArgumentException("Cannot create message source 
children of class " + clazz.getSimpleName());
@@ -2713,6 +2717,10 @@ public abstract class AbstractVirtualHos
 {
 return (T) createChild((Class)clazz, attributes);
 }
+else if(clazz.isAssignableFrom(Queue.class))
+{
+return (T) createChild(Queue.class, attributes);
+}
 else
 {
 throw new IllegalArgumentException("Cannot create message 
destination children of class " + clazz.getSimpleName());

Modified: 
qpid/java/trunk/broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/Session_1_0.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/Session_1_0.java?rev=1774263&r1=1774262&r2=1774263&view=diff
==
--- 
qpid/java/trunk/broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/Session_1_0.java
 (original)
+++ 
qpid/java/trunk/broker-plugins/amqp-1-0-protocol/src/main/java/org/apache/qpid/server/protocol/v1_0/Session_1_0.java
 Wed Dec 14 15:18:33 2016
@@ -799,7 +799,7 @@ public class Session_1_0 implements AMQS
 {
 if (Boolean.TRUE.equals(source.getDynamic()))
 {
-Queue tempQueue = 
createTemporaryQueue(source.getDynamicNodeProperties());
+MessageSource tempQueue = 
createDynamicSource(source.getDynamicNodeProperties());
 source.setAddress(tempQueue.getName());
 }
 String addr = source.getAddress();
@@ -976,7 +976,7 @@ public class Session_1_0 implements AMQS
 if (Boolean.TRUE.equals(target.getDynamic()))
 {
 
-Queue tempQueue = 
createTemporaryQueue(target.getDynamicNodeProperties());
+MessageDestination tempQueue = 
createDynamicDestination(target.getDynamicNodeProperties());
 target.setAddress(tempQueue.getName());
 }
 
@@ -1114,50 +1114,47 @@ public class Session_1_0 implements AMQS
 }
 
 
-private Queue createTemporaryQueue(Map properties)
+private MessageSource createDynamicSource(Map properties)
 {
 final String queueName = _primaryDomain + "TempQueue" + 
UUID.randomUUID().toString();
-Queue queue = null;
+MessageSource queue = null;
 try
 {
-LifetimePolicy lifetimePolicy = properties == null
-? null
-: (LifetimePolicy) 
properties.get(LIFETIME_POLICY);
-Map attributes = new HashMap();
-attributes.put(org.apache.qpid.server.model.Queue.ID, 
UUID.randomUUID());
-   

svn commit: r1774283 - in /qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp: ManagementAddressSpace.java ProxyMessageSource.java

2016-12-14 Thread rgodfrey
Author: rgodfrey
Date: Wed Dec 14 16:10:39 2016
New Revision: 1774283

URL: http://svn.apache.org/viewvc?rev=1774283&view=rev
Log:
QPID-7589 : remove accidentally committed debug logging

Modified:

qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ManagementAddressSpace.java

qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ProxyMessageSource.java

Modified: 
qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ManagementAddressSpace.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ManagementAddressSpace.java?rev=1774283&r1=1774282&r2=1774283&view=diff
==
--- 
qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ManagementAddressSpace.java
 (original)
+++ 
qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ManagementAddressSpace.java
 Wed Dec 14 16:10:39 2016
@@ -247,12 +247,10 @@ public class ManagementAddressSpace impl
 
 private ProxyMessageSource createProxyNode(final Map 
attributes)
 {
-LOGGER.debug("RG: in create proxy node");
 Subject currentSubject = 
Subject.getSubject(AccessController.getContext());
 Set sessionPrincipals = 
currentSubject.getPrincipals(SessionPrincipal.class);
 if (!sessionPrincipals.isEmpty())
 {
-LOGGER.debug("RG: session principal present");
 final ProxyMessageSource proxyMessageSource = new 
ProxyMessageSource(this, attributes);
 final AMQSessionModel session = 
sessionPrincipals.iterator().next().getSession();
 final Object connectionReference = 
session.getConnectionReference();
@@ -298,7 +296,6 @@ public class ManagementAddressSpace impl
  final 
Map attributes)
 {
 
-LOGGER.debug("RG : requesting destination creation");
 if(clazz == MessageDestination.class)
 {
 return (T) createProxyNode(attributes);

Modified: 
qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ProxyMessageSource.java
URL: 
http://svn.apache.org/viewvc/qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ProxyMessageSource.java?rev=1774283&r1=1774282&r2=1774283&view=diff
==
--- 
qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ProxyMessageSource.java
 (original)
+++ 
qpid/java/trunk/broker-plugins/management-amqp/src/main/java/org/apache/qpid/server/management/amqp/ProxyMessageSource.java
 Wed Dec 14 16:10:39 2016
@@ -209,7 +209,6 @@ public class ProxyMessageSource implemen
 @Override
 public void notifyWork()
 {
-LOGGER.debug("RG: notifyWork called");
 _underlying.notifyWork();
 }
 



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



qpid-jms git commit: QPIDJMS-237 Cancel request once close of resource considered complete

2016-12-14 Thread tabish
Repository: qpid-jms
Updated Branches:
  refs/heads/master 387656944 -> 785487b81


QPIDJMS-237 Cancel request once close of resource considered complete

Once we consider the resource closed we need to cancel the timeout task
to avoid it lingering in the scheduler. 

Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/785487b8
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/785487b8
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/785487b8

Branch: refs/heads/master
Commit: 785487b818722cf640859d52731efdea954069d5
Parents: 3876569
Author: Timothy Bish 
Authored: Wed Dec 14 12:33:59 2016 -0500
Committer: Timothy Bish 
Committed: Wed Dec 14 12:33:59 2016 -0500

--
 .../org/apache/qpid/jms/provider/amqp/AmqpAbstractResource.java | 5 +
 1 file changed, 5 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/785487b8/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/amqp/AmqpAbstractResource.java
--
diff --git 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/amqp/AmqpAbstractResource.java
 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/amqp/AmqpAbstractResource.java
index d858d40..23a5782 100644
--- 
a/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/amqp/AmqpAbstractResource.java
+++ 
b/qpid-jms-client/src/main/java/org/apache/qpid/jms/provider/amqp/AmqpAbstractResource.java
@@ -158,6 +158,11 @@ public abstract class AmqpAbstractResource

qpid-dispatch git commit: DISPATCH-592 Update README.txt with new instruction on how to install/connect a console

2016-12-14 Thread eallen
Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 611e7d6d0 -> f69a74d59


DISPATCH-592 Update README.txt with new instruction on how to install/connect a 
console


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

Branch: refs/heads/master
Commit: f69a74d597d84943da7db7dcac7ed43364036308
Parents: 611e7d6
Author: Ernest Allen 
Authored: Wed Dec 14 13:22:03 2016 -0500
Committer: Ernest Allen 
Committed: Wed Dec 14 13:22:03 2016 -0500

--
 console/stand-alone/README.txt | 26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/f69a74d5/console/stand-alone/README.txt
--
diff --git a/console/stand-alone/README.txt b/console/stand-alone/README.txt
index 3c38b9d..86e4b98 100644
--- a/console/stand-alone/README.txt
+++ b/console/stand-alone/README.txt
@@ -2,20 +2,20 @@
 The stand-alone qpid dispatch console is an html web site that monitors and 
controls a qpid dispatch router
 
 To install the console:
-- install and setup a web server (such as apache tomcat)
-- under the web servers's webapps dir, create a dispatch dir
-- copy the contents of this directory to the web server's dispatch dir
+- The console files are normally installed under 
/usr/share/qpid-dispatch/console/stand-alone
 
 To run the web console:
-- start the web server
-- in a browser, navigate to http://localhost:/dispatch/
-
-To connect to a qpid dispatch router from the console, you'll need to setup a 
websockets to tcp proxy.
-
-To setup and run a websockets proxy:
-- dnf install websockify
-- websockify 0.0.0.0:5673 0.0.0.0:
-
-On the console's connect page you can then use the address of your web server 
and port 5673 to connect.
+- Ensure one of the routers in your network is configured with a normal 
listener with http: true
+listener {
+role: normal
+host: 0.0.0.0
+port: 5673
+http: true
+saslMechanisms: ANONYMOUS
+}
+- start the router
+- in a browser, navigate to http://localhost:5673/
 
+The router will serve the console's html/js/css from the install directory.
+The cosole will automatically connect to the router at localhost:5673
 


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



qpid-dispatch git commit: DISPATCH-552 Allow only one tree node to be expanded for large networks

2016-12-14 Thread eallen
Repository: qpid-dispatch
Updated Branches:
  refs/heads/master f69a74d59 -> 123fb9502


DISPATCH-552 Allow only one tree node to be expanded for large networks


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/123fb950
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/123fb950
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/123fb950

Branch: refs/heads/master
Commit: 123fb95025b3bc2cdc97be7c361a919a3df438bc
Parents: f69a74d
Author: Ernest Allen 
Authored: Wed Dec 14 13:55:52 2016 -0500
Committer: Ernest Allen 
Committed: Wed Dec 14 13:55:52 2016 -0500

--
 console/stand-alone/plugin/html/tmplListTree.html | 2 +-
 console/stand-alone/plugin/html/tmplOverviewTree.html | 2 +-
 console/stand-alone/plugin/js/qdrList.js  | 4 +++-
 console/stand-alone/plugin/js/qdrOverview.js  | 4 +++-
 console/stand-alone/plugin/js/qdrService.js   | 4 
 5 files changed, 12 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/123fb950/console/stand-alone/plugin/html/tmplListTree.html
--
diff --git a/console/stand-alone/plugin/html/tmplListTree.html 
b/console/stand-alone/plugin/html/tmplListTree.html
index c4d395a..75d4940 100644
--- a/console/stand-alone/plugin/html/tmplListTree.html
+++ b/console/stand-alone/plugin/html/tmplListTree.html
@@ -2,7 +2,7 @@
 
 
 
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/123fb950/console/stand-alone/plugin/html/tmplOverviewTree.html
--
diff --git a/console/stand-alone/plugin/html/tmplOverviewTree.html 
b/console/stand-alone/plugin/html/tmplOverviewTree.html
index cadf3a9..793d103 100644
--- a/console/stand-alone/plugin/html/tmplOverviewTree.html
+++ b/console/stand-alone/plugin/html/tmplOverviewTree.html
@@ -1,7 +1,7 @@
 
 
 
-
+
 
 
 

http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/123fb950/console/stand-alone/plugin/js/qdrList.js
--
diff --git a/console/stand-alone/plugin/js/qdrList.js 
b/console/stand-alone/plugin/js/qdrList.js
index 521a87a..4695b4a 100644
--- a/console/stand-alone/plugin/js/qdrList.js
+++ b/console/stand-alone/plugin/js/qdrList.js
@@ -706,6 +706,7 @@ var QDR = (function(QDR) {
 
 var treeReady = false;
 var serviceReady = false;
+$scope.largeNetwork = QDRService.isLargeNetwork()
 // called after we know for sure the schema is fetched and the routers are 
all ready
 QDRService.addUpdatedAction("initList", function () {
   QDRService.stopUpdating();
@@ -765,7 +766,8 @@ var QDR = (function(QDR) {
 onActivate: onTreeSelected,
 onExpand: onTreeNodeExpanded,
 selectMode: 1,
-activeVisible: false,
+autoCollapse: $scope.largeNetwork,
+activeVisible: !$scope.largeNetwork,
 debugLevel: 0,
 children: entityTreeChildren
   })

http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/123fb950/console/stand-alone/plugin/js/qdrOverview.js
--
diff --git a/console/stand-alone/plugin/js/qdrOverview.js 
b/console/stand-alone/plugin/js/qdrOverview.js
index 4476772..f612847 100644
--- a/console/stand-alone/plugin/js/qdrOverview.js
+++ b/console/stand-alone/plugin/js/qdrOverview.js
@@ -1747,6 +1747,7 @@ QDR.log.debug("newly created node needs to be activated")
 
 var htmlReady = false;
 var dataReady = false;
+$scope.largeNetwork = QDRService.isLargeNetwork()
 var logs = new Folder("Logs")
 logs.type = "Logs"
 logs.info = allLogInfo
@@ -1768,9 +1769,10 @@ QDR.log.debug("newly created node needs to be activated")
   $('#overtree').dynatree({
 onActivate: activated,
 onExpand: treeNodeExpanded,
+autoCollapse: $scope.largeNetwork,
+activeVisible: !$scope.largeNetwork,
 selectMode: 1,
 debugLevel: 0,
-activeVisible: false,
 children: topLevelChildren
   })
   treeRoot = $("#overtree").dynatree("getRoot");

http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/123fb950/console/stand-alone/plugin/js/qdrService.js
--
diff --git a/console/stand-alone/plugin/js/qdrService.js 
b/console/stand-alone/plugin/js/qdrService.js
index 0baa3a9..2cec634 100644
--- a/console/stand-alone/plugin/js/qdrService.js
+++ b/console/stand-alone/plugin/js/qdrService.js
@@

qpid-dispatch git commit: DISPATCH-314 Draw normal listener ports with light green background

2016-12-14 Thread eallen
Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 123fb9502 -> ce5584d0b


DISPATCH-314 Draw normal listener ports with light green background


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

Branch: refs/heads/master
Commit: ce5584d0b31cae15511a2f9a2a5209895f30e687
Parents: 123fb95
Author: Ernest Allen 
Authored: Wed Dec 14 14:23:58 2016 -0500
Committer: Ernest Allen 
Committed: Wed Dec 14 14:23:58 2016 -0500

--
 console/stand-alone/plugin/css/plugin.css|  4 
 console/stand-alone/plugin/js/qdrTopology.js | 11 ---
 2 files changed, 12 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/ce5584d0/console/stand-alone/plugin/css/plugin.css
--
diff --git a/console/stand-alone/plugin/css/plugin.css 
b/console/stand-alone/plugin/css/plugin.css
index 7226139..7655728 100644
--- a/console/stand-alone/plugin/css/plugin.css
+++ b/console/stand-alone/plugin/css/plugin.css
@@ -930,3 +930,7 @@ div#durationSlider, div#rateSlider {
 div#list-controller {
 padding-left: 300px;
 }
+
+.listening-on {
+background-color: #CCFFCC;
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/ce5584d0/console/stand-alone/plugin/js/qdrTopology.js
--
diff --git a/console/stand-alone/plugin/js/qdrTopology.js 
b/console/stand-alone/plugin/js/qdrTopology.js
index 04952f7..a20228e 100644
--- a/console/stand-alone/plugin/js/qdrTopology.js
+++ b/console/stand-alone/plugin/js/qdrTopology.js
@@ -24,8 +24,8 @@ var QDR = (function(QDR) {
   QDR.module.controller('QDR.TopologyFormController', function($scope, 
QDRService) {
 
 $scope.attributes = []
-var nameTemplate = '{{row.entity.attributeName}}';
-var valueTemplate = '{{row.entity.attributeValue}}';
+var nameTemplate = '{{row.entity.attributeName}}';
+var valueTemplate = '{{row.entity.attributeValue}}';
 $scope.topoGridOptions = {
   data: 'attributes',
   enableColumnResize: false,
@@ -45,8 +45,13 @@ var QDR = (function(QDR) {
   var attributes = args.attributes;
   var entityTypes = QDRService.schema.entityTypes[args.entity].attributes;
   attributes.forEach(function(attr) {
-if (entityTypes[attr.attributeName] && 
entityTypes[attr.attributeName].description)
+attr.cls = ''
+QDR.log.debug("attr.description " + attr.description)
+if (attr.attributeName === 'Listening on')
+  attr.cls = 'listening-on'
+if (entityTypes[attr.attributeName] && 
entityTypes[attr.attributeName].description) {
   attr.description = entityTypes[attr.attributeName].description
+}
   })
   $scope.attributes = attributes;
   $scope.form = args.entity;


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



[33/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid-members.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid-members.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid-members.html
new file mode 100755
index 000..6200516
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid-members.html
@@ -0,0 +1,131 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Member List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1types_1_1Uuid.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+qpid::types::Uuid Member List  
+
+
+
+This is the complete list of members for qpid::types::Uuid, including all 
inherited members.
+
+  clear()qpid::types::Uuid
+  data() const  (defined in qpid::types::Uuid)qpid::types::Uuid
+  generate()qpid::types::Uuid
+  hash()
 const qpid::types::Uuid
+  isNull()
 const qpid::types::Uuid
+  operator bool() const  
(defined in qpid::types::Uuid)qpid::types::Uuid
+  operator!() 
const  (defined in qpid::types::Uuid)qpid::types::Uuid
+  operator!=(const
 Uuid &, const Uuid &)qpid::types::Uuidfriend
+  operator< 
(defined in qpid::types::Uuid)qpid::types::Uuidfriend
+  operator<<(std::ostream
 &, Uuid)qpid::types::Uuidfriend
+  operator<= 
(defined in qpid::types::Uuid)qpid::types::Uuidfriend
+  operator=(const Uuid &) 
(defined in qpid::types::Uuid)qpid::types::Uuid
+  operator==(const
 Uuid &, const Uuid &)qpid::types::Uuidfriend
+  operator> (defined in qpid::types::Uuid)qpid::types::Uuidfriend
+  operator>= 
(defined in qpid::types::Uuid)qpid::types::Uuidfriend
+  operator>>(std::istream
 &, Uuid &)qpid::types::Uuidfriend
+  size() const  
(defined in qpid::types::Uuid)qpid::types::Uuid
+  SIZE (defined in qpid::types::Uuid)qpid::types::Uuidstatic
+  str()
 const qpid::types::Uuid
+  Uuid(bool
 unique=false)qpid::types::Uuid
+  Uuid(const Uuid 
&) (defined in qpid::types::Uuid)qpid::types::Uuid
+  Uuid(const
 unsigned char *data16)qpid::types::Uuid
+  Uuid(const char 
*data16) (defined in qpid::types::Uuid)qpid::types::Uuid
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid.html
new file mode 100755
index 000..a3844d4
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Uuid.html
@@ -0,0 +1,447 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::types::Uuid Class Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1types_1_1Uuid.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Classes |
+Public Member Functions |
+Static Public Attributes |
+Friends |
+List of all members  

+  
+qpid::types::Uuid Class Reference  
+
+
+
+
+Classes
+struct 
 Hasher
+ 
+
+
+Public Member Functions
+QPID_TYPES_EXTERN Uuid
 (bool unique=false)
+ 
+
+QPID_TYPES_EXTERN Uuid (const Uuid &)
+ 
+
+QPID_TYPES_EXTERN Uuid & operator= (const Uuid &)
+ 
+QPID_TYPES_EXTERN Uuid
 (const unsigned char *data16)
+ 
+
+QPID_TYPES_EXTERN Uuid (const char *data16)
+ 
+QPID_TYPES_EXTERN void generate
 ()
+ 
+QPID_TYPES_EXTERN void clear
 ()
+ 
+QPID_TYPES_EXTERN bool isNull
 () const 
+ 
+
+QPID_TYPES_EXTERN operator bool () const 
+ 
+
+QPID_TYPES_EXTERN bool operator! () const 
+ 
+QPID_TYPES_EXTERN std::str

[18/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/types_2ImportExport_8h_source.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/types_2ImportExport_8h_source.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/types_2ImportExport_8h_source.html
new file mode 100755
index 000..d250ec6
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/types_2ImportExport_8h_source.html
@@ -0,0 +1,141 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid/types/ImportExport.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('types_2ImportExport_8h_source.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+ImportExport.h  
+
+
+1 #ifndef 
QPID_TYPES_IMPORTEXPORT_H
+
2 #define QPID_TYPES_IMPORTEXPORT_H
+
3 
+
4 /*
+
5  * Licensed to the Apache Software 
Foundation (ASF) under one
+
6  * or more contributor license agreements.  
See the NOTICE file
+
7  * distributed with this work for 
additional information
+
8  * regarding copyright ownership.  The ASF 
licenses this file
+
9  * to you under the Apache License, Version 
2.0 (the
+   
10  * "License"); you may not use 
this file except in compliance
+   
11  * with the License.  You may obtain a 
copy of the License at
+   
12  *
+   
13  *   
http://www.apache.org/licenses/LICENSE-2.0
+   
14  *
+   
15  * Unless required by applicable law or 
agreed to in writing,
+   
16  * software distributed under the License 
is distributed on an
+   
17  * "AS IS" BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
18  * KIND, either express or implied.  See 
the License for the
+   
19  * specific language governing permissions 
and limitations
+   
20  * under the License.
+   
21  */
+   
22 
+   
23 #include 
"qpid/ImportExport.h"
+   
24 
+   
25 #if defined(TYPES_EXPORT) || defined 
(qpidtypes_EXPORTS)
+   
26 #  
define QPID_TYPES_EXTERN QPID_EXPORT
+   
27 #  
define QPID_TYPES_CLASS_EXTERN QPID_CLASS_EXPORT
+   
28 #  
define QPID_TYPES_INLINE_EXTERN QPID_INLINE_EXPORT
+   
29 #else
+   
30 #  
define QPID_TYPES_EXTERN QPID_IMPORT
+   
31 #  
define QPID_TYPES_CLASS_EXTERN QPID_CLASS_IMPORT
+   
32 #  
define QPID_TYPES_INLINE_EXTERN QPID_INLINE_IMPORT
+   
33 #endif
+   
34 
+   
35 #endif  
+
+
+
+
+  
+qpidtypesImportExport.h
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/OptionParser.cpp
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/OptionParser.cpp 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/OptionParser.cpp
new file mode 100755
index 000..661d0a9
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/OptionParser.cpp
@@ -0,0 +1,257 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ */
+#include "OptionParser.h"
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+class Option
+{
+  public:
+Option(const std::string& name, const std::string& description);
+virtual ~Option() {}
+virtual void setValue(const std::string&) = 0;
+virtual bool isValueExpected() = 0;
+bool match(const std::string&);
+std::ostream& print(std::ostream& out);
+  private:
+std::string longName;
+std::string shortName;
+std::string description;
+std::ostream& printNames(std:

[05/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.html
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.html 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.html
new file mode 100644
index 000..19b1ff0
--- /dev/null
+++ b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.html
@@ -0,0 +1,157 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Class List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('annotated.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Class List  
+
+
+Here are the classes, structs, unions and interfaces 
with brief descriptions:
+[detail level 1234]
+qpid
+messaging
+Address
+PrivateImplRef
+Connection
+Duration
+MessagingException
+InvalidOptionString
+KeyError
+LinkError
+AddressError
+ResolutionError
+AssertionFailed
+NotFound
+MalformedAddress
+ReceiverError
+FetchError
+NoMessageAvailable
+SenderError
+SendError
+MessageRejected
+TargetCapacityExceeded
+OutOfCapacity
+SessionError
+SessionClosed
+TransactionError
+TransactionAborted
+TransactionUnknown
+UnauthorizedAccess
+ConnectionError
+ProtocolVersionError
+AuthenticationFailure
+TransportFailure
+FailoverUpdates
+Handle
+LoggerOutput
+Logger
+Message
+EncodingException
+Receiver
+Sender
+Session
+types
+Exception
+Uuid
+Hasher
+InvalidConversion
+Variant
+
+
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.js
--
diff --git a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.js 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.js
new file mode 100644
index 000..d1045ac
--- /dev/null
+++ b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.js
@@ -0,0 +1,53 @@
+var annotated =
+[
+[ "qpid", null, [
+  [ "messaging", null, [
+[ "Address", "classqpid_1_1messaging_1_1Address.html", 
"classqpid_1_1messaging_1_1Address" ],
+[ "PrivateImplRef", "classqpid_1_1messaging_1_1PrivateImplRef.html", 
null ],
+[ "Connection", "classqpid_1_1messaging_1_1Connection.html", 
"classqpid_1_1messaging_1_1Connection" ],
+[ "Duration", "classqpid_1_1messaging_1_1Duration.html", 
"classqpid_1_1messaging_1_1Duration" ],
+[ "MessagingException", 
"structqpid_1_1messaging_1_1MessagingException.html", 
"structqpid_1_1messaging_1_1MessagingException" ],
+[ "InvalidOptionString", 
"structqpid_1_1messaging_1_1InvalidOptionString.html", 
"structqpid_1_1messaging_1_1InvalidOptionString" ],
+[ "KeyError", "structqpid_1_1messaging_1_1KeyError.html", 
"structqpid_1_1messaging_1_1KeyError" ],
+[ "LinkError", "structqpid_1_1messaging_1_1LinkError.html", 
"structqpid_1_1messaging_1_1LinkError" ],
+[ "AddressError", "structqpid_1_1messaging_1_1AddressError.html", 
"structqpid_1_1messaging_1_1AddressError" ],
+[ "ResolutionError", 
"structqpid_1_1messaging_1_1ResolutionError.html", 
"structqpid_1_1messaging_1_1ResolutionError" ],
+[ "AssertionFailed", 
"structqpid_1_1messaging_1_1AssertionFailed.html", 
"structqpid_1_1messaging_1_1AssertionFailed" ],
+[ "NotFound", "structqpid_1_1messaging_1_1NotFound.html", 
"structqpid_1_1messaging_1_1NotFound" ],
+[ "MalformedAddress", 
"structqpid_1_1messaging_1_1MalformedAddress.html", 
"structqpid_1_1messaging_1_1MalformedAddress" ],
+[ "ReceiverError", "structqpid_1_1messaging_1_1ReceiverError.html", 
"structqpid_1_1messaging_1_1ReceiverError" ],
+[ "FetchError", "structqpid_1_1messaging_1_1FetchError.html", 
"structqpid_1_1messaging_1_1FetchError" ],
+[ "NoMessageAvailable", 
"structqpid_1_1messaging_1_1NoMessageAvailable.html", 
"structqpid_1_1messaging_1_1NoMessageAvailable" ],
+[ "SenderError", "structqpid_1_1messaging_1_1SenderError.html", 
"structqpid_1_1messaging_1_1SenderError" ],
+[ "SendError", "structqpid_1_1messaging_1_1SendError.html", 
"structqpid_1_1messaging_1_1SendError" ],
+[ "MessageRejected", 
"structqpid_1_1messaging_1_1MessageRejected.html", 
"structqpid_1_1messaging_1_1MessageRejected" ],
+[ "TargetCapaci

[10/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-Managing-CPP-Broker.html.in
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-Managing-CPP-Broker.html.in
 
b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-Managing-CPP-Broker.html.in
new file mode 100644
index 000..0313bc5
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-Managing-CPP-Broker.html.in
@@ -0,0 +1,459 @@
+Chapter 2. 
+  Managing the AMQP Messaging Broker
+Prev   NextChapter 2. 
+  Managing the AMQP Messaging Broker
+Table of 
Contents2.1.  
Managing the C++ Broker 2.1.1. 
+Using qpid-config
+  2.1.2. 
+Using qpid-route
+  2.1.3. 
+Using qpid-tool
+  2.1.4. 
+Using
+qpid-printevents
+  2.1.5. Using 
qpid-ha2.2. 
+  Qpid Management Framework
+2.2.1. 
+What Is QMF
+  2.2.2. 
+Getting
+Started with QMF
+  2.2.3. 
+QMF Concepts
+  2.2.4. 
+The QMF
+Protocol
+  2.2.5. 
+How
+to Write a QMF Console
+  2.2.6. 
+How to
+Write a QMF Agent
+  2.3. 
+  QMF Python Console Tutorial
+2.3.1.
 
+Prerequisite
+- Install Qpid Messaging
+  2.3.2.
 
+Synchronous
+Console Operations
+  2.3.3.
 
+Asynchronous
+Console Operations
+  2.3.4.
 
+Discovering what Kinds of Objects are Available
+  2.1.  Managing the C++ Broker 

+There are quite a few ways to interact with the C++ broker. The
+command line tools
+include:
+  qpid-route - used to configure federation 
(a set of federated
+brokers)
+qpid-config - used to configure 
queues, exchanges, bindings
+and list them etc
+qpid-tool - used to view 
management information/statistics
+and call any management actions on the broker
+qpid-printevents - used to 
receive and print QMF events
+qpid-ha - used to interact with 
the High Availability module
+2.1.1. 
+Using qpid-config
+  
+This utility can be used to create queues exchanges and bindings,
+both durable and transient. Always check for latest options by
+running --help command.
+  
+$ qpid-config --help
+Usage:  qpid-config [OPTIONS]
+qpid-config [OPTIONS] exchanges [filter-string]
+qpid-config [OPTIONS] queues[filter-string]
+qpid-config [OPTIONS] add exchange   
[AddExchangeOptions]
+qpid-config [OPTIONS] del exchange 
+qpid-config [OPTIONS] add queue  [AddQueueOptions]
+qpid-config [OPTIONS] del queue 
+qpid-config [OPTIONS] bind     
[binding-key]
+qpid-config [OPTIONS] unbind   
[binding-key]
+
+Options:
+-b [ --bindings ] Show bindings in queue or 
exchange list
+-a [ --broker-addr ] Address (localhost)  Address of qpidd broker
+ broker-addr is in the form:   [username/password@] hostname | 
ip-address [:]
+ ex:  localhost, 10.1.1.7:1, broker-host:1, 
guest/guest@localhost
+
+Add Queue Options:
+--durableQueue is durable
+--file-count N (8)   Number of files in queue's persistence journal
+--file-size  N (24)  File size in pages (64Kib/page)
+--max-queue-size N   Maximum in-memory queue size as bytes
+--max-queue-count N  Maximum in-memory queue size as a number of messages
+--limit-policy [none | reject | flow-to-disk | ring | ring-strict]
+ Action taken when queue limit is reached:
+ none (default) - Use broker's default policy
+ reject - Reject enqueued messages
+ flow-to-disk   - Page messages to disk
+ ring   - Replace oldest unacquired 
message with new
+ ring-strict- Replace oldest message, reject 
if oldest is acquired
+--order [fifo | lvq | lvq-no-browse]
+ Set queue ordering policy:
+ fifo (default) - First in, first out
+ lvq- Last Value Queue ordering, 
allows queue browsing
+ lvq-no-browse  - Last Value Queue ordering, 
browsing clients may lose data
+
+Add Exchange Options:
+--durableExchange is durable
+--sequence   Exchange will insert a 'qpid.msg_sequence' field in the 
message header
+

[27/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_68.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_68.html 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_68.html
new file mode 100755
index 000..dec41d6
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_68.html
@@ -0,0 +1,26 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_68.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_68.js 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_68.js
new file mode 100755
index 000..d2165d1
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_68.js
@@ -0,0 +1,11 @@
+var searchData=
+[
+  
['handle',['Handle',['../classqpid_1_1messaging_1_1Handle.html',1,'qpid::messaging']]],
+  ['handle_3c_20connectionimpl_20_3e',['Handle< ConnectionImpl 
>',['../classqpid_1_1messaging_1_1Handle.html',1,'qpid::messaging']]],
+  ['handle_3c_20receiverimpl_20_3e',['Handle< ReceiverImpl 
>',['../classqpid_1_1messaging_1_1Handle.html',1,'qpid::messaging']]],
+  ['handle_3c_20senderimpl_20_3e',['Handle< SenderImpl 
>',['../classqpid_1_1messaging_1_1Handle.html',1,'qpid::messaging']]],
+  ['handle_3c_20sessionimpl_20_3e',['Handle< SessionImpl 
>',['../classqpid_1_1messaging_1_1Handle.html',1,'qpid::messaging']]],
+  
['haserror',['hasError',['../classqpid_1_1messaging_1_1Session.html#a58892c263a96014bd6e7ddf20e654a4f',1,'qpid::messaging::Session']]],
+  
['hash',['hash',['../classqpid_1_1types_1_1Uuid.html#accce57bbf9d38185808bc62bd7d8f79a',1,'qpid::types::Uuid']]],
+  
['hasher',['Hasher',['../structqpid_1_1types_1_1Uuid_1_1Hasher.html',1,'qpid::types::Uuid']]]
+];

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_69.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_69.html 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_69.html
new file mode 100755
index 000..192e4ba
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_69.html
@@ -0,0 +1,26 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_69.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_69.js 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_69.js
new file mode 100755
index 000..647cd12
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_69.js
@@ -0,0 +1,9 @@
+var searchData=
+[
+  
['invalidconversion',['InvalidConversion',['../structqpid_1_1types_1_1InvalidConversion.html',1,'qpid::types']]],
+  
['invalidoptionstring',['InvalidOptionString',['../structqpid_1_1messaging_1_1InvalidOptionString.html',1,'qpid::messaging']]],
+  
['isclosed',['isClosed',['../classqpid_1_1messaging_1_1Receiver.html#a7a1ae5651527e3f5335ca58036a4fd41',1,'qpid::messaging::Receiver']]],
+  
['isdescribed',['isDescribed',['../classqpid_1_1types_1_1Variant.html#a1d28bb9ab2b36d324057844e7282e1ad',1,'qpid::types::Variant']]],
+  
['isnull',['isNull',['../classqpid_1_1messaging_1_1Handle.html#a85d30ccb081c4b15dc3bedeb40ffbf52',1,'qpid::messaging::Handle::isNull()'],['../classqpid_1_1types_1_1Uuid.html#a77bc48ca0719c2b06be1b2600befa26f',1,'qpid::types::Uuid::isNull()']]],
+  
['isvalid',['isValid',['../classqpid_1_1messaging_1_1Handle.html#adec615c78a110d36011aaa7f74f9',1,'qpid::messaging::Handle']]]
+];

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/all_6b.html
--
diff --git 
a/content/releas

[37/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.html
new file mode 100755
index 000..85d8d11
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.html
@@ -0,0 +1,261 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::Handle< T > Class 
Template Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Handle.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+Protected Types |
+Protected Attributes |
+Friends |
+List of all 
members  
+  
+qpid::messaging::Handle< T > Class Template 
Reference  
+
+
+
+#include 
+
+
+Public Member Functions
+QPID_MESSAGING_INLINE_EXTERN bool isValid
 () const 
+ 
+QPID_MESSAGING_INLINE_EXTERN bool isNull
 () const 
+ 
+QPID_MESSAGING_INLINE_EXTERN operator
 bool () const 
+ 
+QPID_MESSAGING_INLINE_EXTERN bool operator!
 () const 
+ 
+
+void swap (Handle< T > 
&h)
+ 
+
+
+Protected Types
+
+typedef T Impl
+ 
+
+
+Protected Attributes
+
+Impl * impl
+ 
+
+
+Friends
+
+class PrivateImplRef< 
T >
+ 
+
+Detailed 
Description
+template
+class qpid::messaging::Handle< T >
+
+A handle is like a pointer: refers to an underlying implementation object. 
Copying the handle does not copy the object.
+Handles can be null, like a 0 pointer. Use isValid(),
 isNull()
 or the conversion to bool to test for a null handle. 
+Member Function Documentation
+
+
+
+
+template 
+
+  
+  
+  
+
+  QPID_MESSAGING_INLINE_EXTERN bool qpid::messaging::Handle< T 
>::isNull 
+  (
+  )
+   const
+
+  
+  
+  
+inline  
+  
+
+
+Returnstrue if handle is null. It is 
an error to call any function on a null handle. 
+
+
+
+
+
+
+
+template 
+
+  
+  
+  
+
+  QPID_MESSAGING_INLINE_EXTERN bool qpid::messaging::Handle< T 
>::isValid 
+  (
+  )
+   const
+
+  
+  
+  
+inline  
+  
+
+
+Returnstrue if handle is valid, i.e. 
not null. 
+
+
+
+
+
+
+
+template 
+
+  
+  
+  
+
+  QPID_MESSAGING_INLINE_EXTERN qpid::messaging::Handle< T 
>::operator bool 
+  (
+  )
+   const
+
+  
+  
+  
+inline  
+  
+
+
+Conversion to bool supports idiom if (handle) { handle->... } 
+
+
+
+
+
+
+
+template 
+
+  
+  
+  
+
+  QPID_MESSAGING_INLINE_EXTERN bool qpid::messaging::Handle< T 
>::operator! 
+  (
+  )
+   const
+
+  
+  
+  
+inline  
+  
+
+
+Operator ! supports idiom if (!handle) { do_if_handle_is_null(); } 
+
+
+
+The documentation for this class was generated from the following 
file:
+qpid/messaging/Handle.h
+
+
+
+
+
+  
+qpidmessagingHandle
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.js
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.js
new file mode 100755
index 000..b17a578
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.js
@@ -0,0 +1,12 @@
+var classqpid_1_1messaging_1_1Handle =
+[
+[ "Impl", 
"classqpid_1_1messaging_1_1Handle.html#aae44d218cffcb40859af8702e4635d3f", null 
],
+[ "Handle", 
"classqpid_1_1messaging_1_1Handle.html#ac760dc55cf344bde4e67ecd3cba8253e", null 
],
+[ "isNull", 
"classqpid_1_1messaging_1_1Handle.html#a85d30ccb081c4b15dc3bedeb40ffbf52", null 
],
+[ "isValid", 
"classqpid_1_1messaging_1_1Handle.html#adec615c78a110d36011aaa7f74f9", null 
],
+[ "operator bool", 
"classqpid_1_1messaging_1_1Handle.html#a75949c9b0035ce83928ae1bb877ff252", null 
],
+[ "operator!", 
"classqpid_1_1

[50/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/cpp-broker/book/QpidInteroperabilityDocumentation-QpidInteroperabilityDocumentation.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/cpp-broker/book/QpidInteroperabilityDocumentation-QpidInteroperabilityDocumentation.html
 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/QpidInteroperabilityDocumentation-QpidInteroperabilityDocumentation.html
new file mode 100644
index 000..3ecef70
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/QpidInteroperabilityDocumentation-QpidInteroperabilityDocumentation.html
@@ -0,0 +1,375 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+1.10. Qpid Interoperability Documentation - Apache 
Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0AMQP Messaging 
Broker (Implemented in C++)1.10. Qpid Interoperability 
Documentation
+
+
+  1.10. Qpid Interoperability DocumentationPrev Chapter 1. 
+  Running the AMQP Messaging Broker
+ Next1.10. Qpid
 Interoperability Documentation
+This page documents the various interoperable features of the
+Qpid clients.
+  1.10.1. 
+SASL
+  
+
+  1.10.1.1. 
+Standard
+Mechanisms
+  
+http://en.wikipedia.org/wiki/Simple_Authentication_and_Security_Layer#SASL_mechanisms";
 
target="_top">http://en.wikipedia.org/wiki/Simple_Authentication_and_Security_Layer#SASL_mechanisms
+  
+This table list the various SASL mechanisms that each component
+supports. The version listed shows when this
+functionality was added to the product.
+  Table 1.24. SASL Mechanism 
Support
+  Component
+
+  ANONYMOUS
+
+  CRAM-MD5
+
+  DIGEST-MD5
+
+  EXTERNAL
+
+  GSSAPI/Kerberos
+
+  PLAIN
+
+  C++ Broker
+
+  M3[Section 1.10.1.1,
 “
+Standard
+Mechanisms
+  ”]
+
+  M3[Section 1.10.1.1,
 “
+Standard
+Mechanisms
+  ”,Section 1.10.1.1,
 “
+Standard
+Mechanisms
+  ”]
+
+   
+
+   
+
+  M3[Section 1.10.1.1,
 “
+Standard
+Mechanisms
+  ”,Section 1.10.1.1,
 “
+Standard
+Mechanisms
+  ”]
+
+  M1
+
+  C++ Client
+
+  M3[Section 1.10.1.1,
 “
+Standard
+Mechanisms
+  ”]
+
+   
+
+   
+
+   
+
+   
+
+  M1
+
+  Java Broker
+
+   
+
+  M1
+
+   
+
+   
+
+   
+
+  M1
+
+  Java Client
+
+   
+
+

[51/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
QPID-7584: update site for qpid-cpp 1.36.0


Project: http://git-wip-us.apache.org/repos/asf/qpid-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-site/commit/54b18507
Tree: http://git-wip-us.apache.org/repos/asf/qpid-site/tree/54b18507
Diff: http://git-wip-us.apache.org/repos/asf/qpid-site/diff/54b18507

Branch: refs/heads/asf-site
Commit: 54b185073f650277971c1663c30088b86a430ffd
Parents: 66e7aea
Author: Robert Gemmell 
Authored: Wed Dec 14 19:48:29 2016 +
Committer: Robert Gemmell 
Committed: Wed Dec 14 19:48:29 2016 +

--
 content/components/cpp-broker/index.html|   18 +-
 content/components/messaging-api/index.html |   16 +-
 content/documentation.html  |6 +-
 content/download.html   |8 +-
 content/releases/index.html |3 +-
 content/releases/qpid-cpp-0.34/index.html   |2 +-
 content/releases/qpid-cpp-1.35.0/index.html |2 +-
 .../cpp-broker/book/AMQP-Compatibility.html |  536 +++
 ...ation-QpidInteroperabilityDocumentation.html |  375 +
 .../cpp-broker/book/Using-message-groups.html   |  299 
 .../qpid-cpp-1.36.0/cpp-broker/book/ch01.html   |  690 +
 .../cpp-broker/book/ch01s02.html|  286 
 .../cpp-broker/book/ch01s03.html|  241 +++
 .../cpp-broker/book/ch01s06.html|  250 
 .../cpp-broker/book/ch02s02.html|  729 ++
 .../cpp-broker/book/ch02s03.html|  847 +++
 ...-Messaging_User_Guide-Broker_Federation.html |  491 +++
 .../chap-Messaging_User_Guide-Security.html | 1374 ++
 .../book/chapter-Managing-CPP-Broker.html   |  602 
 .../cpp-broker/book/chapter-ha.html |  930 
 .../cpp-broker/book/css/style.css   |  279 
 .../cpp-broker/book/ha-queue-replication.html   |  221 +++
 .../qpid-cpp-1.36.0/cpp-broker/book/index.html  |  251 
 .../qpid-cpp-1.36.0/cpp-broker/book/pr01.html   |  149 ++
 .../cpp-broker/book/producer-flow-control.html  |  334 +
 .../book/queue-state-replication.html   |  372 +
 .../cpp-broker/cpp-broker-book.pdf  |  Bin 0 -> 367417 bytes
 content/releases/qpid-cpp-1.36.0/index.html |  230 +++
 .../cpp/api/Address_8h_source.html  |  178 +++
 .../cpp/api/Connection_8h_source.html   |  181 +++
 .../cpp/api/Duration_8h_source.html |  160 ++
 .../cpp/api/Exception_8h_source.html|  150 ++
 .../cpp/api/FailoverUpdates_8h_source.html  |  151 ++
 .../messaging-api/cpp/api/Handle_8h_source.html |  167 +++
 .../messaging-api/cpp/api/Logger_8h_source.html |  168 +++
 .../cpp/api/Message_8h_source.html  |  228 +++
 .../cpp/api/Message__io_8h_source.html  |  140 ++
 .../cpp/api/Receiver_8h_source.html |  181 +++
 .../messaging-api/cpp/api/Sender_8h_source.html |  174 +++
 .../cpp/api/Session_8h_source.html  |  197 +++
 .../messaging-api/cpp/api/Uuid_8h_source.html   |  197 +++
 .../cpp/api/Variant_8h_source.html  |  295 
 .../messaging-api/cpp/api/annotated.html|  157 ++
 .../messaging-api/cpp/api/annotated.js  |   53 +
 .../messaging-api/cpp/api/bc_s.png  |  Bin 0 -> 676 bytes
 .../messaging-api/cpp/api/bdwn.png  |  Bin 0 -> 147 bytes
 .../messaging-api/cpp/api/classes.html  |  146 ++
 ...assqpid_1_1messaging_1_1Address-members.html |  127 ++
 .../api/classqpid_1_1messaging_1_1Address.html  |  229 +++
 .../api/classqpid_1_1messaging_1_1Address.js|   22 +
 ...qpid_1_1messaging_1_1Connection-members.html |  136 ++
 .../classqpid_1_1messaging_1_1Connection.html   |  378 +
 .../api/classqpid_1_1messaging_1_1Connection.js |   23 +
 .../classqpid_1_1messaging_1_1Connection.png|  Bin 0 -> 840 bytes
 ...ssqpid_1_1messaging_1_1Duration-members.html |  114 ++
 .../api/classqpid_1_1messaging_1_1Duration.html |  146 ++
 .../api/classqpid_1_1messaging_1_1Duration.js   |5 +
 ...1_1messaging_1_1FailoverUpdates-members.html |  110 ++
 ...assqpid_1_1messaging_1_1FailoverUpdates.html |  123 ++
 ...classqpid_1_1messaging_1_1FailoverUpdates.js |5 +
 ...lassqpid_1_1messaging_1_1Handle-members.html |  117 ++
 .../api/classqpid_1_1messaging_1_1Handle.html   |  261 
 .../cpp/api/classqpid_1_1messaging_1_1Handle.js |   12 +
 ...lassqpid_1_1messaging_1_1Logger-members.html |  112 ++
 .../api/classqpid_1_1messaging_1_1Logger.html   |  307 
 ...id_1_1messaging_1_1LoggerOutput-members.html |  110 ++
 .../classqpid_1_1messaging_1_1LoggerOutput.html |  195 +++
 .../classqpid_1_1messaging_1_1LoggerOutput.js   |5 +
 ...assqpid_1_1messaging_1_1Message-members.html |  149 ++
 .../api/classqpid_1_1messaging_1_1Message.html  |  607 
 .../api/classqpid_1_1messaging_1_1Message.js|   44 +
 ...lassqpid_1_1messaging_1_1Priv

[31/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/doxygen.css
--
diff --git a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/doxygen.css 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/doxygen.css
new file mode 100755
index 000..dabaff2
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/doxygen.css
@@ -0,0 +1,1184 @@
+/* The standard CSS for doxygen 1.8.3.1 */
+
+body, table, div, p, dl {
+   font: 400 14px/19px Roboto,sans-serif;
+}
+
+/* @group Heading Levels */
+
+h1.groupheader {
+   font-size: 150%;
+}
+
+.title {
+   font-size: 150%;
+   font-weight: bold;
+   margin: 10px 2px;
+}
+
+h2.groupheader {
+   border-bottom: 1px solid #879ECB;
+   color: #354C7B;
+   font-size: 150%;
+   font-weight: normal;
+   margin-top: 1.75em;
+   padding-top: 8px;
+   padding-bottom: 4px;
+   width: 100%;
+}
+
+h3.groupheader {
+   font-size: 100%;
+}
+
+h1, h2, h3, h4, h5, h6 {
+   -webkit-transition: text-shadow 0.5s linear;
+   -moz-transition: text-shadow 0.5s linear;
+   -ms-transition: text-shadow 0.5s linear;
+   -o-transition: text-shadow 0.5s linear;
+   transition: text-shadow 0.5s linear;
+   margin-right: 15px;
+}
+
+h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
+   text-shadow: 0 0 15px cyan;
+}
+
+dt {
+   font-weight: bold;
+}
+
+div.multicol {
+   -moz-column-gap: 1em;
+   -webkit-column-gap: 1em;
+   -moz-column-count: 3;
+   -webkit-column-count: 3;
+}
+
+p.startli, p.startdd, p.starttd {
+   margin-top: 2px;
+}
+
+p.endli {
+   margin-bottom: 0px;
+}
+
+p.enddd {
+   margin-bottom: 4px;
+}
+
+p.endtd {
+   margin-bottom: 2px;
+}
+
+/* @end */
+
+caption {
+   font-weight: bold;
+}
+
+span.legend {
+font-size: 70%;
+text-align: center;
+}
+
+h3.version {
+font-size: 90%;
+text-align: center;
+}
+
+div.qindex, div.navtab{
+   background-color: #EBEFF6;
+   border: 1px solid #A3B4D7;
+   text-align: center;
+}
+
+div.qindex, div.navpath {
+   width: 100%;
+   line-height: 140%;
+}
+
+div.navtab {
+   margin-right: 15px;
+}
+
+/* @group Link Styling */
+
+a {
+   color: #3D578C;
+   font-weight: normal;
+   text-decoration: none;
+}
+
+.contents a:visited {
+   color: #4665A2;
+}
+
+a:hover {
+   text-decoration: underline;
+}
+
+a.qindex {
+   font-weight: bold;
+}
+
+a.qindexHL {
+   font-weight: bold;
+   background-color: #9CAFD4;
+   color: #ff;
+   border: 1px double #869DCA;
+}
+
+.contents a.qindexHL:visited {
+color: #ff;
+}
+
+a.el {
+   font-weight: bold;
+}
+
+a.elRef {
+}
+
+a.code, a.code:visited {
+   color: #4665A2; 
+}
+
+a.codeRef, a.codeRef:visited {
+   color: #4665A2; 
+}
+
+/* @end */
+
+dl.el {
+   margin-left: -1cm;
+}
+
+pre.fragment {
+border: 1px solid #C4CFE5;
+background-color: #FBFCFD;
+padding: 4px 6px;
+margin: 4px 8px 4px 2px;
+overflow: auto;
+word-wrap: break-word;
+font-size:  9pt;
+line-height: 125%;
+font-family: monospace, fixed;
+font-size: 105%;
+}
+
+div.fragment {
+padding: 4px;
+margin: 4px;
+   background-color: #FBFCFD;
+   border: 1px solid #C4CFE5;
+}
+
+div.line {
+   font-family: monospace, fixed;
+font-size: 13px;
+   min-height: 13px;
+   line-height: 1.0;
+   text-wrap: unrestricted;
+   white-space: -moz-pre-wrap; /* Moz */
+   white-space: -pre-wrap; /* Opera 4-6 */
+   white-space: -o-pre-wrap;   /* Opera 7 */
+   white-space: pre-wrap;  /* CSS3  */
+   word-wrap: break-word;  /* IE 5.5+ */
+   text-indent: -53px;
+   padding-left: 53px;
+   padding-bottom: 0px;
+   margin: 0px;
+   -webkit-transition-property: background-color, box-shadow;
+   -webkit-transition-duration: 0.5s;
+   -moz-transition-property: background-color, box-shadow;
+   -moz-transition-duration: 0.5s;
+   -ms-transition-property: background-color, box-shadow;
+   -ms-transition-duration: 0.5s;
+   -o-transition-property: background-color, box-shadow;
+   -o-transition-duration: 0.5s;
+   transition-property: background-color, box-shadow;
+   transition-duration: 0.5s;
+}
+
+div.line.glow {
+   background-color: cyan;
+   box-shadow: 0 0 10px cyan;
+}
+
+
+span.lineno {
+   padding-right: 4px;
+   text-align: right;
+   border-right: 2px solid #0F0;
+   background-color: #E8E8E8;
+white-space: pre;
+}
+span.lineno a {
+   background-color: #D8D8D8;
+}
+
+span.lineno a:hover {
+   background-color: #C8C8C8;
+}
+
+div.ah {
+   background-color: black;
+   font-weight: bold;
+   col

[47/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch02s03.html
--
diff --git a/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch02s03.html 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch02s03.html
new file mode 100644
index 000..5f9cb72
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch02s03.html
@@ -0,0 +1,847 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+ch02s03.html - Apache Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0AMQP Messaging 
Broker (Implemented in C++)ch02s03.html
+
+
+  2.3. 
+  QMF Python Console Tutorial
+Prev Chapter 2. 
+  Managing the AMQP Messaging Broker
+ 2.3. 
+  QMF Python Console Tutorial
+
+Section 2.3.1, 
“
+Prerequisite
+- Install Qpid Messaging
+  ”
+  
+Section 2.3.2, “
+Synchronous
+Console Operations
+  ”
+  
+
+Section 2.3.2.1, “
+Creating a QMF Console Session and Attaching to a Broker
+  ”
+  
+Section 2.3.2.2, “
+Accessing
+Managed Objects
+  ”
+  
+
+the section called 
“
+Viewing Properties and Statistics of an Object
+  ”
+  
+the section called “
+Invoking
+Methods on an Object
+  ”
+  
+  
+  
+Section 2.3.3, “
+Asynchronous
+Console Operations
+  ”
+  
+
+Section 2.3.3.1, “
+Creating a Console Class to Receive Asynchronous Data
+  ”
+  
+Section 2.3.3.2, “
+Receiving
+Events
+  ”
+  
+Section 2.3.3.3, “
+Receiving
+Objects
+  ”
+  
+Section 2.3.3.4, “
+Asynchronous Method Calls and Method Timeouts
+  ”
+  
+  
+Section 2.3.4, “
+Discovering what Kinds of Objects are Available
+  ”
+  2.3.1. 
+Prerequisite
+- Install Qpid Messaging
+  
+QMF uses AMQP Messaging (QPid) as its means of communication. To
+use QMF, Qpid messaging must be installed somewhere in the
+network. Qpid can be downloaded as source from Apache, is
+packaged with a number of Linux distributions, and can be
+purchased from commercial vendors that use Qpid. Please see
+http://qpid.apache.org"; 
target="_top">http://qpid.apache.orgfor
+information as to where to get Qpid Messaging.
+  
+Qpid Messaging includes a message broker (qpidd) which typically
+runs as a daemon on a system. It also includes client bindings in
+various programming languages. The Python-language client library
+includes the QMF console libraries needed for this tutorial.
+  
+Please note that Qpid Messaging has two broker implementations.
+One is implemented in C++ and the other in Java. At press time,
+QMF 

[09/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/cpp-broker/book/css/style.css
--
diff --git a/input/releases/qpid-cpp-1.36.0/cpp-broker/book/css/style.css 
b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/css/style.css
new file mode 100644
index 000..c681596
--- /dev/null
+++ b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/css/style.css
@@ -0,0 +1,279 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ */
+ul {
+list-style-type:square;
+}
+
+th { 
+font-weight: bold;
+}
+
+.navfooter td { 
+font-size:10pt;
+}
+
+.navheader td { 
+font-size:10pt;
+}
+
+body {
+margin:0;
+background:#FF;
+font-family:"Verdana", sans-serif;
+font-size:10pt;
+}
+
+.container {
+width:950px;
+margin:0 auto;
+}
+
+body a {
+color:#00;
+}
+
+
+div.book {
+margin-left:10pt;
+margin-right:10pt;
+}
+
+div.preface {
+margin-left:10pt;
+margin-right:10pt;
+}
+
+div.chapter {
+margin-left:10pt;
+margin-right:10pt;
+}
+
+div.section {
+margin-left:10pt;
+margin-right:10pt;
+}
+
+div.titlepage {
+margin-left:-10pt;
+margin-right:-10pt;
+}
+
+.calloutlist td {
+font-size:10pt;
+}
+
+.table-contents table {
+border-spacing: 0px;
+}
+
+.table-contents td {
+font-size:10pt;
+padding-left:6px;
+padding-right:6px;
+}
+
+div.breadcrumbs {
+font-size:9pt;
+margin-right:10pt;
+padding-bottom:16px;
+}
+
+.chapter h2.title {
+font-size:20pt;
+color:#0c3b82;
+}
+
+.chapter .section h2.title {
+font-size:18pt;
+color:#0c3b82;
+}
+
+.section h2.title {
+font-size:16pt;
+color:#0c3b82;
+}
+
+.section h3.title {
+font-size:14pt;
+color:#0c3b82;
+}
+
+.section h4.title {
+font-size:12pt;
+color:#0c3b82;
+}
+
+.section h5.title {
+font-size:12pt;
+color:#0c3b82;
+}
+
+.section h6.title {
+font-size:12pt;
+color:#0c3b82;
+}
+
+.toc a {
+font-size:9pt;
+}
+
+.header {
+height:100px;
+width:950px;
+background:url(http://qpid.apache.org/images/header.png)
+}
+
+.logo {
+text-align:center;
+font-weight:600;
+padding:0 0 0 0;
+font-size:14px;
+font-family:"Verdana", cursive;
+}
+
+.logo a {
+color:#00;
+text-decoration:none;
+}
+
+.main_text_area {
+margin-left:200px;
+}
+
+.main_text_area_top {
+height:14px;
+font-size:1px;
+}
+
+.main_text_area_bottom {
+display:none;
+/*  height:14px;
+margin-bottom:4px;*/
+}
+
+.main_text_area_body {
+padding:5px 24px;
+}
+
+.main_text_area_body p {
+text-align:justify;
+}
+
+.main_text_area br {
+line-height:10px;
+}
+
+.main_text_area h1 {
+font-size:28px;
+font-weight:600;
+margin:0 0 24px 0;
+color:#0c3b82;
+font-family:"Verdana", Times, serif;
+}
+
+.main_text_area h2 {
+font-size:24px;
+font-weight:600;
+margin:24px 0 8px 0;
+color:#0c3b82;
+font-family:"Verdana",Times, serif;
+}
+
+.main_text_area ol, .main_text_area ul {
+padding:0;
+margin:10px 0;
+margin-left:20px;
+}
+
+.main_text_area li {
+/*margin-left:40px; */
+}
+
+.main_text_area, .menu_box {
+font-size:13px;
+line-height:17px;
+color:#00;
+}
+
+.main_text_area {
+font-size:14px;
+}
+
+.main_text_area a {
+color:#00;
+}
+
+.main_text_area a:hover {
+color:#00;
+}
+
+.menu_box {
+width:196px;
+float:left;
+margin-left:4px;
+}
+
+.menu_box_top {
+background:url(http://qpid.apache.org/images/menu_top.png) no-repeat; 
+height:14px;
+font-size:1px;
+}
+
+.menu_box_body {
+background:url(http://qpid.apache.org/images/menu_body.png) repeat-y; 
+padding:5px 24px 5px 24px;
+}
+
+.menu_box_bottom {
+background:url(http://qpid.apache.org/images/menu_bottom.png) no-repeat; 
+height:14px;
+font-size:1px;
+margin-bottom:1px;
+}
+
+.menu_box h3 {
+font-size:20px;
+font-weight:500;
+margin:0 0 8px 0;
+color:#0c3b82;
+font-family:"Verdana",Times, serif;
+}
+
+.menu_box ul {
+margin:12px;
+padding:0px;
+}
+
+.menu_box li {
+list-style:square; 
+}
+
+.menu_box a {
+ 

[45/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-Managing-CPP-Broker.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-Managing-CPP-Broker.html
 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-Managing-CPP-Broker.html
new file mode 100644
index 000..dc01d6f
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-Managing-CPP-Broker.html
@@ -0,0 +1,602 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+2.1.  Managing the C++ Broker - Apache Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0AMQP Messaging 
Broker (Implemented in C++)2.1.  Managing the C++ 
Broker
+
+
+  Chapter 2. 
+  Managing the AMQP Messaging Broker
+Prev   NextChapter 2. 
+  Managing the AMQP Messaging Broker
+Table of 
Contents2.1.  
Managing the C++ Broker 2.1.1. 
+Using qpid-config
+  2.1.2. 
+Using qpid-route
+  2.1.3. 
+Using qpid-tool
+  2.1.4. 
+Using
+qpid-printevents
+  2.1.5. Using 
qpid-ha2.2. 
+  Qpid Management Framework
+2.2.1. 
+What Is QMF
+  2.2.2. 
+Getting
+Started with QMF
+  2.2.3. 
+QMF Concepts
+  2.2.4. 
+The QMF
+Protocol
+  2.2.5. 
+How
+to Write a QMF Console
+  2.2.6. 
+How to
+Write a QMF Agent
+  2.3. 
+  QMF Python Console Tutorial
+2.3.1.
 
+Prerequisite
+- Install Qpid Messaging
+  2.3.2.
 
+Synchronous
+Console Operations
+  2.3.3.
 
+Asynchronous
+Console Operations
+  2.3.4.
 
+Discovering what Kinds of Objects are Available
+  2.1.  Managing the C++ Broker 

+There are quite a few ways to interact with the C++ broker. The
+command line tools
+include:
+  qpid-route - used to configure federation 
(a set of federated
+brokers)
+qpid-config - used to configure 
queues, exchanges, bindings
+and list them etc
+qpid-tool - used to view 
management information/statistics
+and call any management actions on the broker
+qpid-printevents - used to 
receive and print QMF events
+qpid-ha - used to interact with 
the High Availability module
+2.1.1. 
+Using qpid-config
+  
+This utility can be used to create queues exchanges and bindings,
+both durable and transient. Always check for latest options by
+running --help command.
+  
+$ qpid-config --help
+Usage:  qpid-config [OPTIONS]
+qpid-config [OPTIONS] exchanges [filter-string]
+qpid-config [OPTIONS] queues[filter-string]
+qpid-config [OPTIONS] add exchange   
[AddExchangeOptions]
+qpid-config [OPTIONS] del exchange 
+qpid-config [OPTIONS] add queue  [AddQueueOptions]
+qpid-config [OPTIONS] del queue 
+qpid-config [OPTIONS] bind     
[binding-key]
+qpid-config [OPTIONS] unbind   
[binding-key]
+
+Options:
+-b [ --bindings ] Show bindings in queue or 
exchange list
+-a [ --broker-

[03/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.html
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.html
 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.html
new file mode 100644
index 000..85d8d11
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.html
@@ -0,0 +1,261 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::Handle< T > Class 
Template Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Handle.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+Protected Types |
+Protected Attributes |
+Friends |
+List of all 
members  
+  
+qpid::messaging::Handle< T > Class Template 
Reference  
+
+
+
+#include 
+
+
+Public Member Functions
+QPID_MESSAGING_INLINE_EXTERN bool isValid
 () const 
+ 
+QPID_MESSAGING_INLINE_EXTERN bool isNull
 () const 
+ 
+QPID_MESSAGING_INLINE_EXTERN operator
 bool () const 
+ 
+QPID_MESSAGING_INLINE_EXTERN bool operator!
 () const 
+ 
+
+void swap (Handle< T > 
&h)
+ 
+
+
+Protected Types
+
+typedef T Impl
+ 
+
+
+Protected Attributes
+
+Impl * impl
+ 
+
+
+Friends
+
+class PrivateImplRef< 
T >
+ 
+
+Detailed 
Description
+template
+class qpid::messaging::Handle< T >
+
+A handle is like a pointer: refers to an underlying implementation object. 
Copying the handle does not copy the object.
+Handles can be null, like a 0 pointer. Use isValid(),
 isNull()
 or the conversion to bool to test for a null handle. 
+Member Function Documentation
+
+
+
+
+template 
+
+  
+  
+  
+
+  QPID_MESSAGING_INLINE_EXTERN bool qpid::messaging::Handle< T 
>::isNull 
+  (
+  )
+   const
+
+  
+  
+  
+inline  
+  
+
+
+Returnstrue if handle is null. It is 
an error to call any function on a null handle. 
+
+
+
+
+
+
+
+template 
+
+  
+  
+  
+
+  QPID_MESSAGING_INLINE_EXTERN bool qpid::messaging::Handle< T 
>::isValid 
+  (
+  )
+   const
+
+  
+  
+  
+inline  
+  
+
+
+Returnstrue if handle is valid, i.e. 
not null. 
+
+
+
+
+
+
+
+template 
+
+  
+  
+  
+
+  QPID_MESSAGING_INLINE_EXTERN qpid::messaging::Handle< T 
>::operator bool 
+  (
+  )
+   const
+
+  
+  
+  
+inline  
+  
+
+
+Conversion to bool supports idiom if (handle) { handle->... } 
+
+
+
+
+
+
+
+template 
+
+  
+  
+  
+
+  QPID_MESSAGING_INLINE_EXTERN bool qpid::messaging::Handle< T 
>::operator! 
+  (
+  )
+   const
+
+  
+  
+  
+inline  
+  
+
+
+Operator ! supports idiom if (!handle) { do_if_handle_is_null(); } 
+
+
+
+The documentation for this class was generated from the following 
file:
+qpid/messaging/Handle.h
+
+
+
+
+
+  
+qpidmessagingHandle
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.js
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.js
 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.js
new file mode 100644
index 000..b17a578
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Handle.js
@@ -0,0 +1,12 @@
+var classqpid_1_1messaging_1_1Handle =
+[
+[ "Impl", 
"classqpid_1_1messaging_1_1Handle.html#aae44d218cffcb40859af8702e4635d3f", null 
],
+[ "Handle", 
"classqpid_1_1messaging_1_1Handle.html#ac760dc55cf344bde4e67ecd3cba8253e", null 
],
+[ "isNull", 
"classqpid_1_1messaging_1_1Handle.html#a85d30ccb081c4b15dc3bedeb40ffbf52", null 
],
+[ "isValid", 
"classqpid_1_1messaging_1_1Handle.html#adec615c78a110d36011aaa7f74f9", null 
],
+[ "operator bool", 
"classqpid_1_1messaging_1_1Handle.html#a75949c9b0035ce83928ae1bb877ff252", null 
],
+[ "operator!", 
"classqpid_1_1messaging_1_1Han

[04/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
new file mode 100644
index 000..7b6cfc8
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
@@ -0,0 +1,136 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Member List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Connection.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+qpid::messaging::Connection Member List  
+
+
+
+This is the complete list of members for qpid::messaging::Connection,
 including all inherited members.
+
+  close()qpid::messaging::Connection
+  Connection(ConnectionImpl 
*impl) (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  Connection(const 
Connection &) (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  Connection() (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  Connection(const
 std::string &url, const qpid::types::Variant::Map 
&options=qpid::types::Variant::Map())qpid::messaging::Connection
+  Connection(const
 std::string &url, const std::string &options)qpid::messaging::Connection
+  createSession(const std::string &name=std::string()) 
(defined in qpid::messaging::Connection)qpid::messaging::Connection
+  createTransactionalSession(const std::string 
&name=std::string()) (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  getAuthenticatedUsername() (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  getSession(const std::string 
&name) const  (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  getUrl()
 const qpid::messaging::Connection
+  Handle() (defined in qpid::messaging::Handle< 
ConnectionImpl >)qpid::messaging::Handle< 
ConnectionImpl >inlineprotected
+  impl (defined in 
qpid::messaging::Handle< 
ConnectionImpl >)qpid::messaging::Handle< 
ConnectionImpl >protected
+  Impl typedef (defined in qpid::messaging::Handle< 
ConnectionImpl >)qpid::messaging::Handle< 
ConnectionImpl >protected
+  isNull()
 constqpid::messaging::Handle< 
ConnectionImpl >inline
+  isOpen() (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  isOpen() const  
(defined in qpid::messaging::Connection)qpid::messaging::Connection
+  isValid()
 constqpid::messaging::Handle< 
ConnectionImpl >inline
+  open() (defined 
in qpid::messaging::Connection)qpid::messaging::Connection
+  operator
 bool() constqpid::messaging::Handle< 
ConnectionImpl >inline
+  operator!()
 constqpid::messaging::Handle< 
ConnectionImpl >inline
+  operator=(const Connection 
&) (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  qpid::messaging::PrivateImplRef< Connection > 
(defined in qpid::messaging::Connection)qpid::messaging::Connectionfriend
+  reconnect(const
 std::string &url)qpid::messaging::Connection
+  reconnect()qpid::messaging::Connection
+  setOption(const std::string 
&name, const qpid::types::Variant &value) (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  swap(Handle< 
ConnectionImpl > &h) (defined in qpid::messaging::Handle< 
ConnectionImpl >)qpid::messaging::Handle< 
ConnectionImpl >inline
+  ~Connection() (defined in qpid::messaging::Connection)qpid::messaging::Connection
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection.html
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection.html
 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection.html
new file mode 100644
index 000..579417b
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection.html
@@ -0,0 +1,378 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"

[14/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/cpp-broker/book/AMQP-Compatibility.html.in
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/cpp-broker/book/AMQP-Compatibility.html.in 
b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/AMQP-Compatibility.html.in
new file mode 100644
index 000..94c8ca4
--- /dev/null
+++ b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/AMQP-Compatibility.html.in
@@ -0,0 +1,393 @@
+1.9. 
+  AMQP compatibility
+Prev Chapter 1. 
+  Running the AMQP Messaging Broker
+ Next1.9. 
+  AMQP compatibility
+
+Qpid provides the most complete and compatible implementation
+of AMQP. And is the most aggressive in implementing the latest
+version of the specification.
+  
+There are two brokers:
+  C++ with support for AMQP 0-10Java with support for AMQP 0-8 and 0-9 (0-10 
planned)
+There are client libraries for C++, Java (JMS), .Net (written in
+C#), python and ruby.
+  All clients support 0-10 and interoperate 
with the C++
+broker.
+The JMS client 
supports 0-8, 0-9 and 0-10 and interoperates
+with both brokers.
+The python and ruby 
clients will also support all versions,
+but the API is dynamically driven by the specification used and
+so differs between versions. To work with the Java broker you
+must use 0-8 or 0-9, to work with the C++ broker you must use
+0-10.
+There are two separate 
C# clients, one for 0-8 that
+interoperates with the Java broker, one for 0-10 that
+inteoperates with the C++ broker.
+
+QMF Management is supported in Ruby, Python, C++, and via QMan
+for Java JMX & WS-DM.
+  1.9.1. 
+AMQP
+Compatibility of Qpid releases:
+  
+Qpid implements the AMQP Specification, and as the specification
+has progressed Qpid is keeping up with the updates. This means
+that different Qpid versions support different versions of AMQP.
+Here is a simple guide on what use.
+  
+Here is a matrix that describes the different versions supported
+by each release. The status symbols are interpreted as follows:
+  YsupportedNunsupportedIPin progressPplannedTable 1.22. AMQP Version Support by Qpid 
Release
+  Component
+
+  Spec
+
+   
+
+   
+
+   
+
+   
+
+   
+
+   
+
+  M2.1
+
+  M3
+
+  M4
+
+  0.5
+
+  java client
+
+  0-10
+
+   
+
+  Y
+
+  Y
+
+  Y
+
+   
+
+  0-9
+
+  Y
+
+  Y
+
+  Y
+
+  Y
+
+   
+
+  0-8
+
+  Y
+
+  Y
+
+  Y
+
+  Y
+
+  java broker
+
+  0-10
+
+   
+
+   
+
+   
+
+  P
+
+   
+
+  0-9
+
+  Y
+
+  Y
+
+  Y
+
+  Y
+
+   
+
+  0-8
+
+  Y
+
+  Y
+
+  Y
+
+  Y
+
+  c++ client/broker
+
+  0-10
+
+   
+
+  Y
+
+  Y
+
+  Y
+
+   
+
+  0-9
+
+  Y
+
+   
+
+   
+
+   
+  

[22/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1NotFound-members.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1NotFound-members.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1NotFound-members.html
new file mode 100755
index 000..b579799
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1NotFound-members.html
@@ -0,0 +1,117 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Member List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('structqpid_1_1messaging_1_1NotFound.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+qpid::messaging::NotFound Member List  
+
+
+
+This is the complete list of members for qpid::messaging::NotFound, 
including all inherited members.
+
+  AddressError(const std::string &) (defined in qpid::messaging::AddressError)qpid::messaging::AddressError
+  Exception(const std::string 
&message=std::string()) (defined in qpid::types::Exception)qpid::types::Exceptionexplicit
+  LinkError(const 
std::string &) (defined in qpid::messaging::LinkError)qpid::messaging::LinkError
+  MessagingException(const 
std::string &msg) (defined in qpid::messaging::MessagingException)qpid::messaging::MessagingException
+  NotFound(const 
std::string &msg) (defined in qpid::messaging::NotFound)qpid::messaging::NotFound
+  ResolutionError(const 
std::string &msg) (defined in qpid::messaging::ResolutionError)qpid::messaging::ResolutionError
+  what() const  
(defined in qpid::types::Exception)qpid::types::Exceptionvirtual
+  ~Exception() (defined in qpid::types::Exception)qpid::types::Exceptionvirtual
+  ~MessagingException() (defined in qpid::messaging::MessagingException)qpid::messaging::MessagingExceptionvirtual
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1NotFound.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1NotFound.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1NotFound.html
new file mode 100755
index 000..5c767cb
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1NotFound.html
@@ -0,0 +1,160 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::NotFound Struct 
Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('structqpid_1_1messaging_1_1NotFound.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+List of all 
members  
+  
+qpid::messaging::NotFound Struct Reference  
+
+
+
+#include 
+
+Inheritance diagram for qpid::messaging::NotFound:
+
+ 
+  
+  
+
+
+
+
+
+
+ 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN NotFound (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::messaging::ResolutionError
+
+QPID_MESSAGING_EXTERN ResolutionError (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::messaging::AddressError
+
+QPID_MESSAGING_EXTERN AddressError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::LinkError
+
+QPID_MESSAGING_EXTERN LinkError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::MessagingException
+
+QPID_MESSAGING_EXTERN MessagingException (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::types::Exception
+
+QPID_TYPES_EXTERN Exception (const std::string &message=s

[30/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/functions.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/functions.html 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/functions.html
new file mode 100755
index 000..2fba78f
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/functions.html
@@ -0,0 +1,399 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Class Members
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('functions.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+Here is a list of all documented class members with 
links to the class documentation for each member:
+
+- a -
+acknowledge()
+: qpid::messaging::Session
+
+acknowledgeUpTo()
+: qpid::messaging::Session
+
+
+
+
+- c -
+checkError()
+: qpid::messaging::Session
+
+clear()
+: qpid::types::Uuid
+
+close()
+: qpid::messaging::Receiver
+, qpid::messaging::Session
+, qpid::messaging::Connection
+
+commit()
+: qpid::messaging::Session
+
+configure()
+: qpid::messaging::Logger
+
+Connection()
+: qpid::messaging::Connection
+
+createReceiver()
+: qpid::messaging::Session
+
+createSender()
+: qpid::messaging::Session
+
+
+
+
+- d -
+described()
+: qpid::types::Variant
+
+
+
+
+- f -
+fetch()
+: qpid::messaging::Receiver
+
+
+
+
+- g -
+generate()
+: qpid::types::Uuid
+
+get()
+: qpid::messaging::Receiver
+
+getAddress()
+: qpid::messaging::Receiver
+, qpid::messaging::Sender
+
+getAvailable()
+: qpid::messaging::Receiver
+, qpid::messaging::Sender
+
+getCapacity()
+: qpid::messaging::Receiver
+, qpid::messaging::Sender
+
+getConnection()
+: qpid::messaging::Session
+
+getContent()
+: qpid::messaging::Message
+
+getContentBytes()
+: qpid::messaging::Message
+
+getContentObject()
+: qpid::messaging::Message
+
+getContentPtr()
+: qpid::messaging::Message
+
+getContentSize()
+: qpid::messaging::Message
+
+getContentType()
+: qpid::messaging::Message
+
+getDescriptor()
+: qpid::types::Variant
+
+getDescriptors()
+: qpid::types::Variant
+
+getName()
+: qpid::messaging::Receiver
+, qpid::messaging::Sender
+
+getProperties()
+: qpid::messaging::Message
+
+getReceivable()
+: qpid::messaging::Session
+
+getReceiver()
+: qpid::messaging::Session
+
+getRedelivered()
+: qpid::messaging::Message
+
+getSender()
+: qpid::messaging::Session
+
+getSession()
+: qpid::messaging::Sender
+, qpid::messaging::Receiver
+
+getString()
+: qpid::types::Variant
+
+getTtl()
+: qpid::messaging::Message
+
+getUnsettled()
+: qpid::messaging::Receiver
+, qpid::messaging::Sender
+
+getUnsettledAcks()
+: qpid::messaging::Session
+
+getUrl()
+: qpid::messaging::Connection
+
+
+
+
+- h -
+hasError()
+: qpid::messaging::Session
+
+hash()
+: qpid::types::Uuid
+
+
+
+
+- i -
+isClosed()
+: qpid::messaging::Receiver
+
+isDescribed()
+: qpid::types::Variant
+
+isNull()
+: qpid::types::Uuid
+, qpid::messaging::Handle<
 T >
+
+isValid()
+: qpid::messaging::Handle<
 T >
+
+
+
+
+- l -
+log()
+: qpid::messaging::LoggerOutput
+, qpid::messaging::Logger
+
+
+
+
+- n -
+nextReceiver()
+: qpid::messaging::Session
+
+
+
+
+- o -
+operator bool()
+: qpid::messaging::Handle<
 T >
+
+operator!()
+: qpid::messaging::Handle<
 T >
+
+operator!=
+: qpid::types::Uuid
+
+operator<<
+: qpid::types::Uuid
+
+operator==
+: qpid::types::Uuid
+
+operator>>
+: qpid::types::Uuid
+
+
+
+
+- p -
+parse()
+: qpid::types::Variant
+
+
+
+
+- r -
+reconnect()
+: qpid::messaging::Connection
+
+reject()
+: qpid::messaging::Session
+
+release()
+: qpid::messaging::Session
+
+reset()
+: qpid::types::Variant
+
+
+
+
+- s -
+send()
+: qpid::messaging::Sender
+
+setCapacity()
+: qpid::messaging::Receiver
+, qpid::messaging::Sender
+
+setContent()
+: qpid::messaging::Message
+
+setContentBytes()
+: qpid::messaging::Message
+
+setContentObject()
+: qpid::messaging::Message
+
+setContentType()
+: qpid::messaging::Message
+
+setCorrelationId()
+: qpid::messaging::Message
+
+setDescriptor()
+: qpid::types::Variant
+
+setDurable()
+: qpid::messaging::Message
+
+setMessageId()
+: qpid::messaging::Message
+
+setOutput()
+: qpid::messaging::Logger
+
+setPriority()
+: qpid::messaging::Message
+
+setRedelivered()
+: qpid::messaging::Message
+
+setTtl()
+: qpid::messaging::Message
+
+setType()
+: qpid::messaging::Address
+
+setUserId()
+: qpid::messaging::Message
+
+str()
+: qpid::types::Uuid
+
+s

[29/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/jquery.js
--
diff --git a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/jquery.js 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/jquery.js
new file mode 100755
index 000..78ad0bd
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/jquery.js
@@ -0,0 +1,77 @@
+/*! jQuery v1.7.1 jquery.com | jquery.org/license */
+(function(a,b){function cy(a){return 
f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function 
cv(a){if(!ck[a]){var 
b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return
 ck[a]}function cu(a,b){var 
c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return 
c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function 
cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function 
ci(){try{return new a.XMLHttpRequest}catch(b){}}function 
cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var 
d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p
 ;for(g=1;g0){if(c!=="border")for(;g=0===c})}function 
S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function 
K(){return!0}function J(){return!1}function n(a,b,c){var 
d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function
 m(a){for(var b in 
a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function
 l(a,c,d){if(d===b&&a.nodeType===1){var 
e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof 
d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parse
 Float(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return 
d}function h(a){var 
b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[
 \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) 
([\w.]+)/,u=/(mozilla)(?:.*? 
rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.pro
 
totype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var
 g,h,j,k;if(!a)return 
this;if(a.nodeType){this.context=this[0]=a,this.length=1;return 
this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return
 this}if(typeof 
a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d
 instanceof 
e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return
 
e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return
 f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return 
this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return
 f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.
 context);return 
e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return 
this.length},toArray:function(){return F.call(this,0)},get:function(a){return 
a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var
 
d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?"
 ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return 
d},each:function(a,b){return 
e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return 
this},eq:function(a){a=+a;return 
a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return 
this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return 
this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return
 this.pushStack(e.map(this,function(b,c){return 
a.call(b,c,b)}))},end:function(){return 
this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].
 splice},e.fn.init.prototy

[13/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01s02.html.in
--
diff --git a/input/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01s02.html.in 
b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01s02.html.in
new file mode 100644
index 000..a1dee4a
--- /dev/null
+++ b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01s02.html.in
@@ -0,0 +1,143 @@
+1.2. 
+  Cheat Sheet for configuring Queue Options
+Prev Chapter 1. 
+  Running the AMQP Messaging Broker
+ Next1.2. 
+  Cheat Sheet for configuring Queue Options
+1.2.1. 
+Configuring
+Queue Options
+  
+The C++ Broker M4 or later supports the following additional
+Queue constraints.
+  
+Section 1.2.1, “
+Configuring
+Queue Options
+  ”
+  
+
+Section 1.2.1.1, 
“
+Applying Queue Sizing Constraints
+  ”
+  
+Section 1.2.1.2, “
+Changing the Queue ordering Behaviors (FIFO/LVQ)
+  ”
+  
+Section 1.2.1.3, 
“
+Setting additional behaviors
+  ”
+  
+
+???
+  
+  
+Section 1.2.1.4, “
+Other
+Clients
+  ”
+  
+  
+The 0.10 C++ Broker supports the following additional Queue 
configuration options:
+  
+  Section 1.8, “
+Producer Flow Control
+  ”
+1.2.1.1. 
+Applying Queue Sizing Constraints
+  
+This allows to specify how to size a queue and what to do when
+the sizing constraints have been reached. The queue size can be
+limited by the number messages (message depth) or byte depth on
+the queue.
+  
+Once the Queue meets/ exceeds these constraints the follow
+policies can be applied
+  REJECT - Reject the published message
+FLOW_TO_DISK - Flow the messages 
to disk, to preserve memory
+RING - start overwriting messages 
in a ring based on sizing.
+If head meets tail, advance head
+RING_STRICT - start overwriting 
messages in a ring based on
+sizing. If head meets tail, AND the consumer has the tail message
+acquired it will reject
+
+Examples:
+  
+Create a queue an auto delete queue that will support 100 000
+bytes, and then REJECT
+  
+#include "qpid/client/QueueOptions.h"
+
+QueueOptions qo;
+qo.setSizePolicy(REJECT,10,0);
+
+session.queueDeclare(arg::queue=queue, arg::autoDelete=true, 
arg::arguments=qo);
+
+Create a queue that will support 1000 messages into a RING buffer
+  
+#include "qpid/client/QueueOptions.h"
+
+QueueOptions qo;
+qo.setSizePolicy(RING,0,1000);
+
+session.queueDeclare(arg::queue=queue, arg::arguments=qo);
+1.2.1.2. 
+Changing the Queue ordering Behaviors (FIFO/LVQ)
+  
+The default ordering in a queue in Qpid is FIFO. However
+additional ordering semantics can be used namely LVQ (Last Value
+Queue). Last Value Queue is define as follows.
+  
+If I publish symbols RHT, IBM, JAVA, MSFT, and then publish RHT
+before the consumer is able to consume RHT, that message will be
+over written in the queue and the consumer will receive the last
+published value for RHT.
+  
+Example:
+  
+#include "qpid/client/QueueOptions.h"
+
+QueueOptions qo;
+qo.setOrdering(LVQ);
+
+session.queueDeclare(arg::queue=queue, arg::arguments=qo);
+
+.
+string key;
+qo.getLVQKey(key);
+
+
+for each message, set the into application headers before transfer
+message.getHeaders().setString(key,"RHT");
+
+
+Notes:
+  Messages that are dequeued and the 
re-queued will have the
+following exceptions. a.) if a new message has been queued with
+the same key, the re-queue from the consumer, will combine these
+two messages. b.) If an update happens for a message of the same
+key, after the re-queue, it will not update the re-queued
+message. This is done to protect a client from being able to
+adversely manipulate the queue.
+Acquire: When a message is 
acquired from the queue, no matter
+it's position, it will behave the same as a dequeue
+LVQ does not support durable 
messages. If the queue or
+messages are d

[44/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-ha.html
--
diff --git a/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-ha.html 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-ha.html
new file mode 100644
index 000..2b8e169
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chapter-ha.html
@@ -0,0 +1,930 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+1.12. Active-Passive Messaging Clusters - Apache 
Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0AMQP Messaging 
Broker (Implemented in C++)1.12. Active-Passive Messaging 
Clusters
+
+
+  1.12. Active-Passive Messaging ClustersPrev Chapter 1. 
+  Running the AMQP Messaging Broker
+ Next1.12. Active-Passive Messaging 
Clusters1.12.1. Overview
+
+  The High Availability (HA) module provides
+  active-passive, hot-standby
+  messaging clusters to provide fault tolerant message delivery.
+
+  In an active-passive cluster only one broker, known as the
+  primary, is active and serving clients at a 
time. The other
+  brokers are standing by as backups. Changes 
on the primary
+  are replicated to all the backups so they are always up-to-date or 
"hot". Backup
+  brokers reject client connection attempts, to enforce the requirement 
that clients
+  only connect to the primary.
+
+  If the primary fails, one of the backups is promoted to take over as the 
new
+  primary. Clients fail-over to the new primary automatically. If there 
are multiple
+  backups, the other backups also fail-over to become backups of the new 
primary.
+
+  This approach relies on an external cluster 
resource manager
+  to detect failures, choose the new primary and handle network 
partitions. https://fedorahosted.org/cluster/wiki/RGManager"; 
target="_top">rgmanager is supported
+  initially, but others may be supported in the future.
+1.12.1.1. Avoiding message 
loss
+   In order to avoid message loss, the primary broker delays
+   acknowledgement of messages received from clients until the
+   message has been replicated and acknowledged by all of the back-up
+   brokers, or has been consumed from the primary queue.
+  
+   This ensures that all acknowledged messages are safe: they have either
+   been consumed or backed up to all backup brokers.  Messages that are
+   consumed before they are 
replicated do not need to
+   be replicated. This reduces the work load when replicating a queue with
+   active consumers.
+  
+   Clients keep unacknowledged 
messages in a buffer
+   [1]
+   until they are acknowledged by the primary. If the primary fails, 
clients will
+   fail-over to the new primary and re-send all their
+   unacknowledged messages.
+   [2]
+  
+   If the primary crashes, all the acknowledged
+   messages will be available on the backup that takes over as the new
+   primary. The unacknowledged 
messages will be
+   re-sent by the clients.  Thus no messages are lost.
+  
+   Note that this means it is possible for messages to be
+   duplicated. In the event of a 
failure it is possible for a
+   message to received by the backup that becomes the new primary
+   and re-sent by the client.  The 
application must take steps
+   to identify and eliminate duplicates.
+  
+   When a new primary i

[25/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.html
new file mode 100755
index 000..da1ce2b
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.html
@@ -0,0 +1,150 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::AddressError Struct 
Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('structqpid_1_1messaging_1_1AddressError.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+List of all 
members  
+  
+qpid::messaging::AddressError Struct Reference  
+
+
+
+Inheritance diagram for qpid::messaging::AddressError:
+
+ 
+  
+  
+
+
+
+
+
+
+
+
+ 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN AddressError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::LinkError
+
+QPID_MESSAGING_EXTERN LinkError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::MessagingException
+
+QPID_MESSAGING_EXTERN MessagingException (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::types::Exception
+
+QPID_TYPES_EXTERN Exception (const std::string &message=std::string()) 
 throw ()
+ 
+
+virtual QPID_TYPES_EXTERN 
+const char * what () 
const   throw ()
+ 
+
+The documentation for this struct was generated from the following 
file:
+qpid/messaging/exceptions.h
+
+
+
+
+
+  
+qpidmessagingAddressError
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.js
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.js
new file mode 100755
index 000..b460b80
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.js
@@ -0,0 +1,4 @@
+var structqpid_1_1messaging_1_1AddressError =
+[
+[ "AddressError", 
"structqpid_1_1messaging_1_1AddressError.html#ae1636f6d53ca6c8303d8ee5caf578ee3",
 null ]
+];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.png
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.png
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.png
new file mode 100755
index 000..7dd971c
Binary files /dev/null and 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AddressError.png
 differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AssertionFailed-members.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AssertionFailed-members.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AssertionFailed-members.html
new file mode 100755
index 000..a30c928
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1AssertionFailed-members.html
@@ -0,0 +1,117 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Member List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  

[28/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/messaging_2ImportExport_8h_source.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/messaging_2ImportExport_8h_source.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/messaging_2ImportExport_8h_source.html
new file mode 100755
index 000..af16905
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/messaging_2ImportExport_8h_source.html
@@ -0,0 +1,141 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid/messaging/ImportExport.h Source 
File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('messaging_2ImportExport_8h_source.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+ImportExport.h  
+
+
+1 #ifndef 
QPID_MESSAGING_IMPORTEXPORT_H
+
2 #define QPID_MESSAGING_IMPORTEXPORT_H
+
3 
+
4 /*
+
5  * Licensed to the Apache Software 
Foundation (ASF) under one
+
6  * or more contributor license agreements.  
See the NOTICE file
+
7  * distributed with this work for 
additional information
+
8  * regarding copyright ownership.  The ASF 
licenses this file
+
9  * to you under the Apache License, Version 
2.0 (the
+   
10  * "License"); you may not use 
this file except in compliance
+   
11  * with the License.  You may obtain a 
copy of the License at
+   
12  *
+   
13  *   
http://www.apache.org/licenses/LICENSE-2.0
+   
14  *
+   
15  * Unless required by applicable law or 
agreed to in writing,
+   
16  * software distributed under the License 
is distributed on an
+   
17  * "AS IS" BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
18  * KIND, either express or implied.  See 
the License for the
+   
19  * specific language governing permissions 
and limitations
+   
20  * under the License.
+   
21  */
+   
22 
+   
23 #include 
"qpid/ImportExport.h"
+   
24 
+   
25 #if defined(CLIENT_EXPORT) || defined 
(qpidmessaging_EXPORTS)
+   
26 #  
define QPID_MESSAGING_EXTERN QPID_EXPORT
+   
27 #  
define QPID_MESSAGING_CLASS_EXTERN QPID_CLASS_EXPORT
+   
28 #  
define QPID_MESSAGING_INLINE_EXTERN QPID_INLINE_EXPORT
+   
29 #else
+   
30 #  
define QPID_MESSAGING_EXTERN QPID_IMPORT
+   
31 #  
define QPID_MESSAGING_CLASS_EXTERN QPID_CLASS_IMPORT
+   
32 #  
define QPID_MESSAGING_INLINE_EXTERN QPID_INLINE_IMPORT
+   
33 #endif
+   
34 
+   
35 #endif  
+
+
+
+
+  
+qpidmessagingImportExport.h
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_f.png
--
diff --git a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_f.png 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_f.png
new file mode 100755
index 000..72a58a5
Binary files /dev/null and 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_f.png differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_g.png
--
diff --git a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_g.png 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_g.png
new file mode 100755
index 000..9681f15
Binary files /dev/null and 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_g.png differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_h.png
--
diff --git a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_h.png 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_h.png
new file mode 100755
index 000..33389b1
Binary files /dev/null and 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/nav_h.png differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/navtree.css
--
diff --git a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/navtree.css 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/navtree.css
new file m

[36/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
new file mode 100755
index 000..a30bdc0
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
@@ -0,0 +1,607 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::Message Class Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Message.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+Friends |
+List of all 
members  
+  
+qpid::messaging::Message Class Reference  
+
+
+
+#include 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN Message (qpid::types::Variant 
&)
+ 
+
+QPID_MESSAGING_EXTERN Message (const std::string 
&bytes=std::string())
+ 
+
+QPID_MESSAGING_EXTERN Message (const char *, size_t)
+ 
+
+QPID_MESSAGING_EXTERN Message (const Message &)
+ 
+
+QPID_MESSAGING_EXTERN Message & operator= (const Message &)
+ 
+
+QPID_MESSAGING_EXTERN void setReplyTo (const Address &)
+ 
+
+QPID_MESSAGING_EXTERN const 
+Address 
& getReplyTo () 
const 
+ 
+
+QPID_MESSAGING_EXTERN void setSubject (const std::string &)
+ 
+
+QPID_MESSAGING_EXTERN const 
+std::string & getSubject () const 
+ 
+QPID_MESSAGING_EXTERN void setContentType
 (const std::string &)
+ 
+QPID_MESSAGING_EXTERN const 
+std::string & getContentType
 () const 
+ 
+QPID_MESSAGING_EXTERN void setMessageId
 (const std::string &)
+ 
+
+QPID_MESSAGING_EXTERN const 
+std::string & getMessageId () const 
+ 
+QPID_MESSAGING_EXTERN void setUserId
 (const std::string &)
+ 
+
+QPID_MESSAGING_EXTERN const 
+std::string & getUserId () const 
+ 
+QPID_MESSAGING_EXTERN void setCorrelationId
 (const std::string &)
+ 
+
+QPID_MESSAGING_EXTERN const 
+std::string & getCorrelationId () const 
+ 
+QPID_MESSAGING_EXTERN void setPriority
 (uint8_t)
+ 
+
+QPID_MESSAGING_EXTERN uint8_t getPriority () const 
+ 
+QPID_MESSAGING_EXTERN void setTtl
 (Duration 
ttl)
+ 
+QPID_MESSAGING_EXTERN Duration getTtl
 () const 
+ 
+QPID_MESSAGING_EXTERN void setDurable
 (bool durable)
+ 
+
+QPID_MESSAGING_EXTERN bool getDurable () const 
+ 
+QPID_MESSAGING_EXTERN bool getRedelivered
 () const 
+ 
+QPID_MESSAGING_EXTERN void setRedelivered
 (bool)
+ 
+QPID_MESSAGING_EXTERN const 
+qpid::types::Variant::Map & getProperties
 () const 
+ 
+
+QPID_MESSAGING_EXTERN 
+qpid::types::Variant::Map & getProperties ()
+ 
+
+QPID_MESSAGING_EXTERN void setProperties (const qpid::types::Variant::Map 
&)
+ 
+QPID_MESSAGING_EXTERN void setContent
 (const std::string &)
+ 
+QPID_MESSAGING_EXTERN void setContent
 (const char *chars, size_t count)
+ 
+QPID_MESSAGING_EXTERN std::string getContent
 () const 
+ 
+QPID_MESSAGING_EXTERN std::string getContentBytes
 () const 
+ 
+QPID_MESSAGING_EXTERN void setContentBytes
 (const std::string &)
+ 
+QPID_MESSAGING_EXTERN 
+qpid::types::Variant 
& getContentObject
 ()
+ 
+QPID_MESSAGING_EXTERN const 
+qpid::types::Variant 
& getContentObject
 () const 
+ 
+QPID_MESSAGING_EXTERN void setContentObject
 (const qpid::types::Variant 
&)
+ 
+QPID_MESSAGING_EXTERN const char * getContentPtr
 () const 
+ 
+QPID_MESSAGING_EXTERN size_t getContentSize
 () const 
+ 
+
+QPID_MESSAGING_EXTERN void setProperty (const std::string &, const qpid::types::Variant 
&)
+ 
+
+
+Friends
+
+struct MessageImplAccess
+ 
+
+Detailed 
Description
+Representation of a message. 
+Member Function Documentation
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN std::string 
qpid::messaging::Message::getContent 
+  (
+  )
+   const
+
+  
+
+Get the content as a std::string 
+
+
+
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN std::string 
qpid::messaging::Message::getContentBytes 
+  (
+  )
+   const
+
+  
+
+Get the content as raw bytes (an alias for getContent()
 
+
+
+
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN qpid::types::Variant& 
qpid::messaging::Message::getContentObject 
+  (
+  )
+  
+
+  
+
+Get the content as a Variant, which c

[39/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.html 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.html
new file mode 100755
index 000..19b1ff0
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.html
@@ -0,0 +1,157 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Class List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('annotated.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Class List  
+
+
+Here are the classes, structs, unions and interfaces 
with brief descriptions:
+[detail level 1234]
+qpid
+messaging
+Address
+PrivateImplRef
+Connection
+Duration
+MessagingException
+InvalidOptionString
+KeyError
+LinkError
+AddressError
+ResolutionError
+AssertionFailed
+NotFound
+MalformedAddress
+ReceiverError
+FetchError
+NoMessageAvailable
+SenderError
+SendError
+MessageRejected
+TargetCapacityExceeded
+OutOfCapacity
+SessionError
+SessionClosed
+TransactionError
+TransactionAborted
+TransactionUnknown
+UnauthorizedAccess
+ConnectionError
+ProtocolVersionError
+AuthenticationFailure
+TransportFailure
+FailoverUpdates
+Handle
+LoggerOutput
+Logger
+Message
+EncodingException
+Receiver
+Sender
+Session
+types
+Exception
+Uuid
+Hasher
+InvalidConversion
+Variant
+
+
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.js 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.js
new file mode 100755
index 000..d1045ac
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/annotated.js
@@ -0,0 +1,53 @@
+var annotated =
+[
+[ "qpid", null, [
+  [ "messaging", null, [
+[ "Address", "classqpid_1_1messaging_1_1Address.html", 
"classqpid_1_1messaging_1_1Address" ],
+[ "PrivateImplRef", "classqpid_1_1messaging_1_1PrivateImplRef.html", 
null ],
+[ "Connection", "classqpid_1_1messaging_1_1Connection.html", 
"classqpid_1_1messaging_1_1Connection" ],
+[ "Duration", "classqpid_1_1messaging_1_1Duration.html", 
"classqpid_1_1messaging_1_1Duration" ],
+[ "MessagingException", 
"structqpid_1_1messaging_1_1MessagingException.html", 
"structqpid_1_1messaging_1_1MessagingException" ],
+[ "InvalidOptionString", 
"structqpid_1_1messaging_1_1InvalidOptionString.html", 
"structqpid_1_1messaging_1_1InvalidOptionString" ],
+[ "KeyError", "structqpid_1_1messaging_1_1KeyError.html", 
"structqpid_1_1messaging_1_1KeyError" ],
+[ "LinkError", "structqpid_1_1messaging_1_1LinkError.html", 
"structqpid_1_1messaging_1_1LinkError" ],
+[ "AddressError", "structqpid_1_1messaging_1_1AddressError.html", 
"structqpid_1_1messaging_1_1AddressError" ],
+[ "ResolutionError", 
"structqpid_1_1messaging_1_1ResolutionError.html", 
"structqpid_1_1messaging_1_1ResolutionError" ],
+[ "AssertionFailed", 
"structqpid_1_1messaging_1_1AssertionFailed.html", 
"structqpid_1_1messaging_1_1AssertionFailed" ],
+[ "NotFound", "structqpid_1_1messaging_1_1NotFound.html", 
"structqpid_1_1messaging_1_1NotFound" ],
+[ "MalformedAddress", 
"structqpid_1_1messaging_1_1MalformedAddress.html", 
"structqpid_1_1messaging_1_1MalformedAddress" ],
+[ "ReceiverError", "structqpid_1_1messaging_1_1ReceiverError.html", 
"structqpid_1_1messaging_1_1ReceiverError" ],
+[ "FetchError", "structqpid_1_1messaging_1_1FetchError.html", 
"structqpid_1_1messaging_1_1FetchError" ],
+[ "NoMessageAvailable", 
"structqpid_1_1messaging_1_1NoMessageAvailable.html", 
"structqpid_1_1messaging_1_1NoMessageAvailable" ],
+[ "SenderError", "structqpid_1_1messaging_1_1SenderError.html", 
"structqpid_1_1messaging_1_1SenderError" ],
+[ "SendError", "structqpid_1_1messaging_1_1SendError.html", 
"structqpid_1_1messaging_1_1SendError" ],
+[ "MessageRejected", 
"structqpid_1_1messaging_1_1MessageRejected.html", 
"structqpid_1_1messaging_1_1MessageRejected" ],
+  

[20/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.html
new file mode 100755
index 000..baacff7
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.html
@@ -0,0 +1,146 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::SessionError Struct 
Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('structqpid_1_1messaging_1_1SessionError.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+List of all 
members  
+  
+qpid::messaging::SessionError Struct Reference  
+
+
+
+Inheritance diagram for qpid::messaging::SessionError:
+
+ 
+  
+  
+
+
+
+
+
+
+
+
+ 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN SessionError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::MessagingException
+
+QPID_MESSAGING_EXTERN MessagingException (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::types::Exception
+
+QPID_TYPES_EXTERN Exception (const std::string &message=std::string()) 
 throw ()
+ 
+
+virtual QPID_TYPES_EXTERN 
+const char * what () 
const   throw ()
+ 
+
+The documentation for this struct was generated from the following 
file:
+qpid/messaging/exceptions.h
+
+
+
+
+
+  
+qpidmessagingSessionError
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.js
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.js
new file mode 100755
index 000..90df378
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.js
@@ -0,0 +1,4 @@
+var structqpid_1_1messaging_1_1SessionError =
+[
+[ "SessionError", 
"structqpid_1_1messaging_1_1SessionError.html#a086265b744847419aa9f4d3897912f9d",
 null ]
+];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.png
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.png
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.png
new file mode 100755
index 000..0192543
Binary files /dev/null and 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1SessionError.png
 differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TargetCapacityExceeded-members.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TargetCapacityExceeded-members.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TargetCapacityExceeded-members.html
new file mode 100755
index 000..5cac568
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TargetCapacityExceeded-members.html
@@ -0,0 +1,117 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Member List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("s

[42/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Address_8h_source.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Address_8h_source.html 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Address_8h_source.html
new file mode 100755
index 000..10a6013
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Address_8h_source.html
@@ -0,0 +1,178 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid/messaging/Address.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('Address_8h_source.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Address.h  
+
+
+1 #ifndef 
QPID_MESSAGING_ADDRESS_H
+
2 #define QPID_MESSAGING_ADDRESS_H
+
3 
+
4 /*
+
5  *
+
6  * Licensed to the Apache Software 
Foundation (ASF) under one
+
7  * or more contributor license agreements.  
See the NOTICE file
+
8  * distributed with this work for 
additional information
+
9  * regarding copyright ownership.  The ASF 
licenses this file
+   
10  * to you under the Apache License, 
Version 2.0 (the
+   
11  * "License"); you may not use 
this file except in compliance
+   
12  * with the License.  You may obtain a 
copy of the License at
+   
13  * 
+   
14  *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15  * 
+   
16  * Unless required by applicable law or 
agreed to in writing,
+   
17  * software distributed under the License 
is distributed on an
+   
18  * "AS IS" BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19  * KIND, either express or implied.  See 
the License for the
+   
20  * specific language governing permissions 
and limitations
+   
21  * under the License.
+   
22  *
+   
23  */
+   
24 #include 
"qpid/messaging/ImportExport.h"
+   
25 
+   
26 #include 
"qpid/messaging/exceptions.h"
+   
27 #include 
"qpid/types/Variant.h"
+   
28 
+   
29 #include 
+   
30 #include 
+   
31 
+   
32 namespace qpid {
+   
33 namespace messaging {
+   
34 
+   
35 class AddressImpl;
+   
36 
+  122 class QPID_MESSAGING_CLASS_EXTERN Address
+  
123 {
+  124  
 public:
+  125  
   QPID_MESSAGING_EXTERN Address();
+  126  
   QPID_MESSAGING_EXTERN Address(const 
std::string& address);
+  127  
   QPID_MESSAGING_EXTERN Address(const 
std::string& name, const std::string& 
subject,
+  128  
  const 
qpid::types::Variant::Map& options, const 
std::string& type = "");
+  129  
   QPID_MESSAGING_EXTERN Address(const 
Address& address);
+  130  
   QPID_MESSAGING_EXTERN ~Address();
+  131  
   QPID_MESSAGING_EXTERN Address& operator=(const Address&);
+  132  
   QPID_MESSAGING_EXTERN const std::string& 
getName() const;
+  133  
   QPID_MESSAGING_EXTERN void setName(const std::string&);
+  134  
   QPID_MESSAGING_EXTERN const std::string& 
getSubject() const;
+  135  
   QPID_MESSAGING_EXTERN void setSubject(const std::string&);
+  136  
   QPID_MESSAGING_EXTERN const 
qpid::types::Variant::Map& getOptions() const;
+  137  
   QPID_MESSAGING_EXTERN qpid::types::Variant::Map& getOptions();
+  138  
   QPID_MESSAGING_EXTERN void setOptions(const qpid::types::Variant::Map&);
+  
139 
+  140  
   QPID_MESSAGING_EXTERN std::string getType() const;
+  149  
   QPID_MESSAGING_EXTERN void setType(const std::string&);
+  
150 
+  151  
   QPID_MESSAGING_EXTERN std::string str() const;
+  152  
   QPID_MESSAGING_EXTERN operator bool() const;
+  153  
   QPID_MESSAGING_EXTERN bool operator !() 
const;
+  154  
 private:
+  155  
   AddressImpl* impl;
+  156  
   friend class 
AddressImpl;
+  
157 };
+  
158 
+  
159 #ifndef SWIG
+  
160 QPID_MESSAGING_EXTERN 
std::ostream& operator<<(std::ostream& out, const Address& address);
+  
161 #endif
+  
162 
+  
163 }} // namespace 
qpid::messaging
+  
164 
+  
165 #endif  
+
+
+
+
+  
+qpidmessagingAddress.h
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Connection_8h_source.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Connection_8h_source.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Connection_8h_sourc

[16/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/map_receiver.cpp.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/map_receiver.cpp.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/map_receiver.cpp.html
new file mode 100644
index 000..3d23d62
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/map_receiver.cpp.html
@@ -0,0 +1,186 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+map_receiver.cpp - Apache Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0C++ 
Messaging API Examplesmap_receiver.cpp
+
+
+  
+map_receiver.cpp
+#include 

+#include 
+#include 
+#include 
+
+#include 
+#include 
+
+#include 
+
+using namespace qpid::messaging;
+using namespace qpid::types;
+
+using std::stringstream;
+using std::string;
+
+int main(int argc, char** argv) {
+const char* url = argc>1 ? argv[1] : "amqp:tcp:127.0.0.1:5672";
+const char* address = 
argc>2 
? argv[2] : "message_queue; {create: 
always}";
+std::string connectionOptions = argc > 
3 ? argv[3] : "";
+
+Connection connection(url, connectionOptions);
+try {
+connection.open();
+Session session = connection.createSession();
+Receiver receiver = session.createReceiver(address);
+std::cout << receiver.fetch().getContentObject() << std::endl;
+session.acknowledge();
+receiver.close();
+connection.close();
+return 0;
+} catch(const std::exception& 
error) {
+std::cout << error.what() << std::endl;
+connection.close();
+}
+return 1;
+}
+
+
+Download this file
+
+
+  
+
+  
+http://www.apache.org/";>Apache
+http://www.apache.org/licenses/";>License
+http://www.apache.org/foundation/sponsorship.html";>Sponsorship
+http://www.apache.org/foundation/thanks.html";>Thanks!
+Security
+http://www.apache.org/";>
+  
+
+  
+Apache Qpid, Messaging built on AMQP; Copyright © 2015
+The Apache Software Foundation; Licensed under
+the http://www.apache.org/licenses/LICENSE-2.0";>Apache
+License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
+Proton, Apache, the Apache feather logo, and the Apache Qpid
+project logo are trademarks of The Apache Software
+Foundation; All other marks mentioned may be trademarks or
+registered trademarks of their respective owners
+  
+
+  
+
+  
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/map_sender.cpp
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/map_sender.cpp 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/map_sender.cpp
new file mode 100755
index 000..81ac732
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/map_sender.cpp
@@ -0,0 +1,73 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ 

[23/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1MalformedAddress-members.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1MalformedAddress-members.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1MalformedAddress-members.html
new file mode 100755
index 000..0abf7f9
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1MalformedAddress-members.html
@@ -0,0 +1,116 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Member List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('structqpid_1_1messaging_1_1MalformedAddress.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+qpid::messaging::MalformedAddress Member List  
+
+
+
+This is the complete list of members for qpid::messaging::MalformedAddress,
 including all inherited members.
+
+  AddressError(const std::string &) (defined in qpid::messaging::AddressError)qpid::messaging::AddressError
+  Exception(const std::string 
&message=std::string()) (defined in qpid::types::Exception)qpid::types::Exceptionexplicit
+  LinkError(const 
std::string &) (defined in qpid::messaging::LinkError)qpid::messaging::LinkError
+  MalformedAddress(const 
std::string &msg) (defined in qpid::messaging::MalformedAddress)qpid::messaging::MalformedAddress
+  MessagingException(const std::string &msg) (defined in 
qpid::messaging::MessagingException)qpid::messaging::MessagingException
+  what() const  (defined in qpid::types::Exception)qpid::types::Exceptionvirtual
+  ~Exception() 
(defined in qpid::types::Exception)qpid::types::Exceptionvirtual
+  ~MessagingException() 
(defined in qpid::messaging::MessagingException)qpid::messaging::MessagingExceptionvirtual
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1MalformedAddress.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1MalformedAddress.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1MalformedAddress.html
new file mode 100755
index 000..1df7d5d
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1MalformedAddress.html
@@ -0,0 +1,155 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::MalformedAddress Struct 
Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('structqpid_1_1messaging_1_1MalformedAddress.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+List of all 
members  
+  
+qpid::messaging::MalformedAddress Struct Reference  

+
+
+
+#include 
+
+Inheritance diagram for qpid::messaging::MalformedAddress:
+
+ 
+  
+  
+
+
+
+
+
+ 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN MalformedAddress (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::messaging::AddressError
+
+QPID_MESSAGING_EXTERN AddressError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::LinkError
+
+QPID_MESSAGING_EXTERN LinkError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::MessagingException
+
+QPID_MESSAGING_EXTERN MessagingException (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::types::Exception
+
+QPID_TYPES_EXTERN Exception (const std::string &message=std::string()) 
 throw ()
+ 
+
+virtual QPID_TYPES_EXTERN 
+const char * what () 
const   throw ()
+ 
+
+Detailed 

[41/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Logger_8h_source.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Logger_8h_source.html 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Logger_8h_source.html
new file mode 100755
index 000..f80bca8
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Logger_8h_source.html
@@ -0,0 +1,168 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid/messaging/Logger.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('Logger_8h_source.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Logger.h  
+
+
+1 #ifndef 
QPID_MESSAGING_LOGGING_H
+
2 #define QPID_MESSAGING_LOGGING_H
+
3 
+
4 /*
+
5  *
+
6  * Licensed to the Apache Software 
Foundation (ASF) under one
+
7  * or more contributor license agreements.  
See the NOTICE file
+
8  * distributed with this work for 
additional information
+
9  * regarding copyright ownership.  The ASF 
licenses this file
+   
10  * to you under the Apache License, 
Version 2.0 (the
+   
11  * "License"); you may not use 
this file except in compliance
+   
12  * with the License.  You may obtain a 
copy of the License at
+   
13  *
+   
14  *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15  *
+   
16  * Unless required by applicable law or 
agreed to in writing,
+   
17  * software distributed under the License 
is distributed on an
+   
18  * "AS IS" BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19  * KIND, either express or implied.  See 
the License for the
+   
20  * specific language governing permissions 
and limitations
+   
21  * under the License.
+   
22  *
+   
23  */
+   
24 
+   
25 #include 
"qpid/messaging/ImportExport.h"
+   
26 
+   
27 #include 
+   
28 
+   
29 namespace qpid {
+   
30 namespace messaging {
+   
36 enum Level { trace, debug, info, 
notice, warning, error, critical };
+   
37 
+   41 class QPID_MESSAGING_CLASS_EXTERN LoggerOutput
+   
42 {
+   
43 public:
+   44  
   QPID_MESSAGING_EXTERN virtual ~LoggerOutput();
+   
45 
+   62  
   virtual void 
log(Level level, bool user, const char* file, int line, const char* function, const std::string& message) = 0;
+   
63 };
+   
64 
+   72 class QPID_MESSAGING_CLASS_EXTERN Logger
+   
73 {
+   
74 public:
+  117  
   QPID_MESSAGING_EXTERN static void configure(int 
argc, const char* 
argv[], const std::string& 
prefix=std::string());
+  
118 
+  132  
   QPID_MESSAGING_EXTERN static std::string 
usage();
+  
133 
+  144  
   QPID_MESSAGING_EXTERN static void setOutput(LoggerOutput& 
output);
+  
145 
+  153  
   QPID_MESSAGING_EXTERN static void log(Level level, const char* file, int line, const char* function, const std::string& message);
+  
154 
+  
155 private:
+  156  
   //This class has only one instance so no need to 
copy
+  157  
   Logger();
+  158  
   ~Logger();
+  
159 
+  160  
   Logger(const Logger&);
+  161  
   Logger 
operator=(const Logger&);
+  
162 };
+  
163 }} // namespace 
qpid::messaging
+  
164 
+  
165 #endif  
+
+
+
+
+  
+qpidmessagingLogger.h
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Message_8h_source.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Message_8h_source.html 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Message_8h_source.html
new file mode 100755
index 000..4bb6118
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Message_8h_source.html
@@ -0,0 +1,228 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid/messaging/Message.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'

[12/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/cpp-broker/book/ch02s03.html.in
--
diff --git a/input/releases/qpid-cpp-1.36.0/cpp-broker/book/ch02s03.html.in 
b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/ch02s03.html.in
new file mode 100644
index 000..41103d6
--- /dev/null
+++ b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/ch02s03.html.in
@@ -0,0 +1,704 @@
+2.3. 
+  QMF Python Console Tutorial
+Prev Chapter 2. 
+  Managing the AMQP Messaging Broker
+ 2.3. 
+  QMF Python Console Tutorial
+
+Section 2.3.1, 
“
+Prerequisite
+- Install Qpid Messaging
+  ”
+  
+Section 2.3.2, “
+Synchronous
+Console Operations
+  ”
+  
+
+Section 2.3.2.1, “
+Creating a QMF Console Session and Attaching to a Broker
+  ”
+  
+Section 2.3.2.2, “
+Accessing
+Managed Objects
+  ”
+  
+
+the section called 
“
+Viewing Properties and Statistics of an Object
+  ”
+  
+the section called “
+Invoking
+Methods on an Object
+  ”
+  
+  
+  
+Section 2.3.3, “
+Asynchronous
+Console Operations
+  ”
+  
+
+Section 2.3.3.1, “
+Creating a Console Class to Receive Asynchronous Data
+  ”
+  
+Section 2.3.3.2, “
+Receiving
+Events
+  ”
+  
+Section 2.3.3.3, “
+Receiving
+Objects
+  ”
+  
+Section 2.3.3.4, “
+Asynchronous Method Calls and Method Timeouts
+  ”
+  
+  
+Section 2.3.4, “
+Discovering what Kinds of Objects are Available
+  ”
+  2.3.1. 
+Prerequisite
+- Install Qpid Messaging
+  
+QMF uses AMQP Messaging (QPid) as its means of communication. To
+use QMF, Qpid messaging must be installed somewhere in the
+network. Qpid can be downloaded as source from Apache, is
+packaged with a number of Linux distributions, and can be
+purchased from commercial vendors that use Qpid. Please see
+http://qpid.apache.org"; 
target="_top">http://qpid.apache.orgfor
+information as to where to get Qpid Messaging.
+  
+Qpid Messaging includes a message broker (qpidd) which typically
+runs as a daemon on a system. It also includes client bindings in
+various programming languages. The Python-language client library
+includes the QMF console libraries needed for this tutorial.
+  
+Please note that Qpid Messaging has two broker implementations.
+One is implemented in C++ and the other in Java. At press time,
+QMF is supported only by the C++ broker.
+  
+If the goal is to get the tutorial examples up and running as
+quickly as possible, all of the Qpid components can be installed
+on a single system (even a laptop). For more realistic
+deployments, the broker can be deployed on a server and the
+client/QMF libraries installed on other systems.
+  2.3.2. 
+Synchronous
+Console Operations
+  
+The Python console API for QMF can be used in a synchronous
+style, an asynchronous style, or a combination of both.
+Synchronous operations are conceptually simple and are well
+suited for user-interactive tasks. All operations are performed
+in the context of a Python function call. If communication over
+the message bus is required to complete an operation, the
+function call blocks and waits for the expected result (or
+timeout failure) before returning control to the caller.
+  2.3.2.1. 
+Creating a QMF Console Session and Attaching to a Broker
+  
+For the purposes of this tutorial, code examples will be shown as
+they are entered in an interactive python session.
+  
+$ python
+Python 2.5.2 (r252:60911, Sep 30 2008, 15:41:38) 
+[GCC 4.3.2 20080917 (Red Hat 4.3.2-4)] on linux2
+Type "help", "copyright", "credits" or "license" for more information.
+>>> 
+
+We will begin by importing the required libraries. If the Python
+  

[17/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/client.cpp.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/client.cpp.html 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/client.cpp.html
new file mode 100644
index 000..747908f
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/client.cpp.html
@@ -0,0 +1,206 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+client.cpp - Apache Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0C++ 
Messaging API Examplesclient.cpp
+
+
+  
+client.cpp
+#include 

+#include 
+#include 
+#include 
+#include 
+#include 
+
+#include 
+#include 
+
+#include 
+
+using namespace qpid::messaging;
+
+using std::stringstream;
+using std::string;
+
+int main(int argc, char** argv) {
+const char* url = argc>1 ? argv[1] : "amqp:tcp:127.0.0.1:5672";
+std::string connectionOptions = argc > 
2 ? argv[2] : "";
+
+Connection connection(url, connectionOptions);
+ try {
+connection.open();
+Session session = connection.createSession();
+
+Sender sender = session.createSender("service_queue");
+
+//create temp queue & receiver...
+Receiver receiver = session.createReceiver("#");
+Address responseQueue 
= receiver.getAddress();
+
+   // Now send some messages ...
+   string s[] = {
+"Twas brillig, and the slithy 
toves",
+"Did gire and gymble in the 
wabe.",
+"All mimsy were the 
borogroves,",
+"And the mome raths outgrabe."
+};
+
+   Message request;
+request.setReplyTo(responseQueue);
+   for (int i=0; i<4; i++) {
+request.setContentObject(s[i]);
+sender.send(request);
+Message response 
= receiver.fetch();
+std::cout << request.getContentObject() << " -> " << response.getContentObject() << std::endl;
+session.acknowledge(response);
+   }
+connection.close();
+return 0;
+} catch(const std::exception& 
error) {
+std::cout << error.what() << std::endl;
+connection.close();
+}
+return 1;
+}
+
+
+Download this file
+
+
+  
+
+  
+http://www.apache.org/";>Apache
+http://www.apache.org/licenses/";>License
+http://www.apache.org/foundation/sponsorship.html";>Sponsorship
+http://www.apache.org/foundation/thanks.html";>Thanks!
+Security
+http://www.apache.org/";>
+  
+
+  
+Apache Qpid, Messaging built on AMQP; Copyright © 2015
+The Apache Software Foundation; Licensed under
+the http://www.apache.org/licenses/LICENSE-2.0";>Apache
+License, Version 2.0; Apache Qpid, Qpid, Qpid Proton,
+Proton, Apache, the Apache feather logo, and the Apache Qpid
+project logo are trademarks of The Apache Software
+Foundation; All other marks mentioned may be trademarks or
+registered trademarks of their respective owners
+  
+
+  
+
+  
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/c

[19/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.html
new file mode 100755
index 000..6d576e3
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.html
@@ -0,0 +1,155 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::TransactionUnknown Struct 
Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('structqpid_1_1messaging_1_1TransactionUnknown.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+List of 
all members  
+  
+qpid::messaging::TransactionUnknown Struct Reference  

+
+
+
+#include 
+
+Inheritance diagram for qpid::messaging::TransactionUnknown:
+
+ 
+  
+  
+
+
+
+
+
+ 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN TransactionUnknown (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::TransactionError
+
+QPID_MESSAGING_EXTERN TransactionError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::SessionError
+
+QPID_MESSAGING_EXTERN SessionError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::MessagingException
+
+QPID_MESSAGING_EXTERN MessagingException (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::types::Exception
+
+QPID_TYPES_EXTERN Exception (const std::string &message=std::string()) 
 throw ()
+ 
+
+virtual QPID_TYPES_EXTERN 
+const char * what () 
const   throw ()
+ 
+
+Detailed 
Description
+The outcome of the transaction on the broker, commit 
or roll-back, is not known. This occurs when the connection fails after we sent 
the commit but before we received a result. 
+The documentation for this struct was generated from the following 
file:
+qpid/messaging/exceptions.h
+
+
+
+
+
+  
+qpidmessagingTransactionUnknown
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.js
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.js
new file mode 100755
index 000..2d0ad8c
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.js
@@ -0,0 +1,4 @@
+var structqpid_1_1messaging_1_1TransactionUnknown =
+[
+[ "TransactionUnknown", 
"structqpid_1_1messaging_1_1TransactionUnknown.html#a76716123487ef6bdcf01254680f8ee9c",
 null ]
+];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.png
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.png
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.png
new file mode 100755
index 000..9c6cece
Binary files /dev/null and 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransactionUnknown.png
 differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransportFailure-members.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransportFailure-members.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1TransportFailure-members.html
new file mode 100755
index 000..098f6ec
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messag

[24/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.html
new file mode 100755
index 000..23a44b1
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.html
@@ -0,0 +1,136 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::EncodingException Struct 
Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('structqpid_1_1messaging_1_1EncodingException.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+List of 
all members  
+  
+qpid::messaging::EncodingException Struct Reference  

+
+
+
+Inheritance diagram for qpid::messaging::EncodingException:
+
+ 
+  
+  
+
+
+ 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN EncodingException (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::types::Exception
+
+QPID_TYPES_EXTERN Exception (const std::string &message=std::string()) 
 throw ()
+ 
+
+virtual QPID_TYPES_EXTERN 
+const char * what () 
const   throw ()
+ 
+
+The documentation for this struct was generated from the following 
file:
+qpid/messaging/Message.h
+
+
+
+
+
+  
+qpidmessagingEncodingException
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.js
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.js
new file mode 100755
index 000..be1e490
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.js
@@ -0,0 +1,4 @@
+var structqpid_1_1messaging_1_1EncodingException =
+[
+[ "EncodingException", 
"structqpid_1_1messaging_1_1EncodingException.html#a12ed99838969882d7b3b77ac246f497b",
 null ]
+];
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.png
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.png
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.png
new file mode 100755
index 000..af5bab3
Binary files /dev/null and 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1EncodingException.png
 differ

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1FetchError-members.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1FetchError-members.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1FetchError-members.html
new file mode 100755
index 000..50401d1
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1FetchError-members.html
@@ -0,0 +1,116 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Member List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(f

[15/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/spout.cpp.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/spout.cpp.html 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/spout.cpp.html
new file mode 100644
index 000..59b4635
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/examples/spout.cpp.html
@@ -0,0 +1,316 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+spout.cpp - Apache Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0C++ 
Messaging API Examplesspout.cpp
+
+
+  
+spout.cpp
+#include 

+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+#include 
+#include 
+#include 
+#include 
+
+#include "OptionParser.h"
+
+using namespace qpid::messaging;
+using namespace qpid::types;
+
+typedef std::vector string_vector;
+
+struct Options : OptionParser
+{
+std::string url;
+std::string address;
+int timeout;
+bool durable;
+int count;
+std::string id;
+std::string replyto;
+string_vector properties;
+string_vector entries;
+std::string content;
+std::string connectionOptions;
+bool print;
+
+Options()
+: OptionParser("Usage: spout [OPTIONS] 
ADDRESS", "Send 
messages to the specified address"),
+  url("127.0.0.1"),
+  timeout(0),
+  count(1),
+  durable(false),
+  print(false)
+{
+add("broker,b", url, "url of 
broker to connect to");
+add("timeout,t", timeout, "exit 
after the specified time");
+add("durable,d", durable, "make the 
message durable (def. transient)");
+add("count,c", count, "stop after 
count messages have been sent, zero disables");
+add("id,i", id, "use the 
supplied id instead of generating one");
+add("reply-to", replyto, "specify 
reply-to address");
+add("property,P", properties, "specify message property");
+add("map,M", entries, "specify 
entry for map content");
+add("content", content, "specify 
textual content");
+add("connection-options", connectionOptions, "connection options string in the form {name1:value1, 
name2:value2}");
+add("print", print, "print each 
message sent");
+}
+
+static bool nameval(const 
std::string& in, std::string& 
name, std::string& value)
+{
+std::string::size_type i = 
in.find("=");
+if (i == std::string::npos) {
+name = in;
+return false;
+} else {
+name = in.substr(0, i);
+if (i+1 < in.size()) {
+value = in.substr(i+1);
+return true;
+} else {
+return false;
+}
+}
+}
+
+static void setProperty(Message& message, const 
std::string& property)
+{
+std::string name;
+std::string value;
+if (nameval(property, name, value)) {
+message.getProperties()[name] = value;
+message.getProperties()[name].setEncoding("utf8");
+} else {
+message.getProperties()[name] = Variant();
+}
+}
+
+void setProperties(Message& 
message) const
+{
+for (string_vector::co

[02/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
new file mode 100644
index 000..a30bdc0
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Message.html
@@ -0,0 +1,607 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::Message Class Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Message.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+Friends |
+List of all 
members  
+  
+qpid::messaging::Message Class Reference  
+
+
+
+#include 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN Message (qpid::types::Variant 
&)
+ 
+
+QPID_MESSAGING_EXTERN Message (const std::string 
&bytes=std::string())
+ 
+
+QPID_MESSAGING_EXTERN Message (const char *, size_t)
+ 
+
+QPID_MESSAGING_EXTERN Message (const Message &)
+ 
+
+QPID_MESSAGING_EXTERN Message & operator= (const Message &)
+ 
+
+QPID_MESSAGING_EXTERN void setReplyTo (const Address &)
+ 
+
+QPID_MESSAGING_EXTERN const 
+Address 
& getReplyTo () 
const 
+ 
+
+QPID_MESSAGING_EXTERN void setSubject (const std::string &)
+ 
+
+QPID_MESSAGING_EXTERN const 
+std::string & getSubject () const 
+ 
+QPID_MESSAGING_EXTERN void setContentType
 (const std::string &)
+ 
+QPID_MESSAGING_EXTERN const 
+std::string & getContentType
 () const 
+ 
+QPID_MESSAGING_EXTERN void setMessageId
 (const std::string &)
+ 
+
+QPID_MESSAGING_EXTERN const 
+std::string & getMessageId () const 
+ 
+QPID_MESSAGING_EXTERN void setUserId
 (const std::string &)
+ 
+
+QPID_MESSAGING_EXTERN const 
+std::string & getUserId () const 
+ 
+QPID_MESSAGING_EXTERN void setCorrelationId
 (const std::string &)
+ 
+
+QPID_MESSAGING_EXTERN const 
+std::string & getCorrelationId () const 
+ 
+QPID_MESSAGING_EXTERN void setPriority
 (uint8_t)
+ 
+
+QPID_MESSAGING_EXTERN uint8_t getPriority () const 
+ 
+QPID_MESSAGING_EXTERN void setTtl
 (Duration 
ttl)
+ 
+QPID_MESSAGING_EXTERN Duration getTtl
 () const 
+ 
+QPID_MESSAGING_EXTERN void setDurable
 (bool durable)
+ 
+
+QPID_MESSAGING_EXTERN bool getDurable () const 
+ 
+QPID_MESSAGING_EXTERN bool getRedelivered
 () const 
+ 
+QPID_MESSAGING_EXTERN void setRedelivered
 (bool)
+ 
+QPID_MESSAGING_EXTERN const 
+qpid::types::Variant::Map & getProperties
 () const 
+ 
+
+QPID_MESSAGING_EXTERN 
+qpid::types::Variant::Map & getProperties ()
+ 
+
+QPID_MESSAGING_EXTERN void setProperties (const qpid::types::Variant::Map 
&)
+ 
+QPID_MESSAGING_EXTERN void setContent
 (const std::string &)
+ 
+QPID_MESSAGING_EXTERN void setContent
 (const char *chars, size_t count)
+ 
+QPID_MESSAGING_EXTERN std::string getContent
 () const 
+ 
+QPID_MESSAGING_EXTERN std::string getContentBytes
 () const 
+ 
+QPID_MESSAGING_EXTERN void setContentBytes
 (const std::string &)
+ 
+QPID_MESSAGING_EXTERN 
+qpid::types::Variant 
& getContentObject
 ()
+ 
+QPID_MESSAGING_EXTERN const 
+qpid::types::Variant 
& getContentObject
 () const 
+ 
+QPID_MESSAGING_EXTERN void setContentObject
 (const qpid::types::Variant 
&)
+ 
+QPID_MESSAGING_EXTERN const char * getContentPtr
 () const 
+ 
+QPID_MESSAGING_EXTERN size_t getContentSize
 () const 
+ 
+
+QPID_MESSAGING_EXTERN void setProperty (const std::string &, const qpid::types::Variant 
&)
+ 
+
+
+Friends
+
+struct MessageImplAccess
+ 
+
+Detailed 
Description
+Representation of a message. 
+Member Function Documentation
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN std::string 
qpid::messaging::Message::getContent 
+  (
+  )
+   const
+
+  
+
+Get the content as a std::string 
+
+
+
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN std::string 
qpid::messaging::Message::getContentBytes 
+  (
+  )
+   const
+
+  
+
+Get the content as raw bytes (an alias for getContent()
 
+
+
+
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN qpid::types::Variant& 
qpid::messaging::Message::getContentObject 
+  (
+  )
+  
+
+  
+
+Get the content as a Variant, which can repre

[48/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01s06.html
--
diff --git a/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01s06.html 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01s06.html
new file mode 100644
index 000..31f01d4
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01s06.html
@@ -0,0 +1,250 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+1.6. LVQ - Last Value Queue - Apache Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0AMQP Messaging 
Broker (Implemented in C++)1.6. LVQ - Last Value 
Queue
+
+
+  1.6. LVQ - Last Value QueuePrev Chapter 1. 
+  Running the AMQP Messaging Broker
+ Next1.6. LVQ - Last Value 
Queue1.6.1. Understanding 
LVQ
+  A Last Value Queue is configured with the name of a message header that
+  is used as a key.  The queue behaves as a normal FIFO queue with the
+  exception that when a message is enqueued, any other message in the
+  queue with the same value in the key header is removed and discarded.
+  Thus, for any given key value, the queue holds only the most recent
+  message.
+
+  The following example illustrates the operation of a Last Value Queue.
+  The example shows an empty queue with no consumers and a sequence of
+  produced messages.  The numbers represent the key for each message.
+
+   
+  1 =>
+   1
+  2 =>
+   1 2
+  3 =>
+   1 2 3
+  4 =>
+   1 2 3 4
+  2 =>
+   1 3 4 2
+  1 =>
+   3 4 2 1
+
+  Note that the first four messages are enqueued normally in FIFO order.
+  The fifth message has key '2' and is also enqueued on the tail of the
+  queue.  However the message already in the queue with the same key is
+  discarded.
+  Note
+  If the set of keys used in the messages in a LVQ is constrained, the
+  number of messages in the queue shall not exceed the number of
+  distinct keys in use.
+
+1.6.1.1. Common 
Use-Cases
+LVQ with zero or one consuming subscriptions - In this case, if
+the consumer drops momentarily or is slower than the producer(s),
+it will only receive current information relative to the message
+keys.
+  
+LVQ with zero or more browsing subscriptions - A browsing consumer
+can subscribe to the LVQ and get an immediate dump of all of the
+"current" messages and track updates thereafter.  Any number of
+independent browsers can subscribe to the same LVQ with the same
+effect.  Since messages are never consumed, they only disappear
+when replaced with a newer message with the same key or when their
+TTL expires.
+  1.6.2. Creating a Last Value 
Queue1.6.2.1. Using Addressing 
Syntax
+A LVQ may be created using directives in the API's address syntax.
+The important argument is "qpid.last_value_queue_key".  The following
+Python example shows how a producer of stock price updates can create
+a LVQ to hold the latest stock prices for each ticker symbol.  The
+message header used to hold the ticker symbol is called "ticker".
+  
+conn = Connection(url)
+conn.open()
+sess = conn.session()
+tx = sess.sender("prices;{create:always, node:{type:queue, 
x-declare:{argum

[43/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/cpp-broker/book/index.html
--
diff --git a/content/releases/qpid-cpp-1.36.0/cpp-broker/book/index.html 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/index.html
new file mode 100644
index 000..517f41d
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/index.html
@@ -0,0 +1,251 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+AMQP Messaging Broker (Implemented in C++) - Apache 
Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0AMQP 
Messaging Broker (Implemented in C++)
+
+
+  AMQP Messaging Broker (Implemented in C++)   NextAMQP 
Messaging Broker (Implemented in C++)Table of ContentsIntroduction1. 
+  Running the AMQP Messaging Broker
+1.1. 
+Running a Qpid C++ Broker
+  1.1.1. 
+Building the
+C++ Broker and Client Libraries
+  1.1.2. 
+Running the C++ Broker
+  1.1.3. 
+Most
+common questions getting qpidd running
+  1.1.4. 
+Authentication
+  1.1.5. 
+Slightly more
+complex configuration
+  1.1.6. 
+Loading extra modules
+  1.1.7. Timestamping Received 
Messages1.1.8. Logging 
Options1.2. 
+  Cheat Sheet for configuring Queue Options
+1.2.1.
 
+Configuring
+Queue Options
+  1.3. 
+Cheat Sheet for configuring Exchange Options
+  1.3.1.
 
+  Configuring Exchange Options
+1.4. Broker 
Federation1.4.1.
 Message Routes1.4.2.
 Federation Topologies1.4.3.
 Federation among High Availability Message Clusters1.4.4.
 The qpid-route Utility1.4.5.
 Broker options affecting federation1.5. 
Security1.5.1.
 User Authentication1.5.2.
 Authorization1.5.3.
 User Connection and Queue Quotas1.5.4.
 Encryption using SSL<
 dt>1.6. LVQ - Last Value 
Queue1.6.1. Understanding 
LVQ1.6.2. Creating a Last Value 
Queue1.6.3. LVQ Example1.6.4. Deprecated LVQ 
Modes1.7. 
+Queue State Replication
+  1.7.1.
 
+  Asynchronous
+  Replication of Queue State
+1.8. 
+Producer Flow Control
+  1.8.1. 
+  Overview
+1.8.2. 
+User Interface
+  1.9. 
+  AMQP compatibility
+1.9.1.
 
+AMQP
+Compatibility of Qpid releases:
+  1.9.2.
 
+Interop
+table by AMQP specification version
+  1.10.
 Qpid Interoperability Documentation1.10.1.
 
+SASL
+  1.11. 
+Using Message Groups
+  1.11.1. 
+  Overview
+1.11.2. 
+Grouping Messages
+  1.11.3. 
+The Role of the Broker
+  1.11.4. 
+Well Behaved Consumers
+  1.11.5. 
+Broker Configuration
+  1.12. Active-Passive Messaging 
Clusters1.12.1. Overview1.12.2. Virtual IP 
Addresses1.12.3. Configuring the 
Brokers1.12.4. The Cluster Resource 
Manager1.12.5. Configuring with rgmanager as resource 
manager1.12.6. Broker Administration 
Tools1.12.7. Controlling replication of 
queues and 
 exchanges1.12.8. Client Connection and 
Fail-over1.12.9. Security and Access 
Control.1.12.10. Integrating with other Cluster 
Resource Managers1.12.11. Using a message store in a 
cluster1.12.12. Troubleshooting a 
cluster1.13. Replicating Queues with the HA 
module1.13.1. Replicating 
queues1.13.2. Replicating queue
 s between clusters2. 
+  Managing the AMQP Messaging Broker
+2.1.  
Managing the C++ Broker 2.1.1. 
+Using

[32/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.html
new file mode 100755
index 000..821145f
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1types_1_1Variant.html
@@ -0,0 +1,583 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::types::Variant Class Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1types_1_1Variant.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Types |
+Public Member Functions |
+Static Public Member Functions |
+List of all members  

+  
+qpid::types::Variant Class Reference  
+
+
+
+#include 
+
+
+Public Types
+
+typedef std::map< std::string, 
+Variant 
> Map
+ 
+
+typedef std::list< Variant > List
+ 
+
+
+Public Member Functions
+
+QPID_TYPES_EXTERN Variant (bool)
+ 
+
+QPID_TYPES_EXTERN Variant (uint8_t)
+ 
+
+QPID_TYPES_EXTERN Variant (uint16_t)
+ 
+
+QPID_TYPES_EXTERN Variant (uint32_t)
+ 
+
+QPID_TYPES_EXTERN Variant (uint64_t)
+ 
+
+QPID_TYPES_EXTERN Variant (int8_t)
+ 
+
+QPID_TYPES_EXTERN Variant (int16_t)
+ 
+
+QPID_TYPES_EXTERN Variant (int32_t)
+ 
+
+QPID_TYPES_EXTERN Variant (int64_t)
+ 
+
+QPID_TYPES_EXTERN Variant (float)
+ 
+
+QPID_TYPES_EXTERN Variant (double)
+ 
+
+QPID_TYPES_EXTERN Variant (const std::string &)
+ 
+
+QPID_TYPES_EXTERN Variant (const std::string &value, const std::string 
&encoding)
+ 
+
+QPID_TYPES_EXTERN Variant (const char *)
+ 
+
+QPID_TYPES_EXTERN Variant (const char *value, const char 
*encoding)
+ 
+
+QPID_TYPES_EXTERN Variant (const Map &)
+ 
+
+QPID_TYPES_EXTERN Variant (const List &)
+ 
+
+QPID_TYPES_EXTERN Variant (const Variant &)
+ 
+
+QPID_TYPES_EXTERN Variant (const Uuid &)
+ 
+
+QPID_TYPES_EXTERN VariantType getType () const 
+ 
+
+QPID_TYPES_EXTERN bool isVoid () const 
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (bool)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (uint8_t)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (uint16_t)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (uint32_t)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (uint64_t)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (int8_t)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (int16_t)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (int32_t)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (int64_t)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (float)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (double)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (const std::string 
&)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (const char *)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (const Map 
&)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (const List 
&)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (const Variant &)
+ 
+
+QPID_TYPES_EXTERN Variant & operator= (const Uuid &)
+ 
+QPID_TYPES_EXTERN Variant & parse
 (const std::string &)
+ 
+
+QPID_TYPES_EXTERN bool asBool () const 
+ 
+
+QPID_TYPES_EXTERN uint8_t asUint8 () const 
+ 
+
+QPID_TYPES_EXTERN uint16_t asUint16 () const 
+ 
+
+QPID_TYPES_EXTERN uint32_t asUint32 () const 
+ 
+
+QPID_TYPES_EXTERN uint64_t asUint64 () const 
+ 
+
+QPID_TYPES_EXTERN int8_t asInt8 () const 
+ 
+
+QPID_TYPES_EXTERN int16_t asInt16 () const 
+ 
+
+QPID_TYPES_EXTERN int32_t asInt32 () const 
+ 
+
+QPID_TYPES_EXTERN int64_t asInt64 () const 
+ 
+
+QPID_TYPES_EXTERN float asFloat () const 
+ 
+
+QPID_TYPES_EXTERN double asDouble () const 
+ 
+
+QPID_TYPES_EXTERN std::string asString () const 
+ 
+
+QPID_TYPES_EXTERN Uuid asUuid () const 
+ 
+
+QPID_TYPES_EXTERN operator bool () const 
+ 
+
+QPID_TYPES_EXTERN operator uint8_t () const 
+ 
+
+QPID_TYPES_EXTERN operator uint16_t () const 
+ 
+
+QPID_TYPES_EXTERN operator uint32_t () const 
+ 
+
+QPID_TYPES_EXTERN operator uint64_t () const 
+ 
+
+QPID_TYPES_EXTERN operator int8_t () const 
+ 
+
+QPID_TYPES_EXTERN operator int16_t () const 
+ 
+
+QPID_TYPES_EXTERN operator int32_t () const 
+ 
+
+QPID_TYPES_EXTERN operator int64_t () const 
+ 
+
+QPID_TYPES_EXTERN operator float () const 
+ 
+
+QPID_TYPES_EXTERN operator double () const 
+ 
+
+QPID_TYPES_EXTERN operator std::string () const 
+ 
+
+QPID_TYPES_EXTERN operator U

[49/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01.html
--
diff --git a/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01.html 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01.html
new file mode 100644
index 000..b201db2
--- /dev/null
+++ b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/ch01.html
@@ -0,0 +1,690 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+ch01.html - Apache Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0AMQP Messaging 
Broker (Implemented in C++)ch01.html
+
+
+  Chapter 1. 
+  Running the AMQP Messaging Broker
+Prev   NextChapter 1. 
+  Running the AMQP Messaging Broker
+Table of 
Contents1.1. 
+Running a Qpid C++ Broker
+  1.1.1. 
+Building the
+C++ Broker and Client Libraries
+  1.1.2. 
+Running the C++ Broker
+  1.1.3. 
+Most
+common questions getting qpidd running
+  1.1.4. 
+Authentication
+  1.1.5. 
+Slightly more
+complex configuration
+  1.1.6. 
+Loading extra modules
+  1.1.7. Timestamping Received 
Messages1.1.8. Logging 
Options1.2. 
+  Cheat Sheet for configuring Queue Options
+1.2.1.
 
+Configuring
+Queue Options
+  1.3. 
+Cheat Sheet for configuring Exchange Options
+  1.3.1.
 
+  Configuring Exchange Options
+1.4. Broker 
Federation1.4.1.
 Message Routes1.4.2.
 Federation Topologies1.4.3.
 Federation among High Availability Message Clusters1.4.4.
 The qpid-route Utility1.4.5.
 Broker options affecting federation1.5. 
Security1.5.1.
 User Authentication1.5.2.
 Authorization1.5.3.
 User Connection and Queue Quotas1.5.4.
 Encryption using SSL<
 dt>1.6. LVQ - Last Value 
Queue1.6.1. Understanding 
LVQ1.6.2. Creating a Last Value 
Queue1.6.3. LVQ Example1.6.4. Deprecated LVQ 
Modes1.7. 
+Queue State Replication
+  1.7.1.
 
+  Asynchronous
+  Replication of Queue State
+1.8. 
+Producer Flow Control
+  1.8.1. 
+  Overview
+1.8.2. 
+User Interface
+  1.9. 
+  AMQP compatibility
+1.9.1.
 
+AMQP
+Compatibility of Qpid releases:
+  1.9.2.
 
+Interop
+table by AMQP specification version
+  1.10.
 Qpid Interoperability Documentation1.10.1.
 
+SASL
+  1.11. 
+Using Message Groups
+  1.11.1. 
+  Overview
+1.11.2. 
+Grouping Messages
+  1.11.3. 
+The Role of the Broker
+  1.11.4. 
+Well Behaved Consumers
+  1.11.5. 
+Broker Configuration
+  1.12. Active-Passive Messaging 
Clusters1.12.1. Overview1.12.2. Virtual IP 
Addresses1.12.3. Configuring the 
Brokers1.12.4. The Cluster Resource 
Manager1.12.5. Configuring with rgmanager as resource 
manager1.12.6. Broker Administration 
Tools1.12.7. Controlling replication of 
queues and 
 exchanges1.12.8. Client Connection and 
Fail-over1.12.9. Security and Access 
Control.1.12.10. Integrating with other Cluster 
Resource Managers1.12.11. Using a message store in a 
cluster1.12.12. Troubleshooting a 
cluster1.13. Replicating Queues with the HA 
module1.13.1. Replicating 
queues1.13.2. Replicating queue
 s between clusters1.1. 
+Running a Qpid C++ Broker
+  1.1.1. 
+Building the
+C++ Broker and Client Libraries
+  
+The root directory 

[35/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
new file mode 100755
index 000..17f93b2
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
@@ -0,0 +1,442 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::Receiver Class 
Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Receiver.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+Friends |
+List of all 
members  
+  
+qpid::messaging::Receiver Class Reference  
+
+
+
+#include 
+
+Inheritance diagram for qpid::messaging::Receiver:
+
+ 
+  
+  
+
+
+ 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN Receiver (ReceiverImpl *impl=0)
+ 
+
+QPID_MESSAGING_EXTERN Receiver (const Receiver &)
+ 
+
+QPID_MESSAGING_EXTERN Receiver & operator= (const Receiver &)
+ 
+QPID_MESSAGING_EXTERN bool get
 (Message 
&message, Duration 
timeout=Duration::FOREVER)
+ 
+QPID_MESSAGING_EXTERN Message get
 (Duration 
timeout=Duration::FOREVER)
+ 
+QPID_MESSAGING_EXTERN bool fetch
 (Message 
&message, Duration 
timeout=Duration::FOREVER)
+ 
+QPID_MESSAGING_EXTERN Message fetch
 (Duration 
timeout=Duration::FOREVER)
+ 
+QPID_MESSAGING_EXTERN void setCapacity
 (uint32_t)
+ 
+QPID_MESSAGING_EXTERN uint32_t getCapacity
 ()
+ 
+QPID_MESSAGING_EXTERN uint32_t getAvailable
 ()
+ 
+QPID_MESSAGING_EXTERN uint32_t getUnsettled
 ()
+ 
+QPID_MESSAGING_EXTERN void close
 ()
+ 
+QPID_MESSAGING_EXTERN bool isClosed
 () const 
+ 
+QPID_MESSAGING_EXTERN const 
+std::string & getName
 () const 
+ 
+QPID_MESSAGING_EXTERN Session getSession
 () const 
+ 
+QPID_MESSAGING_EXTERN Address getAddress
 () const 
+ 
+ Public Member Functions inherited from qpid::messaging::Handle< 
ReceiverImpl >
+QPID_MESSAGING_INLINE_EXTERN bool isValid
 () const
+ 
+QPID_MESSAGING_INLINE_EXTERN bool isNull
 () const
+ 
+QPID_MESSAGING_INLINE_EXTERN operator
 bool () const
+ 
+QPID_MESSAGING_INLINE_EXTERN bool operator!
 () const
+ 
+
+void swap (Handle< 
ReceiverImpl > &h)
+ 
+
+
+Friends
+
+class qpid::messaging::PrivateImplRef< Receiver 
>
+ 
+
+
+Additional Inherited Members
+ Protected Types inherited from qpid::messaging::Handle< 
ReceiverImpl >
+
+typedef ReceiverImpl Impl
+ 
+ Protected Attributes inherited from qpid::messaging::Handle< 
ReceiverImpl >
+
+Impl * impl
+ 
+
+Detailed 
Description
+Interface through which messages are received. 
+Member Function Documentation
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN void 
qpid::messaging::Receiver::close 
+  (
+  )
+  
+
+  
+
+Cancels this Receiver. 
+
+
+
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN bool 
qpid::messaging::Receiver::fetch 
+  (
+  Message & 
+  message, 
+
+
+  
+  
+  Duration 
+  timeout = 
Duration::FOREVER 
+
+
+  
+  )
+  
+
+  
+
+Retrieves a message from this Receiver's subscription or 
waits for up to the specified timeout for one to become available. Unlike get(),
 this method will check with the server that there is no message for the 
subscription this receiver is serving before returning false.
+Returnsfalse if there is no message 
available after waiting for the specified time period, or if the receiver is 
closed, in which case isClosed()
 will be true. 
+
+
+
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN Message 
qpid::messaging::Receiver::fetch 
+  (
+  Duration 
+  timeout = 
Duration::FOREVER)
+  
+
+  
+
+Retrieves a message for this Receiver's subscription or 
waits for up to the specified timeout for one to become available. Unlike get(),
 this method will check with the server that there is no message for the 
subscription this receiver is serving before throwing an exception.
+Exceptions
+  
+NoMessageAvailableif
 there is no message available after waiting for the specified timeout, or if 
the Receiv

[08/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Connection_8h_source.html
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Connection_8h_source.html
 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Connection_8h_source.html
new file mode 100644
index 000..d05bdb5
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Connection_8h_source.html
@@ -0,0 +1,181 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid/messaging/Connection.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('Connection_8h_source.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Connection.h  
+
+
+1 #ifndef 
QPID_MESSAGING_CONNECTION_H
+
2 #define QPID_MESSAGING_CONNECTION_H
+
3 
+
4 /*
+
5  *
+
6  * Licensed to the Apache Software 
Foundation (ASF) under one
+
7  * or more contributor license agreements.  
See the NOTICE file
+
8  * distributed with this work for 
additional information
+
9  * regarding copyright ownership.  The ASF 
licenses this file
+   
10  * to you under the Apache License, 
Version 2.0 (the
+   
11  * "License"); you may not use 
this file except in compliance
+   
12  * with the License.  You may obtain a 
copy of the License at
+   
13  *
+   
14  *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15  *
+   
16  * Unless required by applicable law or 
agreed to in writing,
+   
17  * software distributed under the License 
is distributed on an
+   
18  * "AS IS" BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19  * KIND, either express or implied.  See 
the License for the
+   
20  * specific language governing permissions 
and limitations
+   
21  * under the License.
+   
22  *
+   
23  */
+   
24 #include 
"qpid/messaging/ImportExport.h"
+   
25 
+   
26 #include 
"qpid/messaging/Handle.h"
+   
27 #include 
"qpid/messaging/exceptions.h"
+   
28 #include 
"qpid/types/Variant.h"
+   
29 
+   
30 #include 
+   
31 
+   
32 namespace qpid {
+   
33 namespace messaging {
+   
34 
+   
35 #ifndef SWIG
+   
36 template  
class PrivateImplRef;
+   
37 #endif
+   
38 class 
ConnectionImpl;
+   
39 class Session;
+   
40 
+   45 class QPID_MESSAGING_CLASS_EXTERN Connection : public qpid::messaging::Handle
+   
46 {
+   47  
 public:
+   48  
   QPID_MESSAGING_EXTERN Connection(ConnectionImpl* 
impl);
+   49  
   QPID_MESSAGING_EXTERN Connection(const 
Connection&);
+   50  
   QPID_MESSAGING_EXTERN Connection();
+  118  
   QPID_MESSAGING_EXTERN Connection(const 
std::string& url, const 
qpid::types::Variant::Map& options = qpid::types::Variant::Map());
+  125  
   QPID_MESSAGING_EXTERN Connection(const 
std::string& url, const std::string& 
options);
+  126  
   QPID_MESSAGING_EXTERN ~Connection();
+  127  
   QPID_MESSAGING_EXTERN Connection& operator=(const Connection&);
+  128  
   QPID_MESSAGING_EXTERN void setOption(const std::string& name, const qpid::types::Variant& 
value);
+  129  
   QPID_MESSAGING_EXTERN void open();
+  130  
   QPID_MESSAGING_EXTERN bool isOpen();
+  131  
   QPID_MESSAGING_EXTERN bool isOpen() const;
+  
132 
+  142  
   QPID_MESSAGING_EXTERN void reconnect(const std::string& url);
+  152  
   QPID_MESSAGING_EXTERN void 
reconnect();
+  157  
   QPID_MESSAGING_EXTERN std::string getUrl() const;
+  
158 
+  164  
   QPID_MESSAGING_EXTERN void close();
+  165  
   QPID_MESSAGING_EXTERN Session 
createTransactionalSession(const std::string& 
name = std::string());
+  166  
   QPID_MESSAGING_EXTERN Session createSession(const std::string& name = std::string());
+  
167 
+  168  
   QPID_MESSAGING_EXTERN Session getSession(const std::string& name) const;
+  169  
   QPID_MESSAGING_EXTERN std::string getAuthenticatedUsername();
+  
170 
+  
171 #ifndef SWIG
+  
172   private:
+  173  
 friend class qpid::messaging::PrivateImplRef;
+  
174 #endif
+  
175 };
+  
176 
+  
177 }} // namespace 
qpid::messaging
+  
178 
+  
179 #endif  
+
+
+
+
+  
+qpidmessagingConnection.h
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Duration_8h_source.html
--

[21/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1ResolutionError-members.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1ResolutionError-members.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1ResolutionError-members.html
new file mode 100755
index 000..8d80a9c
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1ResolutionError-members.html
@@ -0,0 +1,116 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Member List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('structqpid_1_1messaging_1_1ResolutionError.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+qpid::messaging::ResolutionError Member List  
+
+
+
+This is the complete list of members for qpid::messaging::ResolutionError,
 including all inherited members.
+
+  AddressError(const std::string &) (defined in qpid::messaging::AddressError)qpid::messaging::AddressError
+  Exception(const std::string 
&message=std::string()) (defined in qpid::types::Exception)qpid::types::Exceptionexplicit
+  LinkError(const 
std::string &) (defined in qpid::messaging::LinkError)qpid::messaging::LinkError
+  MessagingException(const 
std::string &msg) (defined in qpid::messaging::MessagingException)qpid::messaging::MessagingException
+  ResolutionError(const std::string &msg) (defined in qpid::messaging::ResolutionError)qpid::messaging::ResolutionError
+  what() const  (defined in qpid::types::Exception)qpid::types::Exceptionvirtual
+  ~Exception() 
(defined in qpid::types::Exception)qpid::types::Exceptionvirtual
+  ~MessagingException() 
(defined in qpid::messaging::MessagingException)qpid::messaging::MessagingExceptionvirtual
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1ResolutionError.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1ResolutionError.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1ResolutionError.html
new file mode 100755
index 000..0b81005
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/structqpid_1_1messaging_1_1ResolutionError.html
@@ -0,0 +1,157 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::ResolutionError Struct 
Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('structqpid_1_1messaging_1_1ResolutionError.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+List of all 
members  
+  
+qpid::messaging::ResolutionError Struct Reference  

+
+
+
+#include 
+
+Inheritance diagram for qpid::messaging::ResolutionError:
+
+ 
+  
+  
+
+
+
+
+
+
+
+ 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN ResolutionError (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::messaging::AddressError
+
+QPID_MESSAGING_EXTERN AddressError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::LinkError
+
+QPID_MESSAGING_EXTERN LinkError (const std::string &)
+ 
+ Public Member Functions inherited from qpid::messaging::MessagingException
+
+QPID_MESSAGING_EXTERN MessagingException (const std::string &msg)
+ 
+ Public Member Functions inherited from qpid::types::Exception
+
+QPID_TYPES_EXTERN Exception (const std::string &message=std::string()) 
 throw ()
+ 
+
+virtual QPID_TYPES_EXTERN 
+const char * what () 
const   throw ()
+ 
+
+Detailed 
Description
+Th

[38/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
new file mode 100755
index 000..7b6cfc8
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection-members.html
@@ -0,0 +1,136 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Member List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Connection.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+qpid::messaging::Connection Member List  
+
+
+
+This is the complete list of members for qpid::messaging::Connection,
 including all inherited members.
+
+  close()qpid::messaging::Connection
+  Connection(ConnectionImpl 
*impl) (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  Connection(const 
Connection &) (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  Connection() (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  Connection(const
 std::string &url, const qpid::types::Variant::Map 
&options=qpid::types::Variant::Map())qpid::messaging::Connection
+  Connection(const
 std::string &url, const std::string &options)qpid::messaging::Connection
+  createSession(const std::string &name=std::string()) 
(defined in qpid::messaging::Connection)qpid::messaging::Connection
+  createTransactionalSession(const std::string 
&name=std::string()) (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  getAuthenticatedUsername() (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  getSession(const std::string 
&name) const  (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  getUrl()
 const qpid::messaging::Connection
+  Handle() (defined in qpid::messaging::Handle< 
ConnectionImpl >)qpid::messaging::Handle< 
ConnectionImpl >inlineprotected
+  impl (defined in 
qpid::messaging::Handle< 
ConnectionImpl >)qpid::messaging::Handle< 
ConnectionImpl >protected
+  Impl typedef (defined in qpid::messaging::Handle< 
ConnectionImpl >)qpid::messaging::Handle< 
ConnectionImpl >protected
+  isNull()
 constqpid::messaging::Handle< 
ConnectionImpl >inline
+  isOpen() (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  isOpen() const  
(defined in qpid::messaging::Connection)qpid::messaging::Connection
+  isValid()
 constqpid::messaging::Handle< 
ConnectionImpl >inline
+  open() (defined 
in qpid::messaging::Connection)qpid::messaging::Connection
+  operator
 bool() constqpid::messaging::Handle< 
ConnectionImpl >inline
+  operator!()
 constqpid::messaging::Handle< 
ConnectionImpl >inline
+  operator=(const Connection 
&) (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  qpid::messaging::PrivateImplRef< Connection > 
(defined in qpid::messaging::Connection)qpid::messaging::Connectionfriend
+  reconnect(const
 std::string &url)qpid::messaging::Connection
+  reconnect()qpid::messaging::Connection
+  setOption(const std::string 
&name, const qpid::types::Variant &value) (defined in qpid::messaging::Connection)qpid::messaging::Connection
+  swap(Handle< 
ConnectionImpl > &h) (defined in qpid::messaging::Handle< 
ConnectionImpl >)qpid::messaging::Handle< 
ConnectionImpl >inline
+  ~Connection() (defined in qpid::messaging::Connection)qpid::messaging::Connection
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection.html
new file mode 100755
index 000..579417b
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Connection.html
@@ -0,0 +1,378 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-t

[40/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Session_8h_source.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Session_8h_source.html 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Session_8h_source.html
new file mode 100755
index 000..06b2f0a
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Session_8h_source.html
@@ -0,0 +1,197 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid/messaging/Session.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('Session_8h_source.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Session.h  
+
+
+1 #ifndef 
QPID_MESSAGING_SESSION_H
+
2 #define QPID_MESSAGING_SESSION_H
+
3 
+
4 /*
+
5  *
+
6  * Licensed to the Apache Software 
Foundation (ASF) under one
+
7  * or more contributor license agreements.  
See the NOTICE file
+
8  * distributed with this work for 
additional information
+
9  * regarding copyright ownership.  The ASF 
licenses this file
+   
10  * to you under the Apache License, 
Version 2.0 (the
+   
11  * "License"); you may not use 
this file except in compliance
+   
12  * with the License.  You may obtain a 
copy of the License at
+   
13  * 
+   
14  *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15  * 
+   
16  * Unless required by applicable law or 
agreed to in writing,
+   
17  * software distributed under the License 
is distributed on an
+   
18  * "AS IS" BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19  * KIND, either express or implied.  See 
the License for the
+   
20  * specific language governing permissions 
and limitations
+   
21  * under the License.
+   
22  *
+   
23  */
+   
24 #include 
"qpid/messaging/ImportExport.h"
+   
25 
+   
26 #include 
"qpid/messaging/exceptions.h"
+   
27 #include 
"qpid/messaging/Duration.h"
+   
28 #include 
"qpid/messaging/Handle.h"
+   
29 
+   
30 #include 
+   
31 
+   
32 namespace qpid {
+   
33 namespace messaging {
+   
34 
+   
35 #ifndef SWIG
+   
36 template  
class PrivateImplRef;
+   
37 #endif
+   
38 class 
Address;
+   
39 class Connection;
+   
40 class Message;
+   
41 class Sender;
+   
42 class Receiver;
+   
43 class SessionImpl;
+   
44 
+   49 class QPID_MESSAGING_CLASS_EXTERN Session : public qpid::messaging::Handle
+   
50 {
+   51  
 public:
+   52  
   QPID_MESSAGING_EXTERN Session(SessionImpl* impl = 
0);
+   53  
   QPID_MESSAGING_EXTERN Session(const 
Session&);
+   54  
   QPID_MESSAGING_EXTERN ~Session();
+   55  
   QPID_MESSAGING_EXTERN Session& operator=(const Session&);
+   
56 
+   63  
   QPID_MESSAGING_EXTERN void close();
+   
64 
+   72  
   QPID_MESSAGING_EXTERN void commit();
+   73  
   QPID_MESSAGING_EXTERN void rollback();
+   
74 
+   82  
   QPID_MESSAGING_EXTERN void 
acknowledge(bool sync=false);
+   86  
   QPID_MESSAGING_EXTERN void acknowledge(Message&, 
bool sync=false);
+   90  
   QPID_MESSAGING_EXTERN void 
acknowledgeUpTo(Message&, bool sync=false);
+   96  
   QPID_MESSAGING_EXTERN void reject(Message&);
+  102  
   QPID_MESSAGING_EXTERN void release(Message&);
+  
103 
+  112  
   QPID_MESSAGING_EXTERN void sync(bool block=true);
+  
113 
+  120  
   QPID_MESSAGING_EXTERN uint32_t getReceivable();
+  126  
   QPID_MESSAGING_EXTERN uint32_t getUnsettledAcks();
+  135  
   QPID_MESSAGING_EXTERN bool nextReceiver(Receiver&, 
Duration 
timeout=Duration::FOREVER);
+  144  
   QPID_MESSAGING_EXTERN Receiver nextReceiver(Duration 
timeout=Duration::FOREVER);
+  145  
   
+  153  
   QPID_MESSAGING_EXTERN Sender createSender(const Address& address);
+  164  
   QPID_MESSAGING_EXTERN Sender createSender(const std::string& address);
+  
165 
+  173  
   QPID_MESSAGING_EXTERN Receiver 
createReceiver(const Address& address);
+  184  
   QPID_MESSAGING_EXTERN Receiver 
createReceiver(const std::string& 
address);
+  
185 
+  190  
   QPID_MESSAGING_EXTERN Sender getSender(const std::string& name) const;
+  195  
   QPID_MESSAGING_EXTERN Receiver getReceiver(const std::string& name) const;
+  200  
   QPID_MESSAGING_EXTERN Connection getConnection() 
const;
+  
201 
+  206  
   QPID_MESSAGING_EXTERN bool hasError();
+  212  
   QPID_MESSAGING_EXTERN void 
checkError();
+  
213 
+  
214 #ifndef SWIG
+  
215   private:

[11/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/cpp-broker/book/chap-Messaging_User_Guide-Security.html.in
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/cpp-broker/book/chap-Messaging_User_Guide-Security.html.in
 
b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/chap-Messaging_User_Guide-Security.html.in
new file mode 100644
index 000..0ab2476
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/cpp-broker/book/chap-Messaging_User_Guide-Security.html.in
@@ -0,0 +1,1231 @@
+1.5. SecurityPrev Chapter 1. 
+  Running the AMQP Messaging Broker
+ Next1.5. Security
+   This chapter describes how authentication, rule-based 
authorization, encryption, and digital signing can be accomplished using Qpid. 
Authentication is the process of verifying the identity of a user; in Qpid, 
this is done using the SASL framework. Rule-based authorization is a mechanism 
for specifying the actions that each user is allowed to perform; in Qpid, this 
is done using an Access Control List (ACL) that is part of the Qpid broker. 
Encryption is used to ensure that data is not transferred in a plain-text 
format that could be intercepted and read. Digital signatures provide proof 
that a given message was sent by a known sender. Encryption and signing are 
done using SSL (they can also be done using SASL, but SSL provides stronger 
encryption).
+   1.5.1. User
 Authentication
+   AMQP uses Simple Authentication and Security Layer 
(SASL) to authenticate client connections to the broker. SASL is a framework 
that supports a variety of authentication methods. For secure applications, we 
suggest CRAM-MD5, DIGEST-MD5, or GSSAPI. The ANONYMOUS method is not secure. The 
PLAIN method is secure only when 
used together with SSL.
+   
+   Both the Qpid broker and Qpid clients use the http://cyrusimap.web.cmu.edu/"; target="_top">Cyrus SASL 
library, a full-featured authentication framework, which offers many 
configuration options. This section shows how to configure users for 
authentication with SASL, which is sufficient when using SASL PLAIN. If you are not using SSL, 
you should configure SASL to use CRAM-MD5, DIGEST-MD5, or GSSAPI (which provides Kerberos 
authentication). For information on configuring these and other options in 
SASL, see the Cyrus SASL documentation.
+   Important
+   The SASL 
PLAIN method sends passwords in cleartext, and is vulnerable to 
man-in-the-middle attacks unless SSL (Secure Socket Layer) is also used (see Section 1.5.4, “Encryption 
using SSL”).
+   
+   If you are not using SSL, we recommend that you 
disable PLAIN authentication in 
the broker.
+   
+   The Qpid broker uses the auth yes|no option to determine whether 
to use SASL authentication. Turn on authentication by setting auth to yes in /etc/qpidd.conf:
+   
+# /etc/qpidd.conf
+#
+# Set auth to 'yes' or 'no'
+
+auth=yes
+1.5.1.1. Configuring
 SASL
+   On Linux systems, the SASL configuration file 
is generally found in /etc/sasl2/qpidd.conf or 
/usr/lib/sasl2/qpidd.conf.
+   
+   The SASL database contains user names and 
passwords for SASL. In SASL, a user may be associated with a realm. The Qpid broker authenticates users in the QPID realm by default, but it can be 
set to a different realm using the realm option:
+   
+# /etc/qpidd.conf
+#
+# Set the SASL realm using 'realm='
+
+auth=yes
+realm=QPID
+
+   The SASL database is installed at /var/lib/qpidd/qpidd.sasldb; initially, it has one user 
named guest in the QPID realm, and the password for this 
user is guest.
+   Note
+   The user database is readable only by 
the qpidd user. When run as a daemon, Qpid 
always runs as the qpidd user. If you start the 
broker from a user other than the qpidd user, 
you will need to either reconfigure SASL or turn authentication off.
+   Important
+   The SASL database stores user names and 
passwords in plain text. If it is compromised so are all of the passwords that 
it stores. This is the reason that the qpidd 
user is the only user that can read the database. If you modify permissions, be 
careful not to expose the SASL database.
+   
+   Add new users to the database by using the 
saslpasswd2 command, which 
specifies a realm and a user ID. A user ID takes the form user-id@domain..
+   # saslpasswd2 -f 
/var/lib/qpidd/qpidd.sasldb -u realm 
new_user_name
+   To list the users in t

[07/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Message_8h_source.html
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Message_8h_source.html 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Message_8h_source.html
new file mode 100644
index 000..4bb6118
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Message_8h_source.html
@@ -0,0 +1,228 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid/messaging/Message.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('Message_8h_source.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Message.h  
+
+
+1 #ifndef 
QPID_MESSAGING_MESSAGE_H
+
2 #define QPID_MESSAGING_MESSAGE_H
+
3 
+
4 /*
+
5  *
+
6  * Licensed to the Apache Software 
Foundation (ASF) under one
+
7  * or more contributor license agreements.  
See the NOTICE file
+
8  * distributed with this work for 
additional information
+
9  * regarding copyright ownership.  The ASF 
licenses this file
+   
10  * to you under the Apache License, 
Version 2.0 (the
+   
11  * "License"); you may not use 
this file except in compliance
+   
12  * with the License.  You may obtain a 
copy of the License at
+   
13  * 
+   
14  *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15  * 
+   
16  * Unless required by applicable law or 
agreed to in writing,
+   
17  * software distributed under the License 
is distributed on an
+   
18  * "AS IS" BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19  * KIND, either express or implied.  See 
the License for the
+   
20  * specific language governing permissions 
and limitations
+   
21  * under the License.
+   
22  *
+   
23  */
+   
24 #include 
"qpid/messaging/ImportExport.h"
+   
25 
+   
26 #include 
"qpid/messaging/Duration.h"
+   
27 #include 
"qpid/types/Exception.h"
+   
28 #include 
"qpid/types/Variant.h"
+   
29 
+   
30 #include 
+   
31 
+   
32 namespace qpid {
+   
33 namespace messaging {
+   
34 
+   
35 class Address;
+   
36 class Codec;
+   
37 class MessageImpl;
+   
38 
+   42 class QPID_MESSAGING_CLASS_EXTERN Message
+   
43 {
+   44  
 public:
+   45  
   QPID_MESSAGING_EXTERN Message(qpid::types::Variant&);
+   46  
   QPID_MESSAGING_EXTERN Message(const 
std::string& bytes = std::string());
+   47  
   QPID_MESSAGING_EXTERN Message(const char*, size_t);
+   48  
   QPID_MESSAGING_EXTERN Message(const 
Message&);
+   49  
   QPID_MESSAGING_EXTERN ~Message();
+   
50 
+   51  
   QPID_MESSAGING_EXTERN Message& operator=(const Message&);
+   
52 
+   53  
   QPID_MESSAGING_EXTERN void setReplyTo(const Address&);
+   54  
   QPID_MESSAGING_EXTERN const Address& getReplyTo() 
const;
+   
55 
+   56  
   QPID_MESSAGING_EXTERN void setSubject(const std::string&);
+   57  
   QPID_MESSAGING_EXTERN const std::string& 
getSubject() const;
+   
58 
+   64  
   QPID_MESSAGING_EXTERN void 
setContentType(const std::string&);
+   70  
   QPID_MESSAGING_EXTERN const std::string& 
getContentType() const;
+   
71 
+   77  
   QPID_MESSAGING_EXTERN void 
setMessageId(const std::string&);
+   78  
   QPID_MESSAGING_EXTERN const std::string& 
getMessageId() const;
+   
79 
+   86  
   QPID_MESSAGING_EXTERN void setUserId(const std::string&);
+   87  
   QPID_MESSAGING_EXTERN const std::string& 
getUserId() const;
+   
88 
+   96  
   QPID_MESSAGING_EXTERN void 
setCorrelationId(const std::string&);
+   97  
   QPID_MESSAGING_EXTERN const std::string& 
getCorrelationId() const;
+   
98 
+  104  
   QPID_MESSAGING_EXTERN void 
setPriority(uint8_t);
+  105  
   QPID_MESSAGING_EXTERN uint8_t getPriority() const;
+  
106 
+  112  
   QPID_MESSAGING_EXTERN void setTtl(Duration 
ttl);
+  116  
   QPID_MESSAGING_EXTERN Duration getTtl() const;
+  
117 
+  124  
   QPID_MESSAGING_EXTERN void setDurable(bool durable);
+  125  
   QPID_MESSAGING_EXTERN bool getDurable() 
const;
+  
126 
+  134  
   QPID_MESSAGING_EXTERN bool getRedelivered() 
const;
+  140  
   QPID_MESSAGING_EXTERN void 
setRedelivered(bool);
+  
141 
+  150  
   QPID_MESSAGING_EXTERN const 
qpid::types::Variant::Map& getProperties() const;
+  151  
   QPID_MESSAGING_EXTERN qpid::types::Variant::Map& getProperties();
+  152  
   QPID_MESSAGING_EXTERN void 
setProperties(const 
qpid::types::Variant::Map&);
+  
153 
+ 

[46/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chap-Messaging_User_Guide-Security.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chap-Messaging_User_Guide-Security.html
 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chap-Messaging_User_Guide-Security.html
new file mode 100644
index 000..5137402
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/cpp-broker/book/chap-Messaging_User_Guide-Security.html
@@ -0,0 +1,1374 @@
+
+
+http://www.w3.org/1999/xhtml"; xml:lang="en">
+  
+1.5. Security - Apache Qpid™
+
+
+
+
+var _deferredFunctions = [];
+
+
+
+
+https://git-wip-us.apache.org/repos/asf/qpid-proton.git"/>
+https://github.com/apache/qpid-proton/blob/go1/README.md
+https://github.com/apache/qpid-proton/tree/go1{/dir}
+https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
+  
+  
+
+  
+
+
+
+
+
+  Apache 
Qpid™
+  Documentation
+  Download
+  Discussion
+
+  
+
+  
+
+  
+Project
+
+
+  Overview
+  Components
+  Releases
+
+  
+
+  
+Messaging APIs
+
+
+  Qpid Proton
+  Qpid JMS
+  Qpid 
Messaging API
+
+  
+
+  
+Servers and tools
+
+
+  Broker for 
Java
+  C++ 
broker
+  Dispatch 
router
+
+  
+
+  
+Resources
+
+
+  Dashboard
+  https://cwiki.apache.org/confluence/display/qpid/Index";>Wiki
+  More resources
+
+  
+
+  
+
+  
+http://www.google.com/search"; method="get">
+  
+  
+  Search
+  More ways to search
+
+  
+
+  
+HomeReleasesQpid C++ 1.36.0AMQP Messaging 
Broker (Implemented in C++)1.5. Security
+
+
+  1.5. SecurityPrev Chapter 1. 
+  Running the AMQP Messaging Broker
+ Next1.5. Security
+   This chapter describes how authentication, rule-based 
authorization, encryption, and digital signing can be accomplished using Qpid. 
Authentication is the process of verifying the identity of a user; in Qpid, 
this is done using the SASL framework. Rule-based authorization is a mechanism 
for specifying the actions that each user is allowed to perform; in Qpid, this 
is done using an Access Control List (ACL) that is part of the Qpid broker. 
Encryption is used to ensure that data is not transferred in a plain-text 
format that could be intercepted and read. Digital signatures provide proof 
that a given message was sent by a known sender. Encryption and signing are 
done using SSL (they can also be done using SASL, but SSL provides stronger 
encryption).
+   1.5.1. User
 Authentication
+   AMQP uses Simple Authentication and Security Layer 
(SASL) to authenticate client connections to the broker. SASL is a framework 
that supports a variety of authentication methods. For secure applications, we 
suggest CRAM-MD5, DIGEST-MD5, or GSSAPI. The ANONYMOUS method is not secure. The 
PLAIN method is secure only when 
used together with SSL.
+   
+   Both the Qpid broker and Qpid clients use the http://cyrusimap.web.cmu.edu/"; target="_top">Cyrus SASL 
library, a full-featured authentication framework, which offers many 
configuration options. This section shows how to configure users for 
authentication with SASL, which is sufficient when using SASL PLAIN. If you are not using SSL, 
you should configure SASL to use CRAM-MD5, DIGEST-MD5, or GSSAPI (which provides Kerberos 
authentication). For information on configuring these and other options in 
SASL, see the Cyrus SASL documentation.
+   Important
+   The SASL 
PLAIN method sends passwords in cleartext, and is vulnerable to 
man-in-the-middle attacks unless SSL (Secure Socket Layer) is also used (see Section 1.5.4, “Encryption 
using SSL”).
+   
+   If you are not using SSL, we recommend that you 
disable PLAIN authentication in 
the broker.
+   
+   The Qpid broker uses the auth yes|no option to determine whether 
to use SASL authentication. Turn on authentication by setting auth to yes in /etc/qpidd.conf:
+   
+# /etc/qpidd.conf
+#
+# Set auth to 'yes' or 'no'
+
+auth=yes
+1.5.1.1. Configuring
 SASL
+   On Linux systems, the SASL configuration file 
is generally found in /etc/sasl2/qpidd.conf or 
/usr/lib/sasl2/qpidd.conf.
+   
+   

[26/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_64.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_64.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_64.html
new file mode 100755
index 000..1714930
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_64.html
@@ -0,0 +1,26 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_64.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_64.js 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_64.js
new file mode 100755
index 000..9d87fc9
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_64.js
@@ -0,0 +1,4 @@
+var searchData=
+[
+  
['described',['described',['../classqpid_1_1types_1_1Variant.html#a3b486c73ad069de85dc995fb76794641',1,'qpid::types::Variant::described(const
 Variant &descriptor, const Variant 
&value)'],['../classqpid_1_1types_1_1Variant.html#a328765159474f69304617f25ffeb414f',1,'qpid::types::Variant::described(const
 Variant &descriptor, const List &value)']]]
+];

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_66.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_66.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_66.html
new file mode 100755
index 000..12565e3
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_66.html
@@ -0,0 +1,26 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_66.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_66.js 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_66.js
new file mode 100755
index 000..1b53ba9
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_66.js
@@ -0,0 +1,4 @@
+var searchData=
+[
+  
['fetch',['fetch',['../classqpid_1_1messaging_1_1Receiver.html#aa3b46a16b002054cd73f9c625ff496bb',1,'qpid::messaging::Receiver::fetch(Message
 &message, Duration 
timeout=Duration::FOREVER)'],['../classqpid_1_1messaging_1_1Receiver.html#aaa7226095a43c3dda3f1e709b21e7ab2',1,'qpid::messaging::Receiver::fetch(Duration
 timeout=Duration::FOREVER)']]]
+];

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_67.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_67.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_67.html
new file mode 100755
index 000..53d4a09
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_67.html
@@ -0,0 +1,26 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_67.js
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_67.js 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/search/functions_67.js
new file mod

[06/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Session_8h_source.html
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Session_8h_source.html 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Session_8h_source.html
new file mode 100644
index 000..06b2f0a
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/Session_8h_source.html
@@ -0,0 +1,197 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid/messaging/Session.h Source File
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('Session_8h_source.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Session.h  
+
+
+1 #ifndef 
QPID_MESSAGING_SESSION_H
+
2 #define QPID_MESSAGING_SESSION_H
+
3 
+
4 /*
+
5  *
+
6  * Licensed to the Apache Software 
Foundation (ASF) under one
+
7  * or more contributor license agreements.  
See the NOTICE file
+
8  * distributed with this work for 
additional information
+
9  * regarding copyright ownership.  The ASF 
licenses this file
+   
10  * to you under the Apache License, 
Version 2.0 (the
+   
11  * "License"); you may not use 
this file except in compliance
+   
12  * with the License.  You may obtain a 
copy of the License at
+   
13  * 
+   
14  *   
http://www.apache.org/licenses/LICENSE-2.0
+   
15  * 
+   
16  * Unless required by applicable law or 
agreed to in writing,
+   
17  * software distributed under the License 
is distributed on an
+   
18  * "AS IS" BASIS, WITHOUT 
WARRANTIES OR CONDITIONS OF ANY
+   
19  * KIND, either express or implied.  See 
the License for the
+   
20  * specific language governing permissions 
and limitations
+   
21  * under the License.
+   
22  *
+   
23  */
+   
24 #include 
"qpid/messaging/ImportExport.h"
+   
25 
+   
26 #include 
"qpid/messaging/exceptions.h"
+   
27 #include 
"qpid/messaging/Duration.h"
+   
28 #include 
"qpid/messaging/Handle.h"
+   
29 
+   
30 #include 
+   
31 
+   
32 namespace qpid {
+   
33 namespace messaging {
+   
34 
+   
35 #ifndef SWIG
+   
36 template  
class PrivateImplRef;
+   
37 #endif
+   
38 class 
Address;
+   
39 class Connection;
+   
40 class Message;
+   
41 class Sender;
+   
42 class Receiver;
+   
43 class SessionImpl;
+   
44 
+   49 class QPID_MESSAGING_CLASS_EXTERN Session : public qpid::messaging::Handle
+   
50 {
+   51  
 public:
+   52  
   QPID_MESSAGING_EXTERN Session(SessionImpl* impl = 
0);
+   53  
   QPID_MESSAGING_EXTERN Session(const 
Session&);
+   54  
   QPID_MESSAGING_EXTERN ~Session();
+   55  
   QPID_MESSAGING_EXTERN Session& operator=(const Session&);
+   
56 
+   63  
   QPID_MESSAGING_EXTERN void close();
+   
64 
+   72  
   QPID_MESSAGING_EXTERN void commit();
+   73  
   QPID_MESSAGING_EXTERN void rollback();
+   
74 
+   82  
   QPID_MESSAGING_EXTERN void 
acknowledge(bool sync=false);
+   86  
   QPID_MESSAGING_EXTERN void acknowledge(Message&, 
bool sync=false);
+   90  
   QPID_MESSAGING_EXTERN void 
acknowledgeUpTo(Message&, bool sync=false);
+   96  
   QPID_MESSAGING_EXTERN void reject(Message&);
+  102  
   QPID_MESSAGING_EXTERN void release(Message&);
+  
103 
+  112  
   QPID_MESSAGING_EXTERN void sync(bool block=true);
+  
113 
+  120  
   QPID_MESSAGING_EXTERN uint32_t getReceivable();
+  126  
   QPID_MESSAGING_EXTERN uint32_t getUnsettledAcks();
+  135  
   QPID_MESSAGING_EXTERN bool nextReceiver(Receiver&, 
Duration 
timeout=Duration::FOREVER);
+  144  
   QPID_MESSAGING_EXTERN Receiver nextReceiver(Duration 
timeout=Duration::FOREVER);
+  145  
   
+  153  
   QPID_MESSAGING_EXTERN Sender createSender(const Address& address);
+  164  
   QPID_MESSAGING_EXTERN Sender createSender(const std::string& address);
+  
165 
+  173  
   QPID_MESSAGING_EXTERN Receiver 
createReceiver(const Address& address);
+  184  
   QPID_MESSAGING_EXTERN Receiver 
createReceiver(const std::string& 
address);
+  
185 
+  190  
   QPID_MESSAGING_EXTERN Sender getSender(const std::string& name) const;
+  195  
   QPID_MESSAGING_EXTERN Receiver getReceiver(const std::string& name) const;
+  200  
   QPID_MESSAGING_EXTERN Connection getConnection() 
const;
+  
201 
+  206  
   QPID_MESSAGING_EXTERN bool hasError();
+  212  
   QPID_MESSAGING_EXTERN void 
checkError();
+  
213 
+  
214 #ifndef SWIG
+  
215   private:
+  216 

[34/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session-members.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session-members.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session-members.html
new file mode 100755
index 000..6cd4a26
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session-members.html
@@ -0,0 +1,143 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: Member List
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Session.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+qpid::messaging::Session Member List  
+
+
+
+This is the complete list of members for qpid::messaging::Session, 
including all inherited members.
+
+  acknowledge(bool
 sync=false)qpid::messaging::Session
+  acknowledge(Message
 &, bool sync=false)qpid::messaging::Session
+  acknowledgeUpTo(Message
 &, bool sync=false)qpid::messaging::Session
+  checkError()qpid::messaging::Session
+  close()qpid::messaging::Session
+  commit()qpid::messaging::Session
+  createReceiver(const
 Address &address)qpid::messaging::Session
+  createReceiver(const
 std::string &address)qpid::messaging::Session
+  createSender(const
 Address &address)qpid::messaging::Session
+  createSender(const
 std::string &address)qpid::messaging::Session
+  getConnection()
 const qpid::messaging::Session
+  getReceivable()qpid::messaging::Session
+  getReceiver(const
 std::string &name) const qpid::messaging::Session
+  getSender(const
 std::string &name) const qpid::messaging::Session
+  getUnsettledAcks()qpid::messaging::Session
+  Handle() (defined in qpid::messaging::Handle< 
SessionImpl >)qpid::messaging::Handle< 
SessionImpl >inlineprotected
+  hasError()qpid::messaging::Session
+  Impl typedef (defined in qpid::messaging::Handle< 
SessionImpl >)qpid::messaging::Handle< 
SessionImpl >protected
+  impl (defined in 
qpid::messaging::Handle< 
SessionImpl >)qpid::messaging::Handle< 
SessionImpl >protected
+  isNull()
 constqpid::messaging::Handle< 
SessionImpl >inline
+  isValid()
 constqpid::messaging::Handle< 
SessionImpl >inline
+  nextReceiver(Receiver
 &, Duration timeout=Duration::FOREVER)qpid::messaging::Session
+  nextReceiver(Duration
 timeout=Duration::FOREVER)qpid::messaging::Session
+  operator
 bool() constqpid::messaging::Handle< 
SessionImpl >inline
+  operator!()
 constqpid::messaging::Handle< 
SessionImpl >inline
+  operator=(const Session 
&) (defined in qpid::messaging::Session)qpid::messaging::Session
+  qpid::messaging::PrivateImplRef< Session > (defined 
in qpid::messaging::Session)qpid::messaging::Sessionfriend
+  reject(Message
 &)qpid::messaging::Session
+  release(Message
 &)qpid::messaging::Session
+  rollback() (defined in qpid::messaging::Session)qpid::messaging::Session
+  Session(SessionImpl *impl=0) (defined in qpid::messaging::Session)qpid::messaging::Session
+  Session(const Session &) 
(defined in qpid::messaging::Session)qpid::messaging::Session
+  swap(Handle< 
SessionImpl > &h) (defined in qpid::messaging::Handle< 
SessionImpl >)qpid::messaging::Handle< 
SessionImpl >inline
+  sync(bool
 block=true)qpid::messaging::Session
+  ~Session() 
(defined in qpid::messaging::Session)qpid::messaging::Session
+
+
+
+
+  
+Generated by
+http://www.doxygen.org/index.html";>
+ 1.8.3.1 
+  
+
+
+

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session.html
--
diff --git 
a/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session.html
 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session.html
new file mode 100755
index 000..9bf
--- /dev/null
+++ 
b/content/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Session.html
@@ -0,0 +1,657 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::Session Class Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight)

[01/51] [partial] qpid-site git commit: QPID-7584: update site for qpid-cpp 1.36.0

2016-12-14 Thread robbie
Repository: qpid-site
Updated Branches:
  refs/heads/asf-site 66e7aea4f -> 54b185073


http://git-wip-us.apache.org/repos/asf/qpid-site/blob/54b18507/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
--
diff --git 
a/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
new file mode 100644
index 000..17f93b2
--- /dev/null
+++ 
b/input/releases/qpid-cpp-1.36.0/messaging-api/cpp/api/classqpid_1_1messaging_1_1Receiver.html
@@ -0,0 +1,442 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+
+
+Qpid C++ Messaging API: qpid::messaging::Receiver Class 
Reference
+
+
+
+
+
+
+
+  $(document).ready(initResizable);
+  $(window).load(resizeHeight);
+
+
+
+
+  $(document).ready(function() { searchBox.OnSelectItem(0); });
+
+
+
+
+
+
+
+ 
+ 
+  
+   Qpid C++ Messaging API
+    1.36.0
+   
+  
+   
+
+  
+  
+  
+
+  
+
+
+ 
+ 
+
+
+
+
+
+var searchBox = new SearchBox("searchBox", "search",false,'Search');
+
+
+
+  
+
+  
+
+  
+  
+  
+
+
+$(document).ready(function(){initNavTree('classqpid_1_1messaging_1_1Receiver.html','');});
+
+
+
+
+ All Classes Functions Friends
+
+
+
+
+
+
+
+
+  
+Public Member Functions |
+Friends |
+List of all 
members  
+  
+qpid::messaging::Receiver Class Reference  
+
+
+
+#include 
+
+Inheritance diagram for qpid::messaging::Receiver:
+
+ 
+  
+  
+
+
+ 
+
+
+Public Member Functions
+
+QPID_MESSAGING_EXTERN Receiver (ReceiverImpl *impl=0)
+ 
+
+QPID_MESSAGING_EXTERN Receiver (const Receiver &)
+ 
+
+QPID_MESSAGING_EXTERN Receiver & operator= (const Receiver &)
+ 
+QPID_MESSAGING_EXTERN bool get
 (Message 
&message, Duration 
timeout=Duration::FOREVER)
+ 
+QPID_MESSAGING_EXTERN Message get
 (Duration 
timeout=Duration::FOREVER)
+ 
+QPID_MESSAGING_EXTERN bool fetch
 (Message 
&message, Duration 
timeout=Duration::FOREVER)
+ 
+QPID_MESSAGING_EXTERN Message fetch
 (Duration 
timeout=Duration::FOREVER)
+ 
+QPID_MESSAGING_EXTERN void setCapacity
 (uint32_t)
+ 
+QPID_MESSAGING_EXTERN uint32_t getCapacity
 ()
+ 
+QPID_MESSAGING_EXTERN uint32_t getAvailable
 ()
+ 
+QPID_MESSAGING_EXTERN uint32_t getUnsettled
 ()
+ 
+QPID_MESSAGING_EXTERN void close
 ()
+ 
+QPID_MESSAGING_EXTERN bool isClosed
 () const 
+ 
+QPID_MESSAGING_EXTERN const 
+std::string & getName
 () const 
+ 
+QPID_MESSAGING_EXTERN Session getSession
 () const 
+ 
+QPID_MESSAGING_EXTERN Address getAddress
 () const 
+ 
+ Public Member Functions inherited from qpid::messaging::Handle< 
ReceiverImpl >
+QPID_MESSAGING_INLINE_EXTERN bool isValid
 () const
+ 
+QPID_MESSAGING_INLINE_EXTERN bool isNull
 () const
+ 
+QPID_MESSAGING_INLINE_EXTERN operator
 bool () const
+ 
+QPID_MESSAGING_INLINE_EXTERN bool operator!
 () const
+ 
+
+void swap (Handle< 
ReceiverImpl > &h)
+ 
+
+
+Friends
+
+class qpid::messaging::PrivateImplRef< Receiver 
>
+ 
+
+
+Additional Inherited Members
+ Protected Types inherited from qpid::messaging::Handle< 
ReceiverImpl >
+
+typedef ReceiverImpl Impl
+ 
+ Protected Attributes inherited from qpid::messaging::Handle< 
ReceiverImpl >
+
+Impl * impl
+ 
+
+Detailed 
Description
+Interface through which messages are received. 
+Member Function Documentation
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN void 
qpid::messaging::Receiver::close 
+  (
+  )
+  
+
+  
+
+Cancels this Receiver. 
+
+
+
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN bool 
qpid::messaging::Receiver::fetch 
+  (
+  Message & 
+  message, 
+
+
+  
+  
+  Duration 
+  timeout = 
Duration::FOREVER 
+
+
+  
+  )
+  
+
+  
+
+Retrieves a message from this Receiver's subscription or 
waits for up to the specified timeout for one to become available. Unlike get(),
 this method will check with the server that there is no message for the 
subscription this receiver is serving before returning false.
+Returnsfalse if there is no message 
available after waiting for the specified time period, or if the receiver is 
closed, in which case isClosed()
 will be true. 
+
+
+
+
+
+
+  
+
+  QPID_MESSAGING_EXTERN Message 
qpid::messaging::Receiver::fetch 
+  (
+  Duration 
+  timeout = 
Duration::FOREVER)
+  
+
+  
+
+Retrieves a message for this Receiver's subscription or 
waits for up to the specified timeout for one to become available. Unlike get(),
 this method will check with the server that there is no message for the 
subscription this receiver is serving before throwing an exception.
+Exceptions
+  
+NoMessageAvailableif
 there is 

qpid-site git commit: QPID-7584: minor change to prod site update into action

2016-12-14 Thread robbie
Repository: qpid-site
Updated Branches:
  refs/heads/asf-site 54b185073 -> 5223a8168


QPID-7584: minor change to prod site update into action


Project: http://git-wip-us.apache.org/repos/asf/qpid-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-site/commit/5223a816
Tree: http://git-wip-us.apache.org/repos/asf/qpid-site/tree/5223a816
Diff: http://git-wip-us.apache.org/repos/asf/qpid-site/diff/5223a816

Branch: refs/heads/asf-site
Commit: 5223a8168468eb12b72d26d3ea9a4ce05da35642
Parents: 54b1850
Author: Robert Gemmell 
Authored: Wed Dec 14 19:58:25 2016 +
Committer: Robert Gemmell 
Committed: Wed Dec 14 19:58:25 2016 +

--
 content/components/cpp-broker/index.html| 6 +++---
 content/components/cpp-broker/security.html | 2 +-
 input/components/cpp-broker/index.md| 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-site/blob/5223a816/content/components/cpp-broker/index.html
--
diff --git a/content/components/cpp-broker/index.html 
b/content/components/cpp-broker/index.html
index 34aec51..eba624b 100644
--- a/content/components/cpp-broker/index.html
+++ b/content/components/cpp-broker/index.html
@@ -21,7 +21,7 @@
 -->
 http://www.w3.org/1999/xhtml"; xml:lang="en">
   
-C++ Broker - Apache Qpid™
+Qpid C++ Broker - Apache Qpid™
 
 
 
@@ -111,12 +111,12 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
   
 
   
-HomeComponentsC++ Broker
+HomeComponentsQpid C++ Broker
 
 
   
 
-C++ Broker
+Qpid C++ Broker
 
 
 

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/5223a816/content/components/cpp-broker/security.html
--
diff --git a/content/components/cpp-broker/security.html 
b/content/components/cpp-broker/security.html
index ea66714..6b73d3d 100644
--- a/content/components/cpp-broker/security.html
+++ b/content/components/cpp-broker/security.html
@@ -111,7 +111,7 @@ 
https://github.com/apache/qpid-proton/blob/go1{/dir}/{file}#L{line}"/>
   
 
   
-HomeComponentsC++ 
BrokerSecurity
+HomeComponentsQpid C++ 
BrokerSecurity
 
 
   Security

http://git-wip-us.apache.org/repos/asf/qpid-site/blob/5223a816/input/components/cpp-broker/index.md
--
diff --git a/input/components/cpp-broker/index.md 
b/input/components/cpp-broker/index.md
index e781fe4..c0bbd7d 100644
--- a/input/components/cpp-broker/index.md
+++ b/input/components/cpp-broker/index.md
@@ -19,7 +19,7 @@
 
 
 
-# C++ Broker
+# Qpid C++ Broker
 
 
 


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



qpid-proton git commit: PROTON-1375: Don't use default promoted parameter to va_start

2016-12-14 Thread astitcher
Repository: qpid-proton
Updated Branches:
  refs/heads/master ce8db5a80 -> 79d06f070


PROTON-1375: Don't use default promoted parameter to va_start


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/79d06f07
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/79d06f07
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/79d06f07

Branch: refs/heads/master
Commit: 79d06f0705a973a00fc66283462fa12ad729a708
Parents: ce8db5a
Author: Andrew Stitcher 
Authored: Wed Dec 14 15:12:23 2016 -0500
Committer: Andrew Stitcher 
Committed: Wed Dec 14 15:12:23 2016 -0500

--
 proton-c/src/tests/object.c | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/79d06f07/proton-c/src/tests/object.c
--
diff --git a/proton-c/src/tests/object.c b/proton-c/src/tests/object.c
index 4008fc6..8a1d00e 100644
--- a/proton-c/src/tests/object.c
+++ b/proton-c/src/tests/object.c
@@ -50,14 +50,14 @@ static pn_list_t *build_list(size_t capacity, ...)
   return result;
 }
 
-static pn_map_t *build_map(size_t capacity, float load_factor, ...)
+static pn_map_t *build_map(float load_factor, size_t capacity, ...)
 {
   pn_map_t *result = pn_map(PN_OBJECT, PN_OBJECT, capacity, load_factor);
   va_list ap;
 
   void *prev = NULL;
 
-  va_start(ap, load_factor);
+  va_start(ap, capacity);
   int count = 0;
   while (true) {
 void *arg = va_arg(ap, void *);
@@ -397,7 +397,7 @@ static void test_build_list(void)
 
 static void test_build_map(void)
 {
-  pn_map_t *m = build_map(0, 0.75,
+  pn_map_t *m = build_map(0.75, 0,
   pn_string("key"),
   pn_string("value"),
   pn_string("key2"),
@@ -421,7 +421,7 @@ static void test_build_map(void)
 
 static void test_build_map_odd(void)
 {
-  pn_map_t *m = build_map(0, 0.75,
+  pn_map_t *m = build_map(0.75, 0,
   pn_string("key"),
   pn_string("value"),
   pn_string("key2"),
@@ -767,24 +767,24 @@ void test_map_inspect(void)
   // note that when there is more than one entry in a map, the order
   // of the entries is dependent on the hashes involved, it will be
   // deterministic though
-  pn_map_t *m = build_map(0, 0.75, END);
+  pn_map_t *m = build_map(0.75, 0, END);
   test_inspect(m, "{}");
   pn_free(m);
 
-  m = build_map(0, 0.75,
+  m = build_map(0.75, 0,
 pn_string("key"), pn_string("value"),
 END);
   test_inspect(m, "{\"key\": \"value\"}");
   pn_free(m);
 
-  m = build_map(0, 0.75,
+  m = build_map(0.75, 0,
 pn_string("k1"), pn_string("v1"),
 pn_string("k2"), pn_string("v2"),
 END);
   test_inspect(m, "{\"k1\": \"v1\", \"k2\": \"v2\"}");
   pn_free(m);
 
-  m = build_map(0, 0.75,
+  m = build_map(0.75, 0,
 pn_string("k1"), pn_string("v1"),
 pn_string("k2"), pn_string("v2"),
 pn_string("k3"), pn_string("v3"),


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