CN110808948A - Remote procedure calling method, device and system - Google Patents

Remote procedure calling method, device and system Download PDF

Info

Publication number
CN110808948A
CN110808948A CN201910899742.5A CN201910899742A CN110808948A CN 110808948 A CN110808948 A CN 110808948A CN 201910899742 A CN201910899742 A CN 201910899742A CN 110808948 A CN110808948 A CN 110808948A
Authority
CN
China
Prior art keywords
calling
request
client
module
calling request
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.)
Granted
Application number
CN201910899742.5A
Other languages
Chinese (zh)
Other versions
CN110808948B (en
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.)
Zhongchang (hangzhou) Information Technology Co Ltd
China Mobile Communications Group Co Ltd
Original Assignee
Zhongchang (hangzhou) Information Technology Co Ltd
China Mobile Communications Group Co Ltd
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 Zhongchang (hangzhou) Information Technology Co Ltd, China Mobile Communications Group Co Ltd filed Critical Zhongchang (hangzhou) Information Technology Co Ltd
Priority to CN201910899742.5A priority Critical patent/CN110808948B/en
Publication of CN110808948A publication Critical patent/CN110808948A/en
Application granted granted Critical
Publication of CN110808948B publication Critical patent/CN110808948B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • 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/60Scheduling or organising the servicing of application requests, e.g. requests for application data transmissions using the analysis and optimisation of the required network resources
    • 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/01Protocols
    • H04L67/133Protocols for remote procedure calls [RPC]

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Telephonic Communication Services (AREA)

Abstract

The embodiment of the invention relates to the technical field of communication, and discloses a remote procedure calling method, device and system. The invention is applied to a server, and the method comprises the following steps: uniformly receiving a calling request sent by a client through a preset interface; routing the calling request to a target micro-service process corresponding to the calling request according to the calling request; and processing the calling request through the target micro-service process to obtain a calling result, and sending the calling result to the client through a preset interface. The receiving and processing of the call request correspond to different processes respectively, and when the micro service process is used for service change, the receiving of the call request is not influenced, and the normal work of other micro service processes is not influenced, so that the service does not need to be interrupted, and the normal response of the call request is ensured.

Description

