Re: Simulating 2 Browser Windows with the same

2007-02-10 Thread git
Andrew, It is possible to simulate synchronised access to two different servelets simply by putting samplers sequentially under the same thread. Forcing Jmeter to asychronously hit the two servelets in such a way as to simulate a race condition is much harder. The problem is that you can only 'as

Re: Load test on XML files

2007-02-09 Thread git
Dood, What platform are you on? How is the network drive being accessed - webdv, smb, nfs? What programming environment are you using, bash, javascript, C? Why are you wanting to use JMeter for this? If we have the answers to the above questions, it would make it much more likely that we might co

Re: http post request with xml file

2007-02-08 Thread git
tried to change the size in some way, but it always > shows invalid size. Do you know the valid largest packet size for > Windump ? > > Thank you > > Jian Tong > > >>> git <[EMAIL PROTECTED]> 02/07/07 2:51 AM >>> > > Also > http://nerds

Re: http post request with xml file

2007-02-06 Thread git
Also http://nerds-central.blogspot.com/2007/01/sniff-http-for-free-find-out-what-is.html is how I do it. Seb, I would like to add this to the wiki but have no idea how to do this! Cheers AJ On Tue, 2007-02-06 at 23:16 +, sebb wrote: > Sniffers: > > http://wiki.apache.org/jakarta-jmeter/N

Re: spurious content from SOAP/XML-RPC Request

2007-02-06 Thread git
encoding were mutually exclusive? > > If so, and SOAP insists on Content-Length, then this means that > chunked is not allowed by SOAP. > > I guess this needs to be looked at further. > > On 06/02/07, git <[EMAIL PROTECTED]> wrote: > > Seb, > > > > I a

Re: spurious content from SOAP/XML-RPC Request

2007-02-06 Thread git
Seb, I am not expert on SOAP, however it would appear that the XML-RPC spec does not preclude chunked encoding, but it does insist on content length. I only say this to back up your point, that having both is not a bug, but is probably not what most server implementations would be expecting. AJ

Re: User Interface response time plugin

2007-02-05 Thread git
Aaron , As Sebb said, the solution is to capture the communication between the browser and the server via a JMeter proxy. Although you might think of AJAX as being different to 'normal' browser traffic, the web server sees it as being identical. So, once you have captured the requests that are b

Re: How to sniff http

2007-01-31 Thread git
Will do! On Wed, 2007-01-31 at 10:48 +, sebb wrote: > There are some other such references on the Wiki - perhaps you would > like to update it with the links below. > > On 30/01/07, git <[EMAIL PROTECTED]> wrote: > > All, > > > > I noticed a few reference

RE: Thread won't die issue

2007-01-29 Thread git
ead.stop is considered unsafe and shouldn't be used any more. But in > looking further I've realized that this isn't where the failure's occurring. > These threads are already toast at this point. They're so toasty the > thread.stop can't even kill them, which is

RE: Thread won't die issue

2007-01-29 Thread git
Daniel, I've seen this - but have no idea what causes it or what to do about it! You're not being ignored... Cheers AJ On Mon, 2007-01-29 at 09:40 -0600, Daniel Kurtz wrote: > Well, since no one responded to this I guess that no one else is seeing it. > What we're seeing here is that the thr

Re: Patterns to include for Ruby on rails app for recording script using proxy server

2007-01-28 Thread git
Just to let everyone know that I was going through a brain dead moment! Please ignore my previous email! On Sat, 2007-01-27 at 11:35 +, sebb wrote: > On 27/01/07, git <[EMAIL PROTECTED]> wrote: > > OK - I am just running past may computer and I have no idea why I think >

Re: Patterns to include for Ruby on rails app for recording script using proxy server

