如何使用 Poco C++ HTTP会话工厂
如何设置 HTTPSessionFactory 来处理 HTTP 和 HTTPS 的最佳、最简单的方法?我知道我需要使用 HTTPSessionInstantiators,但我确实可以使用一个简短而有趣的示例。谢谢。
How is the best, simplest way to set up the HTTPSessionFactory to handle both HTTP and HTTPS? I know that I need to use HTTPSessionInstantiators, but I could really use a short and sweet example. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要注册“http”和“https”协议。
为了处理“https”,您还需要使用证书和上下文配置 SSLManager,这里是一段示例代码:
You need to register the 'http' and 'https' protocols.
And for handling 'https', you also need to configure your SSLManager with cert and context, here is a piece of example code: