WO2020134329A1 - Procédé de mise en œuvre de service de passerelle, dispositif de commande et passerelle - Google Patents

Procédé de mise en œuvre de service de passerelle, dispositif de commande et passerelle Download PDF

Info

Publication number
WO2020134329A1
WO2020134329A1 PCT/CN2019/110348 CN2019110348W WO2020134329A1 WO 2020134329 A1 WO2020134329 A1 WO 2020134329A1 CN 2019110348 W CN2019110348 W CN 2019110348W WO 2020134329 A1 WO2020134329 A1 WO 2020134329A1
Authority
WO
WIPO (PCT)
Prior art keywords
gateway
instruction
model
service
pipeline
Prior art date
Application number
PCT/CN2019/110348
Other languages
English (en)
Chinese (zh)
Inventor
胡锐
徐代刚
刘学生
Original Assignee
中兴通讯股份有限公司
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 中兴通讯股份有限公司 filed Critical 中兴通讯股份有限公司
Publication of WO2020134329A1 publication Critical patent/WO2020134329A1/fr

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L41/00Arrangements for maintenance, administration or management of data switching networks, e.g. of packet switching networks
    • H04L41/14Network analysis or design
    • H04L41/145Network analysis or design involving simulating, designing, planning or modelling of a network
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L12/00Data switching networks
    • H04L12/66Arrangements for connecting between networks having differing types of switching systems, e.g. gateways
    • 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/50Network services
    • H04L67/51Discovery or management thereof, e.g. service location protocol [SLP] or web services

