CN110673970B - Cross-process calling system and method based on web application - Google Patents

Cross-process calling system and method based on web application Download PDF

Info

Publication number
CN110673970B
CN110673970B CN201910933997.9A CN201910933997A CN110673970B CN 110673970 B CN110673970 B CN 110673970B CN 201910933997 A CN201910933997 A CN 201910933997A CN 110673970 B CN110673970 B CN 110673970B
Authority
CN
China
Prior art keywords
calling
web application
unit
sdk
management server
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.)
Active
Application number
CN201910933997.9A
Other languages
Chinese (zh)
Other versions
CN110673970A (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.)
Zhengzhou Xinda Jiean Information Technology Co Ltd
Original Assignee
Zhengzhou Xinda Jiean Information Technology 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 Zhengzhou Xinda Jiean Information Technology Co Ltd filed Critical Zhengzhou Xinda Jiean Information Technology Co Ltd
Priority to CN201910933997.9A priority Critical patent/CN110673970B/en
Publication of CN110673970A publication Critical patent/CN110673970A/en
Application granted granted Critical
Publication of CN110673970B publication Critical patent/CN110673970B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/547Remote procedure calls [RPC]; Web services
    • G06F9/548Object oriented; Remote method invocation [RMI]

Abstract

The invention provides a cross-process calling system and a cross-process calling method based on web application, wherein the system comprises: the system comprises a web application client, a management server and a hardware resource module, wherein the web application client and the management server are in cross-process communication; the web application client comprises an html page module and a JS-SDK module, wherein the html page module provides a human-computer interaction interface and is used for generating a calling request and displaying a calling result; the JS-SDK module is used for receiving a calling request generated by the html page module and forwarding the calling request to the management server, and is also used for receiving a calling result of the management server and feeding the calling result back to the html page module; the management server is used for responding to a calling request sent by the web application client, executing and calling corresponding hardware resources in the hardware resource module, and feeding a calling result back to the web application client; the hardware resource module is used for responding to the call request of the management server and providing hardware resource service. The invention can realize cross-process calling of the web application program to the bottom hardware resource and expand the function of the web application program.

Description