Remote procedure calling method, device and system
Technical Field
The embodiment of the invention relates to the technical field of communication, in particular to a remote procedure calling method, a remote procedure calling device and a remote procedure calling system.
Background
Remote Procedure Calls (RPCs) generally use a client/server mode, meaning that a service is requested from a Remote server using the network. Specifically, the client calling process sends a calling message with process parameters to the service process, and then waits for a response message. At the server, the process remains in a sleep state until the call information arrives. When a calling message arrives, the server side obtains the process parameters, calculates the result, sends the reply message, then waits for the next calling message, and finally, the client side calls the process to receive the reply message, obtains the process result, and then calls execution to continue.
The inventors found that at least the following problems exist in the related art: when a service processed by a service process is changed, the service needs to be interrupted and modified, and the calling information sent by the client cannot be received or responded in the service interruption process.
Disclosure of Invention
The embodiment of the invention aims to provide a remote procedure calling method, a remote procedure calling device and a remote procedure calling system, so that when a service is changed, the service does not need to be interrupted, and the normal operation of the service is ensured.
In order to solve the above technical problem, an embodiment of the present invention provides a remote procedure call method, which is applied to a server, and includes: uniformly receiving a calling request sent by a client through a preset interface; routing the calling request to a target micro-service process corresponding to the calling request according to the calling request; and processing the calling request through the target micro-service process to obtain a calling result, and sending the calling result to the client through a preset interface.
The embodiment of the invention also provides a remote procedure call method, which is applied to the client and comprises the following steps: defining a calling request; wherein, the calling request at least comprises: business data and service names; sending the calling request to a preset interface of the server, so that the server can receive the calling request through the preset interface in a unified manner and process the calling request; and when the server returns the calling result, receiving the calling result.
The embodiment of the invention also provides a remote procedure call device, which comprises: the system comprises a first receiving module, a routing module, a processing module and a first sending module; the first receiving module is used for uniformly receiving a calling request sent by a client through a preset interface; the routing module is used for routing the calling request to a target micro-service process corresponding to the calling request according to the calling request; the processing module is used for processing the calling request through the target micro-service process to obtain a calling result; and the first sending module is used for sending the calling result to the routing module and sending the calling result to the client through a preset interface.
The embodiment of the invention also provides a remote procedure call device, which comprises: the definition module, the second sending module and the second receiving module; the definition module is used for defining a calling request; wherein, the calling request at least comprises: business data and service names; the second sending module is used for sending the calling request to a preset interface of the server so that the server can receive the calling request uniformly through the preset interface and process the calling request; the second receiving module is used for receiving the calling result when the server returns the calling result.
An embodiment of the present invention further provides a server, including: at least one processor; and a memory communicatively coupled to the at least one processor; wherein the memory stores instructions executable by the at least one processor to enable the at least one processor to perform the remote procedure call method.
An embodiment of the present invention further provides a client, including: at least one processor; and a memory communicatively coupled to the at least one processor; wherein the memory stores instructions executable by the at least one processor to enable the at least one processor to perform the remote procedure call method.
The embodiment of the invention also provides a remote procedure call system, which comprises the server and the client.
Compared with the prior art, the interface calling is transparent, the server receives the calling request sent by the client side through the fixed interface in a unified mode, the received calling request is routed to the target micro-service process for processing the calling request, the target micro-service process processes and replies the calling request, the obtained calling result is returned to the client side, and the interface for returning the calling result is the same as the interface for receiving the calling request sent by the client side. By the method, the interface can be definitely called, and the client directly sends the calling request to the fixed calling interface, so that the sending object of the calling request is more definite. On the other hand, the receiving and processing of the call request correspond to different processes respectively, and when the micro service process is used for service change, the receiving of the call request is not influenced, and the normal work of other micro service processes is not influenced, so that the service does not need to be interrupted, and the normal response of the call request is ensured.
In addition, after receiving the call request sent by the client, the method further comprises: judging the type of the session requested by the client according to the calling request; the session type specifically includes: a short connection request type or a long connection request type; and when the service type requested by the client is judged to be the long connection request type, establishing a bidirectional channel with the client. When the types of the sessions called by the calling requests are different, the calling requests are processed in different ways.
In addition, routing the invocation request to a target microservice process corresponding to the invocation request according to the invocation request specifically includes: and determining a target micro-service process corresponding to the calling request according to the service name and calling method name contained in the calling request, and routing the calling request to the determined target micro-service process. And determining a target micro-service process for processing the call request according to the service name and the call method name defined in the call request, and selecting the micro-service process most suitable for processing the call request at present according to the service condition of the micro-service process, so that the call request is processed more efficiently.
In addition, the call request is specifically defined by a ProtoBuf serialization protocol and is transmitted based on an HTTP/2 protocol. The method for calling the request and the return type of the calling result are defined by the ProtoBuf serialization protocol, the speed of the content exchange format is improved, and the programming efficiency is improved. The calling request is transmitted based on the HTTP/2 protocol, and header information of the protocol can be compressed, so that the header information of the protocol is smaller, the consumption of flow is reduced, and safe and stable calling service is provided for the client.
Drawings
One or more embodiments are illustrated by way of example in the accompanying drawings, which correspond to the figures in which like reference numerals refer to similar elements and which are not to scale unless otherwise specified.
FIG. 1 is a flow chart of a remote procedure call method according to a first embodiment of the invention;
FIG. 2 is a flow chart of a remote procedure call method according to a second embodiment of the present invention;
FIG. 3 is a schematic diagram of a remote procedure call device according to a third embodiment of the present invention;
FIG. 4 is a schematic diagram of a remote procedure call device according to a fourth embodiment of the present invention;
fig. 5 is a schematic configuration diagram of a server according to a fifth embodiment of the present invention;
fig. 6 is a schematic structural diagram of a client according to a sixth embodiment of the present invention;
fig. 7 is a schematic structural diagram of a remote procedure call system according to a seventh embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present invention more apparent, embodiments of the present invention will be described in detail below with reference to the accompanying drawings. However, it will be appreciated by those of ordinary skill in the art that numerous technical details are set forth in order to provide a better understanding of the present application in various embodiments of the present invention. However, the technical solution claimed in the present application can be implemented without these technical details and various changes and modifications based on the following embodiments.
The following embodiments are divided for convenience of description, and should not constitute any limitation to the specific implementation manner of the present invention, and the embodiments may be mutually incorporated and referred to without contradiction.
The first embodiment of the invention relates to a remote procedure call method, which is applied to a server and comprises the following steps: uniformly receiving a calling request sent by a client through a preset interface; routing the calling request to a target micro-service process corresponding to the calling request according to the calling request; and processing the calling request through the target micro-service process to obtain a calling result, and sending the calling result to the client through a preset interface. And receiving the call request sent by the client through a uniform call interface, and routing the call request to the corresponding micro-service process, so that the sending object of the call request is more definite. The implementation details of the remote procedure call method according to this embodiment are described in detail below, and the following description is only provided for the convenience of understanding, and is not necessary for implementing this embodiment. The specific flow is shown in figure 1.
Step 101, uniformly receiving a call request sent by a client through a preset interface. Specifically, a functional interface of the server is optimized, and a fixed interface is set to uniformly receive a call request of the client. For example, calling requests sent by a first terminal, a second terminal, a third terminal and the like of a client are all received by a preset interface of a server, the server manages the calling requests received by the preset interface, a module capable of managing the calling requests by the server is named as a connector module in practical application, and the calling requests received by the server are all received by the connector module.
And 102, routing the calling request to a target micro-service process corresponding to the calling request according to the calling request. Specifically, the service end receives the call request including the service name, the calling method name, and the session type. The service name is used for determining the micro-service module corresponding to the calling request; the calling method names correspond to the calling interfaces and are used for determining functions which can be realized in the micro-service module; the session type includes a short connection request type and a long connection request type, and is used for distinguishing the session type of the call request.
The following describes a call request of the short connection request type and a call request of the long connection request type.
When the session type of the call request is a short connection request type, the short connection request is a request for list data, a request for attendance rules and the like, the connector module routes the call request to the micro-service module corresponding to the call request according to the service name and the calling method name in the call request, and if more than one micro-service module meeting the calling conditions of the call request, one micro-service module with the lowest utilization rate is selected from the calling conditions meeting the call request to process the call request, so that the call result is obtained more efficiently. And when the micro-service module processes the call request, the micro-service module analyzes the message in the call request, and returns the service data called by the client to the connector module according to the analyzed call request to complete the processing of the call request. When the connector module sends a call request to a target microservice process, if the sending fails due to conditions such as overtime, network disconnection and the like, the call request is added into a queue with failed sending, and the call request is automatically retransmitted by a background, so that the call request is ensured to be replied.
When the session type of the call request is a long connection request type, the long connection request is a request such as login, logout, automatic login and the like, the connector module establishes a bidirectional channel between the server and the client, and transmits the long connection request and a call result aiming at the request through the bidirectional channel. After the bidirectional channel is established, whether the connection of the channel is normal or not needs to be detected, and a heartbeat mechanism can be adopted to detect the connection condition of the channel. In addition, when the call request is transmitted by using the bidirectional channel, the user permission of the call request needs to be judged by using the token, and if the terminal user sending the call request does not have the use permission of the bidirectional channel, the call request is refused to pass through the bidirectional channel. And refreshing the token after the token fails, so that the problem that the token fails to cause interface error report is avoided.
And 103, processing the calling request through the target micro-service process to obtain a calling result.
And step 104, sending the calling result to the client through a preset interface. Specifically, after the micro service module obtains the call result, the micro service module may be returned to the connector module, and the connector module sends the call result to the client.
Compared with the prior art, the interface calling is transparent, the server receives the calling request sent by the client side through the fixed interface in a unified mode, the received calling request is routed to the target micro-service process for processing the calling request, the target micro-service process processes and replies the calling request, the obtained calling result is returned to the client side, and the interface for returning the calling result is the same as the interface for receiving the calling request sent by the client side. By the method, the interface can be definitely called, and the client directly sends the calling request to the fixed calling interface, so that the sending object of the calling request is more definite. On the other hand, the receiving and processing of the call request correspond to different processes respectively, and when the micro service process is used for service change, the receiving of the call request is not influenced, and the normal work of other micro service processes is not influenced, so that the service does not need to be interrupted, and the normal response of the call request is ensured.
The second embodiment of the invention relates to a remote procedure call method, which is applied to a client and comprises the following steps: defining a calling request; wherein, the calling request at least comprises: business data and service names; sending the calling request to a preset interface of the server, so that the server can receive the calling request through the preset interface in a unified manner and process the calling request; and when the server returns the calling result, receiving the calling result. The implementation details of the remote procedure call method according to this embodiment are described in detail below, and the following description is only provided for the convenience of understanding, and is not necessary for implementing this embodiment. The specific flow is shown in fig. 2.
Step 201, defining a call request. Specifically, the call request is defined through a ProtoBuf serialization protocol, for example, when the defined session type of the call request is a short connection request type, a service data parameter included in the call request is set to a corresponding ProtoBuf object, and binary data is generated. And setting the service name, the calling method name and the generated binary data in the calling request into a corresponding ProtoBuf request object to realize remote calling, wherein if the request object is set as a connector module of the server, the client sends the calling request to the connector module of the server. When the defined session type of the call request is a long connection request type, defining an identifier for distinguishing the long connection request from the short connection request; in addition, the invocation request may include information of the terminal device, such as an identification number (IMEI) of the mobile device, a type or a version number of the terminal device, and the like, which is used for identifying the authority of the user after the bidirectional channel is established. The performance can be improved to a large extent by utilizing the deserialization and serialization of the ProtoBuf protocol, and both sides of the protocol only need to care about protocol definition and do not need to consider the compatibility problem.
Step 202, sending the call request to a preset interface of the server. Specifically, the call request defined above is transmitted by using a standardized HTTP/2 protocol, and the call request is sent to the connector module of the server. The standardized HTTP/2 protocol has the advantages of the SPDY protocol, and simultaneously, the protocol header information is smaller through an HPACK algorithm specially designed for compressing the header information, so that the time and the data volume for transmitting data are reduced, and the calling efficiency of a client is improved.
Step 203, when the server returns the calling result, the calling result is received. Specifically, when the client receives a call result returned by the server, the client analyzes the data type of the data in the call result, and performs deserialization processing on the service data binary stream in the call result by using the ProtoBuf to obtain call data required by the client, wherein the data required to be called by the client can be a received single chat group chat message in an instant messaging system or a contact message in an enterprise address book system. And completing the remote calling.
In the embodiment, the client defines the call request, and sends the defined call request to the unified call interface of the server, so that the sending object of the call request is clarified. The ProtoBuf protocol is utilized when the call request is defined, the performance of data serialization is improved, when the call request is sent to a preset interface of a server side, transmission is carried out based on the HTTP/2 protocol, header information of transmission data can be compressed, and the header information of the protocol is smaller, so that the time and the data volume of the transmission data are reduced, and the call efficiency of a client side is improved.
The steps of the above methods are divided for clarity, and the implementation may be combined into one step or split some steps, and the steps are divided into multiple steps, so long as the same logical relationship is included, which are all within the protection scope of the present patent; it is within the scope of the patent to add insignificant modifications to the algorithms or processes or to introduce insignificant design changes to the core design without changing the algorithms or processes.
A third embodiment of the present invention relates to a remote procedure call apparatus, as shown in fig. 3, including: a first receiving module 301, a routing module 302, a processing module 303, a first sending module 304; the first receiving module 301 is configured to receive a call request sent by a client through a preset interface in a unified manner; the routing module 302 is configured to route the invocation request to a target microservice process corresponding to the invocation request according to the invocation request; the processing module 303 is configured to process the call request through the target micro service process to obtain a call result; the first sending module 304 is configured to send the call result to the routing module, and send the call result to the client through a preset interface.
It should be understood that this embodiment is a system example corresponding to the first embodiment, and may be implemented in cooperation with the first embodiment. The related technical details mentioned in the first embodiment are still valid in this embodiment, and are not described herein again in order to reduce repetition. Accordingly, the related-art details mentioned in the present embodiment can also be applied to the first embodiment.
It should be noted that each module referred to in this embodiment is a logical module, and in practical applications, one logical unit may be one physical unit, may be a part of one physical unit, and may be implemented by a combination of multiple physical units. In addition, in order to highlight the innovative part of the present invention, elements that are not so closely related to solving the technical problems proposed by the present invention are not introduced in the present embodiment, but this does not indicate that other elements are not present in the present embodiment.
A fourth embodiment of the present invention relates to a remote procedure call apparatus, as shown in fig. 4, including: a defining module 401, a second sending module 402, a second receiving module 403; the definition module 401 is used for defining a call request; wherein, the calling request at least comprises: business data and service names; the second sending module 402 is configured to send the call request to a preset interface of the server, so that the server uniformly receives the call request through the preset interface and processes the call request; the second receiving module 403 is configured to receive the call result when the server returns the call result.
Since the second embodiment corresponds to the present embodiment, the present embodiment can be implemented in cooperation with the second embodiment. The related technical details mentioned in the second embodiment are still valid in this embodiment, and the technical effects that can be achieved in the second embodiment can also be achieved in this embodiment, and are not described herein again in order to reduce the repetition. Accordingly, the related-art details mentioned in the present embodiment can also be applied to the second embodiment.
A fifth embodiment of the present invention is directed to a server, as shown in fig. 5, including at least one processor 501; and a memory 502 communicatively coupled to the at least one processor 501; wherein the memory 502 stores instructions executable by the at least one processor 501, the instructions being executable by the at least one processor 501 to enable the at least one processor 501 to perform the remote procedure call method described above.
The memory 502 and the processor 501 are coupled by a bus, which may include any number of interconnected buses and bridges that couple one or more of the various circuits of the processor 501 and the memory 502 together. The bus may also connect various other circuits such as peripherals, voltage regulators, power management circuits, and the like, which are well known in the art, and therefore, will not be described any further herein. A bus interface provides an interface between the bus and the transceiver. The transceiver may be one element or a plurality of elements, such as a plurality of receivers and transmitters, providing a means for communicating with various other apparatus over a transmission medium. The data processed by the processor is transmitted over the wireless medium via the antenna, which further receives the data and transmits the data to the processor 501.
The processor 501 is responsible for managing the bus and general processing and may also provide various functions including timing, peripheral interfaces, voltage regulation, power management, and other control functions. And memory 502 may be used to store data used by processor 501 in performing operations.
A sixth embodiment of the present invention relates to a client, as shown in fig. 6, including at least one processor 601; and a memory 602 communicatively coupled to the at least one processor 601; the memory 602 stores instructions executable by the at least one processor 601, and the instructions are executed by the at least one processor 601 to enable the at least one processor 601 to execute the remote procedure call method.
Where the memory 602 and the processor 601 are coupled by a bus, the bus may comprise any number of interconnected buses and bridges that couple one or more of the various circuits of the processor 601 and the memory 602 together. The bus may also connect various other circuits such as peripherals, voltage regulators, power management circuits, and the like, which are well known in the art, and therefore, will not be described any further herein. A bus interface provides an interface between the bus and the transceiver. The transceiver may be one element or a plurality of elements, such as a plurality of receivers and transmitters, providing a means for communicating with various other apparatus over a transmission medium. The data processed by the processor is transmitted over a wireless medium via an antenna, which further receives the data and transmits the data to the processor 601.
The processor 601 is responsible for managing the bus and general processing and may also provide various functions including timing, peripheral interfaces, voltage regulation, power management, and other control functions. While memory 602 may be used to store data used by processor 601 in performing operations.
A seventh embodiment of the present invention relates to a remote procedure call system, as shown in fig. 7, including the above-mentioned server 72 and the above-mentioned client 71, where the client 71 includes at least one terminal, and the first terminal 711, the second terminal 712, and the third terminal 713 constitute the client 71 in fig. 7.
An eighth embodiment of the present invention relates to a computer-readable storage medium storing a computer program. The computer program realizes the above-described method embodiments when executed by a processor.
That is, as can be understood by those skilled in the art, all or part of the steps in the method for implementing the embodiments described above may be implemented by a program instructing related hardware, where the program is stored in a storage medium and includes several instructions to enable a device (which may be a single chip, a chip, or the like) or a processor (processor) to execute all or part of the steps of the method described in the embodiments of the present application. And the aforementioned storage medium includes: a U-disk, a removable hard disk, a Read-only Memory (ROM), a Random Access Memory (RAM), a magnetic disk or an optical disk, and other various media capable of storing program codes.
It will be understood by those of ordinary skill in the art that the foregoing embodiments are specific examples for carrying out the invention, and that various changes in form and details may be made therein without departing from the spirit and scope of the invention in practice.

