我正在尝试使用 Poco 库(版本 poco-1.4.6p1-all)在 C++ 中编写客户端应用程序并在 Visual Studio 2010 中编译,它将 HTTPS 请求发送到具有自写证书的服务器。我有一个错误,因为证书无法识别:
First-chance exception at 0x76e8c41f in httprequest.exe: Microsoft C++ exception: Poco::Net::SSLException at memory location 0x0044ed38..
我尝试更改库中编写的验证函数(在 X509Certificate.h 中),以便它们始终返回 true 并重建库。同样的错误。
这是代码:
try{
const Poco::URI uri("https://www.theServer.com");
Poco::Net::Context::Ptr context =
new Poco::Net::Context(Poco::Net::Context::CLIENT_USE, "",
"","",Poco::Net::Context::VERIFY_RELAXED,
9, true, "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH");
Poco::SharedPtr<Poco::Net::InvalidCertificateHandler> pAcceptCertHandler = new Poco::Net::AcceptCertificateHandler(true);
Poco::Net::SSLManager::instance().initializeClient(NULL, pAcceptCertHandler, context);
Poco::Net::HTTPSClientSession session(uri.getHost(), uri.getPort(), context );
Poco::Net::HTTPRequest req(Poco::Net::HTTPRequest::HTTP_GET, "" );
req.setContentType("application/x-javascript; charset=utf-8\r\n");
req.setKeepAlive(true);
Poco::Net::HTTPBasicCredentials cred("lala@lala.lala", "lala");
cred.authenticate(req);
session.sendRequest(req);
Poco::Net::HTTPResponse res;
std::istream& rs = session.receiveResponse(res);
std::string resp;
std::vector<Poco::Net::HTTPCookie> cookies;
res.getCookies( cookies );
res.write(std::cout);
}
catch( const Poco::Net::SSLException& e )
{
std::cerr << e.what() << ": " << e.message() << std::endl;
}
catch( const std::exception& e )
{
std::cerr << e.what() << std::endl;;
}
谢谢!