regular expression getting corrupted

2008-10-09 Thread Jose Castro
The scenario

SOAP REQUEST
  -regular expression (new variable VAR1)
SOAP REQUEST USING VAR1
SOAP REQUEST USING VAR1
HTTP REQUEST
  - regular expression( new variable VAR2)
SOAP REQUEST USING VAR1 + VAR2.(PROBLEM VAR1 is NOW -1, VAR2 is ok)

What could be happening???


Thank you

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



Re: regular expression getting corrupted

2008-10-09 Thread sebb
On 09/10/2008, Jose Castro [EMAIL PROTECTED] wrote:
 The scenario

  SOAP REQUEST
   -regular expression (new variable VAR1)
  SOAP REQUEST USING VAR1
  SOAP REQUEST USING VAR1
  HTTP REQUEST
   - regular expression( new variable VAR2)
  SOAP REQUEST USING VAR1 + VAR2.(PROBLEM VAR1 is NOW -1, VAR2 is ok)

  What could be happening???


Try adding some Debug Samplers to the test.

Are you sure the RE Extractor is only being applied to the appropriate samplers?
Remember that Post-Processors apply to all samplers in scope.

Are you sure that you are using different names? Remember that the RE
uses the name as a prefix.


  Thank you

  -
  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: regular expression getting corrupted

2008-10-09 Thread Jose Castro
I changed the test. when I need I do the other reg ex, I created a
simple controller
so now
-REQUEST1
---reg ex VAR1
-REQUEST2
-SIMPLE CONTROLLER
REQUEST3
--REG EX VAR 2
REQUEST4(NOW VAR1 + VAR 2 ARE OK)

The regular expressions are inside each request. So I dont understand
why the conflict.  The should only affect that particular request.

I now they are different because all the other variables are ok. But
now I am even more confuse because I call 3 more reg_ex. Each one on a
different request. I they are all OK.  the only one missing is the
first one.

I could send the jmx file





On Thu, Oct 9, 2008 at 1:29 PM, sebb [EMAIL PROTECTED] wrote:
 On 09/10/2008, Jose Castro [EMAIL PROTECTED] wrote:
 The scenario

  SOAP REQUEST
   -regular expression (new variable VAR1)
  SOAP REQUEST USING VAR1
  SOAP REQUEST USING VAR1
  HTTP REQUEST
   - regular expression( new variable VAR2)
  SOAP REQUEST USING VAR1 + VAR2.(PROBLEM VAR1 is NOW -1, VAR2 is ok)

  What could be happening???


 Try adding some Debug Samplers to the test.

 Are you sure the RE Extractor is only being applied to the appropriate 
 samplers?
 Remember that Post-Processors apply to all samplers in scope.

 Are you sure that you are using different names? Remember that the RE
 uses the name as a prefix.


  Thank you

  -
  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]



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



Re: regular expression getting corrupted

2008-10-09 Thread Jose Castro
Sorry, my mistake. Even with the simple controller, the first var1 is -1




On Thu, Oct 9, 2008 at 1:29 PM, sebb [EMAIL PROTECTED] wrote:
 On 09/10/2008, Jose Castro [EMAIL PROTECTED] wrote:
 The scenario

  SOAP REQUEST
   -regular expression (new variable VAR1)
  SOAP REQUEST USING VAR1
  SOAP REQUEST USING VAR1
  HTTP REQUEST
   - regular expression( new variable VAR2)
  SOAP REQUEST USING VAR1 + VAR2.(PROBLEM VAR1 is NOW -1, VAR2 is ok)

  What could be happening???


 Try adding some Debug Samplers to the test.

 Are you sure the RE Extractor is only being applied to the appropriate 
 samplers?
 Remember that Post-Processors apply to all samplers in scope.

 Are you sure that you are using different names? Remember that the RE
 uses the name as a prefix.


  Thank you

  -
  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]



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



Re: regular expression getting corrupted

