summaryrefslogtreecommitdiff
path: root/java
Commit message (Collapse)AuthorAgeFilesLines
...
* QPID-612 : Use same scheme for every creation of temporary queue namesRobert Godfrey2007-09-244-134/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@578845 13f79535-47bb-0310-9956-ffa450edef68
* Updated Example and management pom files to refer to M2.1 rather than M2Martin Ritchie2007-09-242-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@578828 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions ↵Rupert Smith2007-09-244-64/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 575663-575687,575689-576860,576862-577192,577194-577315,577317-577659,577661-578047,578049-578060,578062-578604 via svnmerge from https://svn.apache.org/repos/asf/incubator/qpid/branches/M2 ........ r575663 | rgodfrey | 2007-09-14 13:43:13 +0100 (Fri, 14 Sep 2007) | 1 line QPID-600 : Deadlock on connection.close ........ r577931 | rgreig | 2007-09-20 22:26:37 +0100 (Thu, 20 Sep 2007) | 1 line Adding timeouts to two wait() calls to prevent hanging ........ r578258 | rgreig | 2007-09-21 21:31:18 +0100 (Fri, 21 Sep 2007) | 1 line QPID-607: dispatcher threads now poll so that the can die when the connection is closed. ........ r578475 | rgreig | 2007-09-22 20:01:59 +0100 (Sat, 22 Sep 2007) | 1 line QPID-608 Fix the test by adding in creation of the VM broker ........ r578509 | rgreig | 2007-09-22 23:05:30 +0100 (Sat, 22 Sep 2007) | 1 line QPID-609 : dispatcher thread was being restarted by the code that closed the consumer due to the receipt of a basic.cancel frame. Move the dispatcher shutdown to the end of the consumer close process. Also rename the dispatcher _closed field since it clashes with a field in the container class. ........ r578604 | rgreig | 2007-09-23 22:29:33 +0100 (Sun, 23 Sep 2007) | 4 lines QPID-589: avoid the deadlock between the session close and the BasicCancelOkHandler by not sending a BasicCancel when the session is being closed. ........ git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@578745 13f79535-47bb-0310-9956-ffa450edef68
* QPID-606: synchronize retrieval of application registry to avoid race ↵Robert Greig2007-09-211-17/+20
| | | | | | | | | conditions. This was particularly affecting systests which use the in-VM broker. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@578058 13f79535-47bb-0310-9956-ffa450edef68
* Attempt to fix hanging builds due to client testsRobert Greig2007-09-201-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@577941 13f79535-47bb-0310-9956-ffa450edef68
* Updated poms to refer to M2.1 rather than M2Robert Greig2007-09-2010-22/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@577773 13f79535-47bb-0310-9956-ffa450edef68
* QPID-531 : NO_ACK fix. Added a decrementReference in SubscriptionImpl after ↵Martin Ritchie2007-09-142-1/+25
| | | | | | | | | the message has been sent. This was previously done inside dequeueMessage() but when the reference counting was reworked earlier in the year it was moved out of that method.. but all the uses of dequeueMessage were not evaluated. The existing AckTest didon't detect this error as it only occurs with persistent messages which the client sends by default. The AckTest however only tests transient messages. Updated Test for NO_ACK raised JIRA QPID-602 to cover updating the rest of the AckTests (Updated log to show correct JIRA QPID-531 not QPID-573) git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@575811 13f79535-47bb-0310-9956-ffa450edef68
* Merged revision 572751 from the trunk, this fixes QPID-573.Rafael H. Schloming2007-09-142-28/+37
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@575788 13f79535-47bb-0310-9956-ffa450edef68
* QPID-572 Corrected patch for ConcurrentSelectorDeliveryManager that resolves ↵Martin Ritchie2007-09-141-1/+1
| | | | | | the ordering problem. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@575738 13f79535-47bb-0310-9956-ffa450edef68
* QPID-572 Applied test patch supplied by Aidan Skinner along with change to ↵Martin Ritchie2007-09-122-1/+159
| | | | | | ConcurrentSelectorDeliveryManager that resolves the ordering problem. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574902 13f79535-47bb-0310-9956-ffa450edef68
* QPID-591 Fixed to use dirname and avoid working directory issues.Robert Greig2007-09-112-7/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574585 13f79535-47bb-0310-9956-ffa450edef68
* QPID-590 : Provide test case and resolution to prevent deadlock occurring on ↵Martin Ritchie2007-09-113-277/+490
| | | | | | the client when two threads work on the AMQSession object. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574555 13f79535-47bb-0310-9956-ffa450edef68
* QPID-582 Fixing build on Java 6Robert Greig2007-09-111-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574504 13f79535-47bb-0310-9956-ffa450edef68
* QPID-584 : Client exceptions are now presented via any set Exception Listener Martin Ritchie2007-09-103-1/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574266 13f79535-47bb-0310-9956-ffa450edef68
* QPID-585 : Created a new StateManager for each subsequent ↵Martin Ritchie2007-09-102-1/+10
| | | | | | makeBrokerConnection call during the initial connection. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574237 13f79535-47bb-0310-9956-ffa450edef68
* QPID-582 Fixing the scripts to run the old topic testRobert Greig2007-09-092-2/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574078 13f79535-47bb-0310-9956-ffa450edef68
* QPID-583 Added old topic test which had been removed in the past.Robert Greig2007-09-077-0/+787
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@573740 13f79535-47bb-0310-9956-ffa450edef68
* QPID-582 Fix for compilation issue under Java 6.Robert Greig2007-09-071-2/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@573737 13f79535-47bb-0310-9956-ffa450edef68
* Merged changes to perftest code from M2 branch.Rupert Smith2007-08-239-582/+497
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.0.1@568924 13f79535-47bb-0310-9956-ffa450edef68
* Tests enhanced for fanout style tests with many consumers per destination.Rupert Smith2007-08-175-85/+158
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@567003 13f79535-47bb-0310-9956-ffa450edef68
* Added bench marking test cases.Rupert Smith2007-08-161-19/+38
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@566665 13f79535-47bb-0310-9956-ffa450edef68
* Added distributed clock synchronization using UDP datagrams.Rupert Smith2007-08-1614-53/+533
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@566644 13f79535-47bb-0310-9956-ffa450edef68
* Fixed multiplcation for expected message count on shared destinations p2p.Rupert Smith2007-08-163-12/+64
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@566643 13f79535-47bb-0310-9956-ffa450edef68
* Added UDP based clock syncher to test suite.Rupert Smith2007-08-146-4/+553
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@565703 13f79535-47bb-0310-9956-ffa450edef68
* QPID-547 : Stop session closure while in message dispatchRobert Godfrey2007-08-101-1/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@564593 13f79535-47bb-0310-9956-ffa450edef68
* More adjustments to perf test parameters.Rupert Smith2007-08-071-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@563497 13f79535-47bb-0310-9956-ffa450edef68
* More adjustments to perf test parameters.Rupert Smith2007-08-071-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@563496 13f79535-47bb-0310-9956-ffa450edef68
* Adjustments made to perftest parameters.Rupert Smith2007-08-071-10/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@563440 13f79535-47bb-0310-9956-ffa450edef68
* Changes made to performance test parameters.Rupert Smith2007-08-072-82/+81
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@563435 13f79535-47bb-0310-9956-ffa450edef68
* Added .NET release notesMartin Ritchie2007-08-021-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@562125 13f79535-47bb-0310-9956-ffa450edef68
* added -XX:+HeapDumpOnOutOfMemoryError this should have been before.Martin Ritchie2007-08-021-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@562124 13f79535-47bb-0310-9956-ffa450edef68
* Fix for number format exception when message count not specified, as in ↵Rupert Smith2007-08-021-1/+1
| | | | | | interop tests. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@562083 13f79535-47bb-0310-9956-ffa450edef68
* Changes to POM for repacking as manifest jar, rather than uber jar.Rupert Smith2007-08-022-4/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@562066 13f79535-47bb-0310-9956-ffa450edef68
* Moved everything from test to main. Simpler to have a single jar for ↵Rupert Smith2007-08-025-0/+0
| | | | | | manifest with classpath jar creation. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@562059 13f79535-47bb-0310-9956-ffa450edef68
* Extensive refactoring of the distributed test framework.Rupert Smith2007-08-0148-765/+2304
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@561855 13f79535-47bb-0310-9956-ffa450edef68
* Fix for a bug in the Broker Tools, preventing them working.Martin Ritchie2007-08-016-21/+67
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@561794 13f79535-47bb-0310-9956-ffa450edef68
* Changes to POMs.Martin Ritchie2007-07-317-31/+209
| | | | | | | | | | | | Client pom now builds a single jar with all dependancies included in the single bundle. systests/pom.xml adjusted to include only *Test.class items. This will fix the current Error on OptOutTestCase management/eclipse-plugin/pom.xml - editied to include there required MANIFEST.MF to identify plugin to eclipse distribution/src/main/assembly/management-eclipse-plugin.xml editied to include there required MANIFEST.MF to identify the plugin distribution/pom.xml - white space Also updated log4j.xml default to create an alert.log file from the AMQQueue alerting. Added a debug.log4j.xml that gives example of debugging the broker via log4j. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@561278 13f79535-47bb-0310-9956-ffa450edef68
* Refactored packaging of test framework.Rupert Smith2007-07-2536-875/+87
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@559458 13f79535-47bb-0310-9956-ffa450edef68
* Removed redundant method.Rupert Smith2007-07-251-5/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@559456 13f79535-47bb-0310-9956-ffa450edef68
* Added to comments.Rupert Smith2007-07-251-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@559455 13f79535-47bb-0310-9956-ffa450edef68
* AMQMessage - added //todo-s and removed unused parameter StoreContext from ↵Martin Ritchie2007-07-254-34/+32
| | | | | | | | expired() method call. ConcurrentSelectorDeliveryManager - Update to reflect expired() call change. Created new _reaperContextStore to be used when performing reaper operations such as message dequeue due to expiration. Removed old commented code. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@559427 13f79535-47bb-0310-9956-ffa450edef68
* Refactored interop tests into general distributed test framework. Moved ↵Rupert Smith2007-07-2547-807/+2202
| | | | | | framework under systests from integrationtests. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@559419 13f79535-47bb-0310-9956-ffa450edef68
* Checking in the release notesRajith Muditha Attapattu2007-07-201-48/+79
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@558115 13f79535-47bb-0310-9956-ffa450edef68
* Added a logger but only used to control the toString inclusion of password. ↵Martin Ritchie2007-07-201-10/+21
| | | | | | If in debug mode it will include password otherwise the password is "********". git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@558027 13f79535-47bb-0310-9956-ffa450edef68
* Update fix incorrect license headers.Martin Ritchie2007-07-1826-619/+390
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@557306 13f79535-47bb-0310-9956-ffa450edef68
* Ensure the top level release-docs directory is included in the buildsMartin Ritchie2007-07-185-2/+38
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@557288 13f79535-47bb-0310-9956-ffa450edef68
* Set default mvn build to assembly:assemblyMartin Ritchie2007-07-181-1/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@557286 13f79535-47bb-0310-9956-ffa450edef68
* updated comment to refelect property valuesMartin Ritchie2007-07-181-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@557281 13f79535-47bb-0310-9956-ffa450edef68
* This is left over from ANTMartin Ritchie2007-07-184-332/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@557279 13f79535-47bb-0310-9956-ffa450edef68
* Updates to pom files and Licensing/Notice files for M2 release.Martin Ritchie2007-07-1820-534/+449
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@557276 13f79535-47bb-0310-9956-ffa450edef68