Cross-process calling system and method based on web application
Technical Field
The invention relates to the technical field of computers, in particular to a cross-process calling system and a cross-process calling method based on web application.
Background
The popularization of the smart phone brings great convenience to the life of people, and people can easily meet various requirements of information search, map viewing and the like through application programs in the smart phone.
A web application program (web app) is an application that runs on a network and a standard browser, and develops a specific function based on web page technology. However, the web application has a fatal weakness that the web application can only call an interface provided by a browser, and cannot bypass the browser to directly call an underlying hardware resource interface of the mobile terminal, so that the function of the web application is limited to a certain extent.
The invention content is as follows:
in view of the above problems, it is necessary to provide a system and a method for cross-process call based on web application, which can implement cross-process call of a web application program to underlying hardware resources, and further extend functions of the web application program.
The invention provides a cross-process calling system based on web application in a first aspect, which comprises: the system comprises a web application client, a management server and a hardware resource module, wherein the web application client and the management server are in cross-process communication;
the web application client comprises an html page module and a JS-SDK module, wherein the html page module provides a human-computer interaction interface and is used for generating a calling request and displaying a calling result; the JS-SDK module is used for receiving the calling request generated by the html page module and forwarding the calling request to the management server, and is also used for receiving the calling result of the management server and feeding the calling result back to the html page module;
the management server is used for responding to a calling request sent by the web application client, executing and calling corresponding hardware resources in the hardware resource module, and feeding a calling result back to the web application client;
and the hardware resource module is used for storing hardware resources and responding to the calling request of the management server to provide hardware resource service.
Furthermore, the JS-SDK module comprises a JS-SDK interface unit, a first service interface protocol unit and a first communication unit;
the JS-SDK interface unit is used for receiving the calling request of the html page module, forwarding the calling request to the first service interface protocol unit and returning a corresponding calling result to the html page module;
the first service interface protocol unit is used for carrying out protocol encapsulation on the calling request sent by the JS-SDK interface unit, and also used for carrying out protocol analysis on a corresponding calling result and returning the calling result to the JS-SDK interface unit;
the first communication unit is used for sending the calling request after protocol encapsulation to the management server and receiving a calling result returned by the management server.
Furthermore, the management server comprises a second communication unit, a second service interface protocol unit and a service layer, wherein the second communication unit and the first communication unit adopt a web socket technology for communication;
the second communication unit is used for receiving the calling request sent by the first communication unit and returning a corresponding calling result to the first communication unit;
the second service interface protocol unit is used for carrying out protocol analysis on the calling request sent by the second communication unit, carrying out protocol encapsulation on a corresponding calling result and returning the calling result to the second communication unit;
and the service layer is used for responding to the calling request analyzed by the protocol of the second service interface protocol unit, calling corresponding resources in hardware resources according to the calling request and returning corresponding calling results.
Further, before the second communication unit and the first communication unit communicate by using a web socket technology, the management server starts a web socket service in advance.
Furthermore, the number of the JS-SDK interface units is multiple, the number of the JS-SDK interface units is preset to be n, the n JS-SDK interface units are stored in an interface list according to a preset sequence, the kth JS-SDK interface unit is preset to be a default interface, when the Web application client side has a calling requirement, the default interface is selected, wherein k is larger than or equal to 1, and is smaller than or equal to n.
Further, the web application client side sequentially tries to use the JS-SDK interface units in the interface list to carry out cross-process calling according to a preset sequence, if cross-process communication fails, the JS-SDK interface unit tried at present is judged to be occupied by other web application client sides until the JS-SDK interface unit tried by the web application client side can realize cross-process communication.
The second aspect of the present invention further provides a cross-process calling method based on web application, where the method includes:
generating a calling request through an html page module and sending the calling request to a JS-SDK module;
the JS-SDK module sends the call request to a management server through a cross-process communication mechanism;
and the management server responds to the call request of the web application client, executes and calls the corresponding hardware resource in the hardware resource module, and returns a call result.
Further, the JS-SDK module sends the call request to the management server through a cross-process communication mechanism, and specifically includes:
the JS-SDK interface unit receives the call request of the html page module and forwards the call request to the first service interface protocol unit;
the first service interface protocol unit carries out protocol encapsulation on the calling request sent by the JS-SDK interface unit;
and the first communication unit sends the call request after protocol encapsulation to the management server.
Further, the method for invoking the corresponding hardware resource in the hardware resource module by the management server in response to the invocation request of the web application client includes:
the second communication unit receives the call request sent by the first communication unit and forwards the call request to a second service interface protocol unit;
the second service interface protocol unit carries out protocol analysis on the calling request sent by the second communication unit;
the service layer responds to the calling request after the protocol of the second service interface protocol unit is analyzed, and calls corresponding resources in the hardware resources according to the calling request.
Further, returning a calling result specifically includes:
after the service layer finishes calling corresponding resources in the hardware resources, returning a corresponding calling result;
the second service interface protocol unit performs protocol encapsulation on the calling result and returns the calling result to the second communication unit;
the second communication unit returns the calling result to the first communication unit;
the first communication unit receives the calling result returned by the second communication unit and forwards the calling result to the first service interface protocol unit;
the first service interface protocol unit carries out protocol analysis on the calling result and returns the calling result to the JS-SDK interface unit;
and the JS-SDK interface unit returns the calling result to the html page module for display.
The cross-process calling system and method based on the web application adopt the JS-SDK interface unit and combine with a web socket cross-process communication mechanism, so that the web application has the capacity of calling bottom hardware resources, the functions of the web application are further expanded and strengthened, and the experience of a user on the web application is improved.
Description of the drawings:
FIG. 1 is a block diagram of a cross-process call system for web-based applications according to the present invention.
FIG. 2 is a flow chart of a cross-process calling method based on a web application according to the invention.
The specific implementation mode is as follows:
in order to make the present invention clearer, the following describes the technical solution of the present invention in further detail through specific embodiments.
FIG. 1 is a block diagram of a cross-process call system for web-based applications according to the present invention.
As shown in fig. 1, a first aspect of the present invention provides a cross-process invocation system based on a web application, where the system includes: the system comprises a web application client, a management server and a hardware resource module, wherein the web application client and the management server are in cross-process communication;
the web application client comprises an html page module and a JS-SDK module, wherein the html page module provides a man-machine interaction interface and is used for generating a calling request and displaying a calling result; the JS-SDK module is used for receiving the calling request generated by the html page module and forwarding the calling request to the management server, and is also used for receiving the calling result of the management server and feeding the calling result back to the html page module;
the management server is used for responding to a calling request sent by the web application client, executing calling of corresponding hardware resources in the hardware resource module, and feeding a calling result back to the web application client;
and the hardware resource module is used for storing hardware resources and responding to the calling request of the management server to provide hardware resource service.
Preferably, the hardware resource module may be a cryptographic chip, and the cryptographic chip may support cryptographic services such as PIN code verification, data encryption and decryption, digital certificate signing, and the like. But is not limited thereto.
In practical applications, when a user needs to log in a web application client, a PIN is usually required to be input for authentication, and only the correct PIN code is input to ensure successful login. In order to check whether the PIN is correct, an underlying password chip needs to be called to provide PIN checking service. According to the invention, the JS-SDK module sends a calling request to the management server, and the management server responds to the calling request and calls PIN code verification resources of the bottom layer password chip, so that the web application client has a PIN verification function.
According to the embodiment of the invention, the JS-SDK module comprises a JS-SDK interface unit, a first service interface protocol unit and a first communication unit;
the JS-SDK interface unit is used for receiving the calling request of the html page module, forwarding the calling request to the first service interface protocol unit and returning a corresponding calling result to the html page module;
the first service interface protocol unit is used for carrying out protocol encapsulation on the calling request sent by the JS-SDK interface unit, and also used for carrying out protocol analysis on a corresponding calling result and returning the calling result to the JS-SDK interface unit;
the first communication unit is used for sending the calling request after protocol encapsulation to the management server and receiving a calling result returned by the management server.
It should be noted that, before the web application client starts the call service, the web application client may receive the configuration file provided by the management server, and the web application client generates, according to the configuration file, a JS-SDK module including a JS-SDK interface unit, a first service interface protocol unit, and a first communication unit.
According to the embodiment of the invention, the management server comprises a second communication unit, a second service interface protocol unit and a service layer, wherein the second communication unit and the first communication unit adopt a web socket technology for communication;
the second communication unit is used for receiving the calling request sent by the first communication unit and returning a corresponding calling result to the first communication unit;
the second service interface protocol unit is used for carrying out protocol analysis on the calling request sent by the second communication unit, carrying out protocol encapsulation on a corresponding calling result and returning the calling result to the second communication unit;
and the service layer is used for responding to the call request analyzed by the protocol of the second service interface protocol unit, calling corresponding resources in the hardware resources according to the call request and returning corresponding call results.
According to the embodiment of the invention, the management server further comprises an interface management module, and before the second communication unit and the first communication unit adopt the web socket technology for communication, the web socket service can be started in advance through the interface management module, so that when a subsequent web application client has a call requirement, cross-process communication can be carried out with the management server, and the call of bottom hardware resources is realized.
Furthermore, the JS-SDK interface units can be multiple, the JS-SDK interface units are preset to be n, the n JS-SDK interface units are stored in the interface list according to a preset sequence, the Kth JS-SDK interface unit is preset to be a default interface, when the Web application client side has a calling requirement, the default interface is optimized, wherein k is larger than or equal to 1, and is smaller than or equal to n.
Preferably, the value of n is 5, the value of k is 1, that is, the 1 st JS-SDK interface unit is the default interface, but is not limited thereto.
Furthermore, the web application client side sequentially tries to use JS-SDK interface units in the interface list to perform cross-process calling according to a preset sequence, and if cross-process communication fails, the currently tried JS-SDK interface units are judged to be occupied by other web application client sides until the JS-SDK interface units tried by the web application client side can achieve cross-process communication.
It can be understood that the management server can support cross-process communication with multiple web application clients, and the multiple web application clients respectively try multiple JS-SDK interface units in the interface list. Specifically, taking one of the web application clients as an example, the web application client preferably tries to use the default interface according to a preset sequence, and if the cross-process communication fails, it indicates that the default interface is occupied by other web application clients, and at this time, the web application client may try other JS-SDK interface units one by one according to the preset sequence until the JS-SDK interface units can implement the cross-process communication.
Furthermore, the plurality of web application clients respectively perform cross-process communication with the management server according to the time priority order so as to call the bottom hardware resources. Specifically, while the current web application client and the management server are performing cross-process call, other web application clients with call requirements wait until the current web application client completes the call, and then the call process of the subsequent web application client can be performed.
FIG. 2 is a flow chart illustrating a cross-process calling method based on a web application according to the invention.
As shown in fig. 2, the second aspect of the present invention further provides a cross-process invocation method based on a web application, which is applied to the above cross-process invocation system based on a web application, and the method includes:
s201, generating a calling request through an html page module and sending the calling request to a JS-SDK module;
s202, the JS-SDK module sends the call request to a management server through a cross-process communication mechanism;
s203, the management server responds to the call request of the web application client, executes the call of the corresponding hardware resource in the hardware resource module, and returns a call result.
Further, the JS-SDK module sends the call request to the management server through a cross-process communication mechanism, and specifically includes:
the JS-SDK interface unit receives the call request of the html page module and forwards the call request to the first service interface protocol unit;
the first service interface protocol unit carries out protocol encapsulation on the calling request sent by the JS-SDK interface unit;
and the first communication unit sends the call request subjected to protocol encapsulation to the management server.
Further, the step of the management server responding to the call request of the web application client and executing the call of the corresponding hardware resource in the hardware resource module includes:
the second communication unit receives the call request sent by the first communication unit and forwards the call request to a second service interface protocol unit;
the second service interface protocol unit carries out protocol analysis on the calling request sent by the second communication unit;
the service layer responds to the calling request after the protocol of the second service interface protocol unit is analyzed, and calls corresponding resources in the hardware resources according to the calling request.
Further, returning a call result specifically includes:
after the service layer finishes calling corresponding resources in the hardware resources, returning a corresponding calling result;
the second service interface protocol unit performs protocol encapsulation on the calling result and returns the calling result to the second communication unit;
the second communication unit returns the calling result to the first communication unit;
the first communication unit receives the calling result returned by the second communication unit and forwards the calling result to the first service interface protocol unit;
the first service interface protocol unit carries out protocol analysis on the calling result and returns the calling result to the JS-SDK interface unit;
and the JS-SDK interface unit returns the calling result to the html page module for display.
Further, the management server further comprises an interface management module, and before the second communication unit communicates with the first communication unit by using a web socket technology, the web socket service can be started in advance through the interface management module, so that when a subsequent web application client has a call requirement, cross-process communication can be performed with the management server, and the call of underlying hardware resources is realized.
Furthermore, the JS-SDK interface units can be multiple, the JS-SDK interface units are preset to be n, the n JS-SDK interface units are stored in the interface list according to a preset sequence, the Kth JS-SDK interface unit is preset to be a default interface, when the web application client side has a calling requirement, the default interface is optimized, wherein k is larger than or equal to 1, and is smaller than or equal to n.
The cross-process calling system and method based on the web application adopt the JS-SDK interface unit and combine with a web socket cross-process communication mechanism, so that the web application has the capacity of calling bottom hardware resources, the functions of the web application are further expanded and strengthened, and the experience of a user on the web application is improved.
Finally, it should be noted that: the above embodiments are only used for illustrating the technical solutions of the present invention and not for limiting the same, and those skilled in the art should make modifications to the specific embodiments of the present invention or make equivalent substitutions for part of technical features without departing from the spirit of the technical solutions of the present invention, and all of them should be covered in the technical solutions claimed in the present invention.

