无法获取SOAP请求的响应文本

时间:2012-08-22 13:07:31

标签: javascript soap

这是没有返回任何内容的代码。我在SOAP UI中使用了相同的SOAP请求,我得到了适当的响应 只是它没有进入javascript。

    var getmarket = new XMLHttpRequest();
    getmarket.open('POST', 'https://www.betfair.com/publicapi/', true);

    var m_request = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" '+
                    'xmlns:bfex="http://www.betfair.com/publicapi/v5/BFExchangeService/" '+
                    'xmlns:v5="http://www.betfair.com/publicapi/types/exchange/v5/">'+
                    ' <soapenv:Header/>'+
                    '<soapenv:Body>'+
                    '<bfex:getAllMarkets>'+
                    '<bfex:request>'+
                    '<header>'+
                       '<clientStamp>0</clientStamp>'+
                       '<sessionToken>Y9eTuEvlrTM55pbRB1kIj0As0bVvz3eFm+p1FY+svHk=</sessionToken>'+
                    '</header>'+
                    '<locale>en</locale>'+
                    '<eventTypeIds>'+
                       '<v5:int>1</v5:int>'+
                    '</eventTypeIds>'+
                    '<countries>'+
                       '<v5:Country>GBR</v5:Country>'+
                    '</countries>'+
                    '<fromDate>2012-08-23TO00:00:00.000Z</fromDate>'+
                    '<toDate>2012-08-24TO00:00:00.000Z</toDate>'+
                 '</bfex:request>'+
              '</bfex:getAllMarkets>'+
           '</soapenv:Body>'+
        '</soapenv:Envelope>';

    getmarket.setRequestHeader('Content-Type', 'text/xml');
    getmarket.send(m_request);
    document.write(getmarket.responseText);

另外,当我使用时               document.write(m_request); //肥皂信封

我GET

0Y9eTuEvlrTM55pbRB1kIj0As0bVvz3eFm + p1FY + svHk = en1GBR2012-08-23TO00:00:00.000Z2012-08-24TO00:00:00.000Z

,即在必填字段之间设置的数据

这样可以,或者必须有更好的方法吗?

1 个答案:

答案 0 :(得分:2)

正如我在评论中提到的Ajax是异步的,所以在你的js中你必须做类似的事情:

getmarket.onreadystatechange = function (){
    if (getmarket.readyState == 4 && getmarket.status == 200)
         document.write(getmarket.responseText);
}
每次readyState更改时,

onreadystatechange事件都会触发。