Definitions

  • FIG. 4 is a schematic diagram of an operation interface provided by a model designer according to an embodiment of the present invention.
  • the user interface unit is set to display an operation interface and receive user input commands
  • the gateway 2 includes a gateway control plane 21, an instruction executor 22, a request parser 23, a request dispatcher 24, a response parser 25, and a response feedbacker 26, among them:
  • the instruction executor 22 is configured to process received messages (such as HTTP request messages and HTTP response messages) according to the first instruction issued.
  • the instruction executor 22 may save the issued first instruction as an entry in the instruction flow table library, and the first instruction may also be called a flow table instruction.
  • the logical structure of the first instruction for message processing is a pipeline. This pipeline includes one or more branches, each branch has one or more execution links, and each execution link can include one or more first instructions, such as Figure 2 shows. After the gateway 2 receives a message, the message is processed step by step in the instruction executor 22 according to the pipeline, and each instruction in the pipeline runs in a "matching condition, execute action" manner to realize the pipeline of the message deal with.
  • the above embodiment of the present invention implements a system for implementing a gateway service.
  • the gateway service uses a model-driven design, which can respond to different business needs and quickly achieve business goals. The operation and maintenance personnel can develop new services without the need for different services. Different plug-ins for business development.
  • the generating the gateway business model according to the input instruction includes:
  • the gateway business model is generated according to the attributes of the pipeline and the constituent elements.
  • the model design area is located in the middle of the operation interface.
  • the right side of the operation interface also includes a model attribute area for filling in the attributes of the constituent elements.
  • "Model design area” is the visual display area of the model.
  • Designers can construct the model by dragging the elements of "element selection area” to "model design area”.
  • the gateway service control device records the dragged optional element as a component element of the gateway service model.
  • the designer selects a specific element in the "Model Design Area”, he can set the attributes of the element in the "Model Attribute Area", such as matching conditions and execution actions.
  • the generated gateway business model is a pipeline including multiple links in the logical structure.
  • a link may include a second instruction (such as a DSL instruction) or multiple second instructions that are sequentially executed on the pipeline.
  • a second instruction such as a DSL instruction
  • multiple second instructions that perform similar functions can be combined into one link to simplify the pipeline structure and facilitate model design.
  • the link includes at least one of the following information: service identification, link identification, entry link identification, priority, instruction identification, matching rules, and execution actions; wherein, the entry link matching rules are used to determine whether the received message is The pipeline where the entry link is matched; the priority of the entry link is used to determine the order in which the pipeline is matched; the execution action is used to determine the processing performed on the message, including the action of jumping to the next link or instruction.
  • the matching rules and execution actions of the second instruction can be determined according to the links to which the constituent elements of the pipeline belong, the connection relationships of the various links, and the attributes of the constituent elements.
  • the gateway business model when delivering the gateway service information to the gateway according to the generated gateway business model, the gateway business model is directly delivered to the gateway. For example, by clicking the "Send" button in the model designer, the gateway business model is delivered to the HTTP gateway.
  • the gateway business model is first parsed and converted into a first instruction executable by the gateway, and then the first instruction is issued to the gateway.
  • the method executed on the gateway side as shown in FIG. 5 includes: step 210, the gateway obtains a plurality of first instructions for implementing the gateway service, wherein the first instruction is obtained based on the gateway service model; and, step 220, The gateway processes the received message according to the first instruction.
  • the gateway business model may be generated using the method for generating a gateway business model according to any embodiment of the present invention.
  • the gateway acquiring a plurality of first instructions for implementing the gateway service includes: the gateway receives the gateway service model, parses the gateway service model and converts it into multiple The first instruction. Before parsing the gateway business model, the gateway business model can also be verified, such as a CRC check. If the check fails, it is rejected.
  • Step 2 The gateway determines whether there is a matching pipeline according to the relevant characteristics in the request message (such as IP address, login_token in cookie, etc.). If not, the request message is rejected and the process ends; if so, continue to the next step .
  • relevant characteristics in the request message such as IP address, login_token in cookie, etc.
  • Step 3 Starting from the matched first instruction of the pipeline, sequentially execute all the first instructions on the pipeline to process the request message, and deliver the processed request message to the back-end service.
  • the processing of the response message (such as the HTTP response message) by the gateway includes:
  • Step 1 The gateway parses the received response message returned by the back-end service to obtain the content of the response message, such as header and body information;
  • Step 2 The gateway determines whether there is a matching pipeline according to the relevant characteristics of the response message. If not, it rejects the request message and the process ends; if it does, it continues to the next step.
  • the pipeline is the pipeline that matches the response message.
  • Step 3 Starting from the matched first instruction of the pipeline, execute all the first instructions of the pipeline in sequence to process the response message, and return the processed response message to the client that sends the corresponding request message .
  • the HTTP gateway needs to carry multiple different gateway services at the same time, so the processing flow of multiple services can be run simultaneously in the instruction executor.
  • HTTP The messages are numbered, and at the same time, the HTTP request/response is sent to different pipelines for processing according to the matching characteristics of the HTTP message and the pipeline, and the corresponding number is used to track the corresponding processing process.
  • the first instruction when executed, it is a mode for explaining execution.
  • instant conversion technology can be used to convert the first instruction into machine code such as native code again. Implementation to improve the processing efficiency of the entire process.
  • the logical structure of the service gateway model is one or more pipelines.
  • different pipelines can be used to process different types of packets.
  • Each pipeline may include one or more branches.
  • Business identification used to identify the business targeted by this session.
  • Link ID The link number can be used as the link ID.
  • Entry link identification A value of "Y" indicates that the link is an entry link, and the matching rules of the entry link are used to determine whether the pipeline matches the received message.
  • Priority Set the priority when this link is an entry link. The smaller the number in this field, the higher the priority. When the priority is the same, it can be defined as the link ID is larger and the priority is higher, or vice versa.
  • the gateway receives the message and determines whether the message matches the set pipeline according to the characteristics of the message, it starts from the high-priority entry link (also known as the entry), according to the order from high to low Match in order.
  • Matching rule It can also be called a matching condition, which is used to determine whether the request message meets certain conditions, so as to control the processing flow of the pipeline.
  • the characteristics of the matching operation can be any part of the message, such as httpURL, http header and http body etc.
  • Execution action the processing performed on the message, such as: modifying the HTTP header, rewriting the URL, increasing the counter, forwarding the HTTP request to the back-end service, rejecting the HTTP request, and skipping to the next link or instruction.
  • the above matching rules and execution actions can be described (or written) in a specific DSL language at the time of design, and converted by the gateway control plane into the content of the first instruction executable by the gateway.
  • a link is an instruction, and a link ID is also an instruction ID.
  • a link includes the above service ID, link ID, entry link ID, priority, matching rules, and execution actions. , There is no need to set the instruction ID separately.
  • a link may include multiple instructions.
  • each instruction has its own matching rules and execution actions. It is also necessary to set an instruction identifier for each instruction to distinguish different instructions .
  • the business name, link ID, entrance link ID, etc. can be shared by multiple instructions in the same link.
  • a plurality of the first instructions form a pipeline for processing gateway services, and the first instructions may include at least one of the following information:
  • the instruction identifier which may include both the link number and the instruction number in the first instruction
  • the matching rule of the first instruction in the pipeline is used to determine whether the received message matches the pipeline; the priority of the first instruction is used to determine the order of matching the pipeline; the execution The action is used to determine the processing performed on the message, one of which is the action to jump to the next instruction.
  • the matching rule can be set to a default value such as TRUE, and the default matching is successful.
  • the order of the instructions in the pipeline can be determined according to the instruction ID of the sequential number.
  • the HTTP gateway needs to develop various business logics. Traditionally, it is realized by developing and deploying different business plug-ins and deploying in the HTTP gateway. After adopting the solution of the embodiment of the present invention, it is not written The way of plug-in can be realized by the operation and maintenance personnel using a unified process and model.
  • An enterprise microservice architecture system needs to use basic (access) authentication for all HTTP requests from outside.
  • the operation and maintenance personnel use the model designer to design the certified gateway business model and the completed model.
  • the gateway control analyzes the gateway business model, converts it into an executable instruction and sends it to the instruction executor.
  • the corresponding instruction is shown in Figure 6B.
  • Step 501 The HTTP gateway listens to the HTTP request message on port 80.
  • Step 502 In the cookie of the HTTP request message, there is no login_token attribute, and this embodiment indicates that the message is a request message.
  • Step 504 Analyze the Authorization field through the BASE64 algorithm to obtain the user name and password.
  • Step 505 Use the user name to obtain the user's password from the cache.
  • Step 506 Compare the password obtained in the cache with the password obtained in step 504, assuming that the two are the same.
  • Step 507 Forward the HTTP request message to the back-end processor.
  • Step 508 Receive the HTTP response message returned by the back-end processor after completing the processing.
  • Step 509 Set the login_token attribute in the HTTP response cookie.
  • Step 510 Return the HTTP response to the HTTP client.
  • an operator's API development platform needs to limit the access frequency of non-logged-in users, and its access quota is 10 times per minute.
  • the operator’s API platform uses the RESTFUL interface to provide external API services.
  • QoS Quality of Service
  • the operation and maintenance personnel use the model designer to design the current-limiting business model and the completed model.
  • the gateway control analyzes the model, generates executable instructions and delivers them to the instruction executor.
  • the corresponding instructions are shown in Figure 7B.
  • Step 701 The HTTP server listens to the HTTP request message on port 80.
  • Step 702 In the cookie of the HTTP request message, if there is no login_token attribute, go to step 703, and if there is the login_token attribute, go to step 708.
  • Step 703 Obtain the original IP address of the request from the HTTP request message.
  • Step 704 Obtain the number of visited times in the current statistical period (within one minute) from the cache according to the obtained IP address.
  • Step 705 If the number of accessed times has reached 10 times, go to step 706, and if not, go to step 707.
  • Step 706 the forwarding of the access request is denied, and the end
  • Step 707 The current count in the cache is increased by 1;
  • Step 708 forward the HTTP request message to the backend processor, and end.
  • a government department needs to upgrade its application in the public cloud, which needs to be completed by using a canary upgrade.
  • the operation and maintenance personnel use the model designer to design the business model upgraded by Canary, and design the completed model.
  • the gateway control Facing the model analysis, the gateway control generates executable instructions and delivers them to the instruction executor.
  • the corresponding instructions are shown in Figure 8B.
  • Request processing After receiving the request message, it will execute all the instructions of the pipeline.
  • the processing logic can be seen in FIG. 8A.
  • Step 901 The HTTP server listens to the HTTP request message on port 80.
  • Step 902 Obtain the original IP address of the request message from the HTTP request.
  • Step 903 Calculate the hash (HASH) by the original IP address, then find the modulus with 100.
  • Step 904 determine whether the modulus is 1, go to step 906, otherwise go to step 905.
  • Step 905 Forward the HTTP request message to the old version of the service and end.
  • Step 906 Forward the HTTP request message to the new version of the service and end.
  • An e-commerce company needs to launch a spike service.
  • the first 100 requests can be purchased, and the subsequent request returns a spike response.
  • Implementation environment description An e-commerce needs to launch a spike service.
  • the HTTP gateway uses an access counter to count. When the count is less than 100, the order is normally placed and the counter is increased by one. Otherwise, the request returns a response to the spike failure. Take this device as an example to describe this invention in detail:
  • the operation and maintenance personnel use the model designer to design the spike business model, and the designed model is shown in FIG. 9A.
  • the gateway control generates executable instructions and delivers them to the instruction executor.
  • the relevant instructions are shown in Figure 9B.
  • Request and response processing After receiving the request message and the response message, all the instructions of the pipeline will be executed.
  • the processing logic can be seen in FIG. 9A.
  • Step 1101 The HTTP server listens to the HTTP request message on port 80.
  • Step 1102 Obtain the current request count from the cache.
  • Step 1103 determine whether the request count reaches 100, reach forward to step 1104, and fail to forward to step 1106.
  • Step 1104 The request count in the cache is increased by one.
  • Step 1105 Go to the HTTP request to the service server and end.
  • Step 1106 Return a response to the spike failure to the HTTP client, and the process ends.
  • the gateway service to be implemented in this embodiment is: the access frequency of users who are authenticated is controlled at 1000 times per second, and the overall access frequency of non-identified users is controlled at 100 times per second. Identity can be used in this HTTP gateway service The combination of the authentication model and the access limitation model is completed.
  • This embodiment mainly explains the nesting in model design. Assuming that a first gateway business model for implementing the current limiting control process and a second gateway business model for implementing the authorization control process have been designed, when designing the third gateway business model of this embodiment, you can The first gateway business model and the second gateway business model are embedded as a link in the third gateway business model, that is, the permission control sub-process and the current limit control sub-process are embedded into the overall business process, as shown in Figure 10 Processing logic.
  • An exemplary embodiment of the present invention further provides a gateway service control device, as shown in FIG. 11, including a processor 50, a memory 60, and a computer stored on the memory 60 and capable of running on the processor 50 Program, when the processor 50 executes the calculation program, the processing of the method executed by the gateway service control device side according to any of the above embodiments of the present invention is implemented.
  • a gateway service control device as shown in FIG. 11, including a processor 50, a memory 60, and a computer stored on the memory 60 and capable of running on the processor 50 Program, when the processor 50 executes the calculation program, the processing of the method executed by the gateway service control device side according to any of the above embodiments of the present invention is implemented.
  • An exemplary embodiment of the present invention also provides a gateway.
  • a gateway includes a processor 50, a memory 60, and a computer program stored on the memory 60 and executable on the processor 50.
  • the processor 50 executes the calculation program, it implements the processing of the method performed by the gateway side according to any one of the above embodiments of the present invention.
  • An exemplary embodiment of the present invention also provides a computer-readable storage medium on which a computer program is stored, which when executed by a processor implements the processing of the method described in any of the above embodiments of the present invention.
  • the DSL language is used to build the gateway business model, and the model is converted into executable instructions and then issued to the instruction executor, so that the gateway business development can be completed based on high-level abstractions.
  • Such software may be distributed on computer-readable media, which may include computer storage media (or non-transitory media) and communication media (or transitory media).
  • computer storage medium includes both volatile and nonvolatile implemented in any method or technology for storing information such as computer readable instructions, data structures, program modules, or other data Sex, removable and non-removable media.
  • Computer storage media include but are not limited to RAM, ROM, EEPROM, flash memory or other memory technologies, CD-ROM, digital versatile disk (DVD) or other optical disk storage, magnetic cartridges, magnetic tape, magnetic disk storage or other magnetic storage devices, or may Any other medium used to store desired information and accessible by a computer.
  • the communication medium generally contains computer readable instructions, data structures, program modules, or other data in a modulated data signal such as a carrier wave or other transmission mechanism, and may include any information delivery medium .
  • the embodiments of the present invention can respond to different business needs and quickly realize business goals, and the operation and maintenance personnel can develop new services, and no longer need to develop different plug-ins according to different services.

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

