-3

//path/a/wsdl ファイルがあり、webservices クライアント プログラムを生成しようとしていますが、ファイルを追加すると、以下のエラーが表示されます

サンプル wsdl : wsdl:definitions targetNamespace="http://xyz.com/" xmlns:tns="http://xyz.com/" xmlns:cmn="http://xyz.com/Common/" xmlns: wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/ wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:xmime="http://www.w3.org/2005/05/xmlmime">

        <s:element name="GetPublisherRevenueCSV">
            <s:complexType>
                <s:sequence>
                    <s:element minOccurs="1" maxOccurs="1" name="name" type="s:string" />
                    <s:element minOccurs="1" maxOccurs="1" name="pwd" type="s:string" />
                    <s:element minOccurs="1" maxOccurs="1" name="operatorId" type="s:int" />
                    <s:element minOccurs="1" maxOccurs="1" name="criteria" type="tns:PublisherRevenueCriteria" />
                </s:sequence>
            </s:complexType>
        </s:element>

        <s:element name="GetPublisherRevenueCSVResponse">
            <s:complexType>
                <s:sequence>
                    <s:element minOccurs="0" name="CSVFile" type="tns:CSVFile" />
                </s:sequence>
            </s:complexType>
        </s:element>

        <s:complexType name="CSVFile">
            <s:sequence>
                <s:element minOccurs="0" maxOccurs="1" name="File" type="s:hexBinary"
                    xmime:expectedContentTypes="text/plain" />
            </s:sequence>
        </s:complexType>


        <s:complexType name="PublisherRevenueCriteria">
            <s:sequence>
                <s:element minOccurs="0" maxOccurs="1" name="publisherId" type="s:int" />
                <s:element minOccurs="0" maxOccurs="1" name="adSpaceId" type="s:int" />
                <s:element minOccurs="1" maxOccurs="1" name="startDate" type="s:date" />
                <s:element minOccurs="1" maxOccurs="1" name="endDate" type="s:date" />                  
            </s:sequence>
        </s:complexType>


    </s:schema>
</wsdl:types>

<wsdl:message name="GetPublisherRevenueCSVSoapIn">
    <wsdl:part name="parameters" element="tns:GetPublisherRevenueCSV" />
</wsdl:message>

<wsdl:message name="GetPublisherRevenueCSVSoapOut">
    <wsdl:part name="parameters" element="tns:GetPublisherRevenueCSVResponse" />
</wsdl:message>

    <wsdl:operation name="GetPublisherRevenueCSV">
        <wsdl:input message="tns:GetPublisherRevenueCSVSoapIn" />
        <wsdl:output message="tns:GetPublisherRevenueCSVSoapOut" />
        <wsdl:fault name="CMS_API_Exception" message="cmn:CMS_API_Exception" />
    </wsdl:operation>

</wsdl:portType>

<wsdl:binding name="PublisherRevenueWSSoap" type="tns:PublisherRevenueWSSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />

    <wsdl:operation name="GetPublisherRevenueCSV">
        <soap:operation soapAction="http://xyz.com/GetPublisherRevenueCSV"
            style="document" />
        <wsdl:input>
            <soap:body use="literal" />
        </wsdl:input>
        <wsdl:output>
            <soap:body use="literal" />
        </wsdl:output>
        <wsdl:fault name="CMS_API_Exception">
            <soap:fault name="CMS_API_Exception" use="literal" />
        </wsdl:fault>
    </wsdl:operation>

エラー: IWAB0399E WSDL から Java を生成中にエラーが発生しました: java.io.IOException: エラー: 操作 "CMS_API_Exception" に要素 inFault "CMS_API_Exception" がありません。バインディング GetPublisherRevenueCSV java.io.IOException: エラー: 操作 "CMS_API_Exception" に要素 inFault "CMS_API_Exception" がありませんorg.apache.axis.wsdl.symbolTable.SymbolTable.faultsFromSOAPFault(SymbolTable.java:2858) でのバインド GetPublisherRevenueCSV org.apache.axis.wsdl.symbolTable.SymbolTable.populateBindings(SymbolTable.java:2549) でorg.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:744) org.apache.axis.wsdl.symbolTable.SymbolTable.add(SymbolTable.java:543) org.apache.axis.wsdl.symbolTable.SymbolTable org.apache.axis の .populate(SymbolTable.java:518)。java.lang.Thread.run(Thread.java: 722)

4

1 に答える 1