On Tue, 2005-07-26 at 09:27 -0700, Charles Castellow wrote: > Hi. I've just started using JMeter and have a couple of questions. I've > looked through the documentation and browsed the mail archives, but the > answers haven't jumped out at me. > 1) Is there a repository for JMeter extensions? Clearly some people will > have needs that will require unique samplers, listeners, etc., but I'm sure > that lots of people have made generic extensions that could be of general > use. No reason to reinvent the wheel if it's not necessary.
JMeter itself is the standard repository. Several of the components originally come from users who contributed their special needs code to Apache. > 2) Is there any built-in way to store a collection/list/array of extracted > data? My performance test has a set-up stage where simulated users are given > a unique ID by a web service (think guid or social security number, or some > such unique ID that I won't know in advance). I need to save those to use in > testing the web services. I could use the regular expression extractor and > stick them in ID1, ID2, etc., but I doubt that's the optimum solution, and > since I'm talking about thousands of IDs, that seems a bit tedious. I could > probably write them out to a file somehow and read them back in as needed. > What I'd really like to do is store them in an array, or a linked list, or > some sort of collection that I could use as data in my sampler. Is there > some standard way to do this that I've missed? If not, has anyone created an > extension to do such a task? Any suggestions? Standard JMeter variables are strictly String objects. There is a place to store more generic Object values, but access to them requires custom code. Ie, you write a custom component that stores a list, you write a custom component that uses that list. -Mike > Thanks. > -Charlie --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

