On 7 September 2010 13:18, SanderW <[email protected]> wrote:
>
> Hi,
>
> It was a while ago since the last response.
> I just ran into the same issue where I excluded javascript-files (with
> .*\.js), but still saw some js-files being recorded.
>
> It seems to be related if the Path starts with '/_', because I noticed the
> following behaviour:
>
> /Pages/seach.js   --> Not recorded, hence correctly excluded
> /Pages/_layouts/seach.js --> Not recorded, hence correctly excluded
> /_layouts/seach.js --> Still being recorded.
>
> After I added .*\_.* to URL Patters to exclude the javascript-files were not
> recorded anymore.

There must be some other cause for this.

.*\.js

will match

/_layouts/seach.js

as can be seen by using the ORO demo application at

http://jakarta.apache.org/oro/demo.html

The additional pattern .*\_.* (which can equally well be written as
.*_.*) will match any string with an underscore in it.

>
>
>
>
>
> --
> View this message in context: 
> http://jmeter.512774.n5.nabble.com/Proxy-exclude-pattern-doesn-t-work-tp530175p2805989.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]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to