基本上,我使用 JAXWS 制作了一个 Web 服务。它使用 SOAP 并且可以工作。但是,在某些请求中,某些客户端崩溃/错误,这似乎与 JAXWS Web 服务不发送内容长度标头的事实有关。有没有办法添加它?
使用:openjdk-6 (6b20)
我的课看起来像这样:
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;
import javax.xml.ws.Endpoint;
@WebService
public class SOAP {
public static void main(String[] args) {
try {
SOAP server = new SOAP();
Endpoint endpoint = Endpoint.publish('localhost:1234', server);
} catch (Exception e) {
Utils.getLog("SOAP").fatal("General Error", e);
}
}
}
使用 tcpdump 确认响应中没有内容长度:
0x0000: 4500 00b0 4da5 4000 4006 20d5 5cf3 1021 E...M.@.@...\..!
0x0010: 5cf3 01c7 13b2 bcea a9be 716e 14c3 16a1 \.........qn....
0x0020: 8018 006c cc70 0000 0101 080a 2e1b 3ccc ...l.p........<.
0x0030: 2e18 23a2 4854 5450 2f31 2e31 2032 3030 ..#.HTTP/1.1.200
0x0040: 204f 4b0d 0a54 7261 6e73 6665 722d 656e .OK..Transfer-en
0x0050: 636f 6469 6e67 3a20 6368 756e 6b65 640d coding:.chunked.
0x0060: 0a43 6f6e 7465 6e74 2d74 7970 653a 2074 .Content-type:.t
0x0070: 6578 742f 786d 6c3b 6368 6172 7365 743d ext/xml;charset=
0x0080: 2275 7466 2d38 220d 0a44 6174 653a 2053 "utf-8"..Date:.S
0x0090: 6174 2c20 3137 2053 6570 2032 3031 3120 at,.17.Sep.2011.
0x00a0: 3134 3a31 393a 3337 2047 4d54 0d0a 0d0a 14:19:37.GMT....
所以我的问题是,有没有办法告诉网络服务将内容长度与回复一起发送?或者在发送回复之前附加它的方法?