Claims (10)

1. A remote procedure call method applied to a server, the method comprising:
uniformly receiving a calling request sent by a client through a preset interface;
routing the calling request to a target micro-service process corresponding to the calling request according to the calling request;
and processing the calling request through the target micro-service process to obtain a calling result, and sending the calling result to the client through the preset interface.
2. The remote procedure call method according to claim 1, further comprising, after receiving the call request sent by the client:
judging the type of the session requested by the client according to the calling request; wherein the session type specifically includes: a short connection request type or a long connection request type;
and when the service type requested by the client is judged to be the long connection request type, establishing a bidirectional channel with the client.
3. The remote procedure call method according to claim 1, wherein the routing the call request to the target microservice process corresponding to the call request according to the call request specifically comprises:
and determining a target micro-service process corresponding to the calling request according to the service name and calling method name contained in the calling request, and routing the calling request to the determined target micro-service process.
4. A remote procedure call method applied to a client, the method comprising:
defining a calling request; wherein, the call request at least comprises: business data and service names;
sending the calling request to a preset interface of a server, so that the server can uniformly receive the calling request through the preset interface and process the calling request;
and when the server returns the calling result, receiving the calling result.
5. The remote procedure call method according to claim 4, wherein the call request is specifically defined by a ProtoBuf serialization protocol, and is transmitted based on the HTTP/2 protocol.
6. A remote procedure call device, comprising: the system comprises a first receiving module, a routing module, a processing module and a first sending module;
the first receiving module is used for uniformly receiving a calling request sent by a client through a preset interface;
the routing module is used for routing the calling request to a target micro-service process corresponding to the calling request according to the calling request;
the processing module is used for processing the calling request through the target micro-service process to obtain a calling result;
and the first sending module is used for sending the calling result to the routing module and sending the calling result to the client through the preset interface.
7. A remote procedure call device, comprising: the definition module, the second sending module and the second receiving module;
the definition module is used for defining a calling request; wherein, the call request at least comprises: business data and service names;
the second sending module is used for sending the calling request to a preset interface of a server so that the server can receive the calling request uniformly through the preset interface and process the calling request;
and the second receiving module is used for receiving the calling result when the server returns the calling result.
8. A server, comprising:
at least one processor; and the number of the first and second groups,
a memory communicatively coupled to the at least one processor; wherein,
the memory stores instructions executable by the at least one processor to enable the at least one processor to perform the remote procedure call method as claimed in any one of claims 1 to 3.
9. A client, comprising:
at least one processor; and the number of the first and second groups,
a memory communicatively coupled to the at least one processor; wherein,
the memory stores instructions executable by the at least one processor to enable the at least one processor to perform the remote procedure call method as claimed in any one of claims 4 to 5.
10. A remote procedure call system comprising a server as claimed in claim 8 and a client as claimed in claim 9.
CN201910899742.5A 2019-09-23 2019-09-23 Remote procedure calling method, device and system Active CN110808948B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910899742.5A CN110808948B (en) 2019-09-23 2019-09-23 Remote procedure calling method, device and system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910899742.5A CN110808948B (en) 2019-09-23 2019-09-23 Remote procedure calling method, device and system

