On 24/02/2010, TSurendar <[email protected]> wrote: > > Hi, > > All are HttpRequests only. > Execpt post Processors no other elements in the scripts.
And what Post Processors are you using? > 35 transactions Means: Application is like a question paper, we enter some > response for the questions and click next in each page untill we recieve the > Finish Page. All questions are radio button type. We set each next button > click as a transaction. > > Similar to this we have 5 scripts. > > how to get the results if we remove Listener? Use non-GUI mode; the -l flag will create a sample result log. > I have attached the error log. > > http://old.nabble.com/file/p27714133/jmeter.log The log file shows that the first error that occurs is: 2010/02/22 20:31:56 ERROR - jmeter.protocol.http.sampler.HTTPSampler: readResponse: java.io.IOException: Server returned HTTP response code: 500 for URL: http://10.237.204.136/Scenerio4/default.aspx The server then reports a lot more of the same. This is not a JMeter problem; looks like the server is having problems handling the load. I suggest you look at the server log. A lot later on, there is a memory issue: 2010/02/22 20:59:51 ERROR - jmeter.threads.JMeterThread: Test failed! java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOf(Unknown Source) at java.lang.AbstractStringBuilder.expandCapacity(Unknown Source) at java.lang.AbstractStringBuilder.append(Unknown Source) at java.lang.StringBuffer.append(Unknown Source) at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.getQueryString(HTTPSamplerBase.java:919) at org.apache.jmeter.protocol.http.sampler.PostWriter.setHeaders(PostWriter.java:283) at org.apache.jmeter.protocol.http.sampler.HTTPSampler.setPostHeaders(HTTPSampler.java:140) at org.apache.jmeter.protocol.http.sampler.HTTPSampler.setupConnection(HTTPSampler.java:234) at org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(HTTPSampler.java:487) at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:1037) at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:1023) at org.apache.jmeter.threads.JMeterThread.process_sampler(JMeterThread.java:346) at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:243) at java.lang.Thread.run(Unknown Source) This part of the code is trying to create the query string from the parameters, which should not normally require much memory. So either there is a memory leak, or the parameter contents are somehow very large. The first problem you need to resolve is why is the server responding with an error. You may find that the memory issue goes away. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

