summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* QPID-6834: allow delete-on-close in queue policiesGordon Sim2015-11-063-3/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1713025 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6754: add support for null targetGordon Sim2015-11-068-3/+87
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1713024 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6790: ensure that asynchronous completion of incoming transfers does ↵Gordon Sim2015-10-263-6/+48
| | | | | | not result in trying to settle deliveries implicitly settled by the freeing of their link git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1710683 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6783: dynamically determine SASL service name based on protocolKen Giusti2015-10-125-6/+15
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1708221 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6767: allow 'service' key in connection parameters.Ken Giusti2015-10-021-1/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1706484 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6767: add --sasl-service-name option to all QPID tools.Ken Giusti2015-10-027-0/+21
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1706480 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6765 [linearstore] Add qpid-txtest mode to qpid-qls-analyze which ↵Kim van der Riet2015-09-254-67/+72
| | | | | | extracts message number from message body git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1705310 13f79535-47bb-0310-9956-ffa450edef68
* NO_JIRA: Updates to ISSUES fileKim van der Riet2015-09-101-27/+63
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1702273 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Improve iostreams error reporting by passing errno to the function ↵Kim van der Riet2015-09-102-7/+10
| | | | | | that checks the outcome of iostream operations. It is hard to find the value of errno in a core trace, but trivial to print it out at the time the error is detected. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1702258 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6730: Make the linearstore journal timeout configurableAndrew Stitcher2015-09-092-10/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1702130 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Remove CMake warning message due to now deprecated if() constructAndrew Stitcher2015-09-041-6/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1701302 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6717: Change Selector beaviour and tests to accord with consensus semanticsAndrew Stitcher2015-09-044-12/+69
| | | | | | | - It seems to be the consensus amongst JMS Selector implementations that the NOT IN expression should return false if none of the types match git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1701301 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6718: Small fixes to compile on slightly older versions of G++ and ↵Andrew Stitcher2015-09-033-4/+15
| | | | | | Visual Studio git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1701130 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5855 - Simplified HA transaction logic.Alan Conway2015-09-0325-1368/+36
| | | | | | | | | | | | | | | | | | | | | | | Removed complex and incorrect HA+TX logic, reverted to the following limitation: You can use transactions in a HA cluster, but there are limitations on the transactional guarantees. Transactions function normally with the *primary* broker but replication to the backups is not coverted by the atomic guarantee. The following situations are all safe: - Client rolls back a transaction. - Client successfully commits a transaction. - Primary fails during a transaction *before* the client sends a commit. - Transaction contains only one message. The problem case is when all of the following occur: - transaction contains multiple actions (enqueues or dequeues) - primary fails between client sending commit and receiving commit-complete. In this case it is possible that only part of the transaction was replicated to the backups, so on fail-over partial transaction results may be visible. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1701109 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6718: Complete parsing for all styles of numeric literalsAndrew Stitcher2015-09-023-13/+149
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700915 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6717: Fix issue with BETWEEN comparisons when types don't matchAndrew Stitcher2015-09-021-5/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700869 13f79535-47bb-0310-9956-ffa450edef68
* Revert "QPID-6717: fix evaluation of BETWEEN and NOT IN when types are ↵Andrew Stitcher2015-09-021-2/+1
| | | | | | | | | | mismatched" This reverts commit 85ed093ba4beae54c1622000cb7a38cb30889239. - This change broke handling of the IN construct. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700868 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6717: Unit tests to demonstrate the issue (or not!)Andrew Stitcher2015-09-021-0/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700867 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Remove unused functionAndrew Stitcher2015-09-021-4/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700866 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Fix for python client ValueError exception. see bz1249608Ernest Allen2015-09-022-3/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700852 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6639: ensure all available data is decodedGordon Sim2015-09-011-9/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1700681 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6717: fix evaluation of BETWEEN and NOT IN when types are mismatchedGordon Sim2015-08-281-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1698428 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6391: add support for no-local filterGordon Sim2015-08-283-1/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1698427 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6714: support for JMS header names in selectors, plus support for to, ↵Gordon Sim2015-08-289-11/+161
| | | | | | replyto and subject git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1698426 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Fix RPATH setting for rpm builds which set absolute pathsAndrew Stitcher2015-08-211-3/+4
| | | | | | | - specifically matters for the LIB_INSTALL_DIR which is also used to set the RPATH in some circumstances. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1697068 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Trivial update to work with changed Boost 1.59 Test library.Andrew Stitcher2015-08-201-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1696716 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6435: Restore decent error messages to the SSL codeAndrew Stitcher2015-08-208-62/+73
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1696715 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6698: use the monotonic clock for AMQP 1.0 idle timeoutKen Giusti2015-08-182-4/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1696415 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6680: .NET Binding allows UTF-8 string messages - patch from ↵Charles E. Rolke2015-08-054-3/+29
| | | | | | | | | https://github.com/gaborsulyok This closes #8 git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1694323 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6577: HA - backup broker messages are larger than primary messages.Alan Conway2015-08-044-2/+16
| | | | | | | | | | | Under the 0-10 protocol (used by HA) brokers add an "exchange" property to each message for the exchange the message arrived on .This is different (and sometimes longer) on the backup brokers from the primary since on the backups the message arrives on a special replication exchange. This fixes backup brokers to not modify the exchange property on messages. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1694094 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6491: qpid-route map to use credentials, hide them from outputPavel Moravec2015-08-021-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1693816 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6470: trivial commit, using to try and close stale PR.Robert Gemmell2015-07-311-0/+1
| | | | | | This closes #6 git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1693567 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6668: Update INSTALL-WINDOWSCharles E. Rolke2015-07-301-73/+134
| | | | | | | | | | | Explain Visual Studio 2012, not 2008 Boost 1_58 community build How to include Proton and AMQP 1.0 General simplification to show what should work git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1693487 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: update hello world example to use recommended api for content ↵Charles E. Rolke2015-07-281-55/+56
| | | | | | | | manipulation Mirrors C++ example URL: http://svn.apache.org/r1693139 git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1693164 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: update hello world example to use recommended api for content ↵Gordon Sim2015-07-281-2/+5
| | | | | | manipulation git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1693139 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6661: address some anomalies with heartbeats on the AMQP 1.0 pathGordon Sim2015-07-282-1/+3
| | | | | | | * the ticker driving heartbeats are restarted whenever data is sent out * the client checks whether there is data pending in determining whether it can encode git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1693067 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6660: don't try to process incoming delivery events for link that has ↵Gordon Sim2015-07-271-0/+2
| | | | | | been closed git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1692938 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6659: wait for full message before processingGordon Sim2015-07-271-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1692937 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6654, QPID-6592: ensure system info ptr is valid before using it, and ↵Gordon Sim2015-07-273-11/+14
| | | | | | ensure it is valid even if management is disabled git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1692936 13f79535-47bb-0310-9956-ffa450edef68
* Doc fixes per QPID-6648.Stephen D. Huston2015-07-161-23/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1691457 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6641: Step to Visual Studio 2012, Boost 1.55, CMake 2.8.11Charles E. Rolke2015-07-141-8/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1691070 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6639: delegate input as soon as authentication has succeeded (even if ↵Gordon Sim2015-07-141-1/+1
| | | | | | that has not yet been communicated to peer) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1690874 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6256: prevent unused local variable warningGordon Sim2015-07-141-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1690873 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6641: Update Windows SDK build for VS2013, Boost 1.58Charles E. Rolke2015-07-134-8/+37
| | | | | | | | Relax requirement for boost/include dir. Boost.org upstream builds don't have them. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1690816 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6640: Adjust cmake 3.x generator name detectionCharles E. Rolke2015-07-131-6/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1690787 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6611: Getting Visual Studio executables to run from where they are built.Charles E. Rolke2015-07-011-3/+10
| | | | | | | | Leaving cmake as-is, this patch adds current VS build folder to the PATH. It further adds an arg to make-install.bat to select a build configuration: git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1688738 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: update version numbers/datesRobert Gemmell2015-06-259-12/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1687474 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6256: fix for conversion error on some versions of boostGordon Sim2015-06-231-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1687094 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6599: [Python Tests AMQP 0-10] Remove part of new test ↵Keith Wall2015-06-221-1/+0
| | | | | | testReservedExchangeRedeclaredSameType which does not conform to test. (Partial revert of commit r1686284). git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1686946 13f79535-47bb-0310-9956-ffa450edef68
* QPID-6602: remove extraneous replenishment of credit (that is done by the ↵Gordon Sim2015-06-191-5/+0
| | | | | | call to get already) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1686476 13f79535-47bb-0310-9956-ffa450edef68