This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Web Services and the fly likes Anything wrong with the SOAP return? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Web Services
Reply Bookmark "Anything wrong with the SOAP return?" Watch "Anything wrong with the SOAP return?" New topic
Author

Anything wrong with the SOAP return?

Kerry Licari
Greenhorn

Joined: Feb 12, 2005
Posts: 1
Hi,

The following is a web services return that intercepted by tcpmon.

web services is on axis 1.1
client: .net
style: document/literal

message:
--------------------------------------------------------------------
HTTP/1.1 100 Continue



HTTP/1.1 200 OK

Content-Type: text/xml;charset=utf-8

Transfer-Encoding: chunked

Date: Sat, 12 Feb 2005 16:00:58 GMT

Server: Apache-Coyote/1.1



13e

<?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>
<stringTestReturn xmlns="">Axis</stringTestReturn>
</soapenv:Body>
</soapenv:Envelope>

0

---------------------------------------------------------------------------


Could somebody tell me what are '13e' and '0' in the above message? The .net client didn't receive the return value from axis. Could that be caused by these two - the '13e' and '0'? (probably .net gets confused to deserialize the return response). How can I get rid of it?

Many thanks.
Lilly Wiesie
Greenhorn

Joined: Jan 20, 2005
Posts: 26
The "13e" and "0" are for chunk encoding. It won't cause problems on .net side.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Anything wrong with the SOAP return?
 
Similar Threads
Axis message style "SAAJ" ????
Axis error
namespace problem in request soap message
No response on server-side
WS-I monitor?