Re: Odd problem with performance of JMeter

2011-06-28 Thread Mariusz W
hi, It's hard to say something without context. You IMHO should monitor conn state (time_wait...),heap, threads dump,pools (jdbc, threads)during test and córrelate it with y~x where y-response time and x-test time On 6/24/11, John Lussmyer wrote: > Using the Active Thread only setting, and runnin

Re: load time much different between jmeter and browser

2011-06-24 Thread Mariusz W
hi. but you should remember that in the case when keep-alive is turned off on the server side every resource request will be new TCP connection even then "use Keep-alive" is checked on jmeter. On Fri, Jun 24, 2011 at 9:54 AM, Felix Frank wrote: > On 06/23/2011 09:31 PM, Deepak Shetty wrote:

Re: Connection timed out

2011-02-16 Thread Mariusz W
Hi, When I see this error my first check is thread pool on server side (is it exhausted?) next firewall. In your case (I suspect ) low ramp-up cause that server can't serve all request at once - part of them are serviced and part are waiting in accept() backlog queue (which is limited) but others

Re: does jmeter make any difference when run from Different OS with same configuration ?

2011-01-12 Thread Mariusz W
On Wed, Jan 12, 2011 at 9:29 AM, sebb wrote: > On 12 January 2011 08:06, Mariusz W wrote: > > Hi, > > Two days ago I ran Jmeter (2.4 and 2.3.4) on Amacone EC2 - Windows, Xeon, > > Java SE 6 Update 23 (tried 32bit or 64bit) - Retrive all embedded > resources > > is

Re: does jmeter make any difference when run from Different OS with same configuration ?

2011-01-12 Thread Mariusz W
Hi, Two days ago I ran Jmeter (2.4 and 2.3.4) on Amacone EC2 - Windows, Xeon, Java SE 6 Update 23 (tried 32bit or 64bit) - Retrive all embedded resources is ON - keep alive on server side is OFF. Elapsed Times (avg, max, min) where not real - 1 sample, 1 thread showed time 2 or 3 times real elapsed

Re: SSL setup issue

2010-12-20 Thread Mariusz W
Hi, Can you set in jmeter.bat set JVM_ARGS=-Djavax.net.debug=all and check some errors/warnings in console output. Have you added some external libraries to jmeter classpath or to ext in java or some strange libraries to your app? Sometime in init code there are hidden something like Protocol

Re: Read a cookie value inside Jmeter 2.4

2010-12-16 Thread Mariusz W
I don't use this feature also but after enabling it I see in Debug Sampler: COOKIE_JSESSIONID=3B153CADD0FC756E14B35CE563BB7D87 where JSESSIONID I get in set-cookie. On Thu, Dec 16, 2010 at 11:54 AM, Felix Frank wrote: > On 12/16/2010 11:43 AM, Deviran wrote: > > > > I tried SESSIONID too, still

Re: Read a cookie value inside Jmeter 2.4

2010-12-16 Thread Mariusz W
have you tried: SESSIONID=(.*?); and use ${mysessionID} if you have Reference Name : mysessionID it should contain "6959ea68" for example - use Debug Sampler as mentioned earlier to check if value is ok. On Thu, Dec 16, 2010 at 11:43 AM, Deviran wrote: > > I tried SESSIONID too, still getting

Re: Read a cookie value inside Jmeter 2.4

2010-12-16 Thread Mariusz W
hi, Can you get some exemple cookie from your test? I also think that this regexp - COOKIE_SESSIONID=(.+?) - will give you only first letter from all cookie. On Thu, Dec 16, 2010 at 8:10 AM, Deviran wrote: > > Hi, > > I am trying to get the COOKIE value using the Regular Expression Extractor >

Re: Software caused connection abort

2010-12-15 Thread Mariusz W
Thread is waiting 96sek on response:( What server do you use? Check server for long running/stacked requests/exceptions. Maybe you should try to increase thread pool size or database connections pool size at beginning and check firewall config between jmeter and server. On Wed, Dec 15, 2010 at 10

Re: Software caused connection abort

2010-12-15 Thread Mariusz W
Use "View Results Tree" Listener and grab load time for wrong request and compare it with this that are ok (just few of them) to see if there is big difference. Write more about your server (Tomcat? httpd?...). On Wed, Dec 15, 2010 at 9:35 AM, rkannan wrote: > > Only for few requests i'm getting

Re: Testing Sharepoint 2010 web services with different users

2010-12-15 Thread Mariusz W
Hi, In Sharepoint is NTLM authentication por pages I think - did you do this for one user and ask how to do it using more? - if so You can use for example "CSV Data Set Config"- or ask how to do authentication in general? and why do you use WebService sampler (Are you testing site/page or web s

Re: Software caused connection abort

2010-12-15 Thread Mariusz W
Hi, I think that is not jmeter issue but rather your service capacity is finished or something between jmeter host and service is closing connections suddenly (firewall?). Can you give more details (e.g. this errors appear from test start or after some period, what is response time for this incorr