You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by bu...@apache.org on 2008/05/12 16:43:17 UTC

DO NOT REPLY [Bug 44973] New: Included Testplans fail to execute correctly from parent testplan when multiples added

https://issues.apache.org/bugzilla/show_bug.cgi?id=44973

           Summary: Included Testplans fail to execute correctly from parent
                    testplan when multiples added
           Product: JMeter
           Version: 2.3.1
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Main
        AssignedTo: jmeter-dev@jakarta.apache.org
        ReportedBy: steve.kapinos@tandberg.com


Created an attachment (id=21945)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=21945)
original combined testplan, works as is, modify as above to create failure

I have 4 test plans that all work independantly.  PTP, MPS, VCS, and Monitoring

I have a combinedtest plan which basically is

Testplan
+ threadgroupMPS
+ + include controller
+ threadgroupPTP
+ + include controller
+ threadgroupVCS
+ + include controller
View results tree listener

Where it included PTP, MPS, and VCS accordingly.  For testing purposes, I have
disabled MPS and VCS threadgroups in the GUI.  For testing purposes, I watch
the results tree listener to ensure all the tests are running.  The above
scenario works fine.

If I add a fourth threadgroup including my monitor thread testplan, added the
same way as the others.  All kinds of problems start

- The thread count in the GUI gets funky.  The PTP plan includes 4 threads and
I see form the listener that 4 are executing.  The GUI only shows 3 of 6
running though.  (4 threads plus 2 for each threadgroup in the parent
testplan).  
- I do not see the monitoring include file loaded in the jmeter log file like I
see the PTP one.  I see
2008/05/12 10:00:50 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
ptp-calllog-generator.jmx 

For the PTP plan, but see NO such line for the monitoring jmx file that was in
the include controller added.  I only see a reference to the monitoring file
when I save the testplan (very last thing in the jmeter log below).
- There is an exception in the jmeter log simply saying
2008/05/12 10:00:50 ERROR - jmeter.threads.JMeterThread: Test failed!
java.lang.ClassCastException: org.apache.jmeter.gui.tree.JMeterTreeNode
        at
org.apache.jmeter.threads.TestCompiler.subtractNode(TestCompiler.java:12
0)
        at
org.apache.jorphan.collections.HashTree.traverseInto(HashTree.java:976)
        at
org.apache.jorphan.collections.HashTree.traverseInto(HashTree.java:973)
        at
org.apache.jorphan.collections.HashTree.traverse(HashTree.java:956)
        at
org.apache.jmeter.threads.JMeterThread.initRun(JMeterThread.java:415)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:245)
        at java.lang.Thread.run(Unknown Source)

Now, the really funny part.  I save this test plan and reload it.  If I execute
it again, now the monitoring thread works, but the PTP thread dies on variable
problems.  

2008/05/12 09:50:21 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

${feedbackURL} is a variable defined in each of the testplans locally in a UDV.
 But this same included test ran FINE before I added the other include file and
saved.  After saving, the roles swap in who's failing.
The threads all rely on the same properties read in from user.properties, but
do not set any properties and all use variables within their own threads.

What in the world is going on in this plan?  Why will they operate fine
independantly, but not when included and then they swap which works by saving
and reloading!



Below are the jmeter logs.  The first is the testplan when monitoring was
added, and the PTP thread runs, but monitoring doesn't.  The second is the same
exact testplan saved, and reloaded and ran again - where monitoring runs, but
PTP fails due to variable not being defined anymore.

Test plans are included as attachments.


