On 10/25/2010 02:41 PM, Michele Mase' wrote: > I'm recording a load test; i want to record "only" all the .do parts of the > full url, withj and without the quey string > for example, i need to record: > http://www.example.com:8080/myapp/initialize.do?tcpscreening=Cl > but also this one > http://www.example.com:8080/myapp/login2.do > > According to the docs, my url partterns to include should be like this: > ".*\.do(\?.*)?" > But it doesn't work. > > This one works only for the second example > ".*\.do"
Strange. Your expression seems to be accurate for the task at hand. http://jakarta.apache.org/oro/demo.html agrees that it should work. Are we looking at a Jmeter Bug? > Any better solution/suggestion? Maybe like: .*\.do|.*\.do\?.* Cheers, Felix --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

