CN112565214A - Data transmission method, system and medium based on WebSocket - Google Patents

Data transmission method, system and medium based on WebSocket Download PDF

Info

Publication number
CN112565214A
CN112565214A CN202011341838.9A CN202011341838A CN112565214A CN 112565214 A CN112565214 A CN 112565214A CN 202011341838 A CN202011341838 A CN 202011341838A CN 112565214 A CN112565214 A CN 112565214A
Authority
CN
China
Prior art keywords
server
websocket
subscription
data
client
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202011341838.9A
Other languages
Chinese (zh)
Inventor
程骏超
张德胜
张驰
郭明瑞
甄君
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
CSSC Systems Engineering Research Institute
Original Assignee
CSSC Systems Engineering Research Institute
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by CSSC Systems Engineering Research Institute filed Critical CSSC Systems Engineering Research Institute
Priority to CN202011341838.9A priority Critical patent/CN112565214A/en
Publication of CN112565214A publication Critical patent/CN112565214A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/16Implementation or adaptation of Internet protocol [IP], of transmission control protocol [TCP] or of user datagram protocol [UDP]
    • H04L69/161Implementation details of TCP/IP or UDP/IP stack architecture; Specification of modified or new header fields
    • H04L69/162Implementation details of TCP/IP or UDP/IP stack architecture; Specification of modified or new header fields involving adaptations of sockets based mechanisms
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L43/00Arrangements for monitoring or testing data switching networks
    • H04L43/10Active monitoring, e.g. heartbeat, ping or trace-route
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/01Protocols
    • H04L67/02Protocols based on web technology, e.g. hypertext transfer protocol [HTTP]
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/14Session management
    • H04L67/141Setup of application sessions
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/55Push-based network services

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Health & Medical Sciences (AREA)
  • Cardiology (AREA)
  • General Health & Medical Sciences (AREA)
  • Computer Security & Cryptography (AREA)
  • Information Transfer Between Computers (AREA)

Abstract

The invention provides a data transmission method, a system and a medium based on WebSocket. The method comprises the following steps: step S1, establishing WebSocket connection between the client and the server; step S2, the client sends a subscription request to the server according to the service requirement through the WebSocket connection so as to establish a subscription and distribution relationship; and step S3, the client receives the subscription topic data pushed by the server, wherein the server pushes the subscription topic data based on the subscription and distribution relationship. The method can be based on a dynamic message data subscription and distribution mechanism of a WebSocket protocol, solves the problem of synchronous data sharing between a browser client and a server, realizes direct data exchange between the browser and the server, and simultaneously improves the overall response capability of the system and the real-time display effect of the system.

Description

