1

以下のコードを使用して、c++ クライアントで gSoap を使用して salesforce.com API にアクセスしようとしています。

struct soap soap;

soap_init(&soap);

_ns1__login loginReq;
_ns1__loginResponse loginRes;

loginReq.username = "XXXX";
loginReq.password = "XXXX";

if(soap_call___ns1__login(&soap,NULL,NULL,&loginReq,&loginRes) == 0){
    qDebug() << loginRes.result->sessionId;
} else {
    soap_print_fault(&soap, stderr);
    soap_print_fault_location(&soap, stderr);
}

これは問題なく準拠していますが、実行すると次のエラーが発生します。

SOAP 1.1 fault: SOAP-ENV:Client [no subcode]
"Validation constraint violation: tag name or namespace mismatch in element <soapenv:Envelope>"
Detail: [no detail]
HTTP/1.1 500 Internal Server Error
Server: 
Content-Type: text/xml; charset=UTF-8
Content-Length: 625
Date: Fri, 29 Apr 2011 00:56:17 GMT
Connection: close

<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sf="urn:fault.enterprise.soap.sforce.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><soapenv:Fault><faultcode>UNKNOWN_EXCEPTION</faultcode><faultstring>UNKNOWN_EXCEPTION: Premature end of file.</faultstring><detail><sf:UnexpectedErrorFault xsi:type="sf:UnexpectedErrorFault"><sf:exceptionCode>UNKNOWN_EXCEPTION</sf:exceptionCode><sf:exceptionMessage>Premature end of file.</sf:exceptionMessage></sf:UnexpectedErrorFault></detail></soapenv:Fault></soapenv:Body></soapenv:Envelope>
<!-- ** HERE ** -->

パケット キャプチャを実行しましたが、HTTP ヘッダーの「Content-Length」が 0 を示していることを除いて、すべてが正しいように見えます。

POST /services/Soap/c/21.0 HTTP/1.1
Host: login.salesforce.com
User-Agent: gSOAP/2.7
Content-Type: text/xml; charset=utf-8
Content-Length: 0
Connection: close
SOAPAction: ""

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns2="urn:sobject.enterprise.soap.sforce.com" xmlns:ns3="urn:fault.enterprise.soap.sforce.com" xmlns:ns1="urn:enterprise.soap.sforce.com"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns1:login><ns1:username>XXXX</ns1:username><ns1:password>XXXX</ns1:password></ns1:login></SOAP-ENV:Body></SOAP-ENV:Envelope>

私がどこで間違っているのかについて誰かが洞察を持っているなら、それは大歓迎です。

私は、g++ 4.4.5 を使用して Debian 6.0 で gSoap 2.7 を使用してコンパイルしています。

4

2 に答える 2

1

あなたが提供したパケット キャプチャから、観察すべきもう 1 つの重要なポイントがあります。SOAPAction フィールドが空です。

これが私のアプリのサンプル パケット キャプチャです。

POST /ws/smi/v1/IndexService HTTP/1.1
Host: somevalidwebservice.com
User-Agent: gSOAP/2.8
Content-Type: text/xml; charset=utf-8
Content-Length: 1180
Connection: close
SOAPAction: "http://www.somevalidwebservice.com/ws/smi/v1/getIndex"

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ns1="http://www.somevalidwebservice.com/ws/smi/v1"
<SOAP-ENV:Header></SOAP-ENV:Header><SOAP-ENV:Body><nsGlobal:getIndexRequest></nsGlobal:getIndexRequest>

SOAP Action パラメーターを正しく指定しているかどうかを確認できますか?

于 2011-04-29T07:47:23.160 に答える