CN111866157A - Cloud service gateway and cloud service internal and external request format conversion method - Google Patents

Cloud service gateway and cloud service internal and external request format conversion method Download PDF

Info

Publication number
CN111866157A
CN111866157A CN202010735440.7A CN202010735440A CN111866157A CN 111866157 A CN111866157 A CN 111866157A CN 202010735440 A CN202010735440 A CN 202010735440A CN 111866157 A CN111866157 A CN 111866157A
Authority
CN
China
Prior art keywords
service
cloud service
communication format
micro
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
CN202010735440.7A
Other languages
Chinese (zh)
Other versions
CN111866157B (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.)
Bank of China Ltd
Original Assignee
Bank of China 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 Bank of China Ltd filed Critical Bank of China Ltd
Priority to CN202010735440.7A priority Critical patent/CN111866157B/en
Publication of CN111866157A publication Critical patent/CN111866157A/en
Application granted granted Critical
Publication of CN111866157B publication Critical patent/CN111866157B/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/56Provisioning of proxy services
    • H04L67/565Conversion or adaptation of application format or content

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)
  • Computer And Data Communications (AREA)

Abstract

The invention discloses a cloud service gateway and a cloud service internal and external request format conversion method, wherein the cloud service gateway comprises: the Rev micro-service module receives a first format request sent by the application outside the cloud service, converts the first format request into a second format request in the cloud service, calls a business logic processing micro-service in the cloud service, receives a processing result returned after the business logic processing micro-service processes the request in the second communication format, converts the processing result into the first format and returns the first format to the application outside the cloud service; the Snd micro-service module receives a second format request provided by the business logic processing micro-service, converts the second format request into a first format request, forwards the first format request to the cloud service external application, receives a processing result returned after the cloud service external application processes the first format request, converts the processing result into a second format and returns to the business logic processing micro-service. According to the invention, through a cloud service gateway, the mutual calling of different communication modes between the internal system and the external system of the cloud service is realized.

Description

