生成Web服务客户端时Apache发生意外的子元素异常

时间:2012-04-11 20:24:59

标签: java web-services exception axis2

我正在尝试使用来自axis2(版本1.6.1)的wsdl2java生成一个Web服务客户端。

./wsdl2java.sh -uri http://www.ncbi.nlm.nih.gov/entrez/eutils/soap/v2.0/efetch_snp.wsdl

当我打电话给这项服务时,我得到一个例外。

org.apache.axis2.AxisFault: org.apache.axis2.databinding.ADBException: Unexpected subelement {http://www.ncbi.nlm.nih.gov/soap/eutils/efetch_snp}Rs

    try {
        EFetchSnpServiceStub fetchService = new EFetchSnpServiceStub();
        EFetchSnpServiceStub.EFetchRequest reqIdSnp = new EFetchSnpServiceStub.EFetchRequest();
        reqIdSnp.setId("193925233");
        EFetchSnpServiceStub.EFetchResult resIdSnp = fetchService.run_eFetch(reqIdSnp);
    } catch (Exception e) {
        System.out.println(e.toString());
    }   

但是soaptest我可以在结果中看到Rs标记。

<Rs rsId="193925233" snpClass="snp" snpType="notwithdrawn" molType="genomic" bitField="050000000005000000000100" taxId="3702">

如何修复此异常? WSDL不受我的控制。

2 个答案:

答案 0 :(得分:11)

意外的子元素错误主要发生在ADB数据绑定类型的Axis2中。当SOAP响应中的标记序列与由wsdl形成的java类中的属性序列不同时。

例如,

  

如果响应或请求XML必须在序列中包含a,b,c元素   实际的XML在序列中有a,d,c元素,然后是Axis2   抱怨说它收到了一个名为d的意外元素。

可以通过更改wsdl中的标记序列来解决。

注意:If this is not the case, check here for other reasons

答案 1 :(得分:1)

我刚刚遇到了与NCBI eutils相同的问题,并通过编辑wsdl文件然后在本地重新生成客户端类来解决它。我像你一样使用soaptest来确切地看到它的期望,然后让它们匹配。在我的例子中,他们在DbInfoType对象中缺少名为“DbBuild”的元素。