3

NetBeans でクラスを生成する WSDL があります。変更されていないコピーには日付があり、それらの日付は XMLGregorianCalendar として生成されます。その動作をオーバーライドしてglobalbindingタグを挿入して、代わりにJava Dateを生成しようとしています。しかし、バインディングタグ(下図)をどこに置いても無視され、日付型として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>.XMLスキーマまたはWSDL名前空間ではなく、JAXB名前空間にある必要があります。

于 2012-07-03T12:56:09.890 に答える