Cloud service gateway and cloud service internal and external request format conversion method
Technical Field
The invention relates to the technical field of cloud service internal and external request format conversion, in particular to a cloud service gateway and a cloud service internal and external request format conversion method.
Background
This section is intended to provide a background or context to the embodiments of the invention that are recited in the claims. The description herein is not admitted to be prior art by inclusion in this section.
The traditional applications (applications outside the cloud service) communicate with each other by using a socket (or mq), a registry is arranged in the cloud service, the distributed applications in the cloud service register externally-provided services in the registry, and other in-cloud services are called among the distributed services through rpc (or rest). If the applications in the cloud service and the applications outside the cloud service need to be mutually called, each micro service needs to realize conversion between different communication protocols and expose a service port to the outside. This approach has the following disadvantages:
1. each server in the cloud service needs a set of server clusters for communicating with applications outside the cloud service and the outer layer load of the clusters is balanced, which causes waste of hardware resources.
2. If each micro-service in the cloud service needs to communicate with an application outside the cloud service, a set of conversion modules similar to a gateway module needs to be realized by the micro-service, so that code redundancy is caused.
Disclosure of Invention
The embodiment of the invention provides a cloud service gateway, which is used for solving the technical problem that a conversion module of a gateway module is required to be established for communication between applications in various cloud services and applications outside the cloud services, so that code redundancy is caused, and comprises the following components:
the Rev micro-service module is used for receiving a request in a first communication format sent by an application outside the cloud service, converting the request in the first communication format into a request in a second communication format in the cloud service, calling a business logic in the cloud service to process the micro-service, receiving a processing result returned by the business logic in the cloud service to process the micro-service, and converting the processing result into the first communication format and returning the first communication format to the application outside the cloud service; the processing result is obtained after the business logic processing micro-service in the cloud service processes the request in the second communication format;
the Snd micro-service module is used for receiving a request in a second communication format provided by a business logic processing micro-service in the cloud service, converting the request in the second communication format into a request in a first communication format, forwarding the request in the first communication format to an application outside the cloud service, receiving a processing result returned by the application outside the cloud service, converting the processing result into the second communication format and returning the second communication format to the business logic processing micro-service in the cloud service; the processing result is obtained after the request of the cloud service external application for the first communication format is processed;
wherein, the first communication format is a socket or mq communication format; the second communication format is rpc or rest communication format.
The embodiment of the invention also provides a method for converting internal and external request formats of cloud services, which is used for solving the technical problem that code redundancy is caused because a conversion module of a gateway module is required to be established for communication between applications in each cloud service and applications outside the cloud service, and comprises the following steps:
the Rev micro-service receives a request in a first communication format sent by an application outside the cloud service, converts the request in the first communication format into a request in a second communication format in the cloud service, calls a business logic processing micro-service in the cloud service, receives a processing result returned by the business logic processing micro-service in the cloud service, converts the processing result into the first communication format and returns the first communication format to the application outside the cloud service; the processing result is obtained after the business logic processing micro-service in the cloud service processes the request in the second communication format;
the method comprises the steps that the Snd micro-service receives a request of a second communication format provided by a business logic processing micro-service in the cloud service, converts the request of the second communication format into a request of a first communication format, forwards the request of the first communication format to an application outside the cloud service, receives a processing result returned by the application outside the cloud service, converts the processing result into the second communication format and returns the second communication format to the business logic processing micro-service in the cloud service; the processing result is obtained after the request of the cloud service external application for the first communication format is processed;
wherein, the first communication format is a socket or mq communication format; the second communication format is rpc or rest communication format.
The embodiment of the invention also provides computer equipment which comprises a memory, a processor and a computer program which is stored on the memory and can run on the processor, wherein the processor realizes the method for converting the internal and external request formats of the cloud service when executing the computer program.
An embodiment of the present invention further provides a computer-readable storage medium, where a computer program for executing the method for converting the internal and external request formats of the cloud service is stored in the computer-readable storage medium.
In the embodiment of the invention, a socket or mq interception is realized in the Rev micro-service by establishing Rev micro-service for processing incoming reports and an Snd micro-service for processing outgoing reports in the cloud service, a socket or mq request of an application outside the cloud service is converted into an rpc or rest request, a socket or mq request is realized in the Snd micro-service, a rpc or rest request of a business logic processing micro-service in the cloud service is converted into a socket or mq request, compared with the technical scheme that a conversion module of a gateway module is required to be established for communication between applications inside and outside the cloud service in the prior art, the cloud service gateway is established, various communication conditions of the application inside the cloud and the application outside the cloud are realized in one micro-service, and mutual calling of different communication modes between systems inside and outside the cloud service can be realized.
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 description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only some embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the drawings without creative efforts. In the drawings:
fig. 1 is a structural block diagram of a cloud service gateway according to an embodiment of the present invention;
fig. 2 is a structural block diagram of a cloud service gateway in the embodiment of the present invention;
fig. 3 is a flowchart of a method for converting an internal and external request format of a cloud service according to an embodiment of the present invention (i);
fig. 4 is a flowchart of a method for converting an internal request format and an external request format of a cloud service according to an embodiment of the present invention (ii);
fig. 5 is a block diagram of a system for converting internal and external request formats of a cloud service according to an 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, the embodiments of the present invention are further described in detail below with reference to the accompanying drawings. The exemplary embodiments and descriptions of the present invention are provided to explain the present invention, but not to limit the present invention.
Technical term interpretation:
the rest, i.e. Representational State Transfer, is a software architecture style, design style, and not a standard. This system is usually said to be Restful if several conditions for rest are met.
rpc, remote procedure calls, a standard that masks underlying communication details, can be called directly. Simply stated, rpc is a function or method (which may be collectively referred to as a service) called from one machine (client) through parameter passing on another machine (server) and gets the result back. rpc are used in the same manner as local functions (or methods) are called to call remote functions (or methods).
mq, a message queue, is a cross-process communication mechanism for upstream and downstream delivery of messages. In the internet architecture, mq is a message communication service of upstream and downstream 'logical decoupling + physical decoupling'. With mq, the messaging upstream only needs to rely on mq, neither logically nor physically relying on other services. In addition, mq is only used to transfer the message that the execution of the upstream task is completed, and is not used to transfer the real input and output data.
The socket is composed of an ip address of a network layer and a port number of a transport layer, and can uniquely mark a process in the network. (the ip address of the network layer can uniquely identify the host, and the port number of the transport layer can uniquely identify a process of the host). socket is an abstraction layer between the application layer and the transport layer that abstracts the complex operations of the TCP/IP layer into several simple interface provisioning layer calls to implemented processes to communicate in the network. The socket is realized in an 'open-read/write-close' mode, a server and a client respectively maintain a 'file', after connection is established and opened, the content can be written into the file of the server for the opposite side to read or read, and the file is closed when communication is finished.
Based on the problem that in the prior art, a conversion module of a gateway module is required to be established for communication between applications in each cloud service and applications outside the cloud service, so that code redundancy is caused, the invention provides a cloud service gateway and a cloud service internal and external request format conversion method.
Fig. 1 is a structural block diagram of a cloud service gateway according to an embodiment of the present invention; as shown in fig. 1, the cloud service gateway includes:
the Rev micro-service module 02 is used for receiving a request in a first communication format sent by an application outside the cloud service, converting the request in the first communication format into a request in a second communication format in the cloud service, calling a business logic in the cloud service to process the micro-service, receiving a processing result returned by the business logic in the cloud service to process the micro-service, and converting the processing result into the first communication format and returning the first communication format to the application outside the cloud service; the processing result is obtained after the business logic processing micro-service in the cloud service processes the request in the second communication format;
the Snd micro-service module 04 is configured to receive a request in a second communication format provided by a service logic processing micro-service in a cloud service, convert the request in the second communication format into a request in a first communication format, forward the request in the first communication format to an application outside the cloud service, receive a processing result returned by the application outside the cloud service, convert the processing result into the second communication format, and return the second communication format to the service logic processing micro-service in the cloud service; the processing result is obtained after the request of the cloud service external application for the first communication format is processed;
wherein, the first communication format is a socket or mq communication format; the second communication format is rpc or rest communication format.
The Rev micro-service module 02 belongs to an import module and receives a request from an application outside the cloud service to call the service logic micro-service in the cloud service. The Snd micro-service module 04 belongs to an export module and is respectively responsible for processing communication requests sent by each business logic micro-service in the cloud service to the outside of the cloud service.
In this embodiment of the present invention, as shown in fig. 2, the cloud service gateway further includes: and a registering module 06, configured to register the Rev micro service with the identity of the consumer to a cloud service registry, and register the Snd micro service with the identity of the producer to a cloud service registry (zookeeper).
The cloud service gateway realizes various communication conditions of the application in the cloud and the application outside the cloud in one micro service, and registers the micro service into the zookeeper in the cloud by the identity of a consumer or a producer for other logic micro services.
In this embodiment of the present invention, the registration module is further configured to: setting a routing rule;
the Rev micro-service module is specifically used for: and calling business logic in the cloud service to process the micro-service according to the set routing rule.
In the embodiment of the invention, in order to ensure the processing performance, a thread pool is added in Rev and Snd micro services. Namely, the Rev micro-service module and the Snd micro-service module are specifically configured to:
the request is processed using multiple threads.
The embodiment of the invention also provides a method for converting the internal and external request formats of the cloud service, which is described in the following embodiment. Because the principle of solving the problems by the method is similar to that of the cloud service gateway, the implementation of the method can be referred to the implementation of the cloud service gateway, and repeated parts are not described again.
Fig. 3 is a flowchart of a method for converting an internal and external request format of a cloud service according to an embodiment of the present invention (i); as shown in fig. 3, the method includes:
s1: the Rev micro-service receives a request in a first communication format sent by an application outside the cloud service, converts the request in the first communication format into a request in a second communication format in the cloud service, calls a business logic processing micro-service in the cloud service, receives a processing result returned by the business logic processing micro-service in the cloud service, converts the processing result into the first communication format and returns the first communication format to the application outside the cloud service; the processing result is obtained after the business logic processing micro-service in the cloud service processes the request in the second communication format;
s2: the method comprises the steps that the Snd micro-service receives a request of a second communication format provided by a business logic processing micro-service in the cloud service, converts the request of the second communication format into a request of a first communication format, forwards the request of the first communication format to an application outside the cloud service, receives a processing result returned by the application outside the cloud service, converts the processing result into the second communication format and returns the second communication format to the business logic processing micro-service in the cloud service; the processing result is obtained after the request of the cloud service external application for the first communication format is processed;
wherein, the first communication format is a socket or mq communication format; the second communication format is rpc or rest communication format.
Fig. 4 is a flowchart of a method for converting an internal request format and an external request format of a cloud service according to an embodiment of the present invention (ii); as shown in fig. 4, the method further includes:
s0: the Rev micro-service is registered to the cloud service registry in the identity of the consumer, and the Snd micro-service is registered to the cloud service registry in the identity of the producer.
Fig. 5 is a block diagram of a system for converting internal and external request formats of a cloud service according to an embodiment of the present invention. As shown in fig. 5, includes: cloud services, out-of-cloud applications, and cloud service gateways.
The cloud service, the out-of-cloud-service application and the cloud service gateway are used for: the method for converting the internal and external request formats of the cloud service is realized.
The embodiment of the invention also provides computer equipment which comprises a memory, a processor and a computer program which is stored on the memory and can run on the processor, wherein the processor realizes the method for converting the internal and external request formats of the cloud service when executing the computer program.
An embodiment of the present invention further provides a computer-readable storage medium, where a computer program for executing the method for converting the internal and external request formats of the cloud service is stored in the computer-readable storage medium.
In the embodiment of the invention, a socket or mq interception is realized in the Rev micro-service by establishing Rev micro-service for processing incoming reports and an Snd micro-service for processing outgoing reports in the cloud service, a socket or mq request of an application outside the cloud service is converted into an rpc or rest request, a socket or mq request is realized in the Snd micro-service, a rpc or rest request of a business logic processing micro-service in the cloud service is converted into a socket or mq request, compared with the technical scheme that a conversion module of a gateway module is required to be established for communication between applications inside and outside the cloud service in the prior art, the cloud service gateway is established, various communication conditions of the application inside the cloud and the application outside the cloud are realized in one micro-service, and mutual calling of different communication modes between systems inside and outside the cloud service can be realized. Meanwhile, a multithread mode can be utilized to deal with the problem of conversion performance.
As will be appreciated by one skilled in the art, embodiments of the present invention may be provided as a method, system, or computer program product. Accordingly, the present invention may take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment combining software and hardware aspects. Furthermore, the present invention may take the form of a computer program product embodied on one or more computer-usable storage media (including, but not limited to, disk storage, CD-ROM, optical storage, and the like) having computer-usable program code embodied therein.
The present invention is described with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems), and computer program products according to embodiments of the invention. It will be understood that each flow and/or block of the flow diagrams and/or block diagrams, and combinations of flows and/or blocks in the flow diagrams and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be stored in a computer-readable memory that can direct a computer or other programmable data processing apparatus to function in a particular manner, such that the instructions stored in the computer-readable memory produce an article of manufacture including instruction means which implement the function specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be loaded onto a computer or other programmable data processing apparatus to cause a series of operational steps to be performed on the computer or other programmable apparatus to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide steps for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
The above-mentioned embodiments are intended to illustrate the objects, technical solutions and advantages of the present invention in further detail, and it should be understood that the above-mentioned embodiments are only exemplary embodiments of the present invention, and are not intended to limit the scope of the present invention, and any modifications, equivalent substitutions, improvements and the like made within the spirit and principle of the present invention should be included in the scope of the present invention.

