Forum Discussion
We also see a similar problem for our webservice using ReadyAPI 1.3.0. This issue is causing our tests to fail.
We have the following defined within one of our interfaces /WSDL's which can be loaded and saved in to our project:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.services.att.abc/">
<soapenv:Header/>
<soapenv:Body>
<key>
<eventRef>123456</eventRef>
<destination>customer</destination>
</key>
</soapenv:Body>
</soapenv:Envelope>
However after closing and opening ReadyAPI we have noticed that the below is added by ReadyAPI automatically which invalidates our request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.services.att.abc/">
<soapenv:Header/>
<soapenv:Body>
<key>
<eventRef>123456</eventRef>
<destination>customer</destination>
</key>
<stat:invoke xmlns:stat="http://status.services.att.abc/"/></soapenv:Body>
</soapenv:Envelope>
So....
readyAPI is adding this to the message
<stat:invoke xmlns:stat="http://status.services.att.abc/"/>
How can we stop this from happening please?
I've also raised a support request as this is a severe one for us.