我有一个WSDL,我在NetBeans中生成类。未更改的副本具有日期,并且这些日期生成为XMLGregorianCalendar。我试图覆盖该行为并插入一个globalbinding标记,以便它生成一个Java日期。但是,无论我在哪里放置绑定标记(如下所示),都会被忽略,并且XMLGregorianCalendar用作日期类型。
有人可以告诉我,如果我在正确的轨道上,以及放置覆盖的位置?下面是WSDL的整体布局。
<annotation>
<appinfo>
<jaxb:globalBindings>
<javaType name="java.util.Date" xmlType="xs:date"
parseMethod="javax.xml.bind.DatatypeConverter.parseDate"
printMethod="javax.xml.bind.DatatypeConverter.printDate"
</jaxb:globalBindings>
</appinfo>
</annotation>
经过编辑的WSDL,显示了我认为的相关部分:
<types>
<s:schema xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:sap="http://xyz/sap" elementFormDefault="qualified" targetNamespace="http://xyz/sap">
<s:element name="createOrder">
<s:complexType>
<s:sequence>
<s:element ref="sap:sap-order-request" />
</s:sequence>
</s:complexType>
</s:element>
</s:schema>
<xs:schema xmlns:sap="http://xyz/sap" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://xyz/sap" elementFormDefault="unqualified">
<xs:element name="sap-order-request">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="publication-date" type="xs:date" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</types>
<binding name="SapSalesOrderSoap" type="s0:SapSalesOrderSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
<operation name="createOrder">
<soap:operation soapAction="http://xyz/sap/createOrder" style="document"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
答案 0 :(得分:1)
我认为你错过了<javaType>
元素上的名称空间前缀 - 它需要位于JAXB名称空间中,而不是XML Schema或WSDL名称空间。