Data transmission method, system and medium based on WebSocket
Technical Field
The invention relates to the field of data transmission, in particular to a data transmission method, a data transmission system and a data transmission medium based on WebSocket.
Background
With the development of internet technology, in order to realize a push technology, a technology used by many websites is generally Ajax polling. Polling is the HTTP request by the browser to the server at a specific time interval (e.g., every 1 second), and then the server returns the most recent data to the client's browser. In a target monitoring system based on WebGIS, the position and state information of a target are often required to be monitored in real time, the behavior of the target can be alarmed, the target can be monitored, and the requirement can be basically met by a polling request mechanism based on ajax.
However, although the ajax-based polling request mechanism can effectively solve the data communication problem, the traditional mode brings obvious disadvantages that the browser needs to continuously send requests to the server, however, the HTTP request may contain a long header, wherein the really valid data may be only a small part, and obviously, much bandwidth and other resources are wasted.
Fig. 1 shows a schematic operation mode of Ajax and WebSocket. As shown in fig. 1, based on the polling request mode of Ajax, every time data is requested, the process of GET connecting to server- > protocol handshake- > receiving return data is executed, that is, the left side of fig. 1 is indicated by the arrow between the client and the server. Based on the WebSocket push mode, as long as connection is performed once, the server pushes the data to the client as long as the data exists, and the server does not need to be initiated again to connect and receive the data, that is, the client and the server on the right side in fig. 1 interact with the content indicated by the arrow.
Disclosure of Invention
The invention aims to provide a data transmission scheme based on WebSocket, so as to solve the technical problems in the prior art. According to the scheme, a long connection sharing and synchronizing data mechanism is established between a client (browser) and a server, long connection is established through WebSocket, and data sharing and synchronizing are realized through a dynamic message subscription and distribution mode, so that the geographic space position information of a monitoring target can be transmitted in real time, and the capability of monitoring and displaying the target position and other information on a WebGIS in real time is achieved.
The invention provides a data transmission method based on WebSocket in a first aspect, which comprises the following steps: step S1, establishing WebSocket connection between the client and the server; step S2, the client sends a subscription request to the server according to the service requirement through the WebSocket connection so as to establish a subscription and distribution relationship; and step S3, the client receives the subscription topic data pushed by the server, wherein the server pushes the subscription topic data based on the subscription and distribution relationship.
In the method provided by the first aspect of the present invention, in step S1, the client sends an HTTP request to the server, where additional header information of the HTTP request includes upgraded WebSocket connection information.
According to a first aspect of the present invention there is provided a method wherein the subscription topic data comprises one or more of location point data, attribute data, alert data.
According to a first aspect of the present invention there is provided a method, wherein the method further comprises: and step S4, the client performs visualization processing on the received subscription theme data.
A second aspect of the present invention provides a WebSocket-based data transmission system, including: the system comprises a client and a server, and a WebSocket connection is established between the client and the server; wherein the client is configured to: sending a subscription request to the server according to service requirements through the WebSocket connection so as to establish a subscription and distribution relationship; and receiving subscription topic data pushed by the server side, wherein the server side pushes the subscription topic data based on the subscription and distribution relationship.
In the system provided by the second aspect of the present invention, in the process of establishing the WebSocket connection between the client and the server, the client is configured to: and sending an HTTP request to the server, wherein the additional header information of the HTTP request contains the upgraded WebSocket connection information.
According to a second aspect of the present invention there is provided a system wherein the subscription topic data comprises one or more of location point data, attribute data, alert data.
According to a second aspect of the present invention, there is provided a system, wherein the client is further configured to: and carrying out visualization processing on the received subscription theme data.
A third aspect of the present invention provides a non-transitory computer-readable medium storing instructions that, when executed by a processor, perform the steps in the WebSocket-based data transmission method according to the first aspect of the present invention.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the embodiments or the description in the prior art will be briefly described below, and it is obvious that the drawings in the following description are some embodiments of the present invention, and other drawings can be obtained by those skilled in the art without creative efforts.
FIG. 1 is a schematic diagram showing the operation of Ajax and WebSocket according to a comparative example of the present invention;
fig. 2 is a schematic diagram of a flow of a WebSocket-based data transmission method according to an embodiment of the present invention;
FIG. 3 illustrates a flow diagram of message publishing and subscribing in accordance with an embodiment of the disclosure; and
fig. 4 is a structural diagram of a WebSocket-based data transmission system according to an embodiment of the present invention.
Detailed Description
The technical solutions of the present invention will be described clearly and completely with reference to the accompanying drawings, and it should be understood that the described embodiments are some, but not all embodiments of the present invention. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
A first aspect of the present invention provides a data transmission method based on WebSocket, and fig. 2 is a schematic diagram of a flow of the data transmission method based on WebSocket according to an embodiment of the present invention.
As shown in fig. 2, the process starts at step S1, and a WebSocket connection is established between a client and a server, where the client sends an HTTP request to the server, and additional header information of the HTTP request includes upgraded WebSocket connection information. In some embodiments, the client includes, but is not limited to, a browser. The method comprises the steps that a browser of a client initiates a WebSocket connection, firstly, an HTTP request is initiated to a server, the request is different from a common HTTP request and contains some additional header information, wherein the additional header information 'Upgrade: WebSocket' indicates that the request is an HTTP request for applying protocol upgrading, the server analyzes the additional header information and then generates response information to return to the client, and therefore the WebSocket connection between the client and the server is established, the client and the server can freely transmit information through the connection channel, and the connection can continuously exist until the client or one of the server actively closes the connection.
In step S2, through the WebSocket connection, the client sends a subscription request to the server according to a service requirement, so as to establish a subscription and distribution relationship. The browser client sends a subscription request to the server through WebSocket connection according to the service requirement, and the communication can be directly carried out without requesting connection to the server. And the server side responds to the request and establishes a subscription and distribution relation. In some embodiments, the business requirements are, for example: the method comprises the steps that vehicle monitoring is carried out, a user needs to monitor the distribution and the use condition of vehicles of a unit at the current level, the user uses a WebGIS system to send a subscription request to a message server, and the server pushes information such as vehicle position information, speed, direction and state of the unit at the current level to the WebGIS system through requested parameters and user information and Websocket.
In step S3, the client receives the subscription topic data pushed from the server, where the server pushes the subscription topic data based on the subscription distribution relationship. The subscription topic data comprises one or more of location point data, attribute data and alarm data. Specifically, the server finds a browser client WebSocket session through a subscription and distribution relationship, and starts to continuously push subscribed theme data to the client, for example: location point data, attribute data, alarm data, etc.
In some embodiments, the method further includes step S4, where the client performs visualization processing on the received subscription topic data. After receiving the data, the browser client displays the data such as the real-time position, the attribute and the like of the target on the WebGIS; for example: longitude, latitude, altitude, speed, direction, status, etc. of the target location.
FIG. 3 shows a flow diagram of message publishing and subscribing according to an embodiment of the disclosure. As shown in fig. 3, the message producer is generally a GPS or beidou positioning terminal, and after the terminal is connected to the message server, the terminal starts to send message data to a corresponding topic in the message exchange server, and starts to broadcast the message; then the message exchange server pushes the corresponding topic message to a client subscribing the corresponding topic, namely a message consumer; the message consumers can be a plurality of messages, and the same message can be processed differently, including map display, data calculation and the like. The messages are automatically pushed to the client by the message exchange server through WebSocket data transmission, and the client only needs to be connected to the message exchange server and subscribe to corresponding topics.
To sum up, the data transmission method based on the WebSocket in the first aspect of the present invention has the following technical effects:
1) less control overhead: when data is exchanged between the server and the client after the connection is created, the header of the packet for protocol control is relatively small. Without the inclusion of an extension, this header size is only 2 to 10 bytes (relative to the packet length) for server-to-client content; for client-to-server content, this header also needs to be added with an additional 4-byte mask. This overhead is significantly reduced relative to HTTP requests that each time carry a complete header.
2) Stronger real-time performance: because the protocol is full duplex, the server can actively send data to the client at any time. Compared with the HTTP request, the response can be realized only by waiting for the client to initiate the request server, so that the delay is obviously less; it can deliver data more times in a short time even in comparison with Comet and the like, which are long polls.
3) Maintaining the connection state: unlike HTTP, WebSocket requires a connection to be created first, which makes it a stateful protocol, and then partial state information can be omitted during communication. And HTTP requests may need to carry state information (e.g., authentication, etc.) at each request.
4) Better binary support: WebSocket defines binary frames, which can handle binary content more easily than HTTP.
5) Extensions can be supported: the WebSocket defines the extension, and a user can extend a protocol and realize a partially customized subprotocol, such as compression supported by a partial browser.
6) Better compression effect: compared with HTTP compression, WebSocket can continue the context of the previous content under the support of proper expansion, and can remarkably improve the compression rate when similar data is transferred.
A second aspect of the present invention provides a data transmission system based on WebSocket, and fig. 4 is a structural diagram of the data transmission system based on WebSocket according to the embodiment of the present invention. As shown in fig. 4, the system includes a client 401 and a server 402, and a WebSocket connection is established between the client 401 and the server 402. The client 401 is configured to: sending a subscription request to the server 402 according to a service requirement via the WebSocket connection to establish a subscription and distribution relationship; and receiving the subscription topic data pushed by the server side 402, wherein the server side 402 pushes the subscription topic data based on the subscription distribution relationship.
In the system provided by the second aspect of the present invention, in the process of establishing the WebSocket connection between the client 401 and the server 402, the client 401 is configured to send an HTTP request to the server 402, where additional header information of the HTTP request includes upgraded WebSocket connection information.
According to a second aspect of the present invention there is provided a system wherein the subscription topic data comprises one or more of location point data, attribute data, alert data.
The system according to the second aspect of the present invention, wherein the client 401 is further configured to: and carrying out visualization processing on the received subscription theme data.
The data transmission system based on the WebSocket in the second aspect of the invention has the following technical effects:
1) system decoupling: there is no direct calling relation between interactive systems, only through message transmission, so the system intrusiveness is not strong, the coupling degree is low, different systems are independent and can be linked with each other.
2) Providing services for big data processing architectures: by using the message as integration, the message queue is also integrated with a real-time processing architecture in the context of big data, and performance support is provided for data processing.
3) Expansibility: because the message queue decouples the processing, it is easy to increase the frequency of message enqueuing and processing, as long as the processing is additionally increased; the code and the parameters do not need to be changed and adjusted, thereby facilitating the distributed capacity expansion.
4) Overload protection: in case of a drastic increase in the amount of access, the application still needs to continue to function, but such burst traffic cannot extract the prediction; it is clearly a huge waste if resources are put on standby at any time in order to be able to handle such instantaneous peak accesses. The use of message queues enables critical components to withstand burst access pressures without crashing completely due to burst overloaded requests.
5) Recoverability: when a part of components of the system fail, the whole system is not influenced. Message queues reduce the degree of coupling between processes so that even if a process that processes a message hangs, messages that are enqueued can still be processed after the system resumes.
6) And (3) ensuring the sequence: in most use scenes, the data processing sequence is important, especially in a target monitoring system, the point positions and the time of targets are in one-to-one correspondence, and the sequence requirement is particularly high. Most message queues are inherently ordered and ensure that data is processed in a particular order.
7) Buffering: in any important system, there will be elements that require different processing times. The message queue facilitates the most efficient execution of tasks through a buffer layer that helps control and optimize the speed of data flow through the system to adjust system response time.
A third aspect of the present invention provides a non-transitory computer-readable medium storing instructions that, when executed by a processor, perform the steps in the WebSocket-based data transmission method according to the first aspect of the present invention.
In conclusion, the technical scheme of the invention establishes a data sharing synchronization mechanism based on WebSocket, and a fast channel with long connection is formed between the browser and the server, so that the browser and the server can directly transmit data to each other; the trouble of actively sending the polling request of the server in the past is changed, the pressure of the service can be reduced, and the whole response capability of the system and the real-time display effect of the system are improved. Meanwhile, a dynamic message data subscription and distribution mechanism based on the WebSocket protocol is realized, and the problem of synchronous data sharing between the browser client and the server is solved.
Finally, it should be noted that: the above embodiments are only used to illustrate the technical solution of the present invention, and not to limit the same; while the invention has been described in detail and with reference to the foregoing embodiments, it will be understood by those skilled in the art that: the technical solutions described in the foregoing embodiments may still be modified, or some or all of the technical features may be equivalently replaced; and the modifications or the substitutions do not make the essence of the corresponding technical solutions depart from the scope of the technical solutions of the embodiments of the present invention.

