Re: Using Junit capabilities of jmeter

2008-08-28 Thread sebb
Try using the example in the manual: http://jakarta.apache.org/jmeter/usermanual/component_reference.html#JUnit_Request On 28/08/2008, lbackstrom <[EMAIL PROTECTED]> wrote: > > Thanks for the reply. I still can't get it to actually run the test that we > want to run. It seems to run the suite

Re: Using Junit capabilities of jmeter

2008-08-28 Thread lbackstrom
Thanks for the reply. I still can't get it to actually run the test that we want to run. It seems to run the suite() method, but ignores the runTest() method to run it. Here's my code now: public static Test suite() { TestSuite suite = new TestSuite();

Re: Counter within a loop

2008-08-28 Thread Nadav Samet
That's weird. So I was trying to debug what's going on. It seems like HTTPSamplerBase caches the file list, so it's not aware that the filenames should change between subsequent iterations. In HTTPSamplerBase around line 1548: if (fileList != null){ return fileList; }

Re: Question about Scalability of Jmeter-Server

2008-08-28 Thread Peter Lin
On Thu, Aug 28, 2008 at 12:15 PM, Huesgen, Chad <[EMAIL PROTECTED]> wrote: > Sorry should of put that in there. I am running all tests in non-gui > mode, gave jmeter-server 1 gig of mem and cycling jmeter-servers between > each test. I moved the client to the webserver to reduce the amount of > n

RE: Question about Scalability of Jmeter-Server

2008-08-28 Thread Huesgen, Chad
Sorry should of put that in there. I am running all tests in non-gui mode, gave jmeter-server 1 gig of mem and cycling jmeter-servers between each test. I moved the client to the webserver to reduce the amount of network hops that the client and server have to make. Since this is a ping test, ba

Re: Question about Scalability of Jmeter-Server

2008-08-28 Thread sebb
On 28/08/2008, Huesgen, Chad <[EMAIL PROTECTED]> wrote: > Hello All, > > I am designing some performance tests using jmeter-server and am getting > some inconsistent results. My base assumption is that 2 jmeter servers > will get better performance numbers then 1 jmeter server or 1 jmeter > cl

RE: Remotely starting and stopping jmeter server from command line

2008-08-28 Thread Huesgen, Chad
I ended up using this to start and stop the servers: ssh $jmeterserverone \"setsid /home/chuesgen/jakarta-jmeter/bin/jmeter-server >> ~/jmeterServer.out 2>&1 &\" Just in case anyone needs to do this in the future. Thanks, Chad -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Se

Re: Webservices in JMeter

2008-08-28 Thread Richard . Markham
Hi jose, Thanks your tip. I only have the problem to tell SOAPUI to use the proxyserver. Cheers Richard __ Smals sluit elke aansprakelijkheid uit in verband met de juistheid, de volledigheid of het ti

Question about Scalability of Jmeter-Server

2008-08-28 Thread Huesgen, Chad
Hello All, I am designing some performance tests using jmeter-server and am getting some inconsistent results. My base assumption is that 2 jmeter servers will get better performance numbers then 1 jmeter server or 1 jmeter client by spreading the load across. I am running a very simple ping tes

Re: Problem to process results with Excel

2008-08-28 Thread sebb
On 28/08/2008, Jose Pablo Sarco <[EMAIL PROTECTED]> wrote: > Hi all, > > > > I need process the Jmeter results with Excel (to extract metrics), but > the XML size it's very long and I can't import it. Somebody knows some > other tool to extract the data of the XML? > If you want to process the

Jmeter Support for EMS

2008-08-28 Thread Mishra, Ajay
Hi, I have recently started working with Jmeter and was able to create some tests using JMS in Jmeter. Now I want to utilize Jmeter to test TIBCO EMS messages as maximum of my applications are running on EMS infrastructure. I wanted to confirm if I need to do something extra other than what I did

RE: Webservices in JMeter

2008-08-28 Thread Turkel, David
You can also use the WST tools in Eclipse to do the same thing. Import the WSDL into a project, right-click and select Web Services, then choose "Test with Web Services Explorer" I had some trouble with Soap UI in my Eclipse install (it completely broke WST), but that could have been just me,

Re: Problem to process results with Excel

2008-08-28 Thread Ronan Klyne
Jose Pablo Sarco wrote: > Hi all, > > > > I need process the Jmeter results with Excel (to extract metrics), but > the XML size it's very long and I can't import it. Somebody knows some > other tool to extract the data of the XML? Yeah, MS office is like that. Have you tried OpenOffice? >

Re: Webservices in JMeter

2008-08-28 Thread Jose Castro
You put the xml request. Download a program like soap UI. This program generates the soap request for you. Copy-paste the generated request from soap ui , and put your values 2008/8/28 <[EMAIL PROTECTED]>: > Hi , > > I want to create a test plan in JMeter with Webservices. The WSDL is the > Go

Problem to process results with Excel

2008-08-28 Thread Jose Pablo Sarco
Hi all, I need process the Jmeter results with Excel (to extract metrics), but the XML size it's very long and I can't import it. Somebody knows some other tool to extract the data of the XML? The Jmeter result is an XML with size 90 mb. Thanks in advance!! Jose ##

Re: Remotely starting and stopping jmeter server from command line

2008-08-28 Thread sebb
On 27/08/2008, Huesgen, Chad <[EMAIL PROTECTED]> wrote: > Thank you for the response sebb the -X definitely is a much nicer way of > stopping jmeter-server then my kill -9. The problem with starting > jmeter-server with a script is if I use ssh to start it jmeter-server > will not start as a ba

RE: Webservices in JMeter

2008-08-28 Thread Mathumathi Palani Bommu, EAS-Chennai
You shud send the request data in xml format -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2008 3:20 PM To: JMeter Users List Subject: Webservices in JMeter Hi , I want to create a test plan in JMeter with Webservices. The WSDL is the

Re: FTP protocol using jmeter

2008-08-28 Thread sebb
On 27/08/2008, lakshmi palaniappan <[EMAIL PROTECTED]> wrote: > Can someone help me with FTP scripting using jmeter? > JMeter can perform FTP get and put, but has no scripting capabilities: http://jakarta.apache.org/jmeter/usermanual/component_reference.html#FTP_Request > Any kind of input on t

Re: Using Junit capabilities of jmeter

2008-08-28 Thread sebb
On 27/08/2008, lbackstrom <[EMAIL PROTECTED]> wrote: > > I'm trying to use the JUnit capabilities of Jmeter to run performance testing > on an application. I create a JUnit application and extend TestCase as > indicated. I have a "suite" method that adds the real test methods to the > TestSui

Webservices in JMeter

2008-08-28 Thread Richard . Markham
Hi , I want to create a test plan in JMeter with Webservices. The WSDL is the Google WSDL. http://api.google.com/GoogleSearch.wsdl. What must I put in the field Soap XML RPC Data. In the Manual I don't find anything. Cherrs Richard _