Claims (10)

1. A cloud services gateway, comprising:
the Rev micro-service module is used for receiving a request in a first communication format sent by an application outside the cloud service, converting the request in the first communication format into a request in a second communication format in the cloud service, calling a business logic in the cloud service to process the micro-service, receiving a processing result returned by the business logic in the cloud service to process the micro-service, and converting the processing result into the first communication format and returning the first communication format to the application outside the cloud service; the processing result is obtained after the business logic processing micro-service in the cloud service processes the request in the second communication format;
the Snd micro-service module is used for receiving a request in a second communication format provided by a business logic processing micro-service in the cloud service, converting the request in the second communication format into a request in a first communication format, forwarding the request in the first communication format to an application outside the cloud service, receiving a processing result returned by the application outside the cloud service, converting the processing result into the second communication format and returning the second communication format to the business logic processing micro-service in the cloud service; the processing result is obtained after the request of the cloud service external application for the first communication format is processed;
wherein, the first communication format is a socket or mq communication format; the second communication format is rpc or rest communication format.
2. The cloud services gateway of claim 1, further comprising: and the registration module is used for registering the Rev micro-service to the cloud service registry in the identity of the consumer and registering the Snd micro-service to the cloud service registry in the identity of the producer.
3. The cloud services gateway of claim 2, wherein said registration module is further to: setting a routing rule;
the Rev micro-service module is specifically used for: and calling business logic in the cloud service to process the micro-service according to the set routing rule.
4. The cloud service gateway of claim 1, wherein the Rev micro-service module and the Snd micro-service module are specifically configured to:
the request is processed using multiple threads.
5. A method for converting internal and external request formats of cloud services is characterized by comprising the following steps:
the Rev micro-service receives a request in a first communication format sent by an application outside the cloud service, converts the request in the first communication format into a request in a second communication format in the cloud service, calls a business logic processing micro-service in the cloud service, receives a processing result returned by the business logic processing micro-service in the cloud service, converts the processing result into the first communication format and returns the first communication format to the application outside the cloud service; the processing result is obtained after the business logic processing micro-service in the cloud service processes the request in the second communication format;
the method comprises the steps that the Snd micro-service receives a request of a second communication format provided by a business logic processing micro-service in the cloud service, converts the request of the second communication format into a request of a first communication format, forwards the request of the first communication format to an application outside the cloud service, receives a processing result returned by the application outside the cloud service, converts the processing result into the second communication format and returns the second communication format to the business logic processing micro-service in the cloud service; the processing result is obtained after the request of the cloud service external application for the first communication format is processed;
wherein, the first communication format is a socket or mq communication format; the second communication format is rpc or rest communication format.
6. The method for converting internal and external request formats of cloud services according to claim 5, further comprising:
the Rev micro-service is registered to the cloud service registry in the identity of the consumer, and the Snd micro-service is registered to the cloud service registry in the identity of the producer.
7. The method for converting internal and external request formats of cloud services according to claim 6, further comprising:
setting a routing rule;
the Rev micro service calls business logic processing micro service in the cloud service, and comprises the following steps:
and the Rev micro-service module calls the business logic processing micro-service in the cloud service according to the set routing rule.
8. The method for converting internal and external request formats of cloud services according to claim 5, wherein Rev micro-service and Snd micro-service process requests in multiple threads.
9. A computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, wherein the processor implements the method of any of claims 5 to 8 when executing the computer program.
10. A computer-readable storage medium, characterized in that the computer-readable storage medium stores a computer program for executing the method of any of claims 5 to 8.
CN202010735440.7A 2020-07-28 2020-07-28 Cloud service gateway and cloud service internal and external request format conversion method Active CN111866157B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010735440.7A CN111866157B (en) 2020-07-28 2020-07-28 Cloud service gateway and cloud service internal and external request format conversion method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010735440.7A CN111866157B (en) 2020-07-28 2020-07-28 Cloud service gateway and cloud service internal and external request format conversion method