--------------------------------------------
2008/05/12 10:00:06 INFO  - jmeter.util.JMeterUtils: Setting Locale to en_US
2008/05/12 10:00:06 INFO  - jmeter.JMeter: Loading user properties from:
D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling\user.properties
2008/05/12 10:00:06 INFO  - jmeter.JMeter: Loading system properties
from: D:\jakarta-jmeter-2.3.1\bin\system.properties
2008/05/12 10:00:06 INFO  - jmeter.JMeter: Copyright (c) 1998-2007 The Apache
Software Foundation
2008/05/12 10:00:06 INFO  - jmeter.JMeter: Version 2.3.1
2008/05/12 10:00:06 INFO  - jmeter.JMeter: java.version=1.5.0_06
2008/05/12 10:00:06 INFO  - jmeter.JMeter: os.name=Windows XP
2008/05/12 10:00:06 INFO  - jmeter.JMeter: os.arch=x86
2008/05/12 10:00:06 INFO  - jmeter.JMeter: os.version=5.1
2008/05/12 10:00:06 INFO  - jmeter.JMeter: file.encoding=Cp1252
2008/05/12 10:00:06 INFO  - jmeter.JMeter: Default Locale=English (United
States)
2008/05/12 10:00:06 INFO  - jmeter.JMeter: JMeter  Locale=English (United
States)
2008/05/12 10:00:06 INFO  - jmeter.JMeter:
JMeterHome=D:\jakarta-jmeter-2.3.1
2008/05/12 10:00:06 INFO  - jmeter.JMeter: user.dir
=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:00:06 INFO  - jmeter.JMeter: PWD
=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:00:06 INFO  - jmeter.JMeter: Loaded icon properties from
org/apache/jmeter/images/icon.properties
2008/05/12 10:00:07 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Cannot find .className property
for htmlParser, using default
2008/05/12 10:00:07 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for text/html is
2008/05/12 10:00:07 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for application/xhtml+xml
is
2008/05/12 10:00:07 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for application/xml is
2008/05/12 10:00:07 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for text/xml is
2008/05/12 10:00:07 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for text/vnd.wap.wml is
org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
2008/05/12 10:00:07 INFO  - jmeter.protocol.http.sampler.HTTPSampler:
Maximum connection retries = 10
2008/05/12 10:00:08 WARN  - jmeter.gui.util.MenuFactory: Missing jar?
Could not create org.apache.jmeter.visualizers.MailerVisualizer.
java.lang.NoClassDefFoundError: javax/mail/MessagingException
2008/05/12 10:00:08 INFO  - jmeter.samplers.SampleResult: Note: Sample
TimeStamps are START times
2008/05/12 10:00:08 INFO  - jmeter.samplers.SampleResult:
sampleresult.default.encoding is set to ISO-8859-1
2008/05/12 10:00:12 INFO  - jmeter.services.FileServer: Default
base=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:00:12 INFO  - jmeter.gui.action.Load: Loading file:
D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling\combined-call-sim
ulator.jmx
2008/05/12 10:00:12 INFO  - jmeter.services.FileServer: Set new
base=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:00:12 INFO  - jmeter.save.SaveService: Testplan (JMX)
version: 2.2. Testlog (JTL) version: 2.2
2008/05/12 10:00:12 INFO  - jmeter.save.SaveService: Using SaveService
properties file encoding UTF-8
2008/05/12 10:00:12 INFO  - jmeter.save.SaveService: Using SaveService
properties file version 594567
2008/05/12 10:00:12 INFO  - jmeter.save.SaveService: Using SaveService
properties version 2.0
2008/05/12 10:00:12 INFO  - jmeter.save.SaveService: All converter versions
present and correct
2008/05/12 10:00:12 INFO  - jmeter.services.FileServer: Set new
base=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:00:12 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
mps-calllog-generator.jmx
2008/05/12 10:00:12 INFO  - jmeter.protocol.http.sampler.HTTPSampler2:
Local host = SKapinosT61
2008/05/12 10:00:12 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
ptp-calllog-generator.jmx
2008/05/12 10:00:12 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
vcs-calllog-generator.jmx
2008/05/12 10:00:12 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
mps-calllog-generator.jmx
2008/05/12 10:00:12 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
ptp-calllog-generator.jmx
2008/05/12 10:00:12 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
vcs-calllog-generator.jmx
2008/05/12 10:00:49 INFO  - jmeter.engine.StandardJMeterEngine:
Listeners will be started after enabling running version
2008/05/12 10:00:49 INFO  - jmeter.engine.StandardJMeterEngine: To revert to
the earlier behaviour, define jmeterengine.startlistenerslater=false
2008/05/12 10:00:49 WARN  - jmeter.engine.util.DisabledComponentRemover:
Expected class TestElement, found
org.apache.jmeter.gui.tree.JMeterTreeNode
2008/05/12 10:00:49 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
ptp-calllog-generator.jmx
2008/05/12 10:00:49 INFO  - jmeter.engine.StandardJMeterEngine: Running the
test! 
2008/05/12 10:00:49 INFO  - jmeter.gui.util.JMeterMenuBar:
setRunning(true,*local*)
2008/05/12 10:00:50 INFO  - jmeter.engine.StandardJMeterEngine: Starting
1 threads for group PTP Calls. Ramp up = 1. 
2008/05/12 10:00:50 INFO  - jmeter.engine.StandardJMeterEngine: Continue on
error
2008/05/12 10:00:50 INFO  - jmeter.threads.JMeterThread:
jmeterthread.startearlier=true (see jmeter.properties)
2008/05/12 10:00:50 INFO  - jmeter.threads.JMeterThread: Running PostProcessors
in forward order
2008/05/12 10:00:50 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
ptp-calllog-generator.jmx
2008/05/12 10:00:50 INFO  - jmeter.engine.StandardJMeterEngine: Starting
4 threads for group Thread Group. Ramp up = 1. 
2008/05/12 10:00:50 INFO  - jmeter.engine.StandardJMeterEngine: Continue on
error
2008/05/12 10:00:50 INFO  - jmeter.threads.JMeterThread: Thread PTP Calls 1-1
started
2008/05/12 10:00:50 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-1 started
2008/05/12 10:00:50 INFO  - jmeter.threads.JMeterThread: Thread PTP Calls 1-1
is done
2008/05/12 10:00:50 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
PTP Calls 1-1
2008/05/12 10:00:50 INFO  - jmeter.services.FileServer: Stored:
codec-list.csv
2008/05/12 10:00:50 INFO  - jmeter.engine.StandardJMeterEngine: Starting
1 threads for group Thread Group. Ramp up = 1. 
2008/05/12 10:00:50 INFO  - jmeter.engine.StandardJMeterEngine: Continue on
error
2008/05/12 10:00:50 ERROR - jmeter.threads.JMeterThread: Test failed!
java.lang.ClassCastException: org.apache.jmeter.gui.tree.JMeterTreeNode
        at
