我正在尝试使用 POCO 库编写一个向服务器发出 HTTPS 请求的程序。出于测试目的,我正在连接到具有自签名证书的服务器,并且我希望允许客户端连接。为了让这种情况发生,我尝试安装InvalidCertificateHandler
一个实例AcceptCertificateHandler
- 我认为即使它没有签名也会接受证书。这是我正在使用的代码:
try {
Poco::SharedPtr<Poco::Net::InvalidCertificateHandler> pAcceptCertHandler =
new Poco::Net::AcceptCertificateHandler(true);
Poco::Net::Context::Ptr pContext =
new Poco::Net::Context(Poco::Net::Context::CLIENT_USE, "",
"","",Poco::Net::Context::VERIFY_RELAXED,
9, true, "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH");
SSLManager::instance().initializeClient(NULL, pAcceptCertHandler, pContext);
Poco::Net::HTTPSClientSession theSess(myHostName,myHostPort);
// Create the HTTP request object
Poco::Net::HTTPRequest request("POST",
"https://myservername.com/MockServlet/activateEnc","1.1");
// Send the request
std::cout << "Debug point A" << std::endl;
std::ostream& aStream = theSess.sendRequest(request);
std::cout << "Debug point B" << std::endl;
if (aStream.fail()) {
std::cout << "Fail to send HTTP request for activateEnc" << std::endl;
return WSERR_CONNECTION_ERR;
}
} catch (Poco::Exception& exc) {
std::cout << "Exception caught while attempting to connect." << std::endl;
std::cerr << exc.displayText() << std::endl;
return WSERR_CONNECTION_ERR;
}
当我运行此代码时,我得到以下输出:
Debug point A
Exception caught while attempting to connect.
Certificate validation error: Unacceptable certificate from myservername.com: application verification failure
我的期望是,由于我使用的是 AcceptCertificateHandler,即使证书无效,它也会被接受。我可能做错了什么?
几点注意事项:
- 在 Context 对象构造函数调用中,我为 privateKeyFile、certificateFile 和 caLocation 参数传递了空字符串。我这样做的原因是因为我认为作为客户端我不需要私钥、客户端证书或证书颁发机构证书。也许这就是问题所在?
- 在对 initializeClient 的调用中,我将 NULL 作为 PrivateKeyPasshraseHandler 传递——因为我没有为客户端使用私钥。
- 在使用 Context 对象之前,我没有调用 Context::useCertificate() 。文档说您需要调用 userCertificate() 或 usePrivateKey(),但我不确定要传递什么,或者这是否是客户端所必需的,或者只是服务器所必需的。也许这就是问题所在?