2008-10-09 Thread sebb
On 09/10/2008, Jose Castro [EMAIL PROTECTED] wrote:
 I changed the test. when I need I do the other reg ex, I created a
  simple controller
  so now
  -REQUEST1
  ---reg ex VAR1
  -REQUEST2
  -SIMPLE CONTROLLER
  REQUEST3
  --REG EX VAR 2
  REQUEST4(NOW VAR1 + VAR 2 ARE OK)

  The regular expressions are inside each request. So I dont understand
  why the conflict.  The should only affect that particular request.


Yes, if they are added as children then they will only apply to the
parent sampler.

  I now they are different because all the other variables are ok. But
  now I am even more confuse because I call 3 more reg_ex. Each one on a
  different request. I they are all OK.  the only one missing is the
  first one.

Is it possible that something else is using the same variable name?
For example a counter or User Parameter - all variables share the same
namespace.

You could try renaming the first variable to something completely different.

  I could send the jmx file

If renaming the variable does not work, then feel free to email me the
JMX privately (please don't send it to the list).





  On Thu, Oct 9, 2008 at 1:29 PM, sebb [EMAIL PROTECTED] wrote:
   On 09/10/2008, Jose Castro [EMAIL PROTECTED] wrote:
   The scenario
  
SOAP REQUEST
 -regular expression (new variable VAR1)
SOAP REQUEST USING VAR1
SOAP REQUEST USING VAR1
HTTP REQUEST
 - regular expression( new variable VAR2)
SOAP REQUEST USING VAR1 + VAR2.(PROBLEM VAR1 is NOW -1, VAR2 is ok)
  
What could be happening???
  
  
   Try adding some Debug Samplers to the test.
  
   Are you sure the RE Extractor is only being applied to the appropriate 
 samplers?
   Remember that Post-Processors apply to all samplers in scope.
  
   Are you sure that you are using different names? Remember that the RE
   uses the name as a prefix.
  
  
Thank you
  
-
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]
  
  

  -
  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: regular expression getting corrupted

2008-10-09 Thread Jose Castro
Hello,

IT WAS MY MISTAKE. I was overriding the first regular expresion with
another when I did a copy-paste.  Sorry for your trouble and thanks
for your time.


On Thu, Oct 9, 2008 at 2:30 PM, sebb [EMAIL PROTECTED] wrote:
 On 09/10/2008, Jose Castro [EMAIL PROTECTED] wrote:
 I changed the test. when I need I do the other reg ex, I created a
  simple controller
  so now
  -REQUEST1
  ---reg ex VAR1
  -REQUEST2
  -SIMPLE CONTROLLER
  REQUEST3
  --REG EX VAR 2
  REQUEST4(NOW VAR1 + VAR 2 ARE OK)

  The regular expressions are inside each request. So I dont understand
  why the conflict.  The should only affect that particular request.


 Yes, if they are added as children then they will only apply to the
 parent sampler.

  I now they are different because all the other variables are ok. But
  now I am even more confuse because I call 3 more reg_ex. Each one on a
  different request. I they are all OK.  the only one missing is the
  first one.

 Is it possible that something else is using the same variable name?
 For example a counter or User Parameter - all variables share the same
 namespace.

 You could try renaming the first variable to something completely different.

  I could send the jmx file

 If renaming the variable does not work, then feel free to email me the
 JMX privately (please don't send it to the list).





  On Thu, Oct 9, 2008 at 1:29 PM, sebb [EMAIL PROTECTED] wrote:
   On 09/10/2008, Jose Castro [EMAIL PROTECTED] wrote:
   The scenario
  
SOAP REQUEST
 -regular expression (new variable VAR1)
SOAP REQUEST USING VAR1
SOAP REQUEST USING VAR1
HTTP REQUEST
 - regular expression( new variable VAR2)
SOAP REQUEST USING VAR1 + VAR2.(PROBLEM VAR1 is NOW -1, VAR2 is ok)
  
What could be happening???
  
  
   Try adding some Debug Samplers to the test.
  
   Are you sure the RE Extractor is only being applied to the appropriate 
 samplers?
   Remember that Post-Processors apply to all samplers in scope.
  
   Are you sure that you are using different names? Remember that the RE
   uses the name as a prefix.
  
  
Thank you
  
-
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]
  
  

  -
  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]



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