org.apache.jmeter.threads.TestCompiler.subtractNode(TestCompiler.java:12
0)
        at
org.apache.jorphan.collections.HashTree.traverseInto(HashTree.java:976)
        at
org.apache.jorphan.collections.HashTree.traverseInto(HashTree.java:973)
        at
org.apache.jorphan.collections.HashTree.traverse(HashTree.java:956)
        at
org.apache.jmeter.threads.JMeterThread.initRun(JMeterThread.java:415)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:245)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:00:50 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
3-1 is done
2008/05/12 10:00:50 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Thread Group 3-1
2008/05/12 10:00:50 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-2 started
2008/05/12 10:00:50 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-3 started
2008/05/12 10:00:50 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-4 started
2008/05/12 10:01:28 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-2 is done
2008/05/12 10:01:28 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Thread Group 2-2
2008/05/12 10:01:28 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-3 is done
2008/05/12 10:01:28 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Thread Group 2-3
2008/05/12 10:01:28 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-4 is done
2008/05/12 10:01:28 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Thread Group 2-4
2008/05/12 10:01:28 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-1 is done
2008/05/12 10:01:28 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Thread Group 2-1
2008/05/12 10:01:28 INFO  - jmeter.engine.StandardJMeterEngine: Stopping test
2008/05/12 10:01:28 INFO  - jmeter.engine.StandardJMeterEngine:
Notifying test listeners of end of test
2008/05/12 10:01:28 INFO  - jmeter.services.FileServer: Close:
codec-list.csv
2008/05/12 10:01:28 INFO  - jmeter.gui.util.JMeterMenuBar:
setRunning(false,*local*)
2008/05/12 10:01:28 INFO  - jmeter.engine.StandardJMeterEngine: Test has ended
2008/05/12 10:09:14 INFO  - jmeter.services.FileServer: Set new
base=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:09:14 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
mps-calllog-generator.jmx
2008/05/12 10:09:14 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
ptp-calllog-generator.jmx
2008/05/12 10:09:14 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
vcs-calllog-generator.jmx
2008/05/12 10:09:14 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module: monitorthread.jmx 

