CN111831368A - Method, system and storage medium for interaction between browser application and desktop application - Google Patents

Method, system and storage medium for interaction between browser application and desktop application Download PDF

Info

Publication number
CN111831368A
CN111831368A CN202010448755.3A CN202010448755A CN111831368A CN 111831368 A CN111831368 A CN 111831368A CN 202010448755 A CN202010448755 A CN 202010448755A CN 111831368 A CN111831368 A CN 111831368A
Authority
CN
China
Prior art keywords
desktop application
application unit
unit
desktop
browser
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202010448755.3A
Other languages
Chinese (zh)
Inventor
陈璐
何志桢
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Wuhan Fiberhome Digtal Technology Co Ltd
Original Assignee
Wuhan Fiberhome Digtal 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 Wuhan Fiberhome Digtal Technology Co Ltd filed Critical Wuhan Fiberhome Digtal Technology Co Ltd
Priority to CN202010448755.3A priority Critical patent/CN111831368A/en
Publication of CN111831368A publication Critical patent/CN111831368A/en
Pending legal-status Critical Current

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/44Arrangements for executing specific programs
    • G06F9/451Execution arrangements for user interfaces
    • G06F9/452Remote windowing, e.g. X-Window System, desktop virtualisation
    • 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/44Arrangements for executing specific programs
    • G06F9/445Program loading or initiating
    • G06F9/44505Configuring for program initiating, e.g. using registry, configuration files
    • 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]

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Human Computer Interaction (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Information Transfer Between Computers (AREA)

Abstract

A method of a browser application interacting with a desktop application, comprising: starting a desktop application management unit and automatically running local HTTP/HTTPS service; when the browser application unit needs to interact with the desktop application unit, sending an HTTP/HTTPS request to the desktop application management unit, and starting the desktop application unit; the desktop application management starts a desktop application unit corresponding to the HTTP/HTTPS request; the desktop application unit automatically starts local HTTP/HTTPS service and Websocket service; the browser application initiates a Websocket connection request to the desktop application unit and establishes local Websocket bidirectional communication connection with the desktop application unit. According to the invention, the local communication connection is established between the browser application unit and the desktop application unit, and the C/S and B/S applications can actively send or receive data to each other, are not limited to a specific development language and a development framework, and have good universality. And the method supports to adopt an HTTPS communication protocol to replace HTTP communication, the Websocket communication supports to adopt an encrypted version of a WSS protocol, and the Websocket communication supports an automatic reconnection mechanism.

Description

Method, system and storage medium for interaction between browser application and desktop application
Technical Field
The invention belongs to the technical field of computer software engineering, and particularly relates to a method, a system and a storage medium for interaction of browser application and desktop application.
Background
Software system architectures widely used at present include Client/Server (C/S) architectures and Browser/Server (B/S) architectures, and application systems adopting the C/S architectures are called desktop application systems, generally require installation of dedicated Client software, and can provide good performance and user experience. An application system adopting the B/S framework is called a Web application system, a Web application server of a server is accessed by adopting a Web browser, special client software does not need to be installed and deployed generally, and the application system is simple and quick to use. With the continuous development and maturity of modern Web technology, more and more application systems start to shift from a C/S architecture to a B/S architecture, and meanwhile, many technologies and integrated application systems combining the C/S and B/S system architectures appear. At present, the most applied hybrid integration technical schemes mainly comprise the following technical schemes:
(1) the method has the advantages that ActiveX or NPAPI/PPAPPI technology is adopted, related functions of desktop application are packaged in a webpage control form and then embedded in a webpage for use, and the technology has the defects of being limited by the type and version of a browser and poor in compatibility and stability;
(2) by adopting a Webkit technology, a mainstream browser kernel is integrated in a desktop application program, such as a CEF (chrome Embedded framework) frame sourced by Google, or a cross-platform desktop application program is constructed by using technologies such as Electron, node-Webkit and the like and using HTML, CSS and JavaScript, and the technologies have the advantages of being mature and stable in technology, providing good support for new characteristics of HTML5 and the like, and have the defect that the browser kernel is large in size and easily causes the size of an installation package of the desktop application program to be large and the like.
(3) The method has the advantages that the WebAssembly technology is adopted, programs written by high-level languages such as C/C + + and the like are compiled into binary byte codes in a Wasm format, and the binary byte codes can be called and executed in a webpage through javascript.
Disclosure of Invention
In view of the above, the present invention provides a method and system for a browser application to interact with a desktop application that overcomes or at least partially solves the above mentioned problems.
A method of a browser application interacting with a desktop application, comprising:
the desktop application management unit is started, and after the desktop application management unit is started, local HTTP/HTTPS service is automatically operated;
when the browser application unit needs to interact with the desktop application unit, an HTTP/HTTPS request is sent to the desktop application management unit in a webpage in an Ajax mode, and the desktop application unit is started;
after receiving the HTTP/HTTPS request, the desktop application management unit starts a desktop application unit corresponding to the HTTP/HTTPS request;
after the desktop application unit is started, automatically starting local HTTP/HTTPS service and Websocket service;
the browser application initiates a Websocket connection request to the desktop application unit and establishes local Websocket bidirectional communication connection with the desktop application unit;
when the browser application unit needs to call the related functions of the desktop application unit, a message request is sent to the desktop application unit through the Websocket, and related function parameters are sent to the desktop application unit in a message format;
and after receiving the function request message, the desktop application unit calls a corresponding function module interface and returns a processing result to the browser application unit through the Websocket message.
Furthermore, the desktop application management unit can be started and operated automatically when the system is started, and can also be started by the browser application unit in a registry mode by utilizing a browser external protocol.
Further, a method for interaction between a browser application and a desktop application further includes:
when the browser application unit is closed, sending a connection closing request to the desktop application unit;
and the desktop application unit receives the connection closing request and closes the Websocket communication connection with the browser application unit.
Further, a method for interaction between a browser application and a desktop application further includes: when the desktop application unit needs to interact with the server application, the desktop application unit sends a connection request to the desktop application server unit, and the desktop application unit sends the connection request to the desktop application server unit.
Further, a method for interaction between a browser application and a desktop application further includes: when the desktop application unit needs to be processed by the server side, a service calling request is sent to the desktop application server unit;
and the desktop application server responds to the service calling request and sends the processing result to the desktop application unit.
Further, a method for interaction between a browser application and a desktop application further includes: and the desktop application unit receives the connection closing request, closes the communication connection with the desktop application server and quits the program operation.
Further, Websocket communication supports a WSS protocol that employs an encrypted version, and supports an automatic reconnect mechanism.
The invention also discloses a browser application and desktop application interaction system, which comprises: browser application unit, desktop application management unit, desktop application unit, wherein:
the browser application unit sends an HTTP/HTTPS request to the desktop application management unit in an Ajax mode in a webpage and starts the desktop application unit when the browser application unit needs to interact with the desktop application unit;
the desktop application management unit is used for managing the desktop application unit, starting the desktop application unit when receiving an interaction request with the desktop application unit sent by the browser application unit, and managing the closing, monitoring and version updating of the desktop application unit;
and the desktop application unit receives the control start of the desktop application management unit and interacts with the browser application unit by adopting local HTTP/HTTPS service and Websocket service.
Further, a browser application and desktop application interaction system further includes: WEB server element and desktop application server element, wherein:
the WEB server unit is used for carrying out communication interaction with the browser application unit and providing service request and response processing related to the B/S;
and the desktop application server unit is used for interacting with the desktop application unit when the desktop application unit needs to interact with the server application.
The invention also discloses a computer storage medium storing one or more programs, the one or more programs being executable by one or more processors to cause the one or more processors to perform a method association analysis step of browser application interaction with a desktop application.
The invention has the beneficial effects that:
the browser application unit, the desktop application unit and the desktop application management unit in the invention run in the same computer system, the browser application unit adopts a mainstream web browser without special installation, the local communication connection is established between the browser application unit and the desktop application unit, the C/S and B/S applications can actively send or receive data to each other, the local communication technology adopts Websocket communication technology and HTTP/HTTPS communication technology of HTML5 standard, the B/S application only needs to use a common browser to normally access HTML5 pages, the desktop application only needs to provide general Websocket service and HTTP/HTTPS service, therefore, the method can be adopted by various C/S desktop application and B/S application development technologies, is not limited to specific development languages and development frameworks, and has good universality. In the aspect of safety, the invention supports the adoption of an HTTPS communication protocol to replace HTTP communication, the Websocket communication supports the adoption of an encrypted version of a WSS protocol, and the Websocket communication supports an automatic reconnection mechanism.
Additional features and advantages of the invention will be set forth in the description which follows, and in part will be obvious from the description, or may be learned by practice of the invention. The objectives and other advantages of the invention will be realized and attained by the structure particularly pointed out in the written description and claims hereof as well as the appended drawings.
The technical solution of the present invention is further described in detail by the accompanying drawings and embodiments.
Drawings
The accompanying drawings, which are included to provide a further understanding of the invention and are incorporated in and constitute a part of this specification, illustrate embodiments of the invention and together with the description serve to explain the principles of the invention and not to limit the invention. In the drawings:
fig. 1 is a flowchart of a method for interaction between a browser application and a desktop application in embodiment 1 of the present invention;
fig. 2 is a system structure diagram of interaction between a browser application and a desktop application in embodiment 2 of the present invention.
Detailed Description
Exemplary embodiments of the present disclosure will be described in more detail below with reference to the accompanying drawings. While exemplary embodiments of the present disclosure are shown in the drawings, it should be understood that the present disclosure may be embodied in various forms and should not be limited to the embodiments set forth herein. Rather, these embodiments are provided so that this disclosure will be thorough and complete, and will fully convey the scope of the disclosure to those skilled in the art.
Example 1
The embodiment discloses a method for interaction between a browser application and a desktop application, which comprises the following steps:
s100, starting a desktop application management unit, and automatically running local HTTP/HTTPS service after starting;
specifically, the HTTP Protocol is an abbreviation of Hyper Text Transfer Protocol (HTTP), the HTTPs is an abbreviation of Hyper Text Transfer Protocol over secure session Layer, and the SSL Layer is added based on the HTTP in order to secure the security of the transmission process through transmission encryption and identity authentication. HTTP/HTTPS is used for transmitting hypertext from a World Wide Web (WWW) server to a transmission protocol of a local browser, transmits data based on a TCP/IP communication protocol, and has the characteristics of no connection, media independence and no state.
In some preferred embodiments, the desktop application management unit may be started and run automatically when the system is powered on, or may be started by the browser application unit in a registry manner using a protocol external to the browser.
S200, when the browser application unit needs to interact with the desktop application unit, an HTTP/HTTPS request is sent to the desktop application management unit in the webpage in an Ajax mode, and the desktop application unit is started.
S300, after the desktop application management unit receives the HTTP/HTTPS request, the desktop application unit corresponding to the HTTP/HTTPS request is started.
S400, after the desktop application unit is started, the local HTTP/HTTPS service and the Websocket service are automatically started.
Specifically, the WebSocket is a protocol provided by the HTML5 standard for full-duplex communication over a single TCP connection, supports bidirectional data transmission, and allows a server to actively push data to a client. Websocket communication supports a WSS protocol which adopts an encrypted version, and supports an automatic reconnection mechanism.
S500, the browser application initiates a Websocket connection request to the desktop application unit and establishes local Websocket bidirectional communication connection with the desktop application unit.
S600, when the browser application unit needs to call the related functions of the desktop application unit, a message request is sent to the desktop application unit through the Websocket, and related function parameters are sent to the desktop application unit in a message format.
And S700, after receiving the function request message, the desktop application unit calls a corresponding function module interface and returns a processing result to the browser application unit through the Websocket message.
In some preferred embodiments, a method of a browser application interacting with a desktop application, further comprises:
when the browser application unit is closed, sending a connection closing request to the desktop application unit;
and the desktop application unit receives the connection closing request and closes the Websocket communication connection with the browser application unit.
It can be understood that the above method for the browser application to interact with the desktop application is applied when the desktop application unit is used as a stand-alone device and does not need to interact with the server application. When the desktop application unit needs to interact with the server, the method for the browser application to interact with the desktop application further comprises the following steps: when the desktop application unit sends a connection request to the desktop application server unit, the desktop application server responds to the service calling request and sends a processing result to the desktop application unit.
In some preferred embodiments, a method of a browser application interacting with a desktop application, further comprises: and the desktop application unit receives the connection closing request, closes the communication connection with the desktop application server and quits the program operation.
The embodiment is a method for interaction between a browser application and a desktop application, wherein a browser application unit, a desktop application unit, and a desktop application management unit are operated in the same computer system, the browser application unit uses a mainstream web browser and does not need to be installed specially, a local communication connection is established between the browser application unit and the desktop application unit, C/S and B/S applications can actively send or receive data to each other, the local communication technology uses a Websocket communication technology and an HTTP/HTTPs communication technology of HTML5 standard, the B/S application only needs to use a common browser to normally access an HTML5 page, and the desktop application only needs to provide a general Websocket service and an HTTP/HTTPs service, so that the method can be used by various C/S desktop applications and B/S application development technologies without being limited to a specific development language and development framework, has good universality. In the aspect of safety, the invention supports the adoption of an HTTPS communication protocol to replace HTTP communication, the Websocket communication supports the adoption of an encrypted version of a WSS protocol, and the Websocket communication supports an automatic reconnection mechanism.
Example 2
The embodiment discloses a browser application and desktop application interaction system, which comprises: browser application unit 1, desktop application management unit 2, desktop application unit 3, wherein:
when the browser application unit 1 needs to interact with the desktop application unit 3, an HTTP/HTTPS request is sent to the desktop application management unit 2 in a webpage through an Ajax mode, and the desktop application unit 3 is started.
And the desktop application management unit 2 is used for managing the desktop application unit 3, starting the desktop application unit 3 when receiving an interaction request with the desktop application unit 3 sent by the browser application unit 1, and managing the closing, monitoring and version updating of the desktop application unit 3.
And the desktop application unit 3 receives the control start of the desktop application management unit 2 and interacts with the browser application unit 1 by adopting local HTTP/HTTPS service and Websocket service.
In this embodiment, the desktop application unit 3 provides application services in the aspects of function, performance, security restrictions and the like that cannot be satisfied by the B/S architecture and the browser, such as service processing capabilities with high requirements on performance, real-time performance and stability, for example, local file access, hardware resource access, streaming media playing, video encoding and decoding, video rendering, image processing, intelligent video algorithm analysis and the like;
in some preferred embodiments, the browser application unit 1, the desktop application unit 3, and the desktop application management unit 2 are running in the same computer system, and the browser application unit 1 adopts a mainstream web browser and does not need to be installed specially.
In some preferred embodiments, the desktop application unit 3 and the desktop application management unit 2 may also be combined into an independent desktop application unit 3, and may be set to automatically start and run when the system is powered on, or the desktop application unit 3 may be started by the browser application unit 1 through a registry method using a browser external protocol (URL protocol).
In some preferred embodiments, when the desktop application unit 3 needs to interact with the server application, a browser application and desktop application interaction system further includes: a WEB server unit and a desktop application server unit. And the WEB server unit is used for carrying out communication interaction with the browser application unit 1 and providing service request and response processing related to B/S.
And the desktop application server unit is used for interacting with the desktop application unit 3 when the desktop application unit 3 needs to interact with the server application.
The system for interaction between browser application and desktop application in this embodiment, where a browser application unit, a desktop application unit, and a desktop application management unit are running in the same computer system, the browser application unit uses a mainstream web browser, and does not need to be installed specially, a local communication connection is established between the browser application unit and the desktop application unit, and both C/S and B/S applications can actively send or receive data to each other, the local communication technology uses a Websocket communication technology and an HTTP/HTTPs communication technology in the HTML5 standard, the B/S application only needs to use a common browser to normally access an HTML5 page, and the desktop application only needs to provide a general Websocket service and an HTTP/HTTPs service, and thus can be used by various C/S desktop applications and B/S application development technologies without being limited to a specific development language and development framework, has good universality. In the aspect of safety, the invention supports the adoption of an HTTPS communication protocol to replace HTTP communication, the Websocket communication supports the adoption of an encrypted version of a WSS protocol, and the Websocket communication supports an automatic reconnection mechanism.
It should be understood that the specific order or hierarchy of steps in the processes disclosed is an example of exemplary approaches. Based upon design preferences, it is understood that the specific order or hierarchy of steps in the processes may be rearranged without departing from the scope of the present disclosure. The accompanying method claims present elements of the various steps in a sample order, and are not intended to be limited to the specific order or hierarchy presented.
Those of skill would further appreciate that the various illustrative logical blocks, modules, circuits, and algorithm steps described in connection with the embodiments disclosed herein may be implemented as electronic hardware, computer software, or combinations of both. To clearly illustrate this interchangeability of hardware and software, various illustrative components, blocks, modules, circuits, and steps have been described above generally in terms of their functionality. Whether such functionality is implemented as hardware or software depends upon the particular application and design constraints imposed on the overall system. Skilled artisans may implement the described functionality in varying ways for each particular application, but such implementation decisions should not be interpreted as causing a departure from the scope of the present disclosure.
The steps of a method or algorithm described in connection with the embodiments disclosed herein may be embodied directly in hardware, in a software module executed by a processor, or in a combination of the two. A software module may reside in RAM memory, flash memory, ROM memory, EPROM memory, EEPROM memory, registers, hard disk, a removable disk, a CD-ROM, or any other form of storage medium known in the art. An exemplary storage medium is coupled to the processor such the processor can read information from, and write information to, the storage medium. Of course, the storage medium may also be integral to the processor. The processor and the storage medium may reside in an ASIC. The ASIC may reside in a user terminal. Of course, the processor and the storage medium may reside as discrete components in a user terminal.
For a software implementation, the techniques described herein may be implemented with modules (e.g., procedures, functions, and so on) that perform the functions described herein. The software codes may be stored in memory units and executed by processors. The memory unit may be implemented within the processor or external to the processor, in which case it can be communicatively coupled to the processor via various means as is known in the art.
What has been described above includes examples of one or more embodiments. It is, of course, not possible to describe every conceivable combination of components or methodologies for purposes of describing the aforementioned embodiments, but one of ordinary skill in the art may recognize that many further combinations and permutations of various embodiments are possible. Accordingly, the embodiments described herein are intended to embrace all such alterations, modifications and variations that fall within the scope of the appended claims. Furthermore, to the extent that the term "includes" is used in either the detailed description or the claims, such term is intended to be inclusive in a manner similar to the term "comprising" as "comprising" is interpreted when employed as a transitional word in a claim. Furthermore, any use of the term "or" in the specification of the claims is intended to mean a "non-exclusive or".

Claims (9)

1. A method for interaction between a browser application and a desktop application, comprising:
the desktop application management unit is started, and after the desktop application management unit is started, local HTTP/HTTPS service is automatically operated;
when the browser application unit needs to interact with the desktop application unit, an HTTP/HTTPS request is sent to the desktop application management unit in a webpage in an Ajax mode, and the desktop application unit is started;
after receiving the HTTP/HTTPS request, the desktop application management unit starts a desktop application unit corresponding to the HTTP/HTTPS request;
after the desktop application unit is started, automatically starting local HTTP/HTTPS service and Websocket service;
the browser application initiates a Websocket connection request to the desktop application unit and establishes local Websocket bidirectional communication connection with the desktop application unit;
when the browser application unit needs to call the related functions of the desktop application unit, a message request is sent to the desktop application unit through the Websocket, and related function parameters are sent to the desktop application unit in a message format;
and after receiving the function request message, the desktop application unit calls a corresponding function module interface and returns a processing result to the browser application unit through the Websocket message.
2. The method as claimed in claim 1, wherein the desktop application management unit is started to automatically start and run with system startup, or the browser application unit is started by using a protocol external to the browser through a registry.
3. The method of claim 1, further comprising:
when the browser application unit is closed, sending a connection closing request to the desktop application unit;
and the desktop application unit receives the connection closing request and closes the Websocket communication connection with the browser application unit.
4. The method of claim 1, further comprising: when the desktop application unit needs to interact with the server application, the desktop application unit sends a connection request to the desktop application server unit, and the desktop application server responds to the service calling request and sends a processing result to the desktop application unit.
5. The method of claim 4, further comprising: and the desktop application unit receives the connection closing request, closes the communication connection with the desktop application server and quits the program operation.
6. The method of claim 1, wherein the Websocket communication supports a WSS protocol that employs an encrypted version and supports an automatic reconnect mechanism.
7. A browser application and desktop application interaction system, comprising: browser application unit, desktop application management unit, desktop application unit, wherein:
the browser application unit sends an HTTP/HTTPS request to the desktop application management unit in an Ajax mode in a webpage and starts the desktop application unit when the browser application unit needs to interact with the desktop application unit;
the desktop application management unit is used for managing the desktop application unit, starting the desktop application unit when receiving an interaction request with the desktop application unit sent by the browser application unit, and managing the closing, monitoring and version updating of the desktop application unit;
and the desktop application unit receives the control start of the desktop application management unit and interacts with the browser application unit by adopting local HTTP/HTTPS service and Websocket service.
8. The browser application and desktop application interaction system of claim 7, further comprising: WEB server element and desktop application server element, wherein:
the WEB server unit is used for carrying out communication interaction with the browser application unit and providing service request and response processing related to the B/S;
and the desktop application server unit is used for interacting with the desktop application unit when the desktop application unit needs to interact with the server application.
9. A computer storage medium, characterized in that the computer storage medium stores one or more programs executable by one or more processors to cause the one or more processors to perform method association analysis steps for browser application interaction with a desktop application as claimed in any one of claims 1 to 6.
CN202010448755.3A 2020-05-25 2020-05-25 Method, system and storage medium for interaction between browser application and desktop application Pending CN111831368A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010448755.3A CN111831368A (en) 2020-05-25 2020-05-25 Method, system and storage medium for interaction between browser application and desktop application

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010448755.3A CN111831368A (en) 2020-05-25 2020-05-25 Method, system and storage medium for interaction between browser application and desktop application

Publications (1)

Publication Number Publication Date
CN111831368A true CN111831368A (en) 2020-10-27

Family

ID=72913430

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010448755.3A Pending CN111831368A (en) 2020-05-25 2020-05-25 Method, system and storage medium for interaction between browser application and desktop application

Country Status (1)

Country Link
CN (1) CN111831368A (en)

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112307449A (en) * 2020-11-10 2021-02-02 上海市数字证书认证中心有限公司 Permission hierarchical management method and device, electronic equipment and readable storage medium
CN113055747A (en) * 2021-03-29 2021-06-29 重庆锐明信息技术有限公司 Cross-browser integration system based on video client
CN113515292A (en) * 2021-04-26 2021-10-19 中国工商银行股份有限公司 Framework transformation method, device and equipment for client application program
CN113900756A (en) * 2021-10-13 2022-01-07 珠海市新德汇信息技术有限公司 C-embedded B desktop application method based on browser kernel
CN115080127A (en) * 2022-05-18 2022-09-20 青岛国实科技集团有限公司 Method for calling marine digital twin desktop software based on Windows system
CN115118704A (en) * 2022-05-18 2022-09-27 青岛国实科技集团有限公司 Method for realizing function linkage of same platform heterogeneous system in marine application
CN117395235A (en) * 2023-08-30 2024-01-12 上海子虔科技有限公司 Cloud application system and method based on remote desktop and web technology

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102546800A (en) * 2012-01-06 2012-07-04 华为技术有限公司 Handshake and communication methods for gateway, gateway and Web communication system
CN110730208A (en) * 2019-09-16 2020-01-24 深圳市国信合成科技有限公司 Local device calling method and device, storage medium and device

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102546800A (en) * 2012-01-06 2012-07-04 华为技术有限公司 Handshake and communication methods for gateway, gateway and Web communication system
CN110730208A (en) * 2019-09-16 2020-01-24 深圳市国信合成科技有限公司 Local device calling method and device, storage medium and device

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112307449A (en) * 2020-11-10 2021-02-02 上海市数字证书认证中心有限公司 Permission hierarchical management method and device, electronic equipment and readable storage medium
CN112307449B (en) * 2020-11-10 2022-12-27 上海市数字证书认证中心有限公司 Authority hierarchical management method, device, electronic equipment and readable storage medium
CN113055747A (en) * 2021-03-29 2021-06-29 重庆锐明信息技术有限公司 Cross-browser integration system based on video client
CN113515292A (en) * 2021-04-26 2021-10-19 中国工商银行股份有限公司 Framework transformation method, device and equipment for client application program
CN113515292B (en) * 2021-04-26 2024-04-05 中国工商银行股份有限公司 Framework transformation method, device and equipment for client application program
CN113900756A (en) * 2021-10-13 2022-01-07 珠海市新德汇信息技术有限公司 C-embedded B desktop application method based on browser kernel
CN115080127A (en) * 2022-05-18 2022-09-20 青岛国实科技集团有限公司 Method for calling marine digital twin desktop software based on Windows system
CN115118704A (en) * 2022-05-18 2022-09-27 青岛国实科技集团有限公司 Method for realizing function linkage of same platform heterogeneous system in marine application
CN117395235A (en) * 2023-08-30 2024-01-12 上海子虔科技有限公司 Cloud application system and method based on remote desktop and web technology

Similar Documents

Publication Publication Date Title
CN111831368A (en) Method, system and storage medium for interaction between browser application and desktop application
CN104765617B (en) Based on the HTML5 stream application functional interface distribution method realized and system
TWI654860B (en) Hybrid application client resource calling method, client and system
US7571208B2 (en) Creating proxies from service description metadata at runtime
US8751587B2 (en) Real-time web applications
JP5676655B2 (en) Mobile broadband device and method for managing mobile broadband device
US8689234B2 (en) Providing real-time widgets in a web application framework
US8301718B2 (en) Architecture, system and method for a messaging hub in a real-time web application framework
US9400699B2 (en) Data communication between modules
US8683357B2 (en) Providing real time web application framework socket
US8001213B2 (en) Method, apparatus and computer program product for providing unrestricted content on a user terminal
US8799515B1 (en) Rewriting of client-side executed scripts in the operation of an SSL VPN
CN114124929B (en) Cross-network data processing method and device
JP2007328419A (en) Control program and communication system
CN109067860B (en) Mobile terminal message processing method and related device
CN102196037A (en) Method and apparatus for accessing services of a device
US8180828B2 (en) Architecture, system and method for providing a plug-in architecture in a real-time web application framework
CN111447170A (en) Data processing method and system, computer system and computer readable medium
CN112995698A (en) Video playing method, client, service platform and intelligent conference system
CN113110975A (en) Data access method, device, equipment and medium
US20070121585A1 (en) Streaming file transfer apparatus, systems, and methods
CN108733495B (en) Method and apparatus for enabling cross-platform communication
US20130080865A1 (en) Presentation of Multimedia Objects at User Devices
CN102426576A (en) Embedded system and method for increasing the speed of data retrieval by a client on the embedded system
US20130226984A1 (en) Method and apparatus of providing optimized web browser communications

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
RJ01 Rejection of invention patent application after publication

Application publication date: 20201027

RJ01 Rejection of invention patent application after publication