Claims (9)

1. A data transmission method based on WebSocket is characterized by comprising the following steps:
step S1, establishing WebSocket connection between the client and the server;
step S2, the client sends a subscription request to the server according to the service requirement through the WebSocket connection so as to establish a subscription and distribution relationship; and
step S3, the client receives the subscription topic data pushed from the server, where the server pushes the subscription topic data based on the subscription and distribution relationship.
2. The WebSocket-based data transmission method of claim 1, wherein in step S1, the client sends an HTTP request to the server, and additional header information of the HTTP request includes upgraded WebSocket connection information.
3. The WebSocket-based data transmission method according to claim 1, wherein the subscription topic data comprises one or more of location point data, attribute data, and alarm data.
4. The WebSocket-based data transmission method of claim 1, further comprising:
and step S4, the client performs visualization processing on the received subscription theme data.
5. A WebSocket-based data transmission system, the system comprising: the system comprises a client and a server, and a WebSocket connection is established between the client and the server;
wherein the client is configured to:
sending a subscription request to the server according to service requirements through the WebSocket connection so as to establish a subscription and distribution relationship; and
and receiving subscription topic data pushed by the server side, wherein the server side pushes the subscription topic data based on the subscription distribution relationship.
6. The WebSocket-based data transmission system according to claim 5, wherein in the process of establishing the WebSocket connection between the client and the server, the client is configured to: and sending an HTTP request to the server, wherein the additional header information of the HTTP request contains the upgraded WebSocket connection information.
7. The WebSocket-based data transmission system of claim 5, wherein the subscription topic data comprises one or more of location point data, attribute data, and alarm data.
8. The WebSocket-based data transmission system of claim 5, wherein the client is further configured to: and carrying out visualization processing on the received subscription theme data.
9. A non-transitory computer-readable medium storing instructions which, when executed by a processor, perform the steps in the WebSocket-based data transmission method of any one of claims 1 to 4.
CN202011341838.9A 2020-11-26 2020-11-26 Data transmission method, system and medium based on WebSocket Pending CN112565214A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202011341838.9A CN112565214A (en) 2020-11-26 2020-11-26 Data transmission method, system and medium based on WebSocket

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202011341838.9A CN112565214A (en) 2020-11-26 2020-11-26 Data transmission method, system and medium based on WebSocket

