首页 > 代码库 > 一个基于Gsoap 的ONIVF C++ 库
一个基于Gsoap 的ONIVF C++ 库
https://github.com/xsmart/onvifcpplib
这个库支持ProfileS 和ProfileG,目前还在开发当中,现在已经支持Event
下面是一个客户端的例子
int _tmain(int argc, _TCHAR* argv[]) { int ret; /* 192.168.1.1 is the NVT, 192.168.1.234 is the NVC */ string url = "http://192.168.1.1/onvif/device_service"; /* Below is where to receive the event */ string eventNotify = "http://192.168.1.234:9090/subscription-2"; string user = "admin"; string pass = "admin"; OnvifClientDevice onvifDevice(url, user, pass); _tds__GetCapabilitiesResponse capabilitiesResponse; onvifDevice.GetCapabilities(); OnvifClientMedia media(onvifDevice); _trt__GetProfilesResponse profiles; media.GetProfiles(profiles); OnvifClientEvent onvifEvent(onvifDevice); onvifEvent.Subscribe(eventNotify); OnvifClientEventNotify notify(soap_new()); if ((ret = soap_bind(¬ify, NULL, 9090, 100) == SOAP_INVALID_SOCKET ) ) { printf("OnvifClientEventNotify::soap_bind Binding on %d port failed", 9090); return 0; } //Loop to recevie the event while(1) { if( (ret = soap_accept(¬ify)) == SOAP_INVALID_SOCKET) { printf("soap_accept accepting failed"); return 0; } if ( (soap_begin_serve(¬ify)) != SOAP_OK) { printf("soap_begin_serve serve %d failed", ret); continue; } ret = notify.dispatch(); continue; } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。