1

我正在尝试通过 http 访问 xml 文件。地址类似于:

http://localhost/app/config/file.xml

将其粘贴到浏览器中时,xml 将按预期显示。在我使用的软件中:

MSXML2::IXMLHTTPRequestPtr rp;
...
rp->open( "GET" , "http://localhost/app/config/file.xml" );

并得到以下响应:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"     
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<title>IIS 7.0 Detailed Error - 400.0 - Bad Request</title> 
<style type="text/css"> 
<!

有谁知道可能会发生什么?

编辑:更多信息,当尝试连接到办公室中的另一台服务器(我可以使用浏览器正常连接)时,我收到“错误请求”的响应,仅此而已。

调用的函数是:

#import "msxml3.dll"

BOOL HTTPGet(LPCTSTR URL, CString &Response, long Timeout, BOOL ForceNoCache )
{
BOOL ret = FALSE;

MSXML2::IXMLHTTPRequestPtr rp;
//MSXML2::IServerXMLHTTPRequestPtr rp;

try
{
    HRESULT hr = rp.CreateInstance( __uuidof( MSXML2::XMLHTTP ) );
    //HRESULT hr = rp.CreateInstance( __uuidof( MSXML2::ServerXMLHTTP30 ) );

    if( SUCCEEDED( hr ) )
    {
        rp->open( "GET" , URL );
        if( ForceNoCache )
            rp->setRequestHeader( "If-Modified-Since", "Sat, 1 Jan 1970 00:00:00 GMT" );
        rp->send();

        for( DWORD tc = GetTickCount() ; rp->readyState != 4 && GetTickCount() < tc + Timeout ; )
        {
            Sleep( 50 );
            //WaitMessage();
            for( MSG msg ; PeekMessage( &msg, 0, 0, 0, PM_REMOVE ) ; )
            {
                TranslateMessage( &msg );
                DispatchMessage( &msg );
            }

        }

        if( rp->readyState == 4 )
        {
            Response = (LPCSTR)rp->responseText;
            ret = TRUE;
        }
        else
            Response = "Timed out";
    }
}
catch( CException &e )
{
    char err[ 2048 ];
    if( e.GetErrorMessage( err , sizeof( err ) ) )
        Response = err;
    else
        Response = "Unhandled exception";
}
catch( _com_error &e )
{
    Response = e.ErrorMessage();
}
catch( ... )
{
    Response = "Unhandled exception";
}

return ret;
}

EDIT2:当 ForceNocache 设置为 false 使 If-Modified-Since 标头成为问题时,该功能正常工作......如果我无法弄清楚为什么不喜欢它,我将提出一个新问题(由 iis 7)但是,如果这里有人可以为我指出正确的方向,它将节省一些噪音。

感谢你的帮助。

4

2 回答 2

1

根据这篇 Microsoft 知识库文章,您可能会遇到某种数据包损坏:

错误消息:HTTP/1.1 错误 400 - 错误请求 (KB247249)

只是出于兴趣,您在使用时是否有同样的体验IServerXMLHTTPRequestPtr

于 2009-06-23T12:08:13.177 回答
1

我想我找到了你的答案,你必须在日期前加上 0。

带有 If-Modified 的 XmlHttpRequest,因为网络服务器返回“400 错误请求”

于 2010-03-25T16:36:12.237 回答