svn commit: r832426 - in /jakarta/jmeter/trunk: src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/SubscriberSampler.java xdocs/changes.xml

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 14:19:03 2009 New Revision: 832426 URL: http://svn.apache.org/viewvc?rev=832426view=rev Log: Bug 47900 - Allow JMS Subscriber Sampler to be interrupted Modified: jakarta/jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/SubscriberSampler.java

DO NOT REPLY [Bug 47900] Subscriber ThreadGroup won't stop

2009-11-03 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47900 Sebb s...@apache.org changed: What|Removed |Added Status|NEW |RESOLVED

DO NOT REPLY [Bug 47949] JMS Subscriber never recieves all the messages

2009-11-03 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47949 --- Comment #2 from Sebb s...@apache.org 2009-11-03 07:01:37 UTC --- The code always increments the counter when it appends a message to the buffer, and this is done in a synch. block. However, the code does not count (or store) empty

svn commit: r832448 - /jakarta/jmeter/trunk/src/core/org/apache/jmeter/util/JSR223TestElement.java

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 15:11:52 2009 New Revision: 832448 URL: http://svn.apache.org/viewvc?rev=832448view=rev Log: Return result of script execution so can be used by Sampler Modified: jakarta/jmeter/trunk/src/core/org/apache/jmeter/util/JSR223TestElement.java Modified:

svn commit: r832449 - /jakarta/jmeter/trunk/src/components/org/apache/jmeter/visualizers/JSR223ListenerResources.properties

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 15:14:55 2009 New Revision: 832449 URL: http://svn.apache.org/viewvc?rev=832449view=rev Log: Align with other JSR223 properties Modified: jakarta/jmeter/trunk/src/components/org/apache/jmeter/visualizers/JSR223ListenerResources.properties Modified:

svn commit: r832461 - /jakarta/jmeter/trunk/src/core/org/apache/jmeter/util/BSFTestElement.java

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 15:53:23 2009 New Revision: 832461 URL: http://svn.apache.org/viewvc?rev=832461view=rev Log: Add evalFileOrScript() method Modified: jakarta/jmeter/trunk/src/core/org/apache/jmeter/util/BSFTestElement.java Modified:

svn commit: r832462 - in /jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers: BSFTimer.java BSFTimerBeanInfo.java BSFTimerResources.properties

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 15:54:12 2009 New Revision: 832462 URL: http://svn.apache.org/viewvc?rev=832462view=rev Log: Add BSF Timer implementation Added: jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers/BSFTimer.java (with props)

svn commit: r832463 - in /jakarta/jmeter/trunk: src/components/org/apache/jmeter/assertions/ src/components/org/apache/jmeter/timers/ src/protocol/java/org/apache/jmeter/protocol/java/sampler/ xdocs/

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 15:55:56 2009 New Revision: 832463 URL: http://svn.apache.org/viewvc?rev=832463view=rev Log: Add JSR223 Assertion, Timer, Sampler Added: jakarta/jmeter/trunk/src/components/org/apache/jmeter/assertions/JSR223Assertion.java (with props)

svn commit: r832465 - /jakarta/jmeter/trunk/

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 16:00:44 2009 New Revision: 832465 URL: http://svn.apache.org/viewvc?rev=832465view=rev Log: Update tags Modified: jakarta/jmeter/trunk/ (props changed) Propchange: jakarta/jmeter/trunk/

svn commit: r832541 - in /jakarta/jmeter/trunk/src: components/org/apache/jmeter/timers/JSR223TimerResources.properties protocol/java/org/apache/jmeter/protocol/java/sampler/JSR223SamplerResources.pro

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 20:31:51 2009 New Revision: 832541 URL: http://svn.apache.org/viewvc?rev=832541view=rev Log: Correct the list of variables Modified: jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers/JSR223TimerResources.properties

DO NOT REPLY [Bug 47949] JMS Subscriber never recieves all the messages

2009-11-03 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47949 --- Comment #3 from Bob Yetman boby...@gmail.com 2009-11-03 10:51:30 UTC --- (In reply to comment #2) The code always increments the counter when it appends a message to the buffer, and this is done in a synch. block. However, the code

svn commit: r832521 - /jakarta/jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/SubscriberSampler.java

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 19:16:03 2009 New Revision: 832521 URL: http://svn.apache.org/viewvc?rev=832521view=rev Log: Better handling of received count Modified: jakarta/jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/SubscriberSampler.java Modified:

DO NOT REPLY [Bug 47949] JMS Subscriber never recieves all the messages

2009-11-03 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47949 --- Comment #4 from Sebb s...@apache.org 2009-11-03 11:51:58 UTC --- (In reply to comment #3) The problem is if 2 messages come into onMessage() before the sleep() expires in sampleWithListener(), then onMessage() will put both messages

svn commit: r832524 - in /jakarta/jmeter/trunk/src: components/org/apache/jmeter/timers/JSR223Timer.java protocol/java/org/apache/jmeter/protocol/java/sampler/JSR223Sampler.java

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 19:38:28 2009 New Revision: 832524 URL: http://svn.apache.org/viewvc?rev=832524view=rev Log: Check the JSR223 script returns a value Modified: jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers/JSR223Timer.java

DO NOT REPLY [Bug 47949] JMS Subscriber never recieves all the messages

2009-11-03 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47949 --- Comment #5 from Bob Yetman boby...@gmail.com 2009-11-03 12:01:58 UTC --- Sebb; I've got an alternate implementation that I put together today (had a few spare hours at work), that uses a Queue so messages are kept separate and allows

svn commit: r832512 - /jakarta/jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/SubscriberSampler.java

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 19:02:38 2009 New Revision: 832512 URL: http://svn.apache.org/viewvc?rev=832512view=rev Log: Actual count may be lower than loop when interrupted Modified: jakarta/jmeter/trunk/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/SubscriberSampler.java

DO NOT REPLY [Bug 47949] JMS Subscriber never recieves all the messages

2009-11-03 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47949 --- Comment #6 from Sebb s...@apache.org 2009-11-03 12:05:12 UTC --- (In reply to comment #5) Sebb; I've got an alternate implementation that I put together today (had a few spare hours at work), that uses a Queue so messages are

svn commit: r832543 - /jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers/BSFTimerResources.properties

2009-11-03 Thread sebb
Author: sebb Date: Tue Nov 3 20:34:45 2009 New Revision: 832543 URL: http://svn.apache.org/viewvc?rev=832543view=rev Log: Correct the list of variables Modified: jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers/BSFTimerResources.properties Modified: