java - ONVIF - 设备发现的开始

标签 java camera ip ip-camera onvif

我打算做一个 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/

相关文章:

linux - AWS 是否在 SSH 连接中保存客户端的 IP?

ruby-on-rails - 如何使用Rails获取客户端IP和服务器IP

java.text.ParseException : Unparseable number: "ä¢è»ÅÒËÅèÍ"

java - 如何在android中显示 ImageView ?

Android onPictureTaken 导致图像质量差/旋转错误

android camera (froyo) 不包含静态方法 open()

Java本地IP范围检测

java - 模拟 JPA/Hibernate 数据库

java - 关于 Java Swing 的一般问题

android - 在OpenCV2.3.1中使用VideoCapture捕获android相机