gpt4 book ai didi

java - ONVIF - 设备发现的开始

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:17:46 33 4
gpt4 key购买 nike

我打算做一个 java onvif 应用程序。我创建了一个新项目并从 devicemgmt.wsdl 生成了源代码。还从 remote discovery.wsdl 生成了类。如何使用这些生成的类发现网络中的设备?感谢您的帮助。

最佳答案

devicemgmt.wsdl 与发现过程无关,ONVIF 发现过程基于http://specs.xmlsoap.org/ws/2005/04/discovery它使用基于 UDP 的 SOAP。

如果您使用的是 apache-cxf,则可以使用

org.apache.cxf.ws.discovery.WSDiscoveryClient

一个简单的示例代码可以是:

import java.util.List;
import javax.xml.ws.EndpointReference;
import org.apache.cxf.ws.discovery.WSDiscoveryClient;

public class Main
{
public static void main(String[] args)
{
WSDiscoveryClient client = new WSDiscoveryClient();
client.setVersion10(); // use WS-discovery 1.0
client.setDefaultProbeTimeout(1000); // timeout 1s

System.out.println("Probe:" + client.getAddress());
List<EndpointReference> references = client.probe();

System.out.println("Nb answsers:" + references.size());
for (EndpointReference ref : references)
{
System.out.println(ref.toString());
}
}
}

关于java - ONVIF - 设备发现的开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20535199/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com