Forum Discussion

thedivxboy's avatar
thedivxboy
Occasional Contributor
16 years ago

HTML entities transformed between two steps

Hi,

I have two steps:
  - Step 1: a simple HTTP request step with a return response in XML format like this:

<tag attr="valueAttrb">value</tag>


  - Step 2: a SOAP Request step with this as request value:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
  <soapenv:Header>
      some header
  </soapenv:Header>
  <soapenv:Body>
${Step 1#Response}
  </soapenv:Body>
</soapenv:Envelope>


The problem is that with this property transfert, quotes (the character ") are transformed into "

So the result will be:

<tag attr="valueAttrb">value</tag>


But I cannot accept this transformation of the content.
Is there a way to get the initial response ?

Kind regards,
Arnaud.

2 Replies

  • omatzura's avatar
    omatzura
    Super Contributor
    Hi!

    hmm... is the "Entitize Properties" option set to false for the SOAP Request (in the bottom left properties table)?

    regards,

    /Ole
    eviware.com
  • thedivxboy's avatar
    thedivxboy
    Occasional Contributor
    I've installed the latest build and it seems to work.

    Thanks