WO2017166095A1 - Procédé frontal de serveur - Google Patents

Procédé frontal de serveur Download PDF

Info

Publication number
WO2017166095A1
WO2017166095A1 PCT/CN2016/077812 CN2016077812W WO2017166095A1 WO 2017166095 A1 WO2017166095 A1 WO 2017166095A1 CN 2016077812 W CN2016077812 W CN 2016077812W WO 2017166095 A1 WO2017166095 A1 WO 2017166095A1
Authority
WO
WIPO (PCT)
Prior art keywords
data
terminal
transaction
server
processing
Prior art date
Application number
PCT/CN2016/077812
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 李昕光
Priority to PCT/CN2016/077812 priority Critical patent/WO2017166095A1/fr
Publication of WO2017166095A1 publication Critical patent/WO2017166095A1/fr

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q40/00Finance; Insurance; Tax strategies; Processing of corporate or income taxes

Definitions

  • the present invention relates to the field of data processing, and in particular, to a server pre-method.
  • the front-end system is a bridge connecting the processing units, is a blood vessel of the financial payment service system, and is an intermediate data service exchange platform.
  • the front-end system is not responsible for processing logical services and transaction services, and only performs packet conversion and message encryption and decryption. Processing, communication protocol conversion, and routing information transfer or transfer processing through the routing function on this platform.
  • the front-end system has multiple implementation methods.
  • the long-chain synchronization processing method is adopted. After the client sends a request message, the server takes out the request message in a certain order, and after the response, processes the next transaction. Therefore, the response speed of the client mainly depends on the processing speed of the server.
  • the current technical solution is to process all the transaction data in the memory, and in order to ensure the security of the data, it is necessary to build an in-memory database for data processing, which increases the system cost.
  • the main advantage of the long-chain is that the link needs to be established for the first time, and the direct communication is made later, which reduces the time for each link establishment in the short-chain; the disadvantage is that resources are occupied regardless of whether or not data communication exists.
  • the current front-end system has a relatively simple function, and is often an application system that individually corresponds to a background business function. Many front-end systems can only implement unique business processing, data processing or device control management. As new businesses continue to evolve, the cost of development and management will increase.
  • Packet break refers to the TCP protocol. When the packet data sent by the sender is sent to the receiver, it is divided into multiple uploads. Only when multiple copies of the data are uploaded are meaningful packets.
  • Sticky packet refers to the TCP protocol. When several packets of data sent by the sender are received by the receiver, they are glued into a packet. From the receiving buffer, the header of the next packet of data is immediately followed by the end of the previous packet.
  • RMI Remote Method Invocation, remote service invocation. Is a group of Java support Send an API for distributed applications. RMI defines remote objects using the Java language interface, which aggregates Java serialization and Java remote method protocols.
  • JNDI Java Naming and Directory Interface, Java Naming and Directory Interface. Is a set of APIs for accessing naming and directory services in Java applications.
  • the naming service associates names with objects so that we can access objects by name.
  • 8583 specification message ISO8583 package, referred to as 8583 package, is an international standard package format, composed of up to 128 field fields, each domain has a unified regulation, and has a fixed length and variable length.
  • the previous paragraph of the 8583 packet is a bitmap used to determine the composition of the field of the packet.
  • the embodiment of the present invention provides a server pre-method.
  • the technical solution is as follows:
  • a front system comprising:
  • the server includes a data receiving module, a data processing module, and a data response module;
  • the data receiving module is configured to receive a transaction request initiated by the terminal
  • the data processing module is configured to process the transaction request, and perform data distribution, parsing, and encapsulation;
  • the data response module is configured to respond to the processing result in real time to the corresponding client.
  • the data processing module further includes:
  • a message parsing and encapsulating unit configured to parse and encapsulate the data, further comprising parsing a key domain, obtaining complete transaction data, and encapsulating the data into a processable object;
  • An error processing unit configured to filter when the transaction is an abnormal transaction, a packet error, or an illegal transaction
  • a log processing unit configured to record the running status of the server, record the request data, and provide log analysis
  • a data forwarding unit configured to enable a soft load when the amount of data from the terminal exceeds a predetermined value, and enable a hard load when the soft load reaches a predetermined threshold.
  • the system adopts an ORACLE database, a Linux and Windows operating system, a TOMCAT architecture, and a JAVA/C development language; and an IBM Pseries as a server hardware.
  • a server pre-method comprising:
  • the receiving data from the terminal includes:
  • the terminal sends a request message conforming to the 8583 standard specification
  • the method further includes: when any of the terminals disconnects communication with the server, the server performs resource release of the terminal.
  • parsing and encapsulating the data further includes parsing a key domain, obtaining complete transaction data, and packaging the object into a processable object.
  • the method further comprises filtering when the transaction is an abnormal transaction, a message error, or an illegal transaction.
  • the method further includes recording the server running condition, recording the request data, and providing log analysis.
  • the method further includes: enabling a soft load when the amount of data from the terminal exceeds a predetermined value; enabling a hard load when the soft load reaches a predetermined threshold .
  • the receiving and receiving data is handled asynchronously by short links.
  • abnormal analysis and packet breaking and sticky processing are performed.
  • the service distribution adopts distributed remote communication processing to maximize the utilization of hardware resources and ensure the reliability of transaction data. Integrity and high concurrency of the system;
  • FIG. 1 is a schematic structural view of an implementation environment involved in various embodiments of the present invention.
  • FIG. 2 is a flowchart of a method of a pre-method according to an embodiment of the present invention
  • FIG. 3 is a schematic structural diagram of a front system according to another embodiment of the present invention.
  • FIG. 4 is a schematic structural diagram of a data processing module of a front-end system according to an embodiment of the present invention.
  • FIG. 5 is a schematic structural diagram of a data processing module according to an embodiment of the present invention.
  • FIG. 6 is a schematic structural diagram of a server according to another embodiment of the present invention.
  • FIG. 1 is a schematic structural diagram of an implementation environment involved in various embodiments of the present invention.
  • the data is processed and analyzed by the front-end system, and then distributed to the transaction system for business processing, completing business data verification, data collection, data processing, and closed-loop transactions.
  • the result is returned to the trading system, and the trading system is fed back to the front-end system.
  • the front-end system performs data assembly and sends a response to the terminal.
  • the front-end system is oriented to interface development and provides services such as data transmission and reception, task assignment, etc.
  • the aorta in the payment service and integrated data management system is the communication channel between the terminal and the center, which complements the business transaction system. It has the functions of packet parsing and packaging, error handling, log processing, and data forwarding.
  • the pre-communication is responsible for data acquisition and access of the terminal and the third-party industry access system.
  • the system can support the terminal to perform data interaction according to the standard packet format through the TCP/IP protocol.
  • the pre-communication needs to perform port monitoring, and the data is sent to When the port is used, the pre-communication system should trigger the receiving mechanism to receive and process it.
  • the pre-communication acts as the server and interacts directly with the client. Due to service requirements, there may be a large number of clients.
  • the server needs to process the client concurrently. request. And can respond to the client one-to-one.
  • FIG. 2 shows a flowchart of a method of a pre-method provided by an embodiment of the present invention.
  • This embodiment is exemplified by the application of the pre-method to the implementation environment shown in FIG. 1.
  • the pre-method may include:
  • Step 201 Create a short link to receive data from the terminal.
  • the specific implementation manner of receiving data from the terminal includes:
  • the terminal sends a request message conforming to the 8583 standard specification
  • Step 202 The received data is subjected to packet breaking and/or sticky processing
  • Step 203 parsing, encapsulating, and distributing the data to a business transaction system
  • parsing and encapsulating the data further includes parsing a key domain, acquiring complete transaction data, and packaging the object into a processable object.
  • Step 204 Receive processing result data fed back by the service transaction system.
  • Step 205 The processing result data is assembled into a packet conforming to the specification, and sent to the terminal, and the short link is closed.
  • the server performs resource release of the terminal.
  • the filtering is performed when the transaction is an abnormal transaction, a message error or an illegal transaction.
  • the method further includes recording the running status of the server, and recording the request data. And provide log analysis.
  • the soft load is enabled when the amount of data from the terminal exceeds a predetermined value; the hard load is enabled when the soft load reaches a predetermined threshold.
  • the present invention can support multi-domain, multi-scene, multi-standard and multi-protocol applications.
  • FIG. 3 is a schematic structural diagram of a front system according to another embodiment of the present invention. This embodiment is exemplified by the application of the pre-method to the implementation environment shown in FIG. 1.
  • the front system can include:
  • server includes a data receiving module 101, a data processing module 102, and a data response module 103;
  • the data receiving module 101 is configured to receive a transaction request initiated by the terminal;
  • the data processing module 102 is configured to process the transaction request, and perform data distribution, parsing, and encapsulation;
  • the data response module 103 is configured to respond to the processing result in real time to the corresponding client.
  • the system uses an ORACLE database, a Linux and Windows operating system, a TOMCAT architecture, and a JAVA/C development language; and IBM Pseries is used as a server hardware.
  • the present invention adopts the technical solution to establish a front-end system, which can support multi-domain, multi-scene, multi-standard and multi-protocol applications.
  • Support multi-channel access support third-party industry application access, ensure the system's high scalability; face a large number of terminals, send and receive data to take short links asynchronous processing, while doing abnormal analysis and packet break, sticky packet processing,
  • the service distribution adopts distributed remote communication processing to maximize the utilization of hardware resources, ensure the reliability, integrity and high concurrency of the transaction data; compatible with multiple data formats, and different data access systems can process and implement High compatibility of the system.
  • FIG. 4 is a structural diagram of a data processing module of a front-end system according to an embodiment of the present invention. This embodiment is exemplified by the application of the pre-method to the implementation environment shown in FIG. 1.
  • the data processing module 102 can include:
  • the message parsing and encapsulating unit 1021 is configured to parse and encapsulate the data, and further includes parsing a key domain, acquiring complete transaction data, and packaging the data into a processable object;
  • the error processing unit 1022 is configured to perform filtering when the transaction is an abnormal transaction, a packet error, or an illegal transaction;
  • a log processing unit 1023 configured to record the running status of the server, record the request data, and provide log analysis
  • the data forwarding unit 1024 is configured to enable a soft load when the amount of data from the terminal exceeds a predetermined value, and enable a hard load when the soft load reaches a predetermined threshold.
  • the technical solution focuses on the high data carrying capacity, data processing security and service scalability of the front-end system, carries out design and development, and is oriented to actual business requirements, so that hardware resources are fully utilized to ensure data processing security. Achieve high scalability of the business.
  • the front-end system supports a common standard network protocol (such as TCP/IP), an international standard large-scale dynamic routing protocol (such as BGP, OSPF) and other open protocols, 8583 messages, and fixed length messages, which is beneficial to To ensure smooth connection between the financial payment service system and the existing business unit network, as well as future network expansion.
  • a common standard network protocol such as TCP/IP
  • an international standard large-scale dynamic routing protocol such as BGP, OSPF
  • other open protocols 8583 messages
  • 8583 messages 8583 messages
  • fixed length messages 8583 messages
  • All software and hardware equipment used in the system design should meet the international general standards and meet the openness principle in accordance with the requirements of the enterprise, which is consistent with the current trend of technology development, ensuring the openness and technical extension of the system.
  • the entire data warehouse system should have good openness.
  • the system provides the statistical model principles, formulas, data sources and processing procedures for its internal use, so that managers can check the rationality of the self-developed or questionable model output to avoid the system.
  • the model risk generated by itself should be used in the system design.
  • the pre-system provided by the foregoing embodiment is only illustrated by the division of the foregoing functional modules. In actual applications, the function distribution may be completed by different functional modules as needed. The internal structure of the system is divided into different functional modules to complete all or part of the functions described above.
  • the embodiments of the pre-system and the pre-method provided by the foregoing embodiments are in the same concept, and the specific implementation process is described in detail in the method embodiment, and details are not described herein again.
  • FIG. 5 is a schematic structural diagram of a terminal according to an embodiment of the present invention.
  • the electricity The sub-device can be used to implement the item transfer method provided in the above embodiments. Specifically:
  • the terminal 1000 may include an RF (Radio Frequency) circuit 1010, a memory 1020 including one or more computer readable storage media, an input unit 1030, a display unit 1040, a sensor 1050, an audio circuit 1060, a short-range communication module 1070, A processor 1080 having one or more processing cores, and a power supply 1090 and the like are included.
  • RF Radio Frequency
  • FIG. 10 does not constitute a limitation to the terminal, and may include more or less components than those illustrated, or combine some components, or different component arrangements. among them:
  • the RF circuit 1010 can be used for receiving and transmitting signals during and after receiving or transmitting information, in particular, receiving downlink information of the base station and then processing it by one or more processors 1080; in addition, transmitting data related to the uplink to the base station .
  • the RF circuit 1010 includes, but is not limited to, an antenna, at least one amplifier, a tuner, one or more oscillators, a Subscriber Identity Module (SIM) card, a transceiver, a coupler, an LNA (Low Noise Amplifier). , duplexer, etc.
  • SIM Subscriber Identity Module
  • RF circuit 1010 can also communicate with the network and other devices via wireless communication.
  • Wireless communication can use any communication standard or protocol, including but not limited to GSM (Global System of Mobile communication), GPRS (General Packet Radio Service), CDMA (Code Division Multiple Access) Divisional Multiple Access), WCDMA (Wideband Code Division Multiple Access), LTE (Long Term Evolution), e-mail, SMS (Short Messaging Service), and the like.
  • GSM Global System of Mobile communication
  • GPRS General Packet Radio Service
  • CDMA Code Division Multiple Access
  • WCDMA Wideband Code Division Multiple Access
  • LTE Long Term Evolution
  • e-mail Short Messaging Service
  • the memory 1020 can be used to store software programs and modules, and the processor 1080 executes various functional applications and data processing by running software programs and modules stored in the memory 1020.
  • the memory 1020 may mainly include a storage program area and a storage data area, wherein the storage program area may store an operating system, an application required for at least one function (such as a sound playing function, an image playing function, etc.), and the like; the storage data area may be stored according to The data created by the use of the terminal 1000 (such as audio data, phone book, etc.) and the like.
  • memory 1020 can include high speed random access memory, and can also include non-volatile memory, such as at least one magnetic disk storage device, flash memory device, or other volatile solid state storage device. Accordingly, memory 1020 can also include a memory controller to provide access to memory 1020 by processor 1080 and input unit 1030.
  • the input unit 1030 can be configured to receive input numeric or character information, and generate and user settings And keyboard, mouse, joystick, optical or trackball signal input related to function control.
  • input unit 1030 can include touch-sensitive surface 1031 as well as other input devices 1032.
  • Touch-sensitive surface 1031 also known as a touch display or touchpad, can collect touch operations on or near the user (such as a user using a finger, stylus, etc., on any touch-sensitive surface 1031 or The operation near the touch-sensitive surface 1031) and driving the corresponding connecting device according to a preset program.
  • the touch-sensitive surface 1031 may include two parts of a touch detection device and a touch controller.
  • the touch detection device detects the touch orientation of the user, and detects a signal brought by the touch operation, and transmits the signal to the touch controller; the touch controller receives the touch information from the touch detection device, converts the touch information into contact coordinates, and sends the touch information.
  • the processor 1080 is provided and can receive commands from the processor 1080 and execute them.
  • the touch sensitive surface 1031 can be implemented in various types such as resistive, capacitive, infrared, and surface acoustic waves.
  • the input unit 1030 can also include other input devices 1032.
  • other input devices 1032 may include, but are not limited to, one or more of a physical keyboard, function keys (such as volume control buttons, switch buttons, etc.), trackballs, mice, joysticks, and the like.
  • Display unit 1040 can be used to display information entered by the user or information provided to the user and various graphical user interfaces of terminal 1000, which can be constructed from graphics, text, icons, video, and any combination thereof.
  • the display unit 1040 may include a display panel 1041.
  • the display panel 1041 may be configured in the form of an LCD (Liquid Crystal Display), an OLED (Organic Light-Emitting Diode), or the like.
  • the touch-sensitive surface 1031 can cover the display panel 1041, and when the touch-sensitive surface 1031 detects a touch operation thereon or nearby, it is transmitted to the processor 1080 to determine the type of the touch event, and then the processor 1080 according to the touch event The type provides a corresponding visual output on display panel 1041.
  • touch-sensitive surface 1031 and display panel 1041 are implemented as two separate components to implement input and input functions, in some embodiments, touch-sensitive surface 1031 can be integrated with display panel 1041 for input. And output function.
  • Terminal 1000 can also include at least one type of sensor 1050, such as a light sensor, motion sensor, and other sensors.
  • the light sensor may include an ambient light sensor and a proximity sensor, wherein the ambient light sensor may adjust the brightness of the display panel 1041 according to the brightness of the ambient light, and the proximity sensor may close the display panel 1041 when the terminal 1000 moves to the ear. / or backlight.
  • the gravity acceleration sensor can detect the acceleration of each direction (usually three axes), and the magnitude and direction of gravity can be detected at rest, which can be used to identify the gesture of the mobile phone (such as horizontal Vertical screen switching, related games, magnetometer attitude calibration), vibration recognition related functions (such as pedometer, tapping), etc.; as for the terminal 1000 can also be configured with gyroscopes, barometers, hygrometers, thermometers, infrared sensors, etc. The sensor will not be described here.
  • Audio circuit 1060, speaker 1061, and microphone 1062 can provide an audio interface between the user and terminal 1000.
  • the audio circuit 1060 can transmit the converted electrical data of the received audio data to the speaker 1061, and convert it into a sound signal output by the speaker 1061; on the other hand, the microphone 1062 converts the collected sound signal into an electrical signal, by the audio circuit 1060. After receiving, it is converted into audio data, and then processed by the audio data output processor 180, transmitted to the terminal, for example, via the RF circuit 110, or outputted to the memory 120 for further processing.
  • the audio circuit 160 may also include an earbud jack to provide communication of the peripheral earphones with the terminal 1000.
  • the short-range communication module 170 may include WiFi (wireless fidelity) technology and/or NFC technology and/or Bluetooth technology and/or infrared technology, and the terminal 1000 may help the user to send and receive emails and browse the webpage through the short-range communication module 170. And accessing streaming media, etc., it provides users with wireless broadband Internet access and close-range communication, such as reading and writing of electronic cards in the embodiment of the present invention.
  • the processor 1080 is the control center of the terminal 1000, connecting various portions of the entire handset with various interfaces and lines, by running or executing software programs and/or modules stored in the memory 1020, and recalling data stored in the memory 1020, The various functions and processing data of the terminal 1000 are performed to perform overall monitoring of the mobile phone.
  • the processor 1080 may include one or more processing cores; preferably, the processor 1080 may integrate an application processor and a modem processor, where the application processor mainly processes an operating system, a user interface, an application, and the like.
  • the modem processor primarily handles wireless communications. It will be appreciated that the above described modem processor may also not be integrated into the processor 1080.
  • the terminal 1000 also includes a power source 1090 (such as a battery) for powering various components.
  • the power source can be logically coupled to the processor 1080 through a power management system to manage functions such as charging, discharging, and power management through the power management system.
  • the power supply 1090 may also include any one or more of a DC or AC power source, a recharging system, a power failure detection circuit, a power converter or inverter, a power status indicator, and the like.
  • the terminal 1000 may further include a camera, a Bluetooth module, and the like, and details are not described herein again.
  • the display unit of the electronic device is a touch screen display, and the electronic device further includes a memory, and one or more programs, wherein one or more programs are stored in the memory and configured to be executed by one or more processors, the one or more programs comprising for performing server front-end as described above method.
  • FIG. 6 is a schematic structural diagram of a server according to an embodiment of the present invention.
  • the server 1100 includes a central processing unit (CPU) 1101, a system memory 1104 including a random access memory (RAM) 1102 and a read only memory (ROM) 1103, and a system bus 1105 that connects the system memory 1104 and the central processing unit 1101.
  • the server 1100 also includes a basic input/output system (I/O system) 1106 that facilitates transfer of information between various devices within the computer, and mass storage for storing the operating system 1113, applications 1114, and other program modules 1115.
  • I/O system basic input/output system
  • the basic input/output system 1106 includes a display 1108 for displaying information and an input device 1109 such as a mouse or keyboard for user input of information.
  • the display 1108 and the input device 1109 are both connected to the central processing unit 1101 via an input-output controller 1110 connected to the system bus 1105.
  • the basic input/output system 1106 can also include an input output controller 1110 for receiving and processing input from a plurality of other devices, such as a keyboard, mouse, or electronic stylus.
  • the input and output controller 1110 also provides output to a display screen, printer, or other type of output device.
  • the mass storage device 1107 is connected to the central processing unit 1101 by a mass storage controller (not shown) connected to the system bus 1105.
  • the mass storage device 1107 and its associated computer readable medium provide non-volatile storage for the server 1100. That is, the mass storage device 1107 can include a computer readable medium (not shown) such as a hard disk or a CD-ROM drive.
  • the computer readable medium can include computer storage media and communication media.
  • Computer storage media includes volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information such as computer readable instructions, data structures, program modules or other data.
  • Computer storage media includes RAM, ROM, EPROM, EEPROM, flash memory or other solid state storage technologies, CD-ROM, DVD or other optical storage, tape cartridges, tape, diskette Storage or other magnetic storage device.
  • RAM random access memory
  • ROM read only memory
  • EPROM Erasable programmable read-only memory
  • EEPROM electrically erasable programmable read-only memory
  • the server 1100 may also be operated by a remote computer connected to the network through a network such as the Internet. That is, the server 1100 can be connected to the network 1112 through the network interface unit 1111 connected to the system bus 1105, or can also be connected to other types of networks or remote computer systems (not shown) using the network interface unit 1111. .
  • the memory further includes one or more programs, the one or more programs being stored in a memory, the one or more programs including instructions for performing a server pre-method provided by an embodiment of the present invention.
  • a person skilled in the art may understand that all or part of the steps of implementing the above embodiments may be completed by hardware, or may be instructed by a program to execute related hardware, and the program may be stored in a computer readable storage medium.
  • the storage medium mentioned may be a read only memory, a magnetic disk or an optical disk or the like.

