如何检查服务器是否在POCO :: Net中可用

时间:2014-05-03 09:45:01

标签: c++ http client-server poco poco-libraries

我使用this solution加载了Ip Camera的帧。当相机未连接时,我会遇到异常。有没有办法检查相机是否已连接?另一方面,我可以检查我的客户端是否可以连接到poco中的服务器吗?

1 个答案:

答案 0 :(得分:0)

将您的代码包装在try / catch中。如果你遇到异常,就会出现问题。

try
{
//this will throw Poco::Net::ConectionRefusedException
session.sendRequest(req);
//...
}
catch(Poco::Net::ConectionRefusedException& ex)
{
// handle error
}