summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* QPID-5639 : Remove Unicode from source fileRobert Godfrey2014-03-241-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1580885 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5643: qpid-route route map does not pass credentials to other brokers ↵Pavel Moravec2014-03-241-1/+3
| | | | | | in the route map git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1580827 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5615 : [Java Broker] update the durable configuration store interface ↵Robert Godfrey2014-03-2348-795/+1606
| | | | | | to be entirely in terms of ConfiguredObjectRecords and give stores knowledge of hierarchy git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1580561 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5640 : [Java Broker] Allow the Json virtual host store to save bindingsRobert Godfrey2014-03-231-1/+40
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1580560 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5633 : [Java Broker] Change the way StoreConfigurationChangeListener ↵Robert Godfrey2014-03-234-93/+14
| | | | | | derives the "type" (actually category) of the ConfiguredObject git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1580559 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Use better logic to locate Visual Studio vcvars on 32-/64-bit systemsCharles E. Rolke2014-03-221-14/+62
| | | | | | | | | | Emit a make-install.bat. Install failures from within VS gui are hidden but are in plain sight from the command line. Fix a couple of bad references to boost root directory. Turn off INSTALL_QMFGEN to preclude install failures Replace hard tabs with spaces. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1580210 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5639 : [Java Broker] Add SCRAM-SHA-1 SASL supportRobert Godfrey2014-03-2117-44/+1489
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1580082 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5634: Update ACL broker documentation after introduction of ↵Keith Wall2014-03-212-76/+102
| | | | | | virtualhost_name predicate and removal of support of ACL in virtual host git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579987 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5634: [Java Broker] Remove support for AccessPlugins at the level of ↵Keith Wall2014-03-2128-515/+1122
| | | | | | the virtualhost. Introduce supports for ACLs rules that include virtualhost predicate. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579986 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5641: [legacystore] Valgrind reports memory leaks on older store testsKim van der Riet2014-03-215-1727/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579963 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5048: new maven enforcer plugin rule for checking license filesAlex Rudyy2014-03-213-0/+346
| | | | | | Patch supplied by Andrew MacBean <andymacbean@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579936 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5048: dby profiles, bdb test deps and config for perftests-systests & ↵Alex Rudyy2014-03-215-24/+195
| | | | | | | | bdbstore-systests and a fix for clean between test runs Patch supplied by Andrew MacBean <andymacbean@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579935 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5625 : Fix saving of "createdBy" attribute which is incorrectly saving ↵Robert Godfrey2014-03-211-1/+1
| | | | | | as an object rather than a string git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579926 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5635: Fix 'partitionCount' attribute setting for BoneCP connection pool ↵Alex Rudyy2014-03-211-1/+1
| | | | | | UI in Web Management console UI git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579904 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5631: Adjust for changes to Qpid CMake detection of Proton.Charles E. Rolke2014-03-201-375/+286
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Buried deep in cpp\bindings\qpid\dotnet is a script configure-windows.ps1. This script originally came into being to support the .NET binding, which is a .NET project that has no support from CMake. The script gathers the facts of where cmake runs and where boost comes from and embeds the environment into launch scripts used to start the .NET binding solution(s). Then the .NET solution can link naturally to the rest of the cmake project environment. Before this commit the script was very liberal about where one could root a build (run cmake). This patch forces some order onto the build and install directories to ease integration with proton. I use a couple of conventions and it makes life much easier. 1. Map some drives. Drive P: maps to the root of a proton checkout Drive Q: maps to the root of a qpid checkout Strictly speaking this is not necessary and if you use this scheme then you must be careful about the drive mappings. If you get them wrong then your builds will be confused. 2. Use fixed names for the studio/platform builds and installs. Builds go to: P:\build_2008_x86 Q:\build_2008_x86 P:\build_2008_x64 Q:\build_2008_x64 P:\build_2010_x86 Q:\build_2010_x86 P:\build_2010_x64 Q:\build_2010_x64 Installs go to: Q:\install_2008_x86 Q:\install_2008_x64 Q:\install_2010_x86 Q:\install_2010_x64 That is, cmake for a VS2010 32-bit build is run in P:\build_2010_x86 and Q:\build_2010_x86 But both of these builds use -DCMAKE_INSTALL_PREFIX=Q:\install_2010_x86 to install into the same place. 3. To build qpid with proton support: build and install proton first and then build and install qpid. To build qpid with no proton support: just build and optionally install qpid. Other fixes to this script are: * Adds --help option * It does only one studio/platform at a time. It doesn't mix 32- and 64-bit builds together. * It is callable from the command line: > cd cpp\bindings\qpid\dotnet > powershell -ExecutionPolicy unrestricted .\configure-windows.ps1 2010-x86 c:\boost-win-1.47-32bit-vs2010 It will create the canonical build directory and run cmake in it. * A new batch file is emitted that has the exact cmake command used. You can use this to rerun cmake without rerunning any powershell. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579734 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5600: Advance the version number on trunk to 0.29Justin Ross2014-03-2016-20/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579690 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5586: Introduce SessionClosed exceptionAndrew Stitcher2014-03-194-1/+15
| | | | | | | - use it for qpid::messaging::Session::nextReceiver to ensure that closing a connection/session can be distinguished. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579367 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: Removed not about using only Ruby < 2.0Darryl L. Pierce2014-03-191-2/+1
| | | | | | Also fixed a typo in the Python requirement. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579261 13f79535-47bb-0310-9956-ffa450edef68
* Minimal setup.py packaging for qpidtoollibsDarryl L. Pierce2014-03-191-1/+19
| | | | | | | | | Adds pypi requirements field to existing setup.py Adds long_description field to setup.py Contributed by Brian Bouterse <bmbouter@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1579235 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5362: No store tools exist for examining the journals - Bugfix and ↵Kim van der Riet2014-03-1811-976/+1366
| | | | | | reorganization of qls python modules. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1578899 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5048: stop the new perftets-systests module from making a release archiveRobert Gemmell2014-03-161-21/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1578151 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5048: unexclude some dirs, make the test-profiles exclusion specific ↵Robert Gemmell2014-03-161-6/+2
| | | | | | only to the test ssl resources git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1578150 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5600: remove stale and unused RELEASE_NOTES.txt and containing ↵Robert Gemmell2014-03-161-21/+0
| | | | | | qpid/java/release-docs directory git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1578149 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5048: split out systests from perftests and add rat plugin configRobert Gemmell2014-03-1631-28/+301
| | | | | | Patch supplied by Andrew MacBean <andymacbean@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1578145 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5631: Adjust for changes in Proton detection files exported by proton.Andrew Stitcher2014-03-162-62/+18
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1577982 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5632: Added cmake config files to the install areaAndrew Stitcher2014-03-163-1/+81
| | | | | | For use by other projects using cmake that want to simply detect qpid libraries git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1577981 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5630: Windows C++ broker never loads modules using --module-dirAndrew Stitcher2014-03-141-1/+3
| | | | | | - Need to use full path to load modules instead of just the filename. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1577742 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5048: add missing version for jxr plugin usage in the reporting ↵Robert Gemmell2014-03-141-0/+1
| | | | | | section, which doesnt respect/adhere to the pluginManagement versions git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1577600 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5048: surefire, site, coverage and jxr configRobert Gemmell2014-03-142-0/+37
| | | | | | Patch supplied by Andrew MacBean <andymacbean@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1577595 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5623: [C++ Messaging Client - amqp1.0] throws qpid::Exception instead ↵Charles E. Rolke2014-03-131-1/+7
| | | | | | | | | | of qpid::types::Exception Intercept the trap and rethrow in proper format. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1577322 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5625 : [Java Broker] ensure common configured object values are saved ↵Robert Godfrey2014-03-131-1/+8
| | | | | | to the store git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1577256 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5625 : [Java Broker] ensure common configured object values are saved ↵Robert Godfrey2014-03-1215-96/+219
| | | | | | to the store git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1576826 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: [Documentation - JMS Client 0-8..0-91] Correct typo in third SSL ↵Keith Wall2014-03-121-1/+1
| | | | | | exacmple connection url git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1576676 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5604: Update comments to If we're on Cygwin we need to convert to ↵Fraser Adams2014-03-118-8/+8
| | | | | | Windows path. as per Jan's suggestion git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1576460 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5622: Expose {get,set}ContentObject in Ruby bindings.Darryl L. Pierce2014-03-1110-18/+77
| | | | | | | Added the feature and updated the rspec tests and examples to use content_object for retrieving data. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1576357 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5612: JMS benchmarking tool fixesAlex Rudyy2014-03-115-49/+99
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1576355 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5621: [C++ broker] userId is not passed to ACL when DIGEST-MD5 is used ↵Pavel Moravec2014-03-111-21/+21
| | | | | | while creating link git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1576248 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5604: Applied svn propset svn:eol-style LF to the shell files in ↵Fraser Adams2014-03-100-0/+0
| | | | | | qpid/tools/src/java/bin to hopefully make them behave better with Cygwin git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1576075 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5604: Added Cygwin support to all the scripts in qpid/tools/src/java/binFraser Adams2014-03-108-6/+84
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1576020 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5617 : [Java Broker] tidy-up of binding child add/remove from queue... ↵Robert Godfrey2014-03-091-1/+2
| | | | | | dulpicate functionality git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575688 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5617 : [Java Broker] tidy-up of binding child add/remove from queue... ↵Robert Godfrey2014-03-093-10/+2
| | | | | | dulpicate functionality git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575687 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA: [JMS Client 0-8 documentation] Correct typoKeith Wall2014-03-081-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575617 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5617 : [Java Broker] restore or implement child added/removed ↵Robert Godfrey2014-03-0853-243/+798
| | | | | | notifications for configured objects within the vhost git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575591 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5611 : Fix other logging to always use the most current event logger ↵Robert Godfrey2014-03-0828-60/+124
| | | | | | held at the broker git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575547 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5611 : Fix startup logging so as not to print vhost recovery informationRobert Godfrey2014-03-0812-78/+100
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575541 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5604: Added the Cygwin patch to QpidRestAPI.sh initially to see if it ↵Fraser Adams2014-03-081-0/+10
| | | | | | works - it doesn't break on Linux, but I can't test Cygwin myself git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575537 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5616 : [Java Broker] update to management node to comply with working ↵Robert Godfrey2014-03-083-25/+38
| | | | | | draft WD08 git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575536 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5614: Fix problems caused by changes to Java Broker Logging in QPID-5611Fraser Adams2014-03-081-4/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575533 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5614: Initial fix of the issues. The QMF2 Plugin compiles again and ↵Fraser Adams2014-03-0810-161/+156
| | | | | | mostly works, but there are issues with the bindings and subscriptions - though I think that this might be a problem with the Java Broker Management Model git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575530 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5601 : Allow for messages with null routing keysRobert Godfrey2014-03-082-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1575507 13f79535-47bb-0310-9956-ffa450edef68