La présente invention concerne, dans ses modes de réalisation, un procédé de mise en œuvre de service de passerelle, un dispositif de commande et une passerelle. Un dispositif de commande de service de passerelle génère un modèle de service de passerelle selon une instruction d'entrée ; et envoie des informations de service de passerelle à une passerelle selon le modèle de service de passerelle généré. La passerelle acquiert une pluralité de premières instructions pour la mise en œuvre de services de passerelle, et traite des messages reçus selon les premières instructions. Les services de passerelle dans la présente invention adoptent une conception guidée par modèle, et peuvent satisfaire différentes exigences de service, en atteignant rapidement des objectifs de service, sans avoir besoin de développer différents modules d'extension selon différents services.
PCT/CN2019/110348 2018-12-29 2019-10-10 Procédé de mise en œuvre de service de passerelle, dispositif de commande et passerelle WO2020134329A1 (fr)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201811638933.8A CN111385124A (zh) 2018-12-29 2018-12-29 一种网关业务实现方法、控制装置和网关
CN201811638933.8 2018-12-29

Publications (1)

Publication Number Publication Date
WO2020134329A1 true WO2020134329A1 (fr) 2020-07-02

Family

ID=71126400

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2019/110348 WO2020134329A1 (fr) 2018-12-29 2019-10-10 Procédé de mise en œuvre de service de passerelle, dispositif de commande et passerelle

