Re: Spoofing a Current Flash Plugin in JMeter

2008-03-07 Thread MrMax
y NEW question is: How do you add in a Flash Plugin to JMeter, or is there a Flash Plugin for JMeter? sebb-2-2 wrote: > > On 07/03/2008, MrMax <[EMAIL PROTECTED]> wrote: >> >> Our current tests require that we trigger a flash application that posts >> a >> d

Spoofing a Current Flash Plugin in JMeter

2008-03-07 Thread MrMax
Our current tests require that we trigger a flash application that posts a default set of results to the server. Our problem is that our application checks the client browser to see that it has the proper version of the flash plugin before proceeding to generate the results. Q. How do I get JMe

Re: Regular expression

2007-12-17 Thread MrMax
So, (https*):\/\/([^"]) would pick up the protocall and the domain and path and the : doesn't need to be escaped because it is not a special character? sebb-2-2 wrote: > > On 14/12/2007, MrMax <[EMAIL PROTECTED]> wrote: >> >> I have used ([htps]+)\:\/\/[^&qu

Re: Regular expression

2007-12-14 Thread MrMax
I have used ([htps]+)\:\/\/[^"]+ successfully, provided you have a quote at the end of the url I needed to escape the colon and the slashes. Cheers, Max aurel' wrote: > > Hi, > > I want to extract the protocol name of a URL with a regular expression : > ex : https://www.test.com => https >