cxf webservice抛异常 Unmarshalling Error: 意外的元素 (uri:"http:", local:"say")所需元素为<{}say> 10
3个回答
展开全部
原因:
可能是声明的接口类和请求的接口类不一致了。这个错误提示明确的指出错误发生在Client.java的80行。
解决方法:
使用eclipse生成web service客户端,new->other->web service client
iimport cn.com.WebXml.EnglishChineseSoapProxy;
public class TestCilent {
public static void main(String[] args) throws Exception {
EnglishChineseSoapProxy ecsp=new EnglishChineseSoapProxy();
String[] ret=ecsp.translatorReferString("we");
for(String str:ret){
System.out.println(str);
}
}
}
可执行
Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled.
在lib中加入上面两个类的jar包以解决。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询