0

私の質問は最初は奇妙に聞こえるかもしれませんが、確認する必要があります。

SoapUI に正常にインポートしてアプリケーションで使用できる次の wsdl をクライアントから受け取りました。しかし、wsdl ファイルを検証しようとすると、12 個のエラーがスローされます

<wsdl:types>
    <schema  targetNamespace="http://abc.com:9080/product/services/12WebService/types/"
        xmlns="http://www.w3.org/2001/XMLSchema">
        <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
        <element name="Message">
            <complexType>
                <sequence>
                     <any minOccurs="0"/>
                </sequence>
            </complexType>
        </element>
    </schema>
    <schema targetNamespace="http://abc.com:9080/nproduct/services/12WebService/types/"
        xmlns="http://www.w3.org/2001/XMLSchema">
        <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
        <element name="Response">
            <complexType>
                <sequence>
                     <any minOccurs="0"/>
                </sequence>
            </complexType>
        </element>
    </schema>
</wsdl:types>
<wsdl:message name="Message">
    <wsdl:part name="Message" element="types:Message"/>
</wsdl:message>
<wsdl:message name="Response">
    <wsdl:part name="Response" element="types:Response"/>
</wsdl:message>
<wsdl:portType name="12WebServiceImpl">
    <wsdl:operation name="process12">
        <wsdl:input message="tns:Message" name="Message"/>
        <wsdl:output message="tns:Response" name="Response"/>
        <wsdl:fault message="tns:Response" name="Response"/>
    </wsdl:operation>
</wsdl:portType>
<wsdl:binding name="12WebServiceSoapBinding" type="tns:12WebServiceImpl">
    <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="process12">
        <wsdlsoap:operation soapAction="http://abc.com:9080/product/services/12WebService/process12"/>
        <wsdl:input name="Message">
            <wsdlsoap:body namespace="http://abc.com:9080/product/services/12WebService" use="literal"/>
        </wsdl:input>
        <wsdl:output name="Response">
            <wsdlsoap:body namespace="http://abc.com:9080/product/services/12WebService" use="literal"/>
        </wsdl:output>
        <wsdl:fault name="Response">
            <wsdlsoap:body namespace="http://abc.com:9080/product/services/12WebService" use="literal"/>
        </wsdl:fault>
    </wsdl:operation>
</wsdl:binding>
<wsdl:service name="12WebService">
    <wsdl:port binding="tns:12WebServiceSoapBinding" name="12WebService">
        <wsdlsoap:address location="http://abc.com:9080/product/services/12WebService"/>
    </wsdl:port>
</wsdl:service>

したがって、wsdl有効である必要がありますか。クライアントに戻って修正しますか?

4

1 に答える 1