Re: regular expression getting corrupted

2008-10-09 Thread sebb
OK, thanks for confirming it's not a JMeter bug.

On 09/10/2008, Jose Castro [EMAIL PROTECTED] wrote:
 Hello,

  IT WAS MY MISTAKE. I was overriding the first regular expresion with
  another when I did a copy-paste.  Sorry for your trouble and thanks
  for your time.



  On Thu, Oct 9, 2008 at 2:30 PM, sebb [EMAIL PROTECTED] wrote:
   On 09/10/2008, Jose Castro [EMAIL PROTECTED] wrote:
   I changed the test. when I need I do the other reg ex, I created a
simple controller
so now
-REQUEST1
---reg ex VAR1
-REQUEST2
-SIMPLE CONTROLLER
REQUEST3
--REG EX VAR 2
REQUEST4(NOW VAR1 + VAR 2 ARE OK)
  
The regular expressions are inside each request. So I dont understand
why the conflict.  The should only affect that particular request.
  
  
   Yes, if they are added as children then they will only apply to the
   parent sampler.
  
I now they are different because all the other variables are ok. But
now I am even more confuse because I call 3 more reg_ex. Each one on a
different request. I they are all OK.  the only one missing is the
first one.
  
   Is it possible that something else is using the same variable name?
   For example a counter or User Parameter - all variables share the same
   namespace.
  
   You could try renaming the first variable to something completely 
 different.
  
I could send the jmx file
  
   If renaming the variable does not work, then feel free to email me the
   JMX privately (please don't send it to the list).
  
  
  
  
  
On Thu, Oct 9, 2008 at 1:29 PM, sebb [EMAIL PROTECTED] wrote:
 On 09/10/2008, Jose Castro [EMAIL PROTECTED] wrote:
 The scenario

  SOAP REQUEST
   -regular expression (new variable VAR1)
  SOAP REQUEST USING VAR1
  SOAP REQUEST USING VAR1
  HTTP REQUEST
   - regular expression( new variable VAR2)
  SOAP REQUEST USING VAR1 + VAR2.(PROBLEM VAR1 is NOW -1, VAR2 is ok)

  What could be happening???


 Try adding some Debug Samplers to the test.

 Are you sure the RE Extractor is only being applied to the appropriate 
 samplers?
 Remember that Post-Processors apply to all samplers in scope.

 Are you sure that you are using different names? Remember that the RE
 uses the name as a prefix.


  Thank you

  -
  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]


  
-
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]
  
  

  -
  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]



Facing problem with JMeter Distributed Testing

2008-10-09 Thread sujitkrnayak2006


I am trying to to do stress testing  through JMeter Distributed testing, i
have implemented all steps set-up for remote distibution on console pc as
well as remote pc with all configuration but when i am trying to start
remote pc thru JMeter on console(GUI JMeter) machine (Run-Remote
Start-remote pc IP Address) and run my test plan it does not work.

Before run above test plan, i have start JMeter Server on remote machine and
after run the test plan its displaying message as below on JMeter server
console on remote machine.

Found ApacheJMeter_core.jar
Starting the test on host 10.82.12.81 @ Thu Oct 09 16:20:18 EDT 2008
(1223583618
687)
Finished the test on host 10.82.12.81 @ Thu Oct 09 16:22:13 EDT 2008
(1223583733
153)


One more thing i have not found Jmeter.engine.RemoteJMeterEngineImpl:
Starting backing engine on JMeter GUI  logs file.

I think JMeter GUI machine and remote machine has not connected properly but
not sure.

(Note-After i start remote machine from JMeter GUI, stop Remote machine
option is disable)

I dont understand where i did the mistake, can anyone suggest me how to go
ahead.
-- 
View this message in context: 
http://www.nabble.com/Facing-problem-with--JMeter-Distributed-Testing-tp19907203p19907203.html
Sent from the JMeter - User mailing list archive at Nabble.com.


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