1. SIP service implemented by GB28181 based on JAVA

GB28181 defines the video surveillance interconnection specification based on the SIP architecture. For most monitoring systems implemented by private protocols that want to access the SIP architecture, they must use a gateway. GB28181 standardizes the interconnection of SIP monitoring domains and non-SIP monitoring domains.

Recently, I wrote a docking of GB28181 platform using JAVA's SIP protocol, and successfully completed the docking of Hikvision, Dahua, Zhongwei and other equipment, and more importantly, the docking of Hikvision platform and the platform of the First Public Security Bureau. Because there are few JAVA device access implementations in the industry, I hope this article will allow JAVA to play an increasing role in the security access ecosystem.

JAVA SIP protocol support package MAVEN POM depends on:

    <!-- SPI协议相关的包 -->
    <dependency>
      <groupId>javax.sip</groupId>
      <artifactId>jain-sip-api</artifactId>
      <version>1.2.1.4</version>
    </dependency>

    <dependency>
      <groupId>javax.sip</groupId>
      <artifactId>jain-sip-ri</artifactId>
      <version>1.2.1.4</version>
    </dependency>

1. SIP service startup based on JAVA-based GB28181 implementation [part1] - Brief Book

2. GB28181: JAVA-based device registration implementation [part2] - Brief Book

3. GB28181: Catalog directory acquisition based on JAVA [part3] - Brief Book

4. GB28181: Real-time stream acquisition based on JAVA [part4] - Brief Book

Detailed explanation of JAIN SIP API and GB28181 server implementation_java build sip server_stubborn beginner's blog-CSDN blog

The first SIP protocol in the entire network: GB28181 registration (JAVA version) | A cut in the ocean

Guess you like

Origin blog.csdn.net/qq_16504067/article/details/131640869