Unfortunately SOAPUI 5.2.1 removes in SOAP requests. Does anybody has a solution.
I'm requesting a Webservice via SOAPUI and I need to transfer <hyp1:sFieldValue>Jahr 2000</hyp1:sFieldValue>
Unfortunately SOAPUI 5.2.1 removes in the SOAP request. The snippet is part of a request, which is embedded in a Testcase with different Teststeps (SOAP-Requests). The encoding of the request is: <?xml version="1.0" erncoding "UTF-8"?>
Does anybody have a solution for this unwanted behavior removing in the request? I have to transmitt
(B.t.w. : Fiddler is working properly and does not clean , but Fiddler does not support Testcases)
Any help appreciated.
Thank you
TW
- Can you try it enclosing in 'cdata' as shown below?
<hyp1:sFieldValue><![CDATA[Jahr 2000]]></hyp1:sFieldValue> Is there a confusion? There is a difference between what is suggested and tried or it must be a typo.
Below is the one that is suggested
<hyp1:sFieldValue><![CDATA[Jahr 2012]]></hyp1:sF
ieldValue> But you mentioned that you have tried
<hyp1:sFieldValue>![CDATA[Jahr 2012]]</hyp1:sF
ieldValue>