QuickBooks Web连接器-Can';找不到SOAP响应

QuickBooks Web连接器-Can';找不到SOAP响应,soap,quickbooks,Soap,Quickbooks,我正在尝试构建一个SOAP服务器来与QuickBooks Web连接器交互,但是找不到任何关于SOAP对其请求进行身份验证的响应应该是什么的示例 我们如何应对 我试图找到一种方法来应对这一行动,但没有文档或示例 {'soapaction':'”http://developer.intuit.com/authenticate“,”主机“:”api:3000“,”用户代理“:”Mozilla/4.0(兼容;MSIE 6.0;MS Web服务客户端协议4.0.30319.42000)“,”内容类型“:

我正在尝试构建一个SOAP服务器来与QuickBooks Web连接器交互,但是找不到任何关于SOAP对其请求进行
身份验证的响应应该是什么的示例

我们如何应对

我试图找到一种方法来应对这一行动,但没有文档或示例

{'soapaction':'”http://developer.intuit.com/authenticate“,”主机“:”api:3000“,”用户代理“:”Mozilla/4.0(兼容;MSIE 6.0;MS Web服务客户端协议4.0.30319.42000)“,”内容类型“:”text/xml;charset=utf-8“,”cookie“:”无“,”内容长度“:”382“,”ssl客户端验证“:”无“,”x-forwarded-for“:”12.34.567.89“,”x-real-ip“:”12.34.567.89“,”anvil主机“:”Jeremiah.QB.app“}

WSDL 您可以在下面的链接中找到此服务的
WSDL
,这可能有助于您开发:

示例SOAP请求


  • 所有其他Web连接器SOAP方法:
  • <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
     SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
     xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
        <SOAP-ENV:Body>
            <authenticate xmlns="http://developer.intuit.com/">
                <strUserName xsi:type="xsd:string">username</strUserName>
                <strPassword xsi:type="xsd:string">password</strPassword>
            </authenticate>
        </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    
    HTTP/1.1 200 OK
    Date: Sat, 02 May 2009 17:45:48 GMT
    Server: Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.7l DAV/2 PHP/5.2.9
    X-Powered-By: PHP/5.2.9
    Content-Length: 416
    Connection: close
    Content-Type: text/xml
    
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://developer.intuit.com/">
        <SOAP-ENV:Body>
            <ns1:authenticateResponse>
                <ns1:authenticateResult>
                    <ns1:string>15c9ce293bd3f41b761c21635b14fa06</ns1:string>
                    <ns1:string></ns1:string>
                </ns1:authenticateResult>
            </ns1:authenticateResponse>
        </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    
    HTTP/1.1 200 OK
    Date: Sat, 02 May 2009 17:43:09 GMT
    Server: Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.7l DAV/2 PHP/5.2.9
    X-Powered-By: PHP/5.2.9
    Content-Length: 387
    Connection: close
    Content-Type: text/xml
    
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://developer.intuit.com/">
        <SOAP-ENV:Body>
            <ns1:authenticateResponse>
                <ns1:authenticateResult>
                    <ns1:string></ns1:string>
                    <ns1:string>nvu</ns1:string>
                </ns1:authenticateResult>
            </ns1:authenticateResponse>
        </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>