2

私はこのサンプルコードを持っています:

    private static final String endpoint = "https://www.***.**:443/WSEndUser?wsdl";

    public static void main(String[] args) throws SOAPException {
        SOAPMessage message = MessageFactory.newInstance().createMessage();
        SOAPHeader header = message.getSOAPHeader();
        header.detachNode();
/*
        SOAPEnvelope envelope = message.getSOAPPart().getEnvelope();
        envelope.setAttribute("namespace","namespaceUrl");
*/
        SOAPBody body = message.getSOAPBody();
        QName bodyName = new QName("getVServers");
        SOAPBodyElement bodyElement = body.addBodyElement(bodyName);
        SOAPElement symbol = bodyElement.addChildElement("loginName");
        symbol.addTextNode("my login name");
        symbol = bodyElement.addChildElement("password");
        symbol.addTextNode("my password");

        SOAPConnection connection = SOAPConnectionFactory.newInstance().createConnection();
        SOAPMessage response = connection.call(message, endpoint);
        connection.close();

        SOAPBody responseBody = response.getSOAPBody();
        SOAPBodyElement responseElement = (SOAPBodyElement)responseBody.getChildElements().next();
        SOAPElement returnElement = (SOAPElement)responseElement.getChildElements().next();
        if(responseBody.getFault()!=null){
            System.out.println("1) " + returnElement.getValue()+" "+responseBody.getFault().getFaultString());
        } else {
            System.out.println("2) " + returnElement.getValue());
        }
    }

そして私はこのエラーを受け取りました:

1)S:Clientが{}getVServersのディスパッチメソッドを見つけることができません

しかし、私はその方法が存在することを知っています...何が問題なのですか?

4

1 に答える 1

6

それでも問題が解決しない場合は、WSDLも投稿してください。

getVServers1)名前空間{}(空の名前空間)で呼び出されたメソッドが見つからないため、Webサービスの呼び出しは失敗します。

リクエストは次のようになります。

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
        <getVServers>
            <loginName>my login name</loginName>
            <password>my password</password>
        </getVServers>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

getVServersはデフォルトの名前空間にあります。これは次のようになります。名前空間はtargetNamespaceWSDL定義からのものである必要があります。

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
        <ns:getVServers xmlns:ns="http://your-namespace-from-wsdl.com">
            <loginName>my login name</loginName>
            <password>my password</password>
        </ns:getVServers>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

名前空間を追加するには、bodyNameの作成方法を変更します。

QName bodyName = new QName("http://your-namespace-from-wsdl.com", "getVServers", "ns");

またloginName、がXMLスキーマに設定されている場合、またはが要素に存在する場合はpassword、接頭辞が必要になる場合があります。elementFormDefault="qualified"form="qualified"

2)URLエンドポイントに?wsdlを含めるべきではないと思います。

3)HTTPSWebサービスに接続しようとしています。それに応じて、証明書とDefaultSSLFactoryを設定してください。

于 2013-02-05T16:10:17.873 に答える