- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我不确定这是否是 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);
}
};
最佳答案
为什么会收到错误代码 6
错误代码 6 是 System Error Code ERROR_INVALID_HANDLE
。
它告诉您传递给 WinHttpOpenRequest
的 hConnect
无效。
您只在调用 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]
Pointer to a null-terminated string that contains the host name of an HTTP server. Alternately, the string can contain the IP address of the site in ASCII, for example, 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
方法以获取服务器名和路径作为单独的参数。
关于c++ - GetLastError 在调用 WinHttpOpenRequest 后返回 6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50695995/
为了让我的代码几乎完全用 Jquery 编写,我想用 Jquery 重写 AJAX 调用。 这是从网页到 Tomcat servlet 的调用。 我目前情况的类似代码: var http = new
我想使用 JNI 从 Java 调用 C 函数。在 C 函数中,我想创建一个 JVM 并调用一些 Java 对象。当我尝试创建 JVM 时,JNI_CreateJavaVM 返回 -1。 所以,我想知
环顾四周,我发现从 HTML 调用 Javascript 函数的最佳方法是将函数本身放在 HTML 中,而不是外部 Javascript 文件。所以我一直在网上四处寻找,找到了一些简短的教程,我可以根
我有这个组件: import {Component} from 'angular2/core'; import {UserServices} from '../services/UserService
我正在尝试用 C 实现一个简单的 OpenSSL 客户端/服务器模型,并且对 BIO_* 调用的使用感到好奇,与原始 SSL_* 调用相比,它允许一些不错的功能。 我对此比较陌生,所以我可能会完全错误
我正在处理有关异步调用的难题: 一个 JQuery 函数在用户点击时执行,然后调用一个 php 文件来检查用户输入是否与数据库中已有的信息重叠。如果是这样,则应提示用户确认是否要继续或取消,如果他单击
我有以下类(class)。 public Task { public static Task getInstance(String taskName) { return new
嘿,我正在构建一个小游戏,我正在通过制作一个数字 vector 来创建关卡,该数字 vector 通过枚举与 1-4 种颜色相关联。问题是循环(在 Simon::loadChallenge 中)我将颜
我有一个java spring boot api(数据接收器),客户端调用它来保存一些数据。一旦我完成了数据的持久化,我想进行另一个 api 调用(应该处理持久化的数据 - 数据聚合器),它应该自行异
首先,这涉及桌面应用程序而不是 ASP .Net 应用程序。 我已经为我的项目添加了一个 Web 引用,并构建了各种数据对象,例如 PayerInfo、Address 和 CreditCard。但问题
我如何告诉 FAKE 编译 .fs文件使用 fsc ? 解释如何传递参数的奖励积分,如 -a和 -target:dll . 编辑:我应该澄清一下,我正在尝试在没有 MSBuild/xbuild/.sl
我使用下划线模板配置了一个简单的主干模型和 View 。两个单独的 API 使用完全相同的配置。 API 1 按预期工作。 要重现该问题,请注释掉 API 1 的 URL,并取消注释 API 2 的
我不确定什么是更好的做法或更现实的做法。我希望从头开始创建目录系统,但不确定最佳方法是什么。 我想我在需要显示信息时使用对象,例如 info.php?id=100。有这样的代码用于显示 Game.cl
from datetime import timedelta class A: def __abs__(self): return -self class B1(A):
我在操作此生命游戏示例代码中的数组时遇到问题。 情况: “生命游戏”是约翰·康威发明的一种细胞自动化技术。它由一个细胞网格组成,这些细胞可以根据数学规则生存/死亡/繁殖。该网格中的活细胞和死细胞通过
如果我像这样调用 read() 来读取文件: unsigned char buf[512]; memset(buf, 0, sizeof(unsigned char) * 512); int fd;
我用 C 编写了一个简单的服务器,并希望调用它的功能与调用其他 C 守护程序的功能相同(例如使用 ./ftpd start 调用它并使用 ./ftpd stop 关闭该实例)。显然我遇到的问题是我不知
在 dos 中,当我粘贴此命令时它会起作用: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" https://google.
在 dos 中,当我粘贴此命令时它会起作用: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" https://google.
我希望能够从 cmd 在我的 Windows 10 计算机上调用 python3。 我已重新安装 Python3.7 以确保选择“添加到路径”选项,但仍无法调用 python3 并使 CMD 启动 P
我是一名优秀的程序员,十分优秀!