hello,

i've a webservice called ws1.
i've successfully defined a proxy p1 for ws1 in a synapse server called s1

now i want to use a second synapse server s2 that will expose a new proxy p2 wich will pass all request to p1 on s1.

we want to have :

client -> s2/p2 -> s1/p1 -> ws1

but when i try to do this, i get the following error :

<?xml version='1.0' encoding='utf-8'?>

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/";>

   <soapenv:Body>

       <soapenv:Fault>

           <faultcode>411</faultcode>

           <faultstring>Length Required</faultstring>

           <detail>Unexpected response received : 
com.ctc.wstx.exc.WstxUnexpectedCharException:

               Unexpected character '"' (code 34) in DOCTYPE declaration; 
expected a space between

               public and system identifiers at [row,col {unknown-source}]: 
[1,50]</detail>

       </soapenv:Fault>

   </soapenv:Body>

</soapenv:Envelope>


if i do a direct call from s2/p2 to ws1 it works (client -> s2/p2 -> ws1)

any idea?

best regards

Reply via email to