description:
No Deserializer found to deserialize a 'xxx' using encoding style 'yyy'
reason:
the requesting envelope-xml doesn't match the wsdl definition. you can monitor the request-envelope-xml with TCP/IP Monitor (Eclipse plugin) and check against the wsdl definition, especially the "xmlns:xx" and "xsi:type" part.
SOAP Client
1. Apache SOAP
2. Apache Axis (based on #1, found memory issue actually (https://issues.apache.org/jira/browse/AXIS-2749), not recommended)
3. Apache Axis2 (based on #2)
4. CXF
5. Weblogic clientgen
TIP: All the client technologies mentioned above can generate the client artifact via wsdl file. But you can just post the xml document to the SOAP server and you can also get the response(xml), find an example here: http://www.java-tips.org/other-api-tips/httpclient/how-to-send-an-xml-document-to-a-remote-web-server-using-http-5.html
Reference:
实例讲解:JAVA SOAP技术: http://imain.iteye.com/blog/263494
Apache SOAP type mapping, Part 1: Exploring Apache's serialization APIs:http://www.ibm.com/developerworks/webservices/library/ws-soapmap1/
本文探讨了在遇到特定SOAP反序列化问题时的选择与解决方案。文中提到了使用TCP/IP Monitor进行请求包检查的方法,并列举了几种常用的SOAP客户端技术,包括Apache SOAP、Apache Axis、Apache Axis2、CXF及WebLogic客户端生成器。此外,还提供了直接发送XML文档到SOAP服务器获取响应的例子。
5263

被折叠的 条评论
为什么被折叠?



