Re: embedding JMeter / calling JMeter from other Java code

2011-07-25 Thread Deepak Shetty
>For a response to the second half of your message Actually it isnt clear. It is trivial to write a wrapper that spawns a jmeter process and waits for it to complete (similar to when you run jmeter from ANT ) . the one problem is a distributed setup (but embedding jmeter wouldnt solve t

RE: embedding JMeter / calling JMeter from other Java code

2011-07-25 Thread _ext van Leeuwen, Paul
@sebb : That was just a bit of pseudo-code to get the idea across. As you also correctly indicated your comment in the feature request in BugZilla: yes instead of a TestResult class it would more effectively be a call-back interface. All very much true, my point is to put it on the agenda of th

Re: embedding JMeter / calling JMeter from other Java code

2011-07-25 Thread sebb
On 25 July 2011 13:05, _ext van Leeuwen, Paul wrote: > Apparently I am not the only person who sees the benefit of a more > programmatic interface: I found that some other guy from some other company > already created a feature request some time ago: > https://issues.apache.org/bugzilla/show_bu

RE: embedding JMeter / calling JMeter from other Java code

2011-07-25 Thread _ext van Leeuwen, Paul
Apparently I am not the only person who sees the benefit of a more programmatic interface: I found that some other guy from some other company already created a feature request some time ago: https://issues.apache.org/bugzilla/show_bug.cgi?id=50034 I guess now I can only wait. If you read this

Re: embedding JMeter / calling JMeter from other Java code

2011-07-19 Thread Deepak Shetty
volvement in JMeter and > reading this message. > > I am starting this thread to gather insight on (technical) possibilities > for embedding JMeter in another program / for running JMeter scripts from > other Java code. Chris Widhelm started a similar thread in 2004, but that > stran

RE: embedding JMeter / calling JMeter from other Java code

2011-07-19 Thread Brian Devaney
that linked too close with > JMeter code. > > - > -- > Andrey Pohilko > JP@GC Maintainer > -- > View this message in context: > http://jmeter.512774.n5.nabble.com/embedding-JMeter-calling-JMeter-from-other-Java-code-tp4611409p4612141.html > Sent from

RE: embedding JMeter / calling JMeter from other Java code

2011-07-19 Thread apc
close with JMeter code. - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.512774.n5.nabble.com/embedding-JMeter-calling-JMeter-from-other-Java-code-tp4611409p4612141.html Sent from the JMeter - User mailing list archive at

RE: embedding JMeter / calling JMeter from other Java code

2011-07-19 Thread _ext van Leeuwen, Paul
> Hmmm, are you sure that embedding jmeter is the most > efficient way to solve your problem? Sounds so complex... > > I know the product that embed JMeter - it's > http://www.msas.in/meterplus.html Dear APC, thank you reading and taking time to respond. I emailed Meter

Re: embedding JMeter / calling JMeter from other Java code

2011-07-19 Thread apc
Hmmm, are you sure that embedding jmeter is the most efficient way to solve your problem? Sounds so complex... I know the product that embed JMeter - it's http://www.msas.in/meterplus.html - -- Andrey Pohilko JP@GC Maintainer -- View this message in context: http://jmeter.5127

embedding JMeter / calling JMeter from other Java code

2011-07-19 Thread _ext van Leeuwen, Paul
Good morning everybody, Thank you for your involvement in JMeter and reading this message. I am starting this thread to gather insight on (technical) possibilities for embedding JMeter in another program / for running JMeter scripts from other Java code. Chris Widhelm started a similar thread

Re: Embedding JMeter

2004-09-15 Thread sebb
Might be worth looking at httpunit http://httpunit.sourceforge.net/ and Canoo WebTest http://webtest.canoo.com/webtest/manual/WebTestHome.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAI

Re: Embedding JMeter

2004-09-14 Thread Peter Lin
well the short answer is, "no such beast exists" to my knowledge. All of the commercial packages I am aware of are meant to run as standalone application. I think what you might be looking for is some kind of runtime quality/functionality check. Currently, W3C is starting to address policy, which

Re: Embedding JMeter

2004-09-14 Thread Peter Lin
this might be a dumb question, but why would you want to embed jmeter in a webapp? JMeter is very memory hungry, so running jmeter inside a servlet container is going to eat lots and lots of memory. in theory you can start JMeter's main class in console mode, but that's a risky proposal in my min

Embedding JMeter

2004-09-14 Thread Chris Widhelm
I am trying to figure out how to embed JMeter in a webapp, but I am having a hard time finding where I can start a JMeter engine (successfully) and how I can start a test. So far I have tried to get a new instance of JMeter and call run. This method, however, seems to require the installation, wh