cxf webservice抛异常 Unmarshalling Error: 意外的元素 (uri:"http:", local:"say")所需元素为<{}say>

网上说是注释问题。小白不太懂,第一次写。请各大网友帮助。
2024-12-20 16:58:50
推荐回答(3个)
回答1:

原因:

可能是声明的接口类和请求的接口类不一致了。这个错误提示明确的指出错误发生在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包以解决。

回答2:

你的调用方法传参的时候不要加命名空间,也就是hui.cxf.www这个东西试试

回答3:

可能是路径写错了