Я использую WSDL для генерации классов Java для доступа к Zuora SOAP API.
К сожалению, этот WSDL имеет конфликты: плагин Maven CXF выдает ошибку с сообщением «Два объявления вызывают конфликт в классе ObjectFactory».
Столкновение между Invoice.PaymentAmount и Payment.Amount
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:zns="http://api.zuora.com/"
xmlns:ons="http://object.api.zuora.com/"
xmlns:fns="http://fault.api.zuora.com/"
targetNamespace="http://api.zuora.com/">
<types>
<schema attributeFormDefault="qualified" elementFormDefault="qualified" xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://object.api.zuora.com/">
<import namespace="http://api.zuora.com/" />
<complexType name="zObject">
<sequence>
<element minOccurs="0" maxOccurs="unbounded" name="fieldsToNull" nillable="true" type="string" />
<element minOccurs="0" maxOccurs="1" name="Id" nillable="true" type="zns:ID" />
</sequence>
</complexType>
<complexType name="Invoice" >
<complexContent>
<extension base="ons:zObject">
<sequence>
<element minOccurs="0" name="AccountId" nillable="true" type="zns:ID" />
<element minOccurs="0" name="AdjustmentAmount" nillable="true" type="decimal" />
<element minOccurs="0" name="PaymentAmount" nillable="true" type="decimal" />
<!--more elements-->
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="Payment" >
<complexContent>
<extension base="ons:zObject">
<sequence>
<element minOccurs="0" name="AccountId" nillable="true" type="zns:ID" />
<element minOccurs="0" name="AccountingCode" nillable="true" type="string" />
<element minOccurs="0" name="Amount" nillable="true" type="decimal" />
<!--more elements-->
</sequence>
</extension>
</complexContent>
</complexType>
<!--more types-->
Хитрость заключается в том, что файл внешнего связывания, как предлагается в этом посте
https://community.zuora.com/t5/API/quot-Two-declarations-cause-a-collision-in-the-ObjectFactory/td-p/11265
Но нет примера кода; и я не могу понять, как написать такой файл привязки.
Я пробовал:
<jaxb:bindings xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
version="1.0">
<jaxb:bindings schemaLocation="zuora.a.77.0.wsdl">
<jaxb:bindings node="//xs:element[@name='PaymentAmount']/xs:complexType">
<jaxb:factoryMethod name="PaymentAmout2"/>
</jaxb:bindings>
</jaxb:bindings>
</jaxb:bindings>
Но, похоже, это слишком упрощенно и выдает
"file:/home/kemkem/Work/repo/asap/tooling-zuora/src/main/resources
/wsdl/zuora.a.77.0.wsdl" is not a part of this compilation.
Is this a mistake for "file:/home/kemkem/Work/repo/asap/tooling-zuora/
src/main/resources/wsdl/zuora.a.77.0.wsdl#types1"
У кого-нибудь есть лучший подход к этому?