I working with onvif cameras but have a few issues with discovery.
Using very basic discovery code as below I get reply's from most of the devices on our network but a few are being discarded. I've added trace logging and i can see the messages being discarded by the discovery client with the description
A ProbeMatches message with messageId='uuid:xxx' and relatesTo='uuid:xx' was dropped by the DiscoveryClient because either the corresponding Find operation was completed or the relatesTo value is invalid.
Looking at the relatesTo value in the trace and also in MS Network Monitor they seem to be exactly the same and the ones that are getting dropped are in the first few replies so i dont think they are after the operation has completed.
I have also run up the onvif device manager that is on sourceforge, this has the same problems but with different devices, has anybody come across this before or have any ideas what could be causing it.
public void TryToDiscoverClients()
{
System.Net.ServicePointManager.Expect100Continue = false;
var endPoint = new UdpDiscoveryEndpoint(DiscoveryVersion.WSDiscoveryApril2005);
var discoveryClient = new DiscoveryClient(endPoint);
discoveryClient.FindProgressChanged += discoveryClient_FindProgressChanged;
FindCriteria findCriteria = new FindCriteria();
findCriteria.Duration = TimeSpan.MaxValue;
findCriteria.MaxResults = int.MaxValue;
findCriteria.ContractTypeNames.Add(new XmlQualifiedName("NetworkVideoTransmitter", @"http://www.onvif.org/ver10/network/wsdl"));
findCriteria.ContractTypeNames.Add(new XmlQualifiedName("Device", @"http://www.onvif.org/ver10/device/wsdl"));
discoveryClient.FindAsync(findCriteria);
}
private void discoveryClient_FindProgressChanged(object sender, FindProgressChangedEventArgs e)
{
Results.Add(e);
}
I ran into this same problem with some ACTi cameras (e.g., KCM-3911, I51) in ONVIF mode. Two ONVIF clients - the ONVIF Test Tool and the Onvif Device Manager - were able to discover these cameras, but not my own code, which is essentially equivalent to your code. On examining the WCF Message and Trace logs that contain the same error as yours, and comparing the Probe and the ProbeMatch replies from these cameras, I noticed that both messageId and the relatesTo values are missing the "urn:" prefix required by WS Addressing.
I have contacted ACTi Tech Support about this discrepancy that is not conformant with ONVIF specifications that rely on the WS Addressing specification. Meanwhile, I am looking into how the ONVIF Test Tool and the Onvif Device Manager are processing the ProbeMatch in order to discover these cameras, although what they are doing must not be in accord with the specifications, otherwise they would also be rejecting the ProbeMatch replies like WCF.