2007-01-27 Thread git
OK - I am just running past may computer and I have no idea why I think this might work - but it rings a bell... [.]rb$ I think that .* matches everything and eats your match to .rb. JMeter uses greedy matching (the normal) unlike the lean matching thing that Perl can do (but I have forgotten ho

RE: Why did the recorded HTTP Request sampler concatenate POSTparameters?

2007-01-27 Thread git
od news is that running the TestPlan does result in a correct POST > action for that Sampler, despite the confusing display of the POST > parameters in that table. > > Thanks for your input, > Gregor > > > > > -Original Message- > > From: git [mailto:[

Re: Jmeter for functional testing

2007-01-26 Thread git
Jian, I also have had positive experience of JMeter for functional testing of web applications. I wrote up the basic technique here http://nerds-central.blogspot.com/2006/08/pushing-envelope-with-jmeter.html. For this I use JMeter its self as the testing controller as we are not in a Java envi

Re: Why did the recorded HTTP Request sampler concatenate POST parameters?

2007-01-26 Thread git
Gregor, At first glance it looks like there is some problem with your post parameters, which is odd as they are coming out of firefox. POST and GET normally have the same encoding, the only difference being the in GET the encoded string goes after on the URL and for POST is comes after the blank

Refresh page Issue

2007-01-20 Thread git
> From: Ravindra Gupta <[EMAIL PROTECTED]> > Subject: Re: Refresh page Issue > Date: Sat, 20 Jan 2007 19:06:43 +0530 > > > Thanks AJ, it has cleared all my doubts > > On 1/20/07, git <[EMAIL PROTECTED]> wrote: > > Ravindra, > > > > In gene

Re: Refresh page Issue

2007-01-20 Thread git
Ravindra, In general, if you soft refresh a page in IE (pressing F5 for example), it will send 'if-modified-since' requests to the server for all the sub-elements of the page (images etc). This will normally cause the server to respond with a 304 - not modified. Thus the refresh loads the server

Re: Variable substitution for post/get variable names?

2007-01-19 Thread git
Dood, Sorry - I did misunderstand you there. I've never tried substituting the name. Sebbaz says it should work. If it does not, then I guess that is a bug. If that is the case you could try putting the variable into the URL by hand - but that would be messy. www.blar.com/blar.html?${myVar}=bl

Re: Variable substitution for post/get variable names?

2007-01-19 Thread git
Yes, If you look at the bottom half of the article http://nerds-central.blogspot.com/2006/08/pushing-envelope-with-jmeter.html it shows how to do it, with pictures... Cheers AJ On Fri, 2007-01-19 at 13:42 -0600, Kyle Schmitt wrote: > Is it possible to do variable substitution for post/get var

Re: How to invoke the application with jmeter

2007-01-19 Thread git
I might be being thick - but is it not possible to invoke applications from beanshell? On Fri, 2007-01-19 at 12:57 +, sebb wrote: > Not possible. > > On 19/01/07, sangeetha <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > how can invoke my application with jmeter?My application is fully swing

Re: Sending HTTP requests at fixed rate

2007-01-17 Thread git
Hugh, I have had a similar issue. However, under careful investigation I came to the conclusion that sending requests at a fixed rate and fix number of concurrent requests is just about impossible. You can do one or the other but not both. The reason being that unless the server is very lightly

Re: Retry LDAP thread bind request

2007-01-17 Thread git
Dood, The snag is that the LDAP server is not going to tell you when you can rebind! Though you can run a loop which exists when the successful query has been made. Cheers AJ On Wed, 2007-01-17 at 20:27 +0800, wolverine my wrote: > Hi! > > I'm testing the LDAP server with 1000 concurrent use

Re: web service

2007-01-17 Thread git
Fundamentally, a web service is just like a web page. Testing it is much the same. If you work out a realistic scenario for its use and replicate that from JMeter. AJ On Wed, 2007-01-17 at 04:04 -0800, shantanu wrote: > How to perform stress testing of web services www.cubicalland.com www.ne

Re: JTL Files

2007-01-17 Thread git
Dood, If your jtl files are stored as csv then you can load them into Open Office (or Excel if that is your thing) and view the data that way. That's how I do it. Cheers AJ On Wed, 2007-01-17 at 09:47 +, Stuart Findlay wrote: > Hi all > > This seems to me like a stupid question but I've g

Re: Variance between JMeter response times and real users

2007-01-17 Thread git
Actually, that is a VERY good point! We at TPN hit the exact same problem with our DV product. The snag being that php held open database transactions until the page was fully sent to the client. Thus, lengthening the time it took to send the response have a devastating affect on the performance

Re: Variance between JMeter response times and real users

2007-01-16 Thread git
rgjohnson, Other than this being because your script is missing stuff (people often forget to include all the image downloads, css, javascript etc) there are other reasons that I have seen this happen. 1) It is quite hard to get JMeter not to dispatch the requests to the server in a 'nice' way, i

Re: Latest linux version of Jmeter

2007-01-16 Thread git
gt; at > > > org.apache.jmeter.JMeter.start(JMeter.java:288) > > > at > > > > > sun.reflect.NativeMethodAccessorImpl.invoke0(Native > > > Method) > > > at > > > sun.reflect.NativeMethodAccessorImpl.invoke > > > (Native

Re: User variable overwriting in single thread with multiple loops

2007-01-16 Thread git
Dood, I have seen this before. I found a trick to it - there might be a nicer way. What you do is put a java sample after the if controller: 1) You set the class the JavaTest 2) You sleep time to 0 and sleep mask to F 3) Label => blank 4) Response message => blank 5) Status OK 6) Sampler Data

Re: Latest linux version of Jmeter

2007-01-16 Thread git
My guess is that the correct version of java is not being picked up by the script file. Make sure you have the sun version. Then edit the batch file so that the line which invokes java has the absolute path to the sun jvm (which lives in the bin directory under the java installation). Cheers AJ

Re: Latest linux version of Jmeter

