onvif

ONVIF Authentication in .NET 4.0 with Visual Studios 2010

给你一囗甜甜゛ 提交于 2019-11-28 06:03:40
My task is to try to establish a communication with a ONVIF camera in the building to, eventually, upgrade the company's domotic solution to automatically recognize ONVIF cameras and to be able to set them up and to use their services. I am already able to gather some basic informations like its model, its MAC address and its firmware version this way: EndpointAddress endPointAddress = new EndpointAddress("<mycameraurl:<mycameraport>/onvif/device_service"); CustomBinding bind = new CustomBinding("DeviceBinding"); DeviceClient temp = new DeviceClient(bind, endPointAddress); String[] arrayString

ONVIF - beginning of Device discovery

一个人想着一个人 提交于 2019-11-27 06:57:49
问题 I am planning to do a java onvif application. I have created a new project and generated sources from devicemgmt.wsdl.Also generated the classes from remote discovery.wsdl. How can I discover a device in a network using theses generated classes? Thanks for any help. 回答1: devicemgmt.wsdl is not related to discovery process, the ONVIF discovery process is based on http://specs.xmlsoap.org/ws/2005/04/discovery it use SOAP over UDP. If you are using apache-cxf, this can be achieve using org