Landscapes

  • Computer And Data Communications (AREA)

Abstract

La présente invention concerne un procédé frontal de serveur, concernant le domaine du traitement de données. Comprenant les étapes suivantes : la création d'une liaison courte, et la réception de données d'un terminal ; la mise en œuvre d'un traitement de rupture de paquet et/ou de collage de paquet des données reçues ; l'analyse et le conditionnement des données, et la distribution de ces dernières à un système de transaction de service ; la reception des données de résultat de traitement renvoyées par le système de transaction de service ; l'assemblage des données de résultat de traitement en un message de conformation à une spécification et l'envoi au terminal, et la clôture simultanée de la liaison courte. La présente invention peut prendre en charge des applications multi-domaine, multi-scénario, multi-standard et multi-protocole. L'accès multi-canaux et l'accès à une application industrielle tierce sont pris en charge, ce qui assure une extensibilité de système élevée.
PCT/CN2016/077812 2016-03-30 2016-03-30 Procédé frontal de serveur WO2017166095A1 (fr)

Priority Applications (1)

Application Number Priority Date Filing Date Title
PCT/CN2016/077812 WO2017166095A1 (fr) 2016-03-30 2016-03-30 Procédé frontal de serveur

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/CN2016/077812 WO2017166095A1 (fr) 2016-03-30 2016-03-30 Procédé frontal de serveur

