简单的WSDL,获取ConnectException

时间:2011-07-27 16:20:47

标签: eclipse wsdl soa

我真的需要帮助解决最简单的WSDL问题。

我得到了以下WSDL,它基本上只是生成的代码:

<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="MyFirstWSDL"
    targetNamespace="http://www.example.org/MyFirstWSDL/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://www.example.org/MyFirstWSDL/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
<wsdl:types>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        targetNamespace="http://www.example.org/MyFirstWSDL/">
        <xsd:element name="getName">
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element name="in" type="xsd:string"></xsd:element>
                </xsd:sequence>
            </xsd:complexType>
        </xsd:element>
        <xsd:element name="getNameResponse">
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element name="out" type="xsd:string"></xsd:element>
                </xsd:sequence>
            </xsd:complexType>
        </xsd:element>
    </xsd:schema>
</wsdl:types>

<wsdl:message name="getNameRequest">
    <wsdl:part name="parameters" element="tns:getName"></wsdl:part>
</wsdl:message>

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

<wsdl:portType name="MyFirstInterface">
    <wsdl:operation name="getName">
        <wsdl:input message="tns:getNameRequest"></wsdl:input>
        <wsdl:output message="tns:getNameResponse"></wsdl:output>
    </wsdl:operation>
</wsdl:portType>

<wsdl:binding name="NewBinding" type="tns:MyFirstInterface">
    <soap:binding style="document"
        transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="getName">
        <soap:operation
            soapAction="http://www.example.org/MyFirstWSDL/getName" />
        <wsdl:input>
            <soap:body use="literal" />
        </wsdl:input>
        <wsdl:output>
            <soap:body use="literal" />
        </wsdl:output>
    </wsdl:operation>
</wsdl:binding>
<wsdl:service name="MyFirstService">
    <wsdl:port name="MyFirstPort" binding="tns:NewBinding">
        <soap:address location="http://localhost:8197/MyFirstService/" />
    </wsdl:port>
</wsdl:service>

现在,在生成提供程序并使用“Web Services Explorer”测试服务时,我一直遇到以下异常:

IWAB0135E An unexpected error has occurred.
java.net.ConnectException
Connection refused: connect

那么,你有解决这个问题的线索或建议吗?

提前,马特

1 个答案:

答案 0 :(得分:1)

可能是因为http://localhost:8197/MyFirstService/没有回复你所说的地方。

您可以尝试通过telnet在那里检查或只是将地址放在浏览器窗口中。

虽然它是localhost,但您应该知道是否启动了服务器,即是否接受Web服务客户端。