为什么MFC :: CHttpFile'PUT'不适合我?

时间:2009-03-17 00:00:59

标签: c++ http mfc curl mfc-networking

我的代码与供应商提供的一个小型Java应用程序进行了对话。此Java应用程序在localhost:57000上设置一个Web服务器,用于控制“计算机”的状态。出于这个问题的目的,我需要将“机器”的状态从“关闭”更改为“打开”。为了实现这一点,我应该将以下字符串HTTP PUT http://localhost:57000/settings.xml处的“机器”:

<settings><machine_state><status>on</status></machine_state></settings>

此Curl命令完美运行:

curl -X PUT -H“Content-Type:application / xml”-d @ settings.xml http://localhost:57000/settings.xml

其中本地文件'settings.xml'中包含上述xml字符串。

我想做Curl正在使用MFC的WININET类做的事情。以下代码应该恕我直言所做与curl完全相同的事情。遗憾的是,尽管localhost Web服务器返回代码200,但它忽略了我的xml字符串。我错过了什么小事?

int MyHttp::HttpPutThread() NOTHROW
{
    try {
            m_xml =  "<settings><machine_state><status>on</status></machine_state></settings>";
            m_url = "settings.xml"
        CInternetSession session; 
        SetSessionOptions(session);
        CString server = "localhost:57920";
        boost::scoped_ptr<CHttpConnection> phttp(session.GetHttpConnection(server));
        LPCTSTR accept = 0;//"text/xml";
        boost::scoped_ptr<CHttpFile> phttpfile(phttp->OpenRequest(
            "PUT", //verb
            "settings.xml", //object name
            0, //referer
            1, //context
            &accept, // accept types
            0, //version
            INTERNET_FLAG_EXISTING_CONNECT));           

        CString header = "Content-Type:application/xml\r\n";
        if(phttpfile->SendRequest(header,(LPVOID)m_xml.GetBuffer(), m_xml.GetLength()))
        {       // LOG_DEBUG (Same as TRACE) output are shown in comment
            DWORD code(0);
            phttpfile->QueryInfoStatusCode(code);
            LOG_DEBUG("HttpPutThread result code: %d", code); // '200'
            CString object = phttpfile->GetObject();
            LOG_DEBUG("object: %s", object); // 'settings.xml'
            CString statustxt;
            phttpfile->QueryInfo(HTTP_QUERY_STATUS_TEXT,statustxt);
            LOG_DEBUG("status text:%s", statustxt); // 'HTTP/1.0 200 OK'
            CString rawheaders;
            phttpfile->QueryInfo(HTTP_QUERY_RAW_HEADERS,rawheaders);
            LOG_DEBUG("raw headers:%s", rawheaders); // http://localhost:57000/settings.xml
            LOG_DEBUG("File url:%s",phttpfile->GetFileURL());
            LOG_DEBUG("Verb:%s", phttpfile->GetVerb()); // 'PUT'

        } else      
        {
                    //This does not happen
            LOG_DEBUG("PUT failed in AffHttp::HttpPutThread");  
        }

    } catch(CInternetException* pe)
    {
            //No exceptions are thrown
        LOG_DEBUG("Exception HttpPutThread:%d", pe->m_dwError);
        pe->Delete();
    }
    return 0;
}

提前致谢。

1 个答案:

答案 0 :(得分:0)

我用我自己的低级套接字代码替换MFC类,以与Curl完全相同的顺序发送完全相同的文本。似乎小嵌入式'jetty'Java服务器只是反对MFC类生成的一个头文件。