------------------------------------------------------------------------
-----
2008/05/12 10:10:41 INFO  - jmeter.util.JMeterUtils: Setting Locale to en_US
2008/05/12 10:10:41 INFO  - jmeter.JMeter: Loading user properties from:
D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling\user.properties
2008/05/12 10:10:41 INFO  - jmeter.JMeter: Loading system properties
from: D:\jakarta-jmeter-2.3.1\bin\system.properties
2008/05/12 10:10:41 INFO  - jmeter.JMeter: Copyright (c) 1998-2007 The Apache
Software Foundation
2008/05/12 10:10:41 INFO  - jmeter.JMeter: Version 2.3.1
2008/05/12 10:10:41 INFO  - jmeter.JMeter: java.version=1.5.0_06
2008/05/12 10:10:41 INFO  - jmeter.JMeter: os.name=Windows XP
2008/05/12 10:10:41 INFO  - jmeter.JMeter: os.arch=x86
2008/05/12 10:10:41 INFO  - jmeter.JMeter: os.version=5.1
2008/05/12 10:10:41 INFO  - jmeter.JMeter: file.encoding=Cp1252
2008/05/12 10:10:41 INFO  - jmeter.JMeter: Default Locale=English (United
States)
2008/05/12 10:10:41 INFO  - jmeter.JMeter: JMeter  Locale=English (United
States)
2008/05/12 10:10:41 INFO  - jmeter.JMeter:
JMeterHome=D:\jakarta-jmeter-2.3.1
2008/05/12 10:10:41 INFO  - jmeter.JMeter: user.dir
=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:10:41 INFO  - jmeter.JMeter: PWD
=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:10:41 INFO  - jmeter.JMeter: Loaded icon properties from
org/apache/jmeter/images/icon.properties
2008/05/12 10:10:42 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Cannot find .className property
for htmlParser, using default
2008/05/12 10:10:42 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for text/html is
2008/05/12 10:10:42 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for application/xhtml+xml
is
2008/05/12 10:10:42 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for application/xml is
2008/05/12 10:10:42 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for text/xml is
2008/05/12 10:10:42 INFO  -
jmeter.protocol.http.sampler.HTTPSamplerBase: Parser for text/vnd.wap.wml is
org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
2008/05/12 10:10:42 INFO  - jmeter.protocol.http.sampler.HTTPSampler:
Maximum connection retries = 10
2008/05/12 10:10:43 WARN  - jmeter.gui.util.MenuFactory: Missing jar?
Could not create org.apache.jmeter.visualizers.MailerVisualizer.
java.lang.NoClassDefFoundError: javax/mail/MessagingException
2008/05/12 10:10:43 INFO  - jmeter.samplers.SampleResult: Note: Sample
TimeStamps are START times
2008/05/12 10:10:43 INFO  - jmeter.samplers.SampleResult:
sampleresult.default.encoding is set to ISO-8859-1
2008/05/12 10:10:48 INFO  - jmeter.services.FileServer: Default
base=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:10:48 INFO  - jmeter.gui.action.Load: Loading file:
D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling\combined-call-sim
ulator-retry.jmx
2008/05/12 10:10:48 INFO  - jmeter.services.FileServer: Set new
base=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:10:49 INFO  - jmeter.save.SaveService: Testplan (JMX)
version: 2.2. Testlog (JTL) version: 2.2
2008/05/12 10:10:49 INFO  - jmeter.save.SaveService: Using SaveService
properties file encoding UTF-8
2008/05/12 10:10:49 INFO  - jmeter.save.SaveService: Using SaveService
properties file version 594567
2008/05/12 10:10:49 INFO  - jmeter.save.SaveService: Using SaveService
properties version 2.0
2008/05/12 10:10:49 INFO  - jmeter.save.SaveService: All converter versions
present and correct
2008/05/12 10:10:49 INFO  - jmeter.services.FileServer: Set new
base=D:\Projects\Tandberg\tms\Tests\LoadTests\EventHandling
2008/05/12 10:10:49 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
mps-calllog-generator.jmx
2008/05/12 10:10:49 INFO  - jmeter.protocol.http.sampler.HTTPSampler2:
Local host = SKapinosT61
2008/05/12 10:10:49 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
ptp-calllog-generator.jmx
2008/05/12 10:10:49 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
vcs-calllog-generator.jmx
2008/05/12 10:10:49 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module: monitorthread.jmx
2008/05/12 10:10:49 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
mps-calllog-generator.jmx
2008/05/12 10:10:49 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
ptp-calllog-generator.jmx
2008/05/12 10:10:49 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
vcs-calllog-generator.jmx
2008/05/12 10:10:49 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module: monitorthread.jmx
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine:
Listeners will be started after enabling running version
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: To revert to
the earlier behaviour, define jmeterengine.startlistenerslater=false
2008/05/12 10:11:12 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
ptp-calllog-generator.jmx
2008/05/12 10:11:12 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module: monitorthread.jmx
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Running the
test! 
2008/05/12 10:11:12 INFO  - jmeter.gui.util.JMeterMenuBar:
setRunning(true,*local*)
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Starting
1 threads for group PTP Calls. Ramp up = 1. 
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Continue on
error
2008/05/12 10:11:12 INFO  - jmeter.threads.JMeterThread:
jmeterthread.startearlier=true (see jmeter.properties)
2008/05/12 10:11:12 INFO  - jmeter.threads.JMeterThread: Running PostProcessors
in forward order
2008/05/12 10:11:12 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module:
ptp-calllog-generator.jmx
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Starting
4 threads for group Thread Group. Ramp up = 1. 
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Continue on
error
2008/05/12 10:11:12 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-1 started
2008/05/12 10:11:12 INFO  - jmeter.services.FileServer: Stored:
codec-list.csv
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Starting
1 threads for group Thread Group. Ramp up = 1. 
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Continue on
error
2008/05/12 10:11:12 INFO  - jmeter.control.IncludeController:
loadIncludedElements -- try to load included module: monitorthread.jmx
2008/05/12 10:11:12 INFO  - jmeter.threads.JMeterThread: Thread PTP Calls 1-1
started
2008/05/12 10:11:12 INFO  - jmeter.threads.JMeterThread: Thread PTP Calls 1-1
is done
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
PTP Calls 1-1
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Starting
1 threads for group Monitoring Thread. Ramp up = 1. 
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Continue on
error
2008/05/12 10:11:12 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:12 INFO  - jmeter.threads.JMeterThread: Thread Monitoring
Thread 4-1 started
2008/05/12 10:11:12 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
3-1 started
2008/05/12 10:11:12 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
3-1 is done
2008/05/12 10:11:12 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Thread Group 3-1
2008/05/12 10:11:13 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-2 started
2008/05/12 10:11:13 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:13 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-3 started
2008/05/12 10:11:13 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:13 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:13 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:13 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-4 started
2008/05/12 10:11:13 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:13 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:13 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:13 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:13 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:14 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:14 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:14 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:14 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:14 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:15 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:44 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:44 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:44 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:44 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:44 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-1 is done
2008/05/12 10:11:44 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Thread Group 2-1
2008/05/12 10:11:45 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:45 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:45 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-2 is done
2008/05/12 10:11:45 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Thread Group 2-2
2008/05/12 10:11:45 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:45 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-3 is done
2008/05/12 10:11:45 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Thread Group 2-3
2008/05/12 10:11:45 ERROR - jmeter.threads.JMeterThread:
java.lang.IllegalArgumentException: Invalid uri 'http://${feedbackURL}':
Invalid authority
        at
