On 27/09/2007, Modha Khammammettu <[EMAIL PROTECTED]> wrote: > Hi All > > I am recording using Jmeter Proxy. (Using IE6) > > I have added exclude patterns like > .*/.gif > .*/.jpg
I assume you mean .*\.gif > This is excluding .gif and .jpg from recording, however I find > /xx/resources/ being recorded. > > Now if I add .*/resources/ in the exclude pattern, I see that I no > longer get /xx/resources/ recorded but I get the following recorded > > /xx/resources/images/one.jpg > /xx/resources/css/yy.css Because the RE does not match the whole path. > What I want is neither .gif, .jpg nor /xx/resources/ to be recorded. > > Please let me know how I can do this. Specify an RE that matches the whole path, e.g. add .* to the end. > Thanks > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