Country Status (2)

Country Link
CN (1) CN111385124A (fr)
WO (1) WO2020134329A1 (fr)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114221949A (zh) * 2021-11-30 2022-03-22 北京航天云路有限公司 一种适用于公有云平台的api网关实现方法
CN114221836A (zh) * 2021-12-15 2022-03-22 杭州橙鹰数据技术有限公司 数据处理方法及装置
CN115150316A (zh) * 2021-03-15 2022-10-04 上海博泰悦臻网络技术服务有限公司 基于动态路由的网关控制方法、装置、介质及网关设备

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112615734B (zh) * 2020-12-09 2023-04-07 杭州海康威视系统技术有限公司 网络设备的建模、管控方法、装置、设备及存储介质
CN115396503B (zh) * 2021-05-24 2023-11-24 阿里巴巴新加坡控股有限公司 一种信息处理系统及其实现信息处理的方法和网关
CN113595788B (zh) * 2021-07-28 2024-05-28 上海华兴数字科技有限公司 一种基于插件的api网关管理方法及装置

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106130787A (zh) * 2016-07-28 2016-11-16 中国电信集团工会上海市网络操作维护中心委员会 一种基于软件定义网络的业务处理系统
CN106251131A (zh) * 2015-06-04 2016-12-21 易支付网关有限公司 用于提供电子交易网关的方法和设备
CN106470111A (zh) * 2015-08-14 2017-03-01 中国电信股份有限公司 基于sdn架构的延伸设备接入方法、控制器和sdn系统
US20170289307A1 (en) * 2016-03-29 2017-10-05 Amazon Technologies, Inc. System Interaction Monitoring And Component Scaling
CN108134698A (zh) * 2017-12-21 2018-06-08 冶金自动化研究设计院 一种工业多协议物联网关的图形化配置平台
CN108768724A (zh) * 2018-05-30 2018-11-06 上海顺舟智能科技股份有限公司 网关控制方法及智能网关

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105591771A (zh) * 2014-10-22 2016-05-18 中兴通讯股份有限公司 一种以太网业务配置方法及装置
ES2715580T3 (es) * 2015-02-09 2019-06-04 Koninklijke Kpn Nv Pasarelas distribuidas
CN206673991U (zh) * 2017-03-02 2017-11-24 天津芯思科技有限公司 一种可配置扩展的物联网网关设备
EP3376737B1 (fr) * 2017-03-15 2020-11-25 ABB Schweiz AG Configurations de passerelle dans l'internet des objets industriels

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106251131A (zh) * 2015-06-04 2016-12-21 易支付网关有限公司 用于提供电子交易网关的方法和设备
CN106470111A (zh) * 2015-08-14 2017-03-01 中国电信股份有限公司 基于sdn架构的延伸设备接入方法、控制器和sdn系统
US20170289307A1 (en) * 2016-03-29 2017-10-05 Amazon Technologies, Inc. System Interaction Monitoring And Component Scaling
CN106130787A (zh) * 2016-07-28 2016-11-16 中国电信集团工会上海市网络操作维护中心委员会 一种基于软件定义网络的业务处理系统
CN108134698A (zh) * 2017-12-21 2018-06-08 冶金自动化研究设计院 一种工业多协议物联网关的图形化配置平台
CN108768724A (zh) * 2018-05-30 2018-11-06 上海顺舟智能科技股份有限公司 网关控制方法及智能网关

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115150316A (zh) * 2021-03-15 2022-10-04 上海博泰悦臻网络技术服务有限公司 基于动态路由的网关控制方法、装置、介质及网关设备
CN114221949A (zh) * 2021-11-30 2022-03-22 北京航天云路有限公司 一种适用于公有云平台的api网关实现方法
CN114221949B (zh) * 2021-11-30 2024-04-05 北京航天云路有限公司 一种适用于公有云平台的api网关实现方法
CN114221836A (zh) * 2021-12-15 2022-03-22 杭州橙鹰数据技术有限公司 数据处理方法及装置

