What wsdl to implement to add NetworkVideoTransmitter to supported ProbeMatch with CXF?

344 views Asked by At

Apache CXF implements WSDiscoveryServiceImpl to support WS-Discovery. And it iterates over published services to check supported Probes and requested: WS-Discovery with Apache CXF. How to specify device type?.

What wsdl should i implement and publish the service to add NetworkVideoTransmitter to supported Probes?

1

There are 1 answers

0
4ntoine On

After looking to the sources and debugging i've found one need just add properties to service impl:

@EndpointProperties(
        {
                @EndpointProperty(key = "ws-discovery-types", value="{http://www.onvif.org/ver10/network/wsdl}NetworkVideoTransmitter")
        })