Claims (7)

1. A cross-process invocation system based on web applications, the system comprising: the system comprises a web application client, a management server and a hardware resource module of the mobile terminal, wherein the web application client and the management server perform cross-process communication, so that the web application client has the capability of directly calling bottom hardware resources of the mobile terminal by bypassing a browser;
the web application client comprises an html page module and a JS-SDK module, wherein the html page module provides a man-machine interaction interface and is used for generating a calling request and displaying a calling result; the JS-SDK module is used for receiving the calling request generated by the html page module and forwarding the calling request to the management server, and is also used for receiving the calling result of the management server and feeding the calling result back to the html page module;
the JS-SDK module comprises a JS-SDK interface unit, a first service interface protocol unit and a first communication unit; the JS-SDK interface unit is used for receiving the calling request of the html page module, forwarding the calling request to the first service interface protocol unit and returning a corresponding calling result to the html page module; the first service interface protocol unit is used for carrying out protocol encapsulation on the calling request sent by the JS-SDK interface unit, and also used for carrying out protocol analysis on a corresponding calling result and returning the calling result to the JS-SDK interface unit; the first communication unit is used for sending the call request subjected to protocol encapsulation to the management server and receiving a call result returned by the management server;
before the web application client side starts the calling service, the web application client side receives a configuration file provided by the management server side, and the web application client side generates a JS-SDK module comprising a JS-SDK interface unit, a first service interface protocol unit and a first communication unit according to the configuration file;
the management server is used for responding to a calling request sent by the web application client, executing calling of corresponding hardware resources in the hardware resource module, and feeding a calling result back to the web application client;
the hardware resource module is used for storing hardware resources and responding to the calling request of the management server to provide hardware resource service;
the method comprises the following steps that a plurality of JS-SDK interface units are preset, n JS-SDK interface units are preset, the n JS-SDK interface units are stored in an interface list according to a preset sequence, the kth JS-SDK interface unit is preset as a default interface, and when a call requirement exists at a web application client, the default interface is selected, wherein k is greater than or equal to 1 and less than or equal to n;
the web application client side sequentially tries to use JS-SDK interface units in the interface list to carry out cross-process calling according to a preset sequence, if cross-process communication fails, the JS-SDK interface unit tried at present is judged to be occupied by other web application client sides until the JS-SDK interface unit tried by the web application client side can realize cross-process communication;
and the web application clients respectively perform cross-process communication with the management server according to the time priority order.
2. The cross-process calling system based on the web application is characterized in that the management server comprises a second communication unit, a second service interface protocol unit and a service layer, wherein the second communication unit and the first communication unit are communicated by adopting a web socket technology;
the second communication unit is used for receiving the calling request sent by the first communication unit and returning a corresponding calling result to the first communication unit;
the second service interface protocol unit is used for carrying out protocol analysis on the calling request sent by the second communication unit, carrying out protocol encapsulation on a corresponding calling result and returning the calling result to the second communication unit;
and the service layer is used for responding to the call request analyzed by the protocol of the second service interface protocol unit, calling corresponding resources in the hardware resources according to the call request and returning corresponding call results.
3. The system for cross-process calling based on the web application as claimed in claim 2, wherein the management server starts a web socket service in advance before the second communication unit and the first communication unit adopt a web socket technology for communication.
4. A cross-process calling method based on web application, which is applied to the cross-process calling system based on web application of any one of claims 1-3, characterized in that the method comprises:
generating a calling request through an html page module and sending the calling request to a JS-SDK module;
the JS-SDK module sends the call request to a management server through a cross-process communication mechanism;
and the management server responds to the call request of the web application client, executes and calls the corresponding hardware resource in the hardware resource module, and returns a call result.
5. The method for cross-process invocation based on web application according to claim 4, wherein the JS-SDK module sends the invocation request to a management server through a cross-process communication mechanism, which specifically comprises:
the JS-SDK interface unit receives the call request of the html page module and forwards the call request to the first service interface protocol unit;
the first service interface protocol unit carries out protocol encapsulation on the calling request sent by the JS-SDK interface unit;
and the first communication unit sends the call request after protocol encapsulation to the management server.
6. The cross-process calling method based on the web application as claimed in claim 5, wherein the managing server responds to the calling request of the web application client to execute the calling of the corresponding hardware resource in the hardware resource module, which specifically includes:
the second communication unit receives the call request sent by the first communication unit and forwards the call request to a second service interface protocol unit;
the second service interface protocol unit carries out protocol analysis on the calling request sent by the second communication unit;
the service layer responds to the calling request after the protocol of the second service interface protocol unit is analyzed, and calls corresponding resources in the hardware resources according to the calling request.
7. The cross-process calling method based on the web application as claimed in claim 6, wherein the returning of the calling result specifically includes:
after the service layer finishes calling corresponding resources in the hardware resources, returning a corresponding calling result;
the second service interface protocol unit carries out protocol encapsulation on the calling result and returns the calling result to the second communication unit;
the second communication unit returns the calling result to the first communication unit;
the first communication unit receives the calling result returned by the second communication unit and forwards the calling result to the first service interface protocol unit;
the first service interface protocol unit carries out protocol analysis on the calling result and returns the calling result to the JS-SDK interface unit;
and the JS-SDK interface unit returns the calling result to the html page module for display.
CN201910933997.9A 2019-09-29 2019-09-29 Cross-process calling system and method based on web application Active CN110673970B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910933997.9A CN110673970B (en) 2019-09-29 2019-09-29 Cross-process calling system and method based on web application

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910933997.9A CN110673970B (en) 2019-09-29 2019-09-29 Cross-process calling system and method based on web application

