在我的 onvif 客户端应用程序中,我希望使用 gsoap 和 wsddapi.c 来实现 WS-Discovery,但是处理程序有问题。我可以使用soap_wsdd_probe(wsddapi.c)通过UDP发送多播消息,我已经实现了soap_bind、listen和wsdd_event_probematches,但我没有收到来自服务的消息。
/*MY CLIENT*/
#include "wsdd.nsmap"
#include "soapH.h"
#include "wsddapi.h"
int main () {
struct soap* soap=soap_new();
struct soap* serv=soap_new(); //for the listner and the event handler
int time=100, port=53881;
if (!soap_valid_socket(soap_bind(soap, NULL, port, 100)))
{ soap_print_fault(soap, stderr);
exit(0);
}
soap->connect_flags=SO_BROADCAST;
const char * msg_uuid = NULL;
msg_uuid=soap_wsa_rand_uuid(soap);
soap_wsdd_Probe(soap, SOAP_WSDD_ADHOC, SOAP_WSDD_TO_TS,"soap.udp://239.255.255.250:3702",msg_uuid, NULL,"dp0:NetworkVideoTransmitter","", NULL);
soap_wsdd_listen(serv, 2); // listen for messages
soap_destroy(soap);
soap_end(soap);
soap_done(soap);
return 0;
}
wsddapi.c 中的事件处理程序我已经实现了wsdd_event_probematches()
void wsdd_event_ProbeMatches(struct soap *soap, unsigned int InstanceId, const char *SequenceId, unsigned int MessageNumber, const char *MessageID, const char *RelatesTo, struct wsdd__ProbeMatchesType *matches){
printf("MessageID:%s",MessageID);
printf("%s",matches->ProbeMatch->XAddrs);
}