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 jsm83 <js...@terra.com.br> on 2007/03/14 18:10:07 UTC

JMeter Plugin Dev

I have developed new functionalities to JMeter.  But until now, only I've been doing is adding the new Classes
to the specified jmeter source package. 

For example:
If I make a new Assertion, I just put the classes into org.apache.jmeter.assertions  package and the GUI class
into the org.apache.jmeter.assertions.gui (and into the JAR file in LIB/EXT directory so this could be
accesible through GUI menus).

But I want to find a way to aggregate all my new functionality classes into a single JAR file, so I could PLUG
it IN only when I need to.

Is there a way to do this using JAVA REQUEST sampler?How?

Any ideas?

Thanks

Juliano







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


Re: JMeter Plugin Dev

Posted by sebb <se...@gmail.com>.
Just put all your classes in a new jar file, and put the jar file in lib/ext.

They don't have to be in any particular package, so long as they
extend the correct class and/or implement the appropriate interfaces.

BTW, the jars should be accessed in alphabetical order (though this
may depend on the JVM) so in theory you can include new versions of
existing classes by suitable choice of jar name.


On 14/03/07, jsm83 <js...@terra.com.br> wrote:
> I have developed new functionalities to JMeter.  But until now, only I've been doing is adding the new Classes
> to the specified jmeter source package.
>
> For example:
> If I make a new Assertion, I just put the classes into org.apache.jmeter.assertions  package and the GUI class
> into the org.apache.jmeter.assertions.gui (and into the JAR file in LIB/EXT directory so this could be
> accesible through GUI menus).
>
> But I want to find a way to aggregate all my new functionality classes into a single JAR file, so I could PLUG
> it IN only when I need to.
>
> Is there a way to do this using JAVA REQUEST sampler?How?
>
> Any ideas?
>
> Thanks
>
> Juliano
>
>
>
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org
>
>

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