CXF有多种数据绑定方式,如:Aegis Databinding,JAXB,MTOM Attachments . 其中JAXB(JavaTM Architecture for XML Binding)是其默认的数据绑定方式。
JAXB是一套自动映射XML和Java实例的开发接口和工具。
JAXB不能将一些 Java 类型自然映射到 XML 表示形式,例如,HashMap 或其他非 JavaBean 类。如参数类型为接口,以及Map ,这需要特殊的XmlAdapter类进行处理.
?
《http://lxj8495138.iteye.com/blog/355310》
《http://reymont.iteye.com/blog/1511176》
?
public static void main(String[] args) { JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance(); Client client = dcf.createClient("http://XXXXXX/njws/lis.dll/wsdl/ILis"); String responseMessage = null; try{ Object[] objects=client.invoke("Login", new Object[]{"06.05.0097","06050097","",""}); responseMessage = objects[0].toString(); }catch (Exception e) { } }
?
使用时如果遇到cxf java.lang.reflect.UndeclaredThrowableException:
?
检查自己jaxb相关包如附件
?
?
?