Publications (2)

Publication Number Publication Date
CN110808948A true CN110808948A (en) 2020-02-18
CN110808948B CN110808948B (en) 2022-03-11

Family

ID=69487807

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910899742.5A Active CN110808948B (en) 2019-09-23 2019-09-23 Remote procedure calling method, device and system

Country Status (1)

Country Link
CN (1) CN110808948B (en)

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111711620A (en) * 2020-06-05 2020-09-25 南京领行科技股份有限公司 Method, device, equipment and storage medium for realizing bidirectional communication between applications
CN111818144A (en) * 2020-06-30 2020-10-23 中国工商银行股份有限公司 Message transmission method, device and system under remote service calling framework
CN112732373A (en) * 2021-04-06 2021-04-30 北京轻松筹信息技术有限公司 User request processing method and device and electronic equipment
CN113254090A (en) * 2021-06-04 2021-08-13 深圳市火乐科技发展有限公司 Application management method and device and projection equipment
CN113709085A (en) * 2020-05-22 2021-11-26 成都鼎桥通信技术有限公司 Remote procedure call processing method, device and equipment
CN114629945A (en) * 2022-03-22 2022-06-14 深圳壹账通智能科技有限公司 Micro-service architecture based interface calling method and device and computer equipment

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106255172A (en) * 2016-07-22 2016-12-21 乐视控股(北京)有限公司 Communication means based on multipath and device
CN106980545A (en) * 2016-01-15 2017-07-25 阿里巴巴集团控股有限公司 remote invocation method and device
CN107948215A (en) * 2018-01-17 2018-04-20 广州汇智通信技术有限公司 A kind of remote invocation method and device based on UDP communications
CN109560895A (en) * 2018-12-27 2019-04-02 北京百佑科技有限公司 Data transmission method and device
US20190158604A1 (en) * 2017-11-22 2019-05-23 International Business Machines Corporation Sharing system managed http client sessions across processes

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106980545A (en) * 2016-01-15 2017-07-25 阿里巴巴集团控股有限公司 remote invocation method and device
CN106255172A (en) * 2016-07-22 2016-12-21 乐视控股(北京)有限公司 Communication means based on multipath and device
US20190158604A1 (en) * 2017-11-22 2019-05-23 International Business Machines Corporation Sharing system managed http client sessions across processes
CN107948215A (en) * 2018-01-17 2018-04-20 广州汇智通信技术有限公司 A kind of remote invocation method and device based on UDP communications
CN109560895A (en) * 2018-12-27 2019-04-02 北京百佑科技有限公司 Data transmission method and device

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113709085A (en) * 2020-05-22 2021-11-26 成都鼎桥通信技术有限公司 Remote procedure call processing method, device and equipment
CN111711620A (en) * 2020-06-05 2020-09-25 南京领行科技股份有限公司 Method, device, equipment and storage medium for realizing bidirectional communication between applications
CN111818144A (en) * 2020-06-30 2020-10-23 中国工商银行股份有限公司 Message transmission method, device and system under remote service calling framework
CN111818144B (en) * 2020-06-30 2022-12-20 中国工商银行股份有限公司 Message transmission method, device and system under remote service calling framework
CN112732373A (en) * 2021-04-06 2021-04-30 北京轻松筹信息技术有限公司 User request processing method and device and electronic equipment
CN113254090A (en) * 2021-06-04 2021-08-13 深圳市火乐科技发展有限公司 Application management method and device and projection equipment
CN113254090B (en) * 2021-06-04 2024-05-28 深圳市火乐科技发展有限公司 Application management method and device and projection equipment
CN114629945A (en) * 2022-03-22 2022-06-14 深圳壹账通智能科技有限公司 Micro-service architecture based interface calling method and device and computer equipment

