Hello,
I want to create a proxy for this target:
And my proxy seems to be ok, according the shown XML:
But, when I test with SOAP-UI, it is not working. Get NoHttpResponseException
I compared the returned endpoint XML of my proxy with the one of the target, and they look mostly the same. One thing I can see is that the returned XML of the proxy is starting with this:
<?xml version="1.0"?>
While the original target is starting with this:
<?xml version='1.0' encoding='UTF-8'?>
Could this be the issue?
Thanks for your help!
Gunter
My router config in proxies.xml:
</soapProxy>
<ssl>
<truststore location="../../conf/rui.jks" password="
oneliner.be" />
</ssl>
</soapProxy>
This is the sample envelope:
<soapenv:Header/>
<soapenv:Body>
<pm:getXTMInfo>
<loginAPI>
<client>testClient</client>
<password>testPassword</password>
<userId>99</userId>
</loginAPI>
<options/>
</pm:getXTMInfo>
</soapenv:Body>
</soapenv:Envelope>
This should return:
<soap:Body>
<soap:Fault>
<faultcode>soap:Server</faultcode>
<faultstring>Invalid username or password</faultstring>
<detail>
</detail>
</soap:Fault>
</soap:Body>
</soap:Envelope>