cxf webservice抛异常的原因?

2024-12-20 22:46:12
推荐回答(1个)
回答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包以解决。