DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22511>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22511

Link parser problem when using https and no protocol specified at the sampler level

           Summary: Link parser problem when using https and no protocol
                    specified at the sampler level
           Product: JMeter
           Version: 1.9.RC3
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: HTTP
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


The structure of the test is: 

- HTTP Request Defaults: specifying Protocol (https), server name (myServer) 
and port number (443) 
- 1st HTTP sampler: response text received contains
...<A HREF="https://myServer/myPath?myParam=myValue...";>...
- 2nd HTTP sampler: its purpose is to simulate a click on the above link , 
including the dynamic value of myParam from the first response, parsed by the 
HTML Link Parser (just below) and using the ".*" expression to retrieve the 
value in the 2nd sampler
      - 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 is 
expected:
https://myServer:443/myPath?myParam=.* 

now if I specify "https" as Protocol for the 2nd HTTP Sampler the request 
JMeter generates is correct: 
https://myServer:443/myPath?myParam=myValue 

Should be a hard coded "http://..."; somewhere in the link parser if no Protocol 
specified at the sampler level, no?

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to