AW: Need help on Regular Expression

2006-01-25 Thread Torsten . Frehe
Hi Siva,

It doesn´t work.
I can´t find a way to check if the extracted token is given to the next
request.
Do you know a way to check, which variables are send in the HTTP Request?

Regards,

Torsten

-Ursprüngliche Nachricht-
Von: Sivakumar V. ECS-Chennai [mailto:[EMAIL PROTECTED] 
Gesendet: Mittwoch, 25. Januar 2006 08:43
An: 'JMeter Users List'
Betreff: RE: Need help on Regular Expression


Hi,

What is the value you are getting for the variabel token.

Also, put $2$ instead of $1$. I faced a similar problem and the $2$ only
gets the first inside group. Try this and let me know the results.. 

Regards,
Siva


**
Bitte nutzen Sie die E-Mail-Verbindung mit uns ausschliesslich zum 
Informationsaustausch. Wir koennen auf diesem Wege keine 
rechtsgeschaeftlichen Erklaerungen (Auftraege etc.) entgegennehmen.
Der Inhalt dieser Nachricht ist vertraulich und nur fuer den angegebenen 
Empfaenger bestimmt. Jede Form der Kenntnisnahme oder Weitergabe
durch Dritte ist unzulaessig. Sollte diese Nachricht nicht fur Sie bestimmt
sein, so bitten wir Sie, sich mit uns per E-Mail oder telefonisch in 
Verbindung zu setzen.

Please use your E-mail connection with us exclusively for the exchange 
of information. We do not accept legally binding declarations (orders, 
etc.) by this means of communication. The contents of this message is 
confidential and intended only for the recipient indicated. Taking 
notice of this message or disclosure by third parties is not 
permitted. In the event that this message is not intended for you, 
please contact us via E-mail or phone.

**


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AW: Need help on Regular Expression

2006-01-25 Thread Noam Paz

Torsten,
you can log it with the log()  function.
Alternatively add a view result tree, log everything (not only errors) and have 
a look in the request tab.

Best regards / Viele Grüße

Noam Paz















   
 [EMAIL PROTECTED]  






















   
 25.01.2006 10:36   











   To





   jmeter-user@jakarta.apache.org   





   
   

RE: Need help on Regular Expression

2006-01-25 Thread Rob Heikens
Hey,

Try this expression: (?=)[a-z0-9]{10,}
It means: search before a  with length 10 or longer.

And only with this in the expression. So not also :(input type=hidden 
name..etc

The other part should work. The Name you give it token should be able to be 
used by ${token}.

Regards,

Rob Heikens


KPN OVN Internet Solutions
Internet Technologies Groningen (ITG)
Atoomweg 6b
9743 AK Groningen
(050-58)29019
[EMAIL PROTECTED]


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: woensdag 25 januari 2006 8:20
To: jmeter-user@jakarta.apache.org
Subject: AW: Need help on Regular Expression

Hi,

How can I transport a struts-token from the first to the second request.
I tried to use Regular Expression but it doesn´t work.

Thats the result from the first Request:

form name=Form method=post
action=start.do;jsessionid=DXmqIlM2J22f01AY2n55Dp0j2UO1kH5qgySnUBZkE8HqUT9C
Ge8q!-487074956input type=hidden
name=org.apache.struts.taglib.html.TOKEN
value=a153f04fd391eb629a7a905ba976c65e


This what I do:

Regular Expression Extractor
Name: token
Expression:(input type=hidden name=org.apache.struts.taglib.html.TOKEN
value=([a-f0-9]*))
Template : $1$
Match No. 1

HTTP Request:
Send parameters with request:
org.apache.struts.taglib.html.TOKEN : ${token}

What is the mistake ?

Regards Torsten


-Ursprüngliche Nachricht-
Von: Sivakumar V. ECS-Chennai [mailto:[EMAIL PROTECTED] 
Gesendet: Mittwoch, 25. Januar 2006 07:18
An: 'JMeter Users List'
Betreff: RE: Need help on Regular Expression


Use the regular expression (value=()) 
And use $1$ as the template. Which will fetch the inner group ()

Regards,
Siva


-Original Message-
From: Rupendra Butola [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 25, 2006 11:32 AM
To: JMeter Users List
Subject: Need help on Regular Expression

 
Hi All,

Need some help on regular expression.

This is the output I receive in one of steps in my URL and I want to use
3911 in rest of my url.

input name=msgId type=hidden value=3911

Can you also please provide me the steps to be executed in jmeter to achieve
this.

Any help on this will be appreciated.

Regards,
Rupendrasingh

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Disclaimer: 

This message and any attachment(s) contained here are information that is
confidential, proprietary to HCL Technologies and its customers, privileged
or otherwise protected by law. The information is solely intended for the
individual or the entity it is addressed to. If you are not the intended
recipient of this message, you are not authorized to read, forward, print,
retain, copy or disseminate this message or any part of it. If you have
received this e-mail in error, please notify the sender immediately by
return e-mail and delete it from your computer.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


**
Bitte nutzen Sie die E-Mail-Verbindung mit uns ausschliesslich zum 
Informationsaustausch. Wir koennen auf diesem Wege keine 
rechtsgeschaeftlichen Erklaerungen (Auftraege etc.) entgegennehmen.
Der Inhalt dieser Nachricht ist vertraulich und nur fuer den angegebenen 
Empfaenger bestimmt. Jede Form der Kenntnisnahme oder Weitergabe
durch Dritte ist unzulaessig. Sollte diese Nachricht nicht fur Sie bestimmt
sein, so bitten wir Sie, sich mit uns per E-Mail oder telefonisch in 
Verbindung zu setzen.

Please use your E-mail connection with us exclusively for the exchange 
of information. We do not accept legally binding declarations (orders, 
etc.) by this means of communication. The contents of this message is 
confidential and intended only for the recipient indicated. Taking 
notice of this message or disclosure by third parties is not 
permitted. In the event that this message is not intended for you, 
please contact us via E-mail or phone.

**


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



AW: AW: Need help on Regular Expression

2006-01-25 Thread Torsten . Frehe
Hi Noam, Hi Siva,

now my Regular Expression Extractor works.
Thanks for help.
But when i add a Cookie Manager to the thread, because all request must run
in the same session and the sessionid is set by a cookie, only the first
request run, all following request are not started.
Is there a log where I can find out why the request not started?

Regards

Torsten

-Ursprüngliche Nachricht-
Von: Noam Paz [mailto:[EMAIL PROTECTED] 
Gesendet: Mittwoch, 25. Januar 2006 10:41
An: JMeter Users List
Betreff: Re: AW: Need help on Regular Expression



Torsten,
you can log it with the log()  function.
Alternatively add a view result tree, log everything (not only errors) and
have a look in the request tab.

Best regards / Viele Grüße

Noam Paz




 

 [EMAIL PROTECTED]

 

 25.01.2006 10:36
To 
 
jmeter-user@jakarta.apache.org

 
cc 
 
Please respond to

 
JMeter Users List jmeter-user@jakarta.apache.org
Subject 
 
AW: Need help on Regular Expression

 

 

 

 

 

 





Hi Siva,

It doesn´t work.
I can´t find a way to check if the extracted token is given to the next
request. Do you know a way to check, which variables are send in the HTTP
Request?

Regards,

Torsten

-Ursprüngliche Nachricht-
Von: Sivakumar V. ECS-Chennai [mailto:[EMAIL PROTECTED]
Gesendet: Mittwoch, 25. Januar 2006 08:43
An: 'JMeter Users List'
Betreff: RE: Need help on Regular Expression


Hi,

What is the value you are getting for the variabel token.

Also, put $2$ instead of $1$. I faced a similar problem and the $2$ only
gets the first inside group. Try this and let me know the results..

Regards,
Siva


**
Bitte nutzen Sie die E-Mail-Verbindung mit uns ausschliesslich zum
Informationsaustausch. Wir koennen auf diesem Wege keine
rechtsgeschaeftlichen Erklaerungen (Auftraege etc.) entgegennehmen. Der
Inhalt dieser Nachricht ist vertraulich und nur fuer den angegebenen
Empfaenger bestimmt. Jede Form der Kenntnisnahme oder Weitergabe durch
Dritte ist unzulaessig. Sollte diese Nachricht nicht fur Sie bestimmt sein,
so bitten wir Sie, sich mit uns per E-Mail oder telefonisch in Verbindung zu
setzen.

Please use your E-mail connection with us exclusively for the exchange of
information. We do not accept legally binding declarations (orders,
etc.) by this means of communication. The contents of this message is
confidential and intended only for the recipient indicated. Taking notice of
this message or disclosure by third parties is not permitted. In the event
that this message is not intended for you, please contact us via E-mail or
phone.

**


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--

Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail
irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und
vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte
Weitergabe dieser Mail ist nicht gestattet.

This e-mail may contain confidential and/or privileged information. If you
are not the intended recipient (or have received this e-mail in error)
please notify the sender immediately and destroy this e-mail. Any
unauthorized copying, disclosure or distribution of the material in this
e-mail is strictly forbidden.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



JMeter distributed testing: java.rmi.MarshalException: error marshalling arguments; nested exception is

2006-01-25 Thread GUERARD Elisabeth
Hey,
 
 
I try to use the fonctionnality of Remote Testing.
I follow up the tutorial: Distributed testing
And i have the feeling to be in a good way, however, it doesn't work,
maybe someone can help me to go on in the good way.
Situation: 
 
  - I install Jmeter 2.0.3 on my machine and on the slave machine
  - The slave system is working , i have in its log: 2006/01/25 14:18:25
INFO  - jmeter.engine.RemoteJMeterEngineImpl: Starting backing engine 
  - I load jmeter.bat from my machine
  - open a simple script
  - choose remote start - slave machine
  - in its logs, i have 2006/01/25 15:24:04 INFO  -
jmeter.engine.RemoteJMeterEngineImpl: Reset 
   2006/01/25 15:24:04 INFO  - jmeter.engine.RemoteJMeterEngineImpl:
Reset 
   2006/01/25 15:24:04 INFO  - jmeter.engine.RemoteJMeterEngineImpl:
received host: [IP of the slave machine]
 
- in the log of the master:
2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine: about to
run remote test 
2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine: done
initiating run command 
2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine: running
clientengine run method 
2006/01/25 15:24:04 INFO  - jmeter.engine.ConvertListeners: num threads
= 1 
2006/01/25 15:24:04 INFO  - jmeter.engine.ConvertListeners: num threads
= 1 
2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine: sent host
= [IP of the slave machine]
2006/01/25 15:24:04 ERROR - jmeter.engine.ClientJMeterEngine:
java.rmi.MarshalException: error marshalling arguments; nested exception
is: 
 java.net.SocketException: Software caused connection abort: socket
write error
 at sun.rmi.server.UnicastRef.invoke(Unknown Source)
 at
org.apache.jmeter.engine.RemoteJMeterEngineImpl_Stub.configure(Unknown
Source)
 at
org.apache.jmeter.engine.ClientJMeterEngine.run(ClientJMeterEngine.java:
126)
 at java.lang.Thread.run(Unknown Source)
Caused by: java.net.SocketException: Software caused connection abort:
socket write error
 at java.net.SocketOutputStream.socketWrite0(Native Method)
 at java.net.SocketOutputStream.socketWrite(Unknown Source)
 at java.net.SocketOutputStream.write(Unknown Source)
 at java.io.BufferedOutputStream.write(Unknown Source)
 at java.io.ObjectOutputStream$BlockDataOutputStream.drain(Unknown
Source)
 at
java.io.ObjectOutputStream$BlockDataOutputStream.setBlockDataMode(Unknow
n Source)
 at java.io.ObjectOutputStream.writeNonProxyDesc(Unknown Source)
 at java.io.ObjectOutputStream.writeClassDesc(Unknown Source)
 at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
 at java.io.ObjectOutputStream.writeObject0(Unknown Source)
 at java.io.ObjectOutputStream.writeFatalException(Unknown Source)
 at java.io.ObjectOutputStream.writeObject(Unknown Source)
 at sun.rmi.server.UnicastRef.marshalValue(Unknown Source)
 ... 4 more
 
Any ideas, about the problem?
Thanks in advance,
Elisabeth GUERARD


RE: JMeter distributed testing: Space in the path

2006-01-25 Thread GUERARD Elisabeth
 
Sorry, to disturb you again, just to say you that it works now.
previously, jmeter was installed to : C:\Program
Files\jmeter\jakarta-jmeter-2.0.3\bin
now, R:\jmeter\jakarta-jmeter-2.0.3 
Elisabeth


  _  

From: GUERARD Elisabeth 
Sent: 25 January 2006 15:28
To: jmeter-user@jakarta.apache.org
Subject: JMeter distributed testing: java.rmi.MarshalException:
error marshalling arguments; nested exception is


Hey,
 
 
I try to use the fonctionnality of Remote Testing.
I follow up the tutorial: Distributed testing
And i have the feeling to be in a good way, however, it doesn't
work, maybe someone can help me to go on in the good way.
Situation: 
 
  - I install Jmeter 2.0.3 on my machine and on the slave
machine
  - The slave system is working , i have in its log: 2006/01/25
14:18:25 INFO  - jmeter.engine.RemoteJMeterEngineImpl: Starting backing
engine 
  - I load jmeter.bat from my machine
  - open a simple script
  - choose remote start - slave machine
  - in its logs, i have 2006/01/25 15:24:04 INFO  -
jmeter.engine.RemoteJMeterEngineImpl: Reset 
   2006/01/25 15:24:04 INFO  -
jmeter.engine.RemoteJMeterEngineImpl: Reset 
   2006/01/25 15:24:04 INFO  -
jmeter.engine.RemoteJMeterEngineImpl: received host: [IP of the slave
machine]
 
- in the log of the master:
2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine:
about to run remote test 
2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine:
done initiating run command 
2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine:
running clientengine run method 
2006/01/25 15:24:04 INFO  - jmeter.engine.ConvertListeners: num
threads = 1 
2006/01/25 15:24:04 INFO  - jmeter.engine.ConvertListeners: num
threads = 1 
2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine:
sent host = [IP of the slave machine]
2006/01/25 15:24:04 ERROR - jmeter.engine.ClientJMeterEngine:
java.rmi.MarshalException: error marshalling arguments; nested exception
is: 
 java.net.SocketException: Software caused connection abort:
socket write error
 at sun.rmi.server.UnicastRef.invoke(Unknown Source)
 at
org.apache.jmeter.engine.RemoteJMeterEngineImpl_Stub.configure(Unknown
Source)
 at
org.apache.jmeter.engine.ClientJMeterEngine.run(ClientJMeterEngine.java:
126)
 at java.lang.Thread.run(Unknown Source)
Caused by: java.net.SocketException: Software caused connection
abort: socket write error
 at java.net.SocketOutputStream.socketWrite0(Native Method)
 at java.net.SocketOutputStream.socketWrite(Unknown Source)
 at java.net.SocketOutputStream.write(Unknown Source)
 at java.io.BufferedOutputStream.write(Unknown Source)
 at
java.io.ObjectOutputStream$BlockDataOutputStream.drain(Unknown Source)
 at
java.io.ObjectOutputStream$BlockDataOutputStream.setBlockDataMode(Unknow
n Source)
 at java.io.ObjectOutputStream.writeNonProxyDesc(Unknown Source)
 at java.io.ObjectOutputStream.writeClassDesc(Unknown Source)
 at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown
Source)
 at java.io.ObjectOutputStream.writeObject0(Unknown Source)
 at java.io.ObjectOutputStream.writeFatalException(Unknown
Source)
 at java.io.ObjectOutputStream.writeObject(Unknown Source)
 at sun.rmi.server.UnicastRef.marshalValue(Unknown Source)
 ... 4 more
 
Any ideas, about the problem?
Thanks in advance,
Elisabeth GUERARD



Re: JMeter distributed testing: java.rmi.MarshalException: error marshalling arguments; nested exception is

2006-01-25 Thread Peter Lin
please make sure the location jmeter is installed does not have a space in
the path.

peter


On 1/25/06, GUERARD Elisabeth [EMAIL PROTECTED] wrote:

 Hey,


 I try to use the fonctionnality of Remote Testing.
 I follow up the tutorial: Distributed testing
 And i have the feeling to be in a good way, however, it doesn't work,
 maybe someone can help me to go on in the good way.
 Situation:

   - I install Jmeter 2.0.3 on my machine and on the slave machine
   - The slave system is working , i have in its log: 2006/01/25 14:18:25
 INFO  - jmeter.engine.RemoteJMeterEngineImpl: Starting backing engine
   - I load jmeter.bat from my machine
   - open a simple script
   - choose remote start - slave machine
   - in its logs, i have 2006/01/25 15:24:04 INFO  -
 jmeter.engine.RemoteJMeterEngineImpl: Reset
2006/01/25 15:24:04 INFO  - jmeter.engine.RemoteJMeterEngineImpl:
 Reset
2006/01/25 15:24:04 INFO  - jmeter.engine.RemoteJMeterEngineImpl:
 received host: [IP of the slave machine]

 - in the log of the master:
 2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine: about to
 run remote test
 2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine: done
 initiating run command
 2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine: running
 clientengine run method
 2006/01/25 15:24:04 INFO  - jmeter.engine.ConvertListeners: num threads
 = 1
 2006/01/25 15:24:04 INFO  - jmeter.engine.ConvertListeners: num threads
 = 1
 2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine: sent host
 = [IP of the slave machine]
 2006/01/25 15:24:04 ERROR - jmeter.engine.ClientJMeterEngine:
 java.rmi.MarshalException: error marshalling arguments; nested exception
 is:
 java.net.SocketException: Software caused connection abort: socket
 write error
 at sun.rmi.server.UnicastRef.invoke(Unknown Source)
 at
 org.apache.jmeter.engine.RemoteJMeterEngineImpl_Stub.configure(Unknown
 Source)
 at
 org.apache.jmeter.engine.ClientJMeterEngine.run(ClientJMeterEngine.java:
 126)
 at java.lang.Thread.run(Unknown Source)
 Caused by: java.net.SocketException: Software caused connection abort:
 socket write error
 at java.net.SocketOutputStream.socketWrite0(Native Method)
 at java.net.SocketOutputStream.socketWrite(Unknown Source)
 at java.net.SocketOutputStream.write(Unknown Source)
 at java.io.BufferedOutputStream.write(Unknown Source)
 at java.io.ObjectOutputStream$BlockDataOutputStream.drain(Unknown
 Source)
 at
 java.io.ObjectOutputStream$BlockDataOutputStream.setBlockDataMode(Unknow
 n Source)
 at java.io.ObjectOutputStream.writeNonProxyDesc(Unknown Source)
 at java.io.ObjectOutputStream.writeClassDesc(Unknown Source)
 at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
 at java.io.ObjectOutputStream.writeObject0(Unknown Source)
 at java.io.ObjectOutputStream.writeFatalException(Unknown Source)
 at java.io.ObjectOutputStream.writeObject(Unknown Source)
 at sun.rmi.server.UnicastRef.marshalValue(Unknown Source)
 ... 4 more

 Any ideas, about the problem?
 Thanks in advance,
 Elisabeth GUERARD




Re: JMeter distributed testing: Space in the path

2006-01-25 Thread Peter Lin
having space in the path generally causes problems in Java. AFAIK, the path
issue has been around forever in Java. to work around that, we could convert
paths to URL. feel free to file an enhancement bugzilla.

peter


On 1/25/06, GUERARD Elisabeth [EMAIL PROTECTED] wrote:


 Sorry, to disturb you again, just to say you that it works now.
 previously, jmeter was installed to : C:\Program
 Files\jmeter\jakarta-jmeter-2.0.3\bin
 now, R:\jmeter\jakarta-jmeter-2.0.3
 Elisabeth


   _

 From: GUERARD Elisabeth
 Sent: 25 January 2006 15:28
 To: jmeter-user@jakarta.apache.org
 Subject: JMeter distributed testing: java.rmi.MarshalException:
 error marshalling arguments; nested exception is


 Hey,


 I try to use the fonctionnality of Remote Testing.
 I follow up the tutorial: Distributed testing
 And i have the feeling to be in a good way, however, it doesn't
 work, maybe someone can help me to go on in the good way.
 Situation:

   - I install Jmeter 2.0.3 on my machine and on the slave
 machine
   - The slave system is working , i have in its log: 2006/01/25
 14:18:25 INFO  - jmeter.engine.RemoteJMeterEngineImpl: Starting backing
 engine
   - I load jmeter.bat from my machine
   - open a simple script
   - choose remote start - slave machine
   - in its logs, i have 2006/01/25 15:24:04 INFO  -
 jmeter.engine.RemoteJMeterEngineImpl: Reset
2006/01/25 15:24:04 INFO  -
 jmeter.engine.RemoteJMeterEngineImpl: Reset
2006/01/25 15:24:04 INFO  -
 jmeter.engine.RemoteJMeterEngineImpl: received host: [IP of the slave
 machine]

 - in the log of the master:
 2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine:
 about to run remote test
 2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine:
 done initiating run command
 2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine:
 running clientengine run method
 2006/01/25 15:24:04 INFO  - jmeter.engine.ConvertListeners: num
 threads = 1
 2006/01/25 15:24:04 INFO  - jmeter.engine.ConvertListeners: num
 threads = 1
 2006/01/25 15:24:04 INFO  - jmeter.engine.ClientJMeterEngine:
 sent host = [IP of the slave machine]
 2006/01/25 15:24:04 ERROR - jmeter.engine.ClientJMeterEngine:
 java.rmi.MarshalException: error marshalling arguments; nested exception
 is:
  java.net.SocketException: Software caused connection abort:
 socket write error
  at sun.rmi.server.UnicastRef.invoke(Unknown Source)
  at
 org.apache.jmeter.engine.RemoteJMeterEngineImpl_Stub.configure(Unknown
 Source)
  at
 org.apache.jmeter.engine.ClientJMeterEngine.run(ClientJMeterEngine.java:
 126)
  at java.lang.Thread.run(Unknown Source)
 Caused by: java.net.SocketException: Software caused connection
 abort: socket write error
  at java.net.SocketOutputStream.socketWrite0(Native Method)
  at java.net.SocketOutputStream.socketWrite(Unknown Source)
  at java.net.SocketOutputStream.write(Unknown Source)
  at java.io.BufferedOutputStream.write(Unknown Source)
  at
 java.io.ObjectOutputStream$BlockDataOutputStream.drain(Unknown Source)
  at
 java.io.ObjectOutputStream$BlockDataOutputStream.setBlockDataMode(Unknow
 n Source)
  at java.io.ObjectOutputStream.writeNonProxyDesc(Unknown Source)
  at java.io.ObjectOutputStream.writeClassDesc(Unknown Source)
  at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown
 Source)
  at java.io.ObjectOutputStream.writeObject0(Unknown Source)
  at java.io.ObjectOutputStream.writeFatalException(Unknown
 Source)
  at java.io.ObjectOutputStream.writeObject(Unknown Source)
  at sun.rmi.server.UnicastRef.marshalValue(Unknown Source)
  ... 4 more

 Any ideas, about the problem?
 Thanks in advance,
 Elisabeth GUERARD





gSOAP and JMeter

2006-01-25 Thread Guilherme Machado
Does anyone use JMeter to make gSOAP web services performance test?

I'm facing with this error:

java.io.IOException: Stream closed
at java.io.BufferedInputStream.getInIfOpen(Unknown Source)
at java.io.BufferedInputStream.read1(Unknown Source)
at java.io.BufferedInputStream.read(Unknown Source)
at java.io.FilterInputStream.read(Unknown Source)
at 
org.apache.jmeter.protocol.http.sampler.HTTPSampler.readResponse(HTTPSampler.java:235)
at 
org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(HTTPSampler.java:449)
at 
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:514)
at 
org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:503)
at  
org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(SoapSampler.java:136)
at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
at java.lang.Thread.run(Unknown Source)

I appreciate some help.

Thanks

Guilherme 



-
 Yahoo! doce lar. Faça do Yahoo! sua homepage.

Re: gSOAP and JMeter

2006-01-25 Thread Peter Lin
I have used jmeter to test gSoap webservices in the past. I used the xml/rpc
and webservice sampler instead of the httpSampler.

peter lin


On 1/25/06, Guilherme Machado [EMAIL PROTECTED] wrote:

 Does anyone use JMeter to make gSOAP web services performance test?

 I'm facing with this error:

 java.io.IOException: Stream closed
 at java.io.BufferedInputStream.getInIfOpen(Unknown Source)
 at java.io.BufferedInputStream.read1(Unknown Source)
 at java.io.BufferedInputStream.read(Unknown Source)
 at java.io.FilterInputStream.read(Unknown Source)
 at org.apache.jmeter.protocol.http.sampler.HTTPSampler.readResponse(
 HTTPSampler.java:235)
 at org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(
 HTTPSampler.java:449)
 at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(
 HTTPSamplerBase.java:514)
 at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(
 HTTPSamplerBase.java:503)
 at  org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(
 SoapSampler.java:136)
 at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
 at java.lang.Thread.run(Unknown Source)

 I appreciate some help.

 Thanks

 Guilherme



 -
 Yahoo! doce lar. Faça do Yahoo! sua homepage.



jmeter download checksum discrepancy

2006-01-25 Thread Crawford, John
Hi,

I've downloaded JMeter (2.1.1.zip) from several different mirror sites
in the last two days, and for each one, I get this result for my
checksum:
  C:\sha1sum jakarta-jmeter-2.1.1.zip
  5dbbe22bd13a60e09ad7069f33d2177e2feb8b4c *jakarta-jmeter-2.1.1.zip
which is not what I'm supposed to see, according to this page:
 
http://www.apache.org/dist/jakarta/jmeter/binaries/jakarta-jmeter-2.1.1.
zip.md5
which causes me to suspect this is not a valid version.

Yet, when I use GnuPG on it, I get:
  C:\gpg --verify jakarta-jmeter-2.1.1.zip.asc
  gpg: Signature made 10/03/05 17:45:16 using DSA key ID BCA973AC
  gpg: Good signature from Sebastian Bazley (ASF Signing Key)
[EMAIL PROTECTED]
  gpg: WARNING: This key is not certified with a trusted signature!
  gpg:  There is no indication that the signature belongs to the
owner.
  Primary key fingerprint: 88D5 36D4 3329 1377 4D62  766D 3FE0 C161 BCA9
73AC
which looks OK (despite the warning).

So: which is right? Is my download a valid version of JMeter or not?
Obviously, I'd like to know before installing it.

Please forgive me if this is a frequently answered question, but I'm new
to JMeter ( GnuPG), and I did not see it in a quick look over this
month's archives. Thanks,
 - John Crawford
   Senior QA Engineer
   TechTarget

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Graph Results: Throughput Definition ?

2006-01-25 Thread Jay Biddle
How do I interprete the Throughput metric on Graph Results from a JMeter 
2.2.1 LDAP Sampler Test ?


Example: Throughput 1.0552171060791079E-4/minute

Thanks, Jay Biddle


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Graph Results: Throughput Definition ?

2006-01-25 Thread Peter Lin
looks like graph results isn't formatting the value correctly

peter


On 1/25/06, Jay Biddle [EMAIL PROTECTED] wrote:

 How do I interprete the Throughput metric on Graph Results from a JMeter
 2.2.1 LDAP Sampler Test ?

 Example: Throughput 1.0552171060791079E-4/minute

 Thanks, Jay Biddle


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: Graph Results: Throughput Definition ?

2006-01-25 Thread Alan . Walker027
Hi,

I found a similar issue when I moved from 2.0.3 to 2.1.5, I did the maths on 
the results data in the log file and found that the timestamp data in 2.0.3 was 
divided by (60,000, or a similar large number)  and then in 2.1.5 it looked as 
though this was being done twice, hence the throughput results showed 1x10-5 
etc. A quick method is to use the graph function in 2.0.3.

Hope this helps.

Alan

- Original Message - 
From: Peter Lin [EMAIL PROTECTED] 
Date: Thursday, January 26, 2006 8:35 am 
Subject: Re: Graph Results: Throughput Definition ? 

 looks like graph results isn't formatting the value correctly 
 
 peter 
 
 
 On 1/25/06, Jay Biddle [EMAIL PROTECTED] wrote: 
  
  How do I interprete the Throughput metric on Graph Results from 
 a JMeter 
  2.2.1 LDAP Sampler Test ? 
  
  Example: Throughput 1.0552171060791079E-4/minute 
  
  Thanks, Jay Biddle 
  
  
  - 
  
  To unsubscribe, e-mail: [EMAIL PROTECTED] 
  For additional commands, e-mail: [EMAIL PROTECTED] 
  
  
 

 ---
 This email message and any attachment(s) is intended only for the 
 person(s) or entity(entities) to whom it is addressed. The 
 information it contains may be classified as IN CONFIDENCE and may be
 legally privileged. If you are not the intended recipient any use,
 disclosure or copying of the message or attachment(s) is strictly 
 prohibited. If you have received this message in error please 
 notify us immediately and destroy it and any attachment(s).
 Thank you. The Ministry of Social Development accepts no
 responsibility for changes made to this message or to any
 attachment(s) after transmission from the Ministry.
 ---


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: gSOAP and JMeter

2006-01-25 Thread Guilherme Machado
Hi Peter

Thanks for the fast answer, but my problem persists. In fact, I'm running a 
gSOAP web service in a embedded system and my tests are already xml/rpc based.

Guilherme

Peter Lin [EMAIL PROTECTED] escreveu: I have used jmeter to test gSoap 
webservices in the past. I used the xml/rpc
and webservice sampler instead of the httpSampler.

peter lin


On 1/25/06, Guilherme Machado  wrote:

 Does anyone use JMeter to make gSOAP web services performance test?

 I'm facing with this error:

 java.io.IOException: Stream closed
 at java.io.BufferedInputStream.getInIfOpen(Unknown Source)
 at java.io.BufferedInputStream.read1(Unknown Source)
 at java.io.BufferedInputStream.read(Unknown Source)
 at java.io.FilterInputStream.read(Unknown Source)
 at org.apache.jmeter.protocol.http.sampler.HTTPSampler.readResponse(
 HTTPSampler.java:235)
 at org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(
 HTTPSampler.java:449)
 at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(
 HTTPSamplerBase.java:514)
 at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(
 HTTPSamplerBase.java:503)
 at  org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(
 SoapSampler.java:136)
 at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
 at java.lang.Thread.run(Unknown Source)

 I appreciate some help.

 Thanks

 Guilherme



 -
 Yahoo! doce lar. Faça do Yahoo! sua homepage.





-
 Yahoo! doce lar. Faça do Yahoo! sua homepage.

Re: gSOAP and JMeter

2006-01-25 Thread Peter Lin
from the exception, it looks like the stream is being closed prematurely.
you might want to use a network sniffer to see what is happening between the
server and jmeter.

peter


On 1/25/06, Guilherme Machado [EMAIL PROTECTED] wrote:

 Hi Peter

 Thanks for the fast answer, but my problem persists. In fact, I'm running
 a gSOAP web service in a embedded system and my tests are already xml/rpc
 based.

 Guilherme

 Peter Lin [EMAIL PROTECTED] escreveu: I have used jmeter to test gSoap
 webservices in the past. I used the xml/rpc
 and webservice sampler instead of the httpSampler.

 peter lin


 On 1/25/06, Guilherme Machado  wrote:
 
  Does anyone use JMeter to make gSOAP web services performance test?
 
  I'm facing with this error:
 
  java.io.IOException: Stream closed
  at java.io.BufferedInputStream.getInIfOpen(Unknown Source)
  at java.io.BufferedInputStream.read1(Unknown Source)
  at java.io.BufferedInputStream.read(Unknown Source)
  at java.io.FilterInputStream.read(Unknown Source)
  at org.apache.jmeter.protocol.http.sampler.HTTPSampler.readResponse(
  HTTPSampler.java:235)
  at org.apache.jmeter.protocol.http.sampler.HTTPSampler.sample(
  HTTPSampler.java:449)
  at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(
  HTTPSamplerBase.java:514)
  at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(
  HTTPSamplerBase.java:503)
  at  org.apache.jmeter.protocol.http.sampler.SoapSampler.sample(
  SoapSampler.java:136)
  at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:247)
  at java.lang.Thread.run(Unknown Source)
 
  I appreciate some help.
 
  Thanks
 
  Guilherme
 
 
 
  -
  Yahoo! doce lar. Faça do Yahoo! sua homepage.
 




 -
 Yahoo! doce lar. Faça do Yahoo! sua homepage.



Assertions and SSL

2006-01-25 Thread dafaefe eafdfdf
 Can I use assertions and https?  I am  using an assertion to look for text on 
the response page.  The  application uses client certificates to authenticate 
before serving up  the response.  The authentication works and the response 
comes  back successfully ( Response code 200 in the server log) but the  
assertion fails. Is there a way to display the unencrypted response  page?
  
  Thanks for the help.
  


-
 
 What are the most popular cars? Find out at Yahoo! Autos 

Re: jmeter download checksum discrepancy

2006-01-25 Thread sebb
In 25/01/06, Crawford, John [EMAIL PROTECTED] wrote:
 Hi,

 I've downloaded JMeter (2.1.1.zip) from several different mirror sites
 in the last two days, and for each one, I get this result for my
 checksum:
   C:\sha1sum jakarta-jmeter-2.1.1.zip
   5dbbe22bd13a60e09ad7069f33d2177e2feb8b4c *jakarta-jmeter-2.1.1.zip
 which is not what I'm supposed to see, according to this page:

 http://www.apache.org/dist/jakarta/jmeter/binaries/jakarta-jmeter-2.1.1.
 zip.md5
 which causes me to suspect this is not a valid version.

Surely sha1sum is not the same as MD5?

Try again with an MD5 checksum tool...

 Yet, when I use GnuPG on it, I get:
   C:\gpg --verify jakarta-jmeter-2.1.1.zip.asc
   gpg: Signature made 10/03/05 17:45:16 using DSA key ID BCA973AC
   gpg: Good signature from Sebastian Bazley (ASF Signing Key)
 [EMAIL PROTECTED]
   gpg: WARNING: This key is not certified with a trusted signature!
   gpg:  There is no indication that the signature belongs to the
 owner.
   Primary key fingerprint: 88D5 36D4 3329 1377 4D62  766D 3FE0 C161 BCA9
 73AC
 which looks OK (despite the warning).


Since the signature is good, you can be sure that the file agrees with
it, and has been transferred OK.

None of the JMeter keys have been cross-signed, as far as I know.
It's tricky organising this when we live in different countries ...

 So: which is right? Is my download a valid version of JMeter or not?

On the face of it, yes.

 Obviously, I'd like to know before installing it.


Try creating the MD5 checksum with a different application.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Assertions and SSL

2006-01-25 Thread sebb
On 25/01/06, dafaefe eafdfdf [EMAIL PROTECTED] wrote:
  Can I use assertions and https?  I am  using an assertion to look for text 
 on the response page.  The  application uses client certificates to 
 authenticate before serving up  the response.  The authentication works and 
 the response comes  back successfully ( Response code 200 in the server log) 
 but the  assertion fails. Is there a way to display the unencrypted response  
 page?


SSL only encrypts the communication; the contents will be unencrypted
when presented to the Listener.

Add a Tree View Listener, and you should be able to see the contents.

If you add an Assertion Listener, it will give more info on the
Assertion failure.

S.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Need help on Regular Expression

2006-01-25 Thread Mitch K. White
Have you used the Preprocessor : User Parameters
On the 2nd request? This needs to reference the variable name token also.

Mitchell White
Atone Inc
2880 Sunrise Blvd suite 121
Rancho Cordova, CA 95742
Direct 916.635.8343
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 24, 2006 11:20 PM
To: jmeter-user@jakarta.apache.org
Subject: AW: Need help on Regular Expression

Hi,

How can I transport a struts-token from the first to the second request.
I tried to use Regular Expression but it doesn´t work.

Thats the result from the first Request:

form name=Form method=post
action=start.do;jsessionid=DXmqIlM2J22f01AY2n55Dp0j2UO1kH5qgySnUBZkE8HqUT9C
Ge8q!-487074956input type=hidden
name=org.apache.struts.taglib.html.TOKEN
value=a153f04fd391eb629a7a905ba976c65e


This what I do:

Regular Expression Extractor
Name: token
Expression:(input type=hidden name=org.apache.struts.taglib.html.TOKEN
value=([a-f0-9]*))
Template : $1$
Match No. 1

HTTP Request:
Send parameters with request:
org.apache.struts.taglib.html.TOKEN : ${token}

What is the mistake ?

Regards Torsten


-Ursprüngliche Nachricht-
Von: Sivakumar V. ECS-Chennai [mailto:[EMAIL PROTECTED] 
Gesendet: Mittwoch, 25. Januar 2006 07:18
An: 'JMeter Users List'
Betreff: RE: Need help on Regular Expression


Use the regular expression (value=()) 
And use $1$ as the template. Which will fetch the inner group ()

Regards,
Siva


-Original Message-
From: Rupendra Butola [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 25, 2006 11:32 AM
To: JMeter Users List
Subject: Need help on Regular Expression

 
Hi All,

Need some help on regular expression.

This is the output I receive in one of steps in my URL and I want to use
3911 in rest of my url.

input name=msgId type=hidden value=3911

Can you also please provide me the steps to be executed in jmeter to achieve
this.

Any help on this will be appreciated.

Regards,
Rupendrasingh

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Disclaimer: 

This message and any attachment(s) contained here are information that is
confidential, proprietary to HCL Technologies and its customers, privileged
or otherwise protected by law. The information is solely intended for the
individual or the entity it is addressed to. If you are not the intended
recipient of this message, you are not authorized to read, forward, print,
retain, copy or disseminate this message or any part of it. If you have
received this e-mail in error, please notify the sender immediately by
return e-mail and delete it from your computer.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


**
Bitte nutzen Sie die E-Mail-Verbindung mit uns ausschliesslich zum 
Informationsaustausch. Wir koennen auf diesem Wege keine 
rechtsgeschaeftlichen Erklaerungen (Auftraege etc.) entgegennehmen.
Der Inhalt dieser Nachricht ist vertraulich und nur fuer den angegebenen 
Empfaenger bestimmt. Jede Form der Kenntnisnahme oder Weitergabe
durch Dritte ist unzulaessig. Sollte diese Nachricht nicht fur Sie bestimmt
sein, so bitten wir Sie, sich mit uns per E-Mail oder telefonisch in 
Verbindung zu setzen.

Please use your E-mail connection with us exclusively for the exchange 
of information. We do not accept legally binding declarations (orders, 
etc.) by this means of communication. The contents of this message is 
confidential and intended only for the recipient indicated. Taking 
notice of this message or disclosure by third parties is not 
permitted. In the event that this message is not intended for you, 
please contact us via E-mail or phone.

**


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cookie manager on 2.0.3 vs. 2.1.1

2006-01-25 Thread sebb
Turns out the problem was caused by a stack overflow.

This disappeared when Retrieve Embedded Resources was unchecked.

HtmlParser code is suspected, but we have been unable to pin it down...

S.
On 24/01/06, sebb [EMAIL PROTECTED] wrote:
 On 23/01/06, Stephanie Fuller [EMAIL PROTECTED] wrote:
  I have 2.0.3 test plan that logs into my web application and uses an HTTP
  Request to execute a jsp file to display an image in my application's file
  system.
  When I run that test plan under JMeter 2.1.1, I can't get any of the files
  to display or download.  In JMeter 2.0.3, the View Results Tree display
  lists several objects on the page (icons, etc...) and I can view them.  In
  JMeter 2.1.1, it acts as if the cookie manager isn't remembering that I have
  logged in because I can only see the login screen for my application.  I am
  using the exact same test script on both JMeters.
 
  I can understand that a 2.0.3 test script might not be fully compatible with
  2.1.1, but I have also completely recreated a new test script for 2.1.1 that
  has all the same elements and settings.
 
  Thank you for any suggestions?

 Are you saying that some elements of the 2.0.3 script are not present
 when loaded in 2.1.1 ?  The scripts are supposed to be upwards
 compatible.

 Are there any error messages in jmeter.log?

 Have you a test script you can share? It would be useful if you could
 create a Bugzilla issue and attach the failing script.

 There were some changes to cookie handling between 2.0.3 and 2.1.1, so
 perhaps that is causing a problem.

 If you add the property

 log_level.jmeter.protocol.http.control=DEBUG

 to jmeter.properties this should give some information on the cookie
 handling (it's not all that easy to follow, unfortunately).

 S.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



user count / rampup time loop relationship - please help

2006-01-25 Thread Pugal Panneer
Hi,

I have thread group set to 10 (users) 120 (ramp up time)  2 (loop).=20
Expected behavior based on this setting is 1 user submits a request every
6 seconds and at the end of 2 minutes, I would have 20 users submitted
the requests. But the actual behavior I am seeing the client requests are
getting submitting every 1 / 2 seconds apart sometimes and sometimes 7
seconds apart but all 20 requests gets submitted approximately within 2
minutes.

Question:

What is the relationship of loop count to total # of users and ramp-up
time?  I am starting jmeter using remote start and my test plans and
config files are remote server machine.

Please help.

Thanks

pugal


  - Original Message -
  From: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Subject: WELCOME to jmeter-user@jakarta.apache.org
  Date: 26 Jan 2006 03:21:42 -


  Hi! This is the ezmlm program. I'm managing the
  jmeter-user@jakarta.apache.org mailing list.

  I'm working for my owner, who can be reached
  at [EMAIL PROTECTED]

  Acknowledgment: I have added the address

  [EMAIL PROTECTED]

  to the jmeter-user mailing list.

  Welcome to [EMAIL PROTECTED]

  Please save this message so that you know the address you are
  subscribed under, in case you later want to unsubscribe or change
  your
  subscription address.


  --- Administrative commands for the jmeter-user list ---

  I can handle administrative requests automatically. Please
  do not send them to the list address! Instead, send
  your message to the correct command address:

  To subscribe to the list, send a message to:


  To remove your address from the list, send a message to:


  Send mail to the following for info and FAQ for this list:



  Similar addresses exist for the digest list:



  To get messages 123 through 145 (a maximum of 100 per request), mail:


  To get an index with subject and author for messages 123-456 , mail:


  They are always returned as sets of 100, max 2000 per request,
  so you'll actually get 100-499.

  To receive all messages with the same subject as message 12345,
  send an empty message to:


  The messages do not really need to be empty, but I will ignore
  their content. Only the ADDRESS you send to is important.

  You can start a subscription for an alternate address,
  for example [EMAIL PROTECTED], just add a hyphen and your
  address (with '=' instead of '@') after the command word:


  To stop subscription for this address, mail:


  In both cases, I'll send a confirmation message to that address. When
  you receive it, simply reply to it to complete your subscription.

  If despite following these instructions, you do not get the
  desired results, please contact my owner at
  [EMAIL PROTECTED] Please be patient, my owner is
  a
  lot slower than I am ;-)

  --- Enclosed is a copy of the request I received.

  Return-Path:
  Received: (qmail 70791 invoked by uid 99); 26 Jan 2006 03:21:42 -
  Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49)
  by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Jan 2006 19:21:42
  -0800
  X-ASF-Spam-Status: No, hits=0.9 required=10.0
  tests=DNS_FROM_RFC_WHOIS,HTML_MESSAGE
  X-Spam-Check-By: apache.org
  Received-SPF: pass (asf.osuosl.org: local policy includes SPF
  record at spf.trusted-forwarder.org)
  Received: from [205.158.62.67] (HELO
  webmail-outgoing.us4.outblaze.com) (205.158.62.67)
  by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Jan 2006 19:21:41
  -0800
  Received: from unknown (unknown [192.168.9.180])
  by webmail-outgoing.us4.outblaze.com (Postfix) with QMQP id
  48E471800287
  for
  ; Thu, 26 Jan 2006 03:21:21 +
  (GMT)
  X-OB-Received: from unknown (205.158.62.49)
  by wfilter.us4.outblaze.com; 26 Jan 2006 03:21:21 -
  Received: by ws1-1.us4.outblaze.com (Postfix, from userid 1001)
  id 33CFA83C11; Thu, 26 Jan 2006 03:21:20 + (GMT)
  Content-Transfer-Encoding: 7bit
  Content-Type: multipart/alternative;
  boundary=_--=_1138245680210020
  MIME-Version: 1.0
  From: Pugal Panneer
  To:
  [EMAIL PROTECTED]
  Date: Wed, 25 Jan 2006 22:21:20 -0500
  Subject: Re: confirm subscribe to jmeter-user@jakarta.apache.org
  Received: from [71.192.88.67] by ws1-1.us4.outblaze.com with http for
  [EMAIL PROTECTED]; Wed, 25 Jan 2006 22:21:20 -0500
  X-Originating-Ip: 71.192.88.67
  X-Originating-Server: ws1-1.us4.outblaze.com
  Message-Id: [EMAIL PROTECTED]
  X-Virus-Checked: Checked by ClamAV on apache.org

  This is a multi-part message in MIME format.

  --_--=_1138245680210020
  Content-Disposition: inline
  Content-Transfer-Encoding: quoted-printable
  Content-Type: text/plain; charset=iso-8859-1

  =20=20

  --=20
  ___
  Play 100s of games for FREE! http://games.mail.com/


  --_--=_1138245680210020
  Content-Disposition: inline
  Content-Transfer-Encoding: quoted-printable
  Content-Type: text/html; charset=iso-8859-1

0ff 2px solid 




  --=20