2007-01-16 Thread git
nix. > > But i didn't find jmeter.sh after downloaded JMeter2.2 > > from this url : > > http://apache.gr-linux.com/jakarta/jmeter/binaries/ > > a) Location of linux version of jmeter. > > b) pls let me how to run jmeter in linux. > > Regards, >

Re: Latest linux version of Jmeter

2007-01-16 Thread git
Dood, Unless I am missing something - there is only one version of JMeter, as it is Java. AJ On Tue, 2007-01-16 at 03:11 -0800, Raghavendra Kristam wrote: > Hi, > > Please point me the location of latest linux version > of Jmeter. > > Thanks, > Raghavendra. > > > > > > >

[Fwd: Re: HELP::: how to set the connection keep alive for SOAP/XML RPC request]

2007-01-16 Thread git
Forwarded Message > From: git <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: neetu kulshrestha <[EMAIL PROTECTED]> > Subject: Re: HELP::: how to set the connection keep alive for SOAP/XML > RPC request > Date: Mon, 15 Jan 2007 16:41:

Re: HELP::: how to set the connection keep alive for SOAP/XML RPC request

2007-01-13 Thread git
Dood, On the http sampler, set use keep-alive to true. However, if your sever is not set to use keep-alive, this will not help. If you are still not getting keep alive connections when you have keep-alive set to true, use a tree-view listener to see the conversation. See http://nerds-central.bl

Re: Newbie question about JMeter

2007-01-12 Thread git
Dood, Can you send an example of what you are doing now and then I'd be happy to try and figure out what is going wrong for you. Cheers AJ On Fri, 2007-01-12 at 10:30 -0500, Jake Jacobson wrote: > I guess I am just really dense because I can't get the while loop to > end when I reach the end o

Re: will jmeter test update my DB?

2007-01-04 Thread git
z when i > check back my tables, no data being updated, does it mean i have made > mistake in my jMeter ? > > *confusing stage now* ... > > > > git wrote: > > > > On Wed, 2007-01-03 at 23:54 -0800, cvm wrote: > > > >> I'm using jmeter to run

Re: Windows and JDK setup for Jmeter

2007-01-04 Thread git
On Wed, 2007-01-03 at 11:10 -0800, gubbu gubbu wrote: > My oracle client forces a jdk 1.3 installation .But I cannot use Jmeter with > 1.3 with SSL . So how can I point to JDK 1.5 without unintalling JDK 1.3 ? Is > there any place in windows version of jmeter where I can specify "JAVA_HOME"? >

Re: JAVA_HOME for windows

2007-01-04 Thread git
On Wed, 2007-01-03 at 11:50 -0800, gubbu gubbu wrote: > I run Jmeter in windows using jmeterw.cmd . How can I force it to run a JDK > (I have multiple JDK installewd) ?Where can I specify JAVA_HOME? > > > > __ > Do You Yahoo!? > Tired of spam? Y

Re: will jmeter test update my DB?

2007-01-04 Thread git
On Wed, 2007-01-03 at 23:54 -0800, cvm wrote: > I'm using jmeter to run all my web pages, however may i know will it update > my DB if i have data input in my forms? Dood, JMeter will behave just like a user. So if a user would update the DB by submitting forms, so will JMeter. When we use JM

RE: HTTPS requests are failed in jmeter!

2007-01-02 Thread git
Dood, I know this is not going to solve the problem, but it might get you up and running... How about using stunnel? http://www.stunnel.org/ I have used it and found it works quite nicely. Cheers AJ www.cubicalland.com www.nerds-central.blogspot.com

Re: Graph Results wrapping?

2006-12-28 Thread git
On Thu, 2006-12-28 at 11:55 -0500, Mat Schaffer wrote: > I get the feeling this would be a more common question, but I only > found one instance on the list archives from 2003. (http:// > marc.theaimsgroup.com/?l=jmeter-user&m=106209644217021&w=2) > > Is there any way to prevent the Graph Res

Re: Search

2006-12-28 Thread git
You use a regular expression extractor - see nerds-central.blogspot.com On Thu, 2006-12-28 at 05:54 -0800, shantanu wrote: > How to search a particular text on a page. www.cubicalland.com nerds-central.blogspot.com

Re: Throughput in Aggregate report

2006-12-15 Thread git
> > be > > > any > > > > correlation between that metric in LoadRunner and Throughput in > > JMeter. > > > > Can > > > > someone please explain how to get the eaquivalent metric in JMeter? > > > > > > > > Regards, &

Re: Jmeter Crashing Issue

2006-12-04 Thread git
times Jmeter vanishes itself in between. > I faced this issue on 4 PCs. > > Please suggest any workaround or possible reason for it. > > Your help will be highly appreciated. > > Thanks, > Kuldeep -- git <[EMAIL PROTECTED]> www.cubicalland.com -