在 Windows Server 2008 rc2 上使用 https 的 winhttpsendrequest POST
Posted
技术标签:
【中文标题】在 Windows Server 2008 rc2 上使用 https 的 winhttpsendrequest POST【英文标题】:winhttpsendrequest POST with https on windows server 2008 rc2 【发布时间】:2015-01-16 04:38:47 【问题描述】:我正在编写一个可视化 c++ 应用程序,它应该向 https 端点发送 http post 消息(https 服务器的证书是自签名的)。有 2 组客户端,1 组在 windows 7 pcs 上,另一组在 windows server 2008 rc2 上。使用 mmc 控制台/管理单元(在两个 pc 组上)导入服务器的自签名证书后,windows 7 pcs 可以无错误地建立连接,但在 Windows server 2008 rc2 机器上,错误 12030 总是由 winhttpsendrequest( ) 称呼。任何想法如何解决这个问题?任何帮助/提示将不胜感激。提前致谢。我的代码如下。
DWORD dwSize = 0;
DWORD dwDownloaded = 0;
LPSTR pszOutBuffer;
BOOL bResults = FALSE;
HINTERNET hSession = NULL,
hConnect = NULL,
hRequest = NULL;
hSession = WinHttpOpen( userAgent,
WINHTTP_ACCESS_TYPE_NO_PROXY,
WINHTTP_NO_PROXY_NAME,
WINHTTP_NO_PROXY_BYPASS, 0 );
if( hSession )
hConnect = WinHttpConnect( hSession, hostname, port, 0 );
if( hConnect )
hRequest = WinHttpOpenRequest( hConnect, L"POST", urlPath,
NULL, WINHTTP_NO_REFERER,
WINHTTP_DEFAULT_ACCEPT_TYPES,
WINHTTP_FLAG_REFRESH|WINHTTP_FLAG_SECURE );
if(hRequest)
AutoProxyOptions.dwFlags = WINHTTP_AUTOPROXY_AUTO_DETECT;
AutoProxyOptions.dwAutoDetectFlags = WINHTTP_AUTO_DETECT_TYPE_DHCP|WINHTTP_AUTO_DETECT_TYPE_DNS_A;
AutoProxyOptions.fAutoLogonIfChallenged = TRUE;
if( WinHttpGetProxyForUrl( hSession,
fullURL,
&AutoProxyOptions,
&ProxyInfo))
printf("proxy info\n");
printf("access type: %ld\n",ProxyInfo.dwAccessType);
printf("list: %s\n",ProxyInfo.lpszProxy);
printf("bypass list: %s\n",ProxyInfo.lpszProxyBypass);
if( !WinHttpSetOption( hRequest,
WINHTTP_OPTION_PROXY,
&ProxyInfo,
cbProxyInfoSize ) )
printf("Proxy detection logic failed\n");
goto Exit;
else
printf("WinHttpGetProxyForUrl() returned [%d].. no proxy is used?\n", GetLastError());
bResults = WinHttpSendRequest(hRequest, L"Content-Type:application/x-www-form-urlencoded", 0, (LPVOID)postRequest, data_len, data_len, 0);
if ( bResults != TRUE)
wprintf(L"WinHttpSendRequest failed (%d)\n", GetLastError());
else
//all good
bResults = WinHttpReceiveResponse( hRequest, NULL );
if( bResults )
do
dwSize = 0;
if( !WinHttpQueryDataAvailable( hRequest, &dwSize ) )
printf( "Error %u in WinHttpQueryDataAvailable.\n", GetLastError());
pszOutBuffer = new char[dwSize+1];
if( !pszOutBuffer )
printf( "Out of memory\n" );
dwSize=0;
else
ZeroMemory( pszOutBuffer, dwSize+1 );
if( !WinHttpReadData( hRequest, (LPVOID)pszOutBuffer, dwSize, &dwDownloaded ) )
printf( "Error %u in WinHttpReadData.\n", GetLastError( ) );
else
printf( "From server [");
printf( "%s", pszOutBuffer );
printf("]\n");
delete [] pszOutBuffer;
while( dwSize > 0 );
else
wprintf(L"WinHttpOpenRequest failed (%d)\n", GetLastError());
【问题讨论】:
【参考方案1】:12030 是这样的:
ERROR_INTERNET_CONNECTION_ABORTED
12030
The connection with the server has been terminated.
这似乎不仅仅是身份验证或证书错误。
您是否尝试过检查您的服务器日志以了解它是如何处理连接的?用Fiddler观察流量?
要排除身份验证步骤的问题,请尝试传递here 讨论的一些 SECURITY_FLAG_IGNORE_CERT_* 标志。
另外,请考虑使用WinInet APIs 而不是 WinHTTP。使用前者更容易进行某些操作。
【讨论】:
我想我会尝试 wininet 方法并稍后更新...感谢您的建议 好吧,我尝试了 wininet 方法,代码在 windows 7 和 windows 2008 rc2 客户端上都有效。我猜 winhttp 只是有一些问题,我需要在其他时间解决。再次感谢。 @user3689913 - 你可以通过投票和/或接受答案来感谢我 我现在有同样的问题,但我想使用 winhttp。无法接收它返回的数据12030
我在哪里放SECURITY_FLAG_IGNORE_CERT_
?哪个函数/参数? ***.com/questions/59730223/…
@selbie 也帮帮我,请我需要一个 .cert 文件或为什么我的代码不起作用以上是关于在 Windows Server 2008 rc2 上使用 https 的 winhttpsendrequest POST的主要内容,如果未能解决你的问题,请参考以下文章
Windows 2000 和 Windows 2003 RC2 使用 Windows Crypto API 加密/解密?
如何在VS2010或VS2008下编译一个CUDA Toolkit 4.0 RC2程序?
Hyper-V Server 2008 和 在Windows Server 2008 中实现的Hyper-V有什么区别?