org.apache.commons.httpclient.HttpMethodBase.<init>(HttpMethodBase.java:
222)
        at
org.apache.commons.httpclient.methods.ExpectContinueMethod.<init>(Expect
ContinueMethod.java:93)
        at
org.apache.commons.httpclient.methods.EntityEnclosingMethod.<init>(Entit
yEnclosingMethod.java:119)
        at
org.apache.commons.httpclient.methods.PostMethod.<init>(PostMethod.java:
106)
        at
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.j
ava:220)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:863)
        at
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSampl
erBase.java:849)
        at
org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:300)
        at java.lang.Thread.run(Unknown Source)

2008/05/12 10:11:45 INFO  - jmeter.threads.JMeterThread: Thread Thread Group
2-4 is done
2008/05/12 10:11:45 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Thread Group 2-4
2008/05/12 10:11:45 INFO  - jmeter.threads.JMeterThread: Stopping Monitoring
Thread 4-1
2008/05/12 10:11:45 INFO  - jmeter.threads.JMeterThread: Thread Monitoring
Thread 4-1 is done
2008/05/12 10:11:45 INFO  - jmeter.engine.StandardJMeterEngine: Ending thread
Monitoring Thread 4-1
2008/05/12 10:11:45 INFO  - jmeter.engine.StandardJMeterEngine: Stopping test
2008/05/12 10:11:45 INFO  - jmeter.engine.StandardJMeterEngine:
Notifying test listeners of end of test
2008/05/12 10:11:45 INFO  - jmeter.services.FileServer: Close:
codec-list.csv
2008/05/12 10:11:45 INFO  - jmeter.gui.util.JMeterMenuBar:
setRunning(false,*local*)
2008/05/12 10:11:45 INFO  - jmeter.engine.StandardJMeterEngine: Test has ended 


---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-user-help@jakarta.apache.org


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


DO NOT REPLY [Bug 44973] Included Testplans fail to execute correctly from parent testplan when multiples added

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=44973





--- Comment #2 from Steve Kapinos <st...@tandberg.com>  2008-05-12 07:45:04 PST ---
Created an attachment (id=21947)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=21947)
ptp included test plan


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


DO NOT REPLY [Bug 44973] Included Testplans fail to execute correctly from parent testplan when multiples added

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=44973





--- Comment #1 from Steve Kapinos <st...@tandberg.com>  2008-05-12 07:44:26 PST ---
Created an attachment (id=21946)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=21946)
monitoring thread

monitiring thread that is attempted to be added to parent test plan via include
controller


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org


DO NOT REPLY [Bug 44973] Included Testplans fail to execute correctly from parent testplan when multiples added

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=44973





--- Comment #3 from Steve Kapinos <st...@tandberg.com>  2008-05-12 07:46:53 PST ---
Created an attachment (id=21948)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=21948)
csv file needed for ptp thread

csv file ptp thread depends on


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org