Re: CLASSPATH woes with Java Request Sampler

2003-09-29 Thread mstover1
- From: peter lin To: JMeter Users List Sent: Monday, September 22, 2003 9:01 PM Subject: Re: CLASSPATH woes with Java Request Sampler if you wrote your own sampler, the cleanest way is to write a custom classloader that extends URLClassLoader. then use your classloader to load

RE: CLASSPATH woes with Java Request Sampler

2003-09-29 Thread BAZLEY, Sebastian
For another possible solution, see bug 23366: http://issues.apache.org/bugzilla/show_bug.cgi?id=23366 Sebastian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 29 September 2003 14:35 To: JMeter Users List Subject: Re: CLASSPATH woes with Java Request Sampler

Re: CLASSPATH woes with Java Request Sampler

2003-09-24 Thread Clifton Craig
] To: JMeter Users List [EMAIL PROTECTED] Sent: Monday, September 22, 2003 9:01 PM Subject: Re: CLASSPATH woes with Java Request Sampler if you wrote your own sampler, the cleanest way is to write a custom classloader that extends URLClassLoader. then use your classloader to load those

Re: CLASSPATH woes with Java Request Sampler

2003-09-23 Thread Clifton Craig
, September 22, 2003 9:01 PM Subject: Re: CLASSPATH woes with Java Request Sampler if you wrote your own sampler, the cleanest way is to write a custom classloader that extends URLClassLoader. then use your classloader to load those resources. this should give you the control needed. hope

Re: CLASSPATH woes with Java Request Sampler

2003-09-23 Thread peter lin
? Clifton C. Craig Intelligent Computer Systems A division of Global Beverage Group [EMAIL PROTECTED] (717) 295-7977 - Original Message - From: peter lin To: JMeter Users List Sent: Monday, September 22, 2003 9:01 PM Subject: Re: CLASSPATH woes with Java Request Sampler if you wrote your

Re: CLASSPATH woes with Java Request Sampler

2003-09-22 Thread peter lin
if you wrote your own sampler, the cleanest way is to write a custom classloader that extends URLClassLoader. then use your classloader to load those resources. this should give you the control needed. hope that helps. peter Clifton Craig [EMAIL PROTECTED] wrote: Hello all: I've