3

我有一个 WSDL,我从中在 NetBeans 中生成类。未更改的副本具有日期,这些日期生成为 XMLGregorianCalendar。我试图覆盖该行为并插入一个全局绑定标记,以便它生成一个 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>
4

1 回答 1

1

我认为您缺少<javaType>元素上的名称空间前缀 - 它需要位于 JAXB 名称空间中,而不是 XML Schema 或 WSDL 名称空间中。

于 2012-07-03T12:56:09.890 回答