Publications (2)

Publication Number Publication Date
CN110673970A CN110673970A (en) 2020-01-10
CN110673970B true CN110673970B (en) 2022-12-23

Family

ID=69080235

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910933997.9A Active CN110673970B (en) 2019-09-29 2019-09-29 Cross-process calling system and method based on web application

Country Status (1)

Country Link
CN (1) CN110673970B (en)

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112187809B (en) * 2020-09-30 2022-02-25 郑州信大捷安信息技术股份有限公司 Method and system for browser to use remote equipment password service
CN112363888A (en) * 2020-11-13 2021-02-12 广州朗国电子科技有限公司 Multi-application cooperative work method, device and system and computer readable storage medium

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103106102A (en) * 2013-01-14 2013-05-15 百度在线网络技术(北京)有限公司 Running method of Web application program and mobile terminal
CN104484823A (en) * 2014-11-26 2015-04-01 中金金融认证中心有限公司 Method and system for PKI (public key infrastructure) services of electronic bank
CN105389222A (en) * 2015-12-15 2016-03-09 中国科学院声学研究所 Method, apparatus and system for dynamically calling native interface
CN105741415A (en) * 2016-01-21 2016-07-06 广东华大互联网股份有限公司 Intelligent card automatic service terminal system and application method thereof
CN109067818A (en) * 2018-06-04 2018-12-21 杭州数梦工场科技有限公司 A kind of business access method and device

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9509745B2 (en) * 2013-02-04 2016-11-29 Oracle International Corporation Java API for programming web real-time communication applications

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103106102A (en) * 2013-01-14 2013-05-15 百度在线网络技术(北京)有限公司 Running method of Web application program and mobile terminal
CN104484823A (en) * 2014-11-26 2015-04-01 中金金融认证中心有限公司 Method and system for PKI (public key infrastructure) services of electronic bank
CN105389222A (en) * 2015-12-15 2016-03-09 中国科学院声学研究所 Method, apparatus and system for dynamically calling native interface
CN105741415A (en) * 2016-01-21 2016-07-06 广东华大互联网股份有限公司 Intelligent card automatic service terminal system and application method thereof
CN109067818A (en) * 2018-06-04 2018-12-21 杭州数梦工场科技有限公司 A kind of business access method and device

