Hi, I am fighting to get a HTML Link Parser working for my test. The structure of my test is:
- HTTP Request Defaults: specifying Protocol (https), server name (myServer) and port number (443) - 1st HTTP sampler: response (redirect page in fact) contains a <A HREF="https://myServer/myPath?myParam=myValue..."> - 2nd HTTP sampler: should simulate a click on the above link , including the dynamic value of myParam, parsed by the HTML Link Parser (just below) with the ".*" expression - HTML Link Parser Problem is: if I do not specify any Protocol in the 2nd HTTP Sampler (relying on the HTTP Request Defaults at the top level) the generated request is not what I expected: https://myServer:443/myPath?myParam=.* if I do specify (again) "https" as Protocol for the 2nd HTTP Sampler the request becomes correct: https://myServer:443/myPath?myParam=myValue I have to play the script with both HTTP and HTTPS and I created the HTTP Request Defaults for that purpose, as I have a great number of requests it is quite a job each time to manually change the protocol to be used in each request... Am I doing smthng wrong ? Thanks, Laurent --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