Publications (1)

Publication Number Publication Date
WO2017166095A1 true WO2017166095A1 (fr) 2017-10-05

Family

ID=59962304

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2016/077812 WO2017166095A1 (fr) 2016-03-30 2016-03-30 Procédé frontal de serveur

Country Status (1)

Country Link
WO (1) WO2017166095A1 (fr)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112995066A (zh) * 2021-02-05 2021-06-18 新天科技股份有限公司 帧数据处理方法、装置、电子设备及存储介质

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101222560A (zh) * 2007-11-07 2008-07-16 广州连连通信科技有限公司 一种移动电话充值系统及其充值方法
WO2009044226A1 (fr) * 2007-10-03 2009-04-09 Gmx Sas Système et procédé pour une gestion sécurisée de transactions
CN104363278A (zh) * 2014-11-13 2015-02-18 许继电气股份有限公司 一种海量终端通信接入系统
CN104463670A (zh) * 2014-11-05 2015-03-25 浪潮软件集团有限公司 一种基于Websocket的银行前置交易系统的搭建方法

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2009044226A1 (fr) * 2007-10-03 2009-04-09 Gmx Sas Système et procédé pour une gestion sécurisée de transactions
CN101222560A (zh) * 2007-11-07 2008-07-16 广州连连通信科技有限公司 一种移动电话充值系统及其充值方法
CN104463670A (zh) * 2014-11-05 2015-03-25 浪潮软件集团有限公司 一种基于Websocket的银行前置交易系统的搭建方法
CN104363278A (zh) * 2014-11-13 2015-02-18 许继电气股份有限公司 一种海量终端通信接入系统

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
FAN, LIANG ET AL.: "Design of Front-End System for Banks Based on Geronimo", COMPUTER ERA, 31 December 2012 (2012-12-31), pages 36 - 38 *
SHI, ZHU: "Design and Implementation of Integrative Front-bank Business Platform", CHINA MASTER'S THESES FULL-TEXT DATABASE, 15 July 2005 (2005-07-15) *
YE, BIN ET AL.: "The Design and Realization of Intermediate Business Platform in Bank", CHINA MASTER'S THESES FULL-TEXT DATABASE, 15 September 2005 (2005-09-15) *

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112995066A (zh) * 2021-02-05 2021-06-18 新天科技股份有限公司 帧数据处理方法、装置、电子设备及存储介质
CN112995066B (zh) * 2021-02-05 2023-10-24 新天科技股份有限公司 帧数据处理方法、装置、电子设备及存储介质