Also Published As

Publication number Publication date
CN110673970A (en) 2020-01-10

Similar Documents

Publication Publication Date Title
US11477641B2 (en) System and method for authentication session transfer using application download links
EP2589179B1 (en) Apparatus and method for controlling access to multiple services
CN108829528B (en) Content sharing method and device, and message processing method and device
CN104363226B (en) Method, device and system for logging in operating system
WO2017113359A1 (en) Cloud operation interface sharing method, related device and system
CN110673970B (en) Cross-process calling system and method based on web application
CN110362318A (en) Using dispositions method, device, equipment and storage medium
CN115048642B (en) Communication method between trusted applications in multi-trusted execution environment and electronic equipment
CN104618388A (en) Quick registration and login method and corresponding reset server and information server
CN110750780B (en) User role permission fusion method, device and equipment based on multi-service system
CN112202744A (en) Multi-system data communication method and device
US7086051B2 (en) Method and apparatus for just-in-time provisioning application-related information at a communication device
CN106789832B (en) Data processing method, device and system in call process
US11093309B1 (en) Communication hub for information technology (IT) services
CN107979577B (en) Terminal authentication method and device
WO2015003570A1 (en) Data downloading method,device and system thereof
CN111163455A (en) User identification number migration method, device, terminal and storage medium
CN110933659A (en) User identification number migration method, device, terminal and storage medium
CN113541981B (en) Member management method and system for network slice
CN110855655B (en) Information verification method, device, equipment and storage medium
CN111783643A (en) Face recognition method and device, electronic equipment and storage medium
CN111092916B (en) File uploading method and device, electronic equipment and medium
CN113901377B (en) Service calling method, device, storage medium and equipment of legacy system
CN107454580B (en) Method and system for realizing directional guidance of application program flow and mobile terminal
CN115102749B (en) Resource interaction method, device, equipment and storage medium

Legal Events

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