Also Published As

Publication number Publication date
CN111385124A (zh) 2020-07-07

Similar Documents

Publication Publication Date Title
WO2020134329A1 (fr) Procédé de mise en œuvre de service de passerelle, dispositif de commande et passerelle
US10581873B2 (en) Securing micro-services
US11356440B2 (en) Automated IoT device registration
US9300577B2 (en) Application intelligent request management based on server health and client information
US10318285B1 (en) Deployment of infrastructure in pipelines
CN102281311B (zh) 一种基于开放应用编程接口实现网络业务的方法、系统及装置
US9237130B2 (en) Hierarchical rule development and binding for web application server firewall
US9143511B2 (en) Validation of conditional policy attachments
US20150128103A1 (en) System and method for automating application programming interface integration
CN109995713A (zh) 一种微服务框架中的服务处理方法及相关设备
JP6181740B2 (ja) クエリ言語を使用してウェブ・サービスのアプリケーション・プログラミング・インターフェースを拡張する方法
WO2021139788A1 (fr) Procédé, système, appareil de configuration de passerelle en nuage et support de stockage lisible par ordinateur
US10454786B2 (en) Multi-party updates to distributed systems
CN105359482A (zh) 用于作为服务基础设施的平台中透明注入策略的系统和方法
CN110222500A (zh) 版本管理方法、装置、设备及计算机可读存储介质
US11790058B2 (en) Automated role management for resource accessing code
CN113556359A (zh) 一种通讯协议转换方法、设备、系统及网关设备
CN110069909A (zh) 一种免密登录第三方系统的方法及装置
KR20210072265A (ko) 블록체인을 이용한 서비스 분산 처리 방법 및 이를 구현하는 장치
CN112181599A (zh) 模型训练方法、装置及存储介质
US10289978B2 (en) Method and apparatus for integrating health care payers and provider systems with health care transaction systems using a single HIPAA EDI response generation component
US20220292216A1 (en) System and method for securing and facilitating access to a digital legacy
CN113836573A (zh) 基于分布式存储的用户信息处理方法及装置
KR20210027011A (ko) 피어 노드, 피어 노드에서 수행되는 처리 방법 및 블록체인 플랫폼 시스템
CN109784709A (zh) 企业信息化协作应用方法及系统

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 19903322

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 09/1/2021)

122 Ep: pct application non-entry in european phase

Ref document number: 19903322

Country of ref document: EP

Kind code of ref document: A1