Publications (1)

Publication Number Publication Date
CN112565214A true CN112565214A (en) 2021-03-26

Family

ID=75043740

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202011341838.9A Pending CN112565214A (en) 2020-11-26 2020-11-26 Data transmission method, system and medium based on WebSocket

Country Status (1)

Country Link
CN (1) CN112565214A (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114064264A (en) * 2021-09-16 2022-02-18 浪潮卓数大数据产业发展有限公司 Front-end multithreading rendering method and device based on real-time communication and computer medium
CN114338773A (en) * 2021-12-31 2022-04-12 北京明朝万达科技股份有限公司 Data updating method, system and device based on bidirectional communication connection
CN114363427A (en) * 2021-12-24 2022-04-15 北京鼎普科技股份有限公司 Method for acquiring information of host equipment in real time based on browser
CN114615324A (en) * 2022-03-09 2022-06-10 科技谷(厦门)信息技术有限公司 Websocket-based internet of vehicles alarm push system
CN114979238A (en) * 2022-05-24 2022-08-30 浪潮软件集团有限公司 Multi-client data real-time pushing method and system

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102546794A (en) * 2011-12-30 2012-07-04 华为技术有限公司 Method for directly communicating browser client with back-end server as well as gateway and communication system
CN102904962A (en) * 2012-10-23 2013-01-30 深圳市汇智集信息科技有限公司 Message pushing system and message pushing method thereof
CN103546584A (en) * 2013-11-13 2014-01-29 深圳市中兴移动通信有限公司 Information pushing method and system
CN104796473A (en) * 2015-04-21 2015-07-22 努比亚技术有限公司 Cross-platform information push method and cross-platform information push system
CN106850745A (en) * 2016-12-23 2017-06-13 北京五八信息技术有限公司 A kind of real-time synchronization method and device
CN111381981A (en) * 2020-03-04 2020-07-07 上海东普信息科技有限公司 Method, device and equipment for pushing applet messages and storage medium

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102546794A (en) * 2011-12-30 2012-07-04 华为技术有限公司 Method for directly communicating browser client with back-end server as well as gateway and communication system
CN102904962A (en) * 2012-10-23 2013-01-30 深圳市汇智集信息科技有限公司 Message pushing system and message pushing method thereof
CN103546584A (en) * 2013-11-13 2014-01-29 深圳市中兴移动通信有限公司 Information pushing method and system
CN104796473A (en) * 2015-04-21 2015-07-22 努比亚技术有限公司 Cross-platform information push method and cross-platform information push system
CN106850745A (en) * 2016-12-23 2017-06-13 北京五八信息技术有限公司 A kind of real-time synchronization method and device
CN111381981A (en) * 2020-03-04 2020-07-07 上海东普信息科技有限公司 Method, device and equipment for pushing applet messages and storage medium

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114064264A (en) * 2021-09-16 2022-02-18 浪潮卓数大数据产业发展有限公司 Front-end multithreading rendering method and device based on real-time communication and computer medium
CN114363427A (en) * 2021-12-24 2022-04-15 北京鼎普科技股份有限公司 Method for acquiring information of host equipment in real time based on browser
CN114338773A (en) * 2021-12-31 2022-04-12 北京明朝万达科技股份有限公司 Data updating method, system and device based on bidirectional communication connection
CN114338773B (en) * 2021-12-31 2024-03-19 北京明朝万达科技股份有限公司 Data updating method, system and device based on two-way communication connection
CN114615324A (en) * 2022-03-09 2022-06-10 科技谷(厦门)信息技术有限公司 Websocket-based internet of vehicles alarm push system
CN114979238A (en) * 2022-05-24 2022-08-30 浪潮软件集团有限公司 Multi-client data real-time pushing method and system

Similar Documents

Publication Publication Date Title
CN112565214A (en) Data transmission method, system and medium based on WebSocket
WO2019205907A1 (en) Intelligent device communication platform based on mqtt message protocol
WO2020093500A1 (en) Intelligent scheduling method, terminal device, edge node cluster and intelligent scheduling system
US11356522B2 (en) Data transmission method, network device, terminal device, and computer readable storage medium
EP2627056B1 (en) Method, gateway, proxy and system for implementing mobile internet services
JP2014531179A (en) Network bandwidth throttling using traffic scheduling
JP2010134966A (en) Apparatus, and associated method, for facilitating delivery and processing of push content
CN103795689A (en) Resource subscription method and device
CN112738548B (en) Streaming media scheduling method, device, equipment and storage medium
EP3417598B1 (en) Method, apparatus and computer program for communicating state change information
US20060069777A1 (en) Request message control method for using service and service providing system
CN112600881A (en) Method, device, server and storage medium for providing service of internet of things
CN102118325B (en) Method and device for configuring chat client terminal, as well as chat client terminal
CN112256246A (en) Micro-service integration framework for supporting cross-language calling in power system
KR101272077B1 (en) System and method for providing push service
CN112769671B (en) Message processing method, device and system
CN108259576B (en) Software and hardware real-time information transmission system and method
CN112491951A (en) Request processing method, server and storage medium in peer-to-peer network
CN113810264B (en) Information transmission method, device, electronic equipment and storage medium
CN111245874B (en) Information pushing method, device, server and storage medium
CN111222074A (en) Message pushing method and system based on Websocket protocol
CN113783963A (en) Data transmission method, server node, gateway device and network system
CN113746851A (en) Agent system and method for supporting real-time analysis of GRPC request
JP2000224126A (en) Information transmission system
CN113037803A (en) Geological disaster monitoring method and system, electronic equipment and storage medium

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination