簡體   English   中英

服務器無法識別 HTTP 標頭 SOAPAction 的值:

[英]Server did not recognize the value of HTTP Header SOAPAction:

我正在嘗試為此 WSDL 使用 SAAJ 調用 SOAP web 服務。 我在這里提交了對這個 WSDL 的請求http://www.webservicex.net/ws/WSDetails.aspx?WSID=64並且它生成了以下 SOAP 請求..

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetGeoIP xmlns="http://www.webservicex.net/">
      <IPAddress>string</IPAddress>
    </GetGeoIP>
  </soap:Body>
</soap:Envelope>

使用 SAAJ,我生成了相同的 SOAP 請求並提交了它,但收到此錯誤 - 服務器無法識別 HTTP 標頭 SOAPAction: 的值。

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Header/>
<SOAP-ENV:Body>
<GetGeoIP xmlns="http://www.webservicex.net/">
<IPAddress>SUNW</IPAddress>
</GetGeoIP>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Java代碼:

package newpackage;

import javax.xml.namespace.QName;
import javax.xml.soap.*;

public class SOAPClientSAAJ {

    public static void main(String args[]) throws Exception {
        // Create SOAP Connection
        SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
        SOAPConnection soapConnection = soapConnectionFactory.createConnection();

        // Send SOAP Message to SOAP Server
        String url = "http://www.webservicex.net/geoipservice.asmx";
        SOAPMessage soapResponse = soapConnection.call(createSOAPRequest(), url);

        // print SOAP Response
        System.out.print("Response SOAP Message:");
        soapResponse.writeTo(System.out);

        soapConnection.close();
    }

    private static SOAPMessage createSOAPRequest() throws Exception {
        MessageFactory messageFactory = MessageFactory.newInstance();
        SOAPMessage soapMessage = messageFactory.createMessage();
        SOAPPart soapPart = soapMessage.getSOAPPart();

        String serverURI = "http://www.w3.org/2001/XMLSchema";

        // SOAP Envelope
        SOAPEnvelope envelope = soapPart.getEnvelope();
        envelope.addNamespaceDeclaration("xsd", serverURI);

        SOAPBody body = soapMessage.getSOAPBody();
        QName bodyName = new QName("http://www.webservicex.net/", "GetGeoIP" );
        SOAPBodyElement bodyElement = body.addBodyElement(bodyName);
        QName name = new QName("IPAddress");
        SOAPElement symbol = bodyElement.addChildElement(name);
        symbol.addTextNode("SUNW");
        soapMessage.saveChanges();

        /* Print the request message */
        System.out.print("Request SOAP Message:");
        soapMessage.writeTo(System.out);
        System.out.println();

        return soapMessage;
    }

}

添加

    MimeHeaders headers = soapMessage.getMimeHeaders();
    headers.addHeader("SOAPAction", "http://www.webservicex.net/" + "GetGeoIP");

如果您使用 Marshelling 和 Unmarsheling,只需實現WebseviceMessageCallback接口,如:

public class SOAPConnector extends WebServiceGatewaySupport
{
    public Object callWebService( String url, Object request )
    {
        return getWebServiceTemplate().marshalSendAndReceive( url, request,  
webServiceMessage -> {
            (( SoapMessage )webServiceMessage).setSoapAction( 
"https://www.w3schools.com/xml/CelsiusToFahrenheit" );
        } );
    }
}

否則繼續: https : //stackoverflow.com/a/26253141/6097074

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM