【问题标题】:GetLastError returns 6 after call to WinHttpOpenRequestGetLastError 在调用 WinHttpOpenRequest 后返回 6
【发布时间】:2018-11-14 16:46:22
【问题描述】:

我不确定这是否是缺乏对 msdn 的了解。我有以下代码:

    #include "stdafx.h"
    #include <iostream>
    #include <string>
    #include <windows.h>
    #include <WinHttp.h>
    #include "myHTTP.h"
int main(){
    WinHTTP newHTTP("test", "test");
        bool myResult;

        newHTTP.httpConnect(L"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36",
        L"https://pages.awscloud.com/awsomedayonlineconference-reg.html",
        1,
        L"GET");

        newHTTP.httpAddHeader(L"Content-Type: application/x-www-form-urlencoded\r\n");
        newHTTP.httpSend();
        myResult = newHTTP.httpReceive();



        newHTTP.closeHandles();
 return 0;
}

我为此开设了一个课程,并且正在执行以下行: // 打开请求 - 此时未连接

hRequest = WinHttpOpenRequest(hConnect, protocol.c_str(), NULL, NULL, WINHTTP_NO_REFERER, WINHTTP_DEFAULT_ACCEPT_TYPES, 0);

if (!hRequest) {
    printf("error2: %d", GetLastError());
}

所以基本上当我运行我的软件时,它会返回这里,因为调用 winhttpopenrequest 时 !hrequest 是空的。我添加了 getlasterror 来看看为什么会这样,但我得到的唯一输出是:

error2: 6

然后我阅读了 winhttp 的 msdn,我可以在这里看到函数返回的错误:https://msdn.microsoft.com/en-us/library/windows/desktop/aa384099(v=vs.85).aspx 但这个神秘的错误 6 对我来说毫无意义。

任何帮助查看为什么句柄无效?

完整的课程代码:

#pragma once
// WinHTTP wrapper for web protocol -- windows 8.1+
class WinHTTP {

private:
    std::string siteUsername, sitePassword;
    std::wstring UA, URL;
    bool bResult = false;
    DWORD dwSize = sizeof(DWORD); // used to handle reading data in bytes
    LPSTR pszOutBuffer; // used to Allocate space for the buffer.
    DWORD dwDownloaded = 0; // set to null if using asynchronously and use in callback function only
    HINTERNET hSession = NULL, hConnect = NULL, hRequest = NULL;

public:
    WinHTTP(std::string myuser = "", std::string mypass = "") {
        siteUsername = myuser;
        sitePassword = mypass;
    }

    // TODO: update to be able to add proxy details either here or before. do check if proxy has been detected in here and open/connect accordingly 
    void httpConnect(std::wstring userAgent, std::wstring myURL, int isHTTPS, std::wstring protocol) {

        UA = userAgent;
        URL = myURL;

        std::wstring acceptTypes = L"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8";

        int portToUse;
        if (isHTTPS == 1) {
            portToUse = 443;
        }
        else {
            portToUse = 80;
        }

        //initialize http and return session handle -- use c_str to convert wstring to LPCWSTR
        hSession = WinHttpOpen(UA.c_str(),
            WINHTTP_ACCESS_TYPE_NO_PROXY, WINHTTP_NO_PROXY_NAME, WINHTTP_NO_PROXY_BYPASS, 0);

        //make the connection request
        if (hSession) {
            hConnect = WinHttpConnect(hSession, URL.c_str(), portToUse, 0);
        }
        else {
            std::cout << "winhttpconnect error " << GetLastErrorAsString();
        }

        // open the request - not connected at this point
        hRequest = WinHttpOpenRequest(hConnect, protocol.c_str(), NULL, NULL, WINHTTP_NO_REFERER, WINHTTP_DEFAULT_ACCEPT_TYPES, 0);

        if (!hRequest) {
            std::cout << "winhttpopenrequest error " << GetLastErrorAsString();
        }

    }

    std::string GetLastErrorAsString()
    {
        //Get the error message, if any.
        DWORD errorMessageID = ::GetLastError();
        if (errorMessageID == 0)
            return std::string(); //No error message has been recorded

        LPSTR messageBuffer = nullptr;
        size_t size = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
            NULL, errorMessageID, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)&messageBuffer, 0, NULL);

        std::string message(messageBuffer, size);

        //Free the buffer.
        LocalFree(messageBuffer);

        return message;
    }

    void httpAddHeader(std::wstring myheader) {

        if (hRequest) {
            bResult = WinHttpAddRequestHeaders(hRequest, myheader.c_str(), (ULONG)-1L, WINHTTP_ADDREQ_FLAG_ADD);
        }

    }

    bool httpSend() {
        if (hRequest) {
            bResult = WinHttpSendRequest(hRequest, WINHTTP_NO_ADDITIONAL_HEADERS, 0, WINHTTP_NO_REQUEST_DATA, 0, 0, 0);
        }

        if (!bResult) {
            std::cout << "winhttpsendrequest error " << GetLastErrorAsString();
            return false;
        }
        else {
            return true;
        }
    }

    bool httpReceive() {

        if (bResult) {
            bResult = WinHttpReceiveResponse(hRequest, NULL);
        }

        if (bResult) {

            do
            {
                // Check for available data.
                dwSize = 0; //query data available looks for data in bytes
                if (!WinHttpQueryDataAvailable(hRequest, &dwSize))
                {
                    std::cout << "WinHttpQueryDataAvailable error " << GetLastErrorAsString();
                    break;
                }

                // No more available data.
                if (!dwSize)
                    return false;

                // Allocate space for the buffer. as dwSize now holds the size of the request
                pszOutBuffer = new char[dwSize + 1];  // just a way of freeing up memory 
                if (!pszOutBuffer)
                {
                    printf("Out of memory\n"); // couldnt allocate enough
                    return false;
                }

                ZeroMemory(pszOutBuffer, dwSize + 1); // fills a block of memory with 0s

                                                      // we know the expect size and have the pszoutbffer to write to - read the Data.
                if (!WinHttpReadData(hRequest, (LPVOID)pszOutBuffer,
                    dwSize, &dwDownloaded))
                {
                        std::cout << "WinHttpReadData error " << GetLastErrorAsString();
                    return false;
                }
                else
                {
                    printf("%s", pszOutBuffer);
                }

                // Free the memory allocated to the buffer.
                delete[] pszOutBuffer;
                return true;

                // This condition should never be reached since WinHttpQueryDataAvailable
                // reported that there are bits to read.
                if (!dwDownloaded)
                    return false;

            } while (dwSize > 0);

        }

        return false;

    }

    void closeHandles() {
        if (hRequest) WinHttpCloseHandle(hRequest);
        if (hConnect) WinHttpCloseHandle(hConnect);
        if (hSession) WinHttpCloseHandle(hSession);
    }

};

【问题讨论】:

  • hConnect 有效吗?
  • GetLastError 返回 DWORD,因此 6 是正确的值。错误代码msdn.microsoft.com/en-us/library/windows/desktop/… 用法示例,msdn.microsoft.com/en-us/library/windows/desktop/…
  • 我们不能告诉你。您需要检查WinHttpConnect 之后的hConnectGetLastError(),与WinHttpOpenWinHttpOpenRequest 之后的操作相同。
  • “正如你在我的代码中看到的那样” 我在你的代码中看到你在调用WinHttpConnect 后没有检查错误。
  • 我在这里编译并运行了你的代码:在hConnect = WinHttpConnect(hSession, URL.c_str(), portToUse, 0);这一行之后,hConnect包含NULLGetLastError()返回12005,即Invalid URL

标签: c++ winhttp winhttprequest getlasterror


【解决方案1】:

为什么会收到错误代码 6

错误代码 6 是 System Error Code ERROR_INVALID_HANDLE

它告诉你你传递给WinHttpOpenRequesthConnect是无效的。

您仅在致电WinHttpOpen 后检查hSession,并在致电WinHttpOpenRequest 后检查hRequest。但是你永远不会检查hConnect 是否有效。

您还需要检查WinHttpConnect返回的hConnect,如果它无效,请在调用另一个WINAPI方法之前检查GetLastError()

hSession = WinHttpOpen(UA.c_str(), WINHTTP_ACCESS_TYPE_NO_PROXY, WINHTTP_NO_PROXY_NAME, WINHTTP_NO_PROXY_BYPASS, 0);

if (hSession) {
    hConnect = WinHttpConnect(hSession, URL.c_str(), portToUse, 0);

    if (hConnect) {
        hRequest = WinHttpOpenRequest(hConnect, protocol.c_str(), NULL, NULL, WINHTTP_NO_REFERER, WINHTTP_DEFAULT_ACCEPT_TYPES, 0);

        if (!hRequest) {
            std::cout << "WinHttpOpenRequest error " << GetLastErrorAsString();
        }
    }
    else {
        std::cout << "WinHttpConnect error " << GetLastErrorAsString();
    }
}
else {
    std::cout << "WinHttpOpen error " << GetLastErrorAsString();
}

为什么您对WinHttpConnect 的调用失败

docs 告诉我们WinHttpConnect 需要服务器名称,而不是 URL:

pswzServerName [in]
指向包含主机名的以空字符结尾的字符串的指针 HTTP 服务器。或者,该字符串可以包含 IP 地址 ASCII 格式的站点,例如 10.0.1.45。

但是,您提供的字符串包含无效的 URL。您需要将"https://pages.awscloud.com/awsomedayonlineconference-reg.html" 更改为"pages.awscloud.com",然后在WinHttpOpenRequest 中提供页面路径作为参数:

hRequest = WinHttpOpenRequest(hConnect, protocol.c_str(), path.c_str(), NULL, WINHTTP_NO_REFERER, WINHTTP_DEFAULT_ACCEPT_TYPES, 0);

其中path 是一个包含"/awsomedayonlineconference-reg.html" 的字符串。

为此,您可以将您的 URL 拆分为多个部分,或者更改您的 httpConnect 方法以获取服务器名称和路径作为单独的参数。

【讨论】:

  • 我刚刚用完整的代码更新了这个问题,为什么 hconnect 会无效?
  • 它在 winhttpconnect 错误中没有返回任何内容。这就是为什么我很困惑,意味着没有错误对吗?
  • @jimmy 为什么 hconnect 会无效 弄清楚它的一个很好的起点是调用 GetLastError。我们无法为您完成。
  • 我打电话给 getlasterror @n.m。但它是空的,没有错误。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2013-04-24
  • 2011-12-28
  • 1970-01-01
  • 1970-01-01
  • 2013-03-04
  • 2015-06-15
  • 1970-01-01
相关资源
最近更新 更多