TuTu icon indicating copy to clipboard operation
TuTu copied to clipboard

Take care of comments in matched xml

Open defrag opened this issue 10 years ago • 0 comments

Currently while sending and matching for example soap request, the comments from request prevent TuTu from matching the request. Example:

This request:

<soap:Body>
      <test:listStuff>
         <test:rq>
            <!--Required:-->
            <test:environment>prod</test:environment>            
         </test:rq>
      </test:listStuff>
</soap:Body>

Will not match this TuTu configuration:

<soap:Body>
      <test:listStuff>
         <test:rq>
            <test:environment>@string@</test:environment>            
         </test:rq>
      </test:listStuff>
</soap:Body>

defrag avatar Feb 19 '15 19:02 defrag