Also Published As

Publication number Publication date
CN110808948B (en) 2022-03-11

Similar Documents

Publication Publication Date Title
CN110808948B (en) Remote procedure calling method, device and system
US8711817B2 (en) Low cost mesh network capability
CN111885115B (en) Device binding changing method and device
CN109672708B (en) Communication method, device and system
EP3496432A1 (en) Communication method and device
CN108353263B (en) Method of processing service request in wireless communication system and apparatus therefor
CN105141603A (en) Communication data transmission method and system
CN109857572B (en) Method, device and equipment for realizing remote calling and computer readable storage medium
CN111884875A (en) Offline device determination method and device
CN101631127A (en) File transfer method and clients
CN110912805B (en) Message reading state synchronization method, terminal, server and system
CN111064788B (en) Signal transmission method, robot, and computer-readable storage medium
CN113518125A (en) Offline data uploading method and system, storage medium and electronic device
CN114338063A (en) Message queue system, service processing method, and computer-readable storage medium
CN112491951B (en) Request processing method, server and storage medium in peer-to-peer network
CN104753761A (en) Method, server and system for processing messages
CN110572476B (en) Remote control method, device and equipment
CN113259918A (en) Equipment binding method and system
CN114390454A (en) Message transmission method, system, electronic device and storage medium
CN117336346A (en) IPPBX and PMS docking state conversion method, terminal equipment and medium
CN108632355B (en) Routing method for household appliance network, control terminal, readable storage medium and equipment
CN116614172A (en) Satellite communication method, nonvolatile storage medium, and electronic device
RU2003131074A (en) RADIO COMMUNICATION BLOCK AND METHOD FOR PERFORMING A CUSTOMER PROGRAM FOR CONTROLLING A RADIO COMMUNICATION BLOCK
CN110944305A (en) Data transmission method of V2X dual-mode terminal, 4G base station and terminal
CN110166506B (en) Method for connecting hypertext transfer protocol Http and node equipment

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
GR01 Patent grant
GR01 Patent grant