It is automagically detected, and I can't tell you how, cause it's a trade secret.
Oh, damn open source. The system detects classes that extend certain other classes. So, if you extend JMeterComponentModel (and do it correctly), you will be JMeter GUI-enabled. If you extend Modifier, your class will automatically show up in the "add list" of the Modification Manager's pull down menu. Detecting classes is done via the org.apache.jmeter.utils.ClassFinder.java class. -Mike > -----Original Message----- > From: Gustav Bostrom [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 20, 2002 9:53 AM > To: JMeter Users List > Subject: RE: Simulating multiple DIFFERENT (different login) clients > > > Thanks! > > That was just what I needed. I have one further question > though. How do I get my class to show up in the GUI? > Is it just automagically detected or does it need to be > declared somewhere? > > If it is automagically detected I'm very curious about how > that is done. > > The thing I think I will do is to make a modification manager > that picks a value from a list , either by round-robin or > randomly and set that value as a parameter on the request. > I wonder if this might not be of value to more people? > > -Gustav > > > -----Original Message----- > From: Stover, Michael [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 20, 2002 3:36 PM > To: 'JMeter Users List' > Subject: RE: Simulating multiple DIFFERENT (different login) clients > > > You need to use the Modification Manager, and you'd need to write an > implementation of Modifier.java (org.apache.jmeter.config). > It should be > very simple to do, you can use AnchorModifier as a guide > (org.apache.jmeter.protocol.http.modifier). Your class will > also need to > implement JMeterComponentModel, and you'll need to write a > GUI class for it > (where the user inputs all those usernames you want to simulate). > > -Mike > > > -----Original Message----- > > From: Gustav Bostrom [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, February 20, 2002 6:28 AM > > To: JMeter-mailing-list (E-mail) > > Subject: Simulating multiple DIFFERENT (different login) clients > > > > > > Hi! > > > > I would like to simulate HTTP-load from say, 10 different users. > > With different meaning that each thread should have it's own user. > > > > Is there a way that I can acheive this? Should I use the > > Modifaction Manager? > > Is there any other class that I can modify/extend/create? > > > > Cheers, > > > > gustav bostr�m > > > > the eon company > > www.eoncompany.com > > > > o +46-8-54528800 > > m +46-70-9575154 > > e [EMAIL PROTECTED] > > > > > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

