I defined a variable with
* def token = '1bce02b8..'
I would like to retrieve the variable I defined so I can pass this to my SOAP request. How can I make this possible?
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.com">
<soapenv:Header/>
<soapenv:Body>
<ws:isValid>
<token>$token</token>
</ws:isValid>
</soapenv:Body>
</soapenv:Envelope>