Hi all,
Calling a JAVA web service using its own type port I obtain the next response:
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: text/xml;charset=utf-8
Transfer-Encoding: chunked
Date: Mon, 06 Oct 2008 14:35:58 GMT
2de
<?xml version=”1.0″ encoding=”UTF-8″?>
<soapenv:Envelope xmlns:soapenv=”http://schemas.xmlsoap.org/soap/envelope/” xmlns:xsd=”http://www.w3.org/2001/XMLSchema” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance“>
<soapenv:Body>
<processResponse xmlns=”http://helenaws“>
<processReturn>businessinfo<processReturn>
</processResponse>
</soapenv:Body>
</soapenv:Envelope>
0
Due to this chunked appear the HEX chars “2de” and I can’t read the XML correctly and only obtain exceptions. Can someone please help? I’m thinking in delete it using a Pipeline component but I think that a easier solution must exit!
Thanks a lot