Publications (2)

Publication Number Publication Date
CN111866157A true CN111866157A (en) 2020-10-30
CN111866157B CN111866157B (en) 2022-09-23

Family

ID=72947852

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010735440.7A Active CN111866157B (en) 2020-07-28 2020-07-28 Cloud service gateway and cloud service internal and external request format conversion method

Country Status (1)

Country Link
CN (1) CN111866157B (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114978999A (en) * 2022-03-31 2022-08-30 华润网络(深圳)有限公司 Method and device for multi-dimensional scheduling of traffic, computer equipment and storage medium

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106227611A (en) * 2016-07-26 2016-12-14 北京北森云计算股份有限公司 The dynamic micro services call method of a kind of multilingual cloud compiling and device
US10395303B1 (en) * 2014-07-03 2019-08-27 Amdocs Development Limited System, method, and computer program for transforming order requests from external channels into a format associated with a service provider
CN110557433A (en) * 2019-07-26 2019-12-10 华云超融合科技有限公司 Resource management method, platform, cloud gateway, system and storage medium
WO2020101223A1 (en) * 2018-11-15 2020-05-22 전자부품연구원 Method for providing api in serverless cloud computing

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10395303B1 (en) * 2014-07-03 2019-08-27 Amdocs Development Limited System, method, and computer program for transforming order requests from external channels into a format associated with a service provider
CN106227611A (en) * 2016-07-26 2016-12-14 北京北森云计算股份有限公司 The dynamic micro services call method of a kind of multilingual cloud compiling and device
WO2020101223A1 (en) * 2018-11-15 2020-05-22 전자부품연구원 Method for providing api in serverless cloud computing
CN110557433A (en) * 2019-07-26 2019-12-10 华云超融合科技有限公司 Resource management method, platform, cloud gateway, system and storage medium

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114978999A (en) * 2022-03-31 2022-08-30 华润网络(深圳)有限公司 Method and device for multi-dimensional scheduling of traffic, computer equipment and storage medium

Also Published As

Publication number Publication date
CN111866157B (en) 2022-09-23

Similar Documents

Publication Publication Date Title
US8572236B2 (en) Distributing services in graph-based computations
US7926058B2 (en) Resource tracking method and apparatus
EP2031818B1 (en) Systems and/or methods for providing feature-rich proprietary and standards-based triggers via a trigger subsystem
CN107454092B (en) OPCUA and DDS protocol signal conversion device, communication system and communication method
US20180084088A1 (en) Request and response decoupling via pluggable transports in a service oriented pipeline architecture for a request response message exchange pattern
US20090125595A1 (en) Intelligent message processing
WO2021088641A1 (en) Data transmission method, data processing method, data reception method and device, and storage medium
KR20160148650A (en) System and method for supporting a bypass-domain model and a proxy model and updating service information for across-domain messaging in a transactional middleware machine environment
US20100082830A1 (en) System and method for processing messages using pluggable protocol processors in a service-oriented pipeline architecture
CN111818182B (en) Micro-service arranging and data aggregating method based on Spring closed gateway
CN110505244A (en) Long-range tunnel access technique gateway and server
CN111866157B (en) Cloud service gateway and cloud service internal and external request format conversion method
WO2013016994A1 (en) Message sending method and system
CN112181681A (en) Remote calling method and device, computer equipment and storage medium
US9860326B2 (en) Duplex services residing in a messaging bus
Singh et al. Comprehensive review of stream processing tools
US10270654B2 (en) System for increasing computing efficiency of communication between applications running on networked machines
WO2022160714A1 (en) Communication method, apparatus, and system
CN115695537A (en) Method, system and device for realizing service grid adapting to traditional micro-service registration center
US12021921B2 (en) Data plane reduction for eventing components
Lytra et al. A pattern language for service-based platform integration and adaptation
CN115037807B (en) Method and system for integrating DDS protocol on industrial robot service bus
US9135090B2 (en) Messaging bus residing on a mobile device
CN118152145A (en) Cross-domain collaborative service system and cross-domain collaborative service method based on same
CN114024910A (en) Extremely-low-delay reliable communication system and method for financial transaction system

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