Onvif设备管理器找不到Onvif设备

时间:2016-08-05 12:05:11

标签: web-services gsoap service-discovery onvif

我正在尝试使用gsoap实现具有onvif配置文件标准的相机设备服务器。在ws动态发现时,当我尝试在https://github.com/mpromonet/ws-discovery/blob/master/gsoap/server.cpp中运行代码时,Onvif设备管理器不会对我的probematches消息给出任何答案。我可以看到我收到探测消息,发送探测匹配消息但Onvif设备管理器只是忽略它们。 我已为我的设备更改了这些参数:

const int   _metadataVersion = 1;
static const char* _xaddr= "http://10.0.0.50:1881";
const char* _type="tdn:NetworkVideoTransmitter " "tds:Device " ;
const char* _scope=
        "onvif://www.onvif.org/name/ru "
        "onvif://www.onvif.org/hardware/hw "
        "onvif://www.onvif.org/Profile/Streaming "
        "onvif://www.onvif.org/location/ANY "
        "onvif://www.onvif.org/type/video_encoder onvif://www.onvif.org/type/audio_encoder onvif://www.onvif.org/type/ptz ";

const char* _endpoint="urn";

我尝试了很多参数,但我找不到解决方案。我需要进行哪些更改才能被Onvif设备管理器发现?

1 个答案:

答案 0 :(得分:1)

如您所见,您使用的命名空间(tdn& tds)未在生成的命名空间中声明(在gen / wsdd.nsmap中):

#include "soapH.h"
SOAP_NMAC struct Namespace namespaces[] =
{
        {"SOAP-ENV", "http://schemas.xmlsoap.org/soap/envelope/", "http://www.w3.org/*/soap-envelope", NULL},
        {"SOAP-ENC", "http://schemas.xmlsoap.org/soap/encoding/", "http://www.w3.org/*/soap-encoding", NULL},
        {"xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL},
        {"xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL},
        {"wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL, NULL},
        {"wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL},
        {NULL, NULL, NULL, NULL}
};

要指定具有限定名称的wsdd:ProbeType,您应该使用:

  

" http://www.onvif.org/ver10/network/wsdl":NetworkVideoTransmitter

这可以通过指定-t参数来实现:

ws-discovery.exe -t \"http://www.onvif.org/ver10/network/wsdl\":NetworkVideoTransmitter \
                 -x http://10.0.0.50:1881

或修改代码:

const char* _type="\"http://www.onvif.org/ver10/network/wsdl\":NetworkVideoTransmitter" ;