Similar Documents

Publication Publication Date Title
US10959124B2 (en) Uplink data transmission method, terminal, network side device and system
US10304461B2 (en) Remote electronic service requesting and processing method, server, and terminal
CN104580167B (zh) 一种传输数据的方法、装置和系统
US10762542B2 (en) Item transfer apparatus, system and method
CN105471704B (zh) 一种实现多人通话的方法、装置及系统
US20160266948A1 (en) Queued Messages Processing Method and Apparatus, Method and Apparatus for Controlling Messages to be Enqueued
CN106375478B (zh) 一种移动终端数据的同步方法、装置及系统
EP3179693B1 (fr) Procédé, dispositif, support de stockage et et produit programme informatique destinés à établir une connexion de données
WO2015090250A1 (fr) Procédé et dispositif de communication inter-processus
WO2017166093A1 (fr) Système frontal
WO2014183438A1 (fr) Procédé, appareil, et système de communication, pour allouer et gérer des voies téléphoniques
CN107786423B (zh) 一种即时通讯的方法和系统
WO2018170835A1 (fr) Procédé de transmission de données de liaison montante, terminal, dispositif côté réseau, et système
US9965341B2 (en) Method and device for exchanging data between processes
CN108270839B (zh) 访问频率控制系统及方法
CN109102153A (zh) 一种身份管理方法及装置
CN104378339B (zh) 一种使用代理协议的通信方法和装置
WO2017166095A1 (fr) Procédé frontal de serveur
CN104580251B (zh) 一种进行授权快速登录的方法和装置
WO2017166094A1 (fr) Procédé frontal de serveur
WO2017166099A1 (fr) Procédé de positionnement avant de serveur
WO2017166096A1 (fr) Procédé de positionnement frontal de serveur
WO2017166097A1 (fr) Procédé de positionnement avant de serveur
CN112667868B (zh) 一种数据检测方法以及装置
CN107315623B (zh) 一种上报统计数据的方法和装置

Legal Events

Date Code Title Description
NENP Non-entry into the national phase

Ref country code: DE

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

Ref document number: 16895876

Country of ref document: EP

Kind code of ref document: A1

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 1205 DATED 11/03/2019)

122 Ep: pct application non-entry in european phase

Ref document number: 16895876

Country of ref document: EP

Kind code of ref document: A1