JAXB:无法解决 ObjectFactory class 错误中的冲突

JAXB: Can't work around collision in ObjectFactory class error

我有几个 SOAP 服务(在 .Net 中实现),我想为其生成 Java 存根。第一个服务没有问题,但第二个服务抛出了错误

WSDLToJava Error: 
http://localhost/AMS52/ServiceManagement.svc?xsd=xsd8 [0,0]: Two declarations cause a collision in the ObjectFactory class.
http://localhost/AMS52/ServiceManagement.svc?xsd=xsd11 [0,0]: (Related to above error) This is the other declaration.

由于对这些东西不太熟悉,我最终发现 wsdl 中的两个 imports 互相踩在脚趾上

<wsdl:types>
    <xsd:schema targetNamespace="http://tempuri.org/Imports">
        ...
        <xsd:import schemaLocation="http://localhost/AMS52/ServiceManagement.svc?xsd=xsd8" namespace="http://schemas.datacontract.org/2004/07/Company.Platform.Datatypes.Enums"/>
        ...
        <xsd:import schemaLocation="http://localhost/AMS52/ServiceManagement.svc?xsd=xsd11" namespace="http://schemas.datacontract.org/2004/07/Company.Platform.Datatypes.ServiceManagement"/>
        ...

第一次导入的 xsd 格式为

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           xmlns:tns="http://schemas.datacontract.org/2004/07/Company.Platform.Datatypes.Enums" 
           elementFormDefault="qualified"
           targetNamespace="http://schemas.datacontract.org/2004/07/Company.Platform.Datatypes.Enums">
    <xs:simpleType name="DeviceIdiom">
        <xs:restriction base="xs:string">
            <xs:enumeration value="Auto"/>
            <xs:enumeration value="Phone"/>
            <xs:enumeration value="Tablet"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:element name="DeviceIdiom" nillable="true" type="tns:DeviceIdiom"/>
    <xs:simpleType name="ServiceManagementSORType">
    ...

更多阅读,我发现我必须做这样的事情

How to resolve collision in the ObjectFactory on wsdl2java?

所以我的方法是尝试在每个简单类型的末尾加上一个后缀(它们都是简单类型)。

所以我当前的命令行是

./wsdl2java.bat -impl -server -verbose -autoNameResolution -b bindings.xml ServiceManagement.wsdl

我的绑定文件是

<jaxb:bindings    
    xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    jaxb:version="2.1"> 

    <jaxb:bindings schemalocation="http://localhost/AMS52/ServiceManagement.svc?xsd=xsd8" node="/xs:schema">
         <jaxb:bindings node="//xs:simpleType">
            <jaxb:nameXmlTransform>
                <jaxb:typeName suffix="Enums" />
            </jaxb:nameXmlTransform>
        </jaxb:bindings>
    </jaxb:bindings>        
</jaxb:bindings>

但是现在我卡在了这个错误上

XPath evaluation of "//xs:schema" results in empty target node

我不知道如何克服这个错误。我开始认为它与它是一个 .Net 服务这一事实有关,我必须像这样引用 xsd

http://localhost/AMS52/ServiceManagement.svc?xsd=xsd8

非常感谢任何帮助。

终于想通了,我换了

<jaxb:bindings schemalocation="http://localhost/AMS52/ServiceManagement.svc?xsd=xsd8" node="/xs:schema">

<jaxb:bindings schemaLocation="http://localhost/AMS52/ServiceManagement.svc?xsd=xsd8" node="/xs:schema">

不是很容易看出来,但请注意 schemaLocation 中的大写 L - 哎哟!

通过将 'Company.Platform.Datatypes.Enums' 的架构映射到具有绑定文件

的不同包,最终解决了整个问题
<jaxb:bindings    
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
jaxb:version="2.1"> 

<jaxb:bindings schemaLocation="http://localhost/AMS52/ServiceManagement.svc?xsd=xsd8">
    <jaxb:schemaBindings>
      <jaxb:package name="org.tempuri.enums"/>
    </jaxb:schemaBindings>      
</jaxb:bindings>