WO2002019105A1 - Procede permettant d'effectuer des operations efficaces dans un systeme serveur - Google Patents

Procede permettant d'effectuer des operations efficaces dans un systeme serveur Download PDF

Info

Publication number
WO2002019105A1
WO2002019105A1 PCT/SE2001/001815 SE0101815W WO0219105A1 WO 2002019105 A1 WO2002019105 A1 WO 2002019105A1 SE 0101815 W SE0101815 W SE 0101815W WO 0219105 A1 WO0219105 A1 WO 0219105A1
Authority
WO
WIPO (PCT)
Prior art keywords
server
requests
threads
request
internal
Prior art date
Application number
PCT/SE2001/001815
Other languages
English (en)
Inventor
Dag Brenna
Knut Eilif Husa
Original Assignee
Telefonaktiebolaget Lm Ericsson (Publ)
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 Telefonaktiebolaget Lm Ericsson (Publ) filed Critical Telefonaktiebolaget Lm Ericsson (Publ)
Priority to AU2001282796A priority Critical patent/AU2001282796A1/en
Publication of WO2002019105A1 publication Critical patent/WO2002019105A1/fr

Links

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

Definitions

  • the present invention relates to client-server systems in data communication networks, and in particular to a method for efficient operation on server systems in connection with long duration sessions/transactions in such systems.
  • Client-server handling systems of e.g. data communication networks normally have a structure defined by a front end server used to isolate the application of the server from the external world, wherein the application server handles the application logic and different sorts of back end systems handles data or different back end applications.
  • GB Patent No. 02339933 is based on a basic transaction service which utilizes a server thread association table, for identifying transactions currently assigned to a server thread.
  • the transaction information is in the form of a ba- sic transaction service including a transactional identifier. Synchronization between the transactional information is maintained, when a server thread switches from one transaction to another, using subordinate resource manag- ers .
  • GB Patent No. 02334116 disclose a client request schedule and dispatch apparatus for execution by server object in heterogeneous object orientated client server computing environment. More specific, this application discloses a way of allocating server thread capacity to client requests based on priority.
  • This solution is basically well known, and has been used in systems to manage requests of different priority for a long time.
  • the priority management and the inquiry into The busy/idle state of a resource required affect the ef- ficiency of systems based on this solution in a negative way.
  • GB Patent No. 02334117 consists basically of the same features as for GB Patent No. 02334116, except for the following addition: It does not schedule a request intended to use a resource which is engaged.
  • the object of the present invention is to provide a method which eliminates the drawbacks described above. This method is characterized by the features defined in the claims enclosed.
  • Figure 1 shows a general view of a situation in a three tier architecture in a client server of present technology.
  • Figure 2 shows a general view of a client server according to an embodiment of the present invention.
  • Figure 3 shows a system architecture of a mobile e-Pay system in which the present invention may be utilized.
  • Figure 1 shows a general view of a three tier architecture in a client server of today's technology comprising a front end (1) , a middle tier (2) and a back end (3) .
  • the front end server (1) is used to isolate the application from the external world, while the middle tier (2) handles the busi- ness logic of the applications deployed on the architecture, and the back end (3) handles data bases and different back end applications.
  • the middle tier (2) might be composed of Enterprise Java Bean based application servers. This technology is very ef- ficient for typical client server applications where the duration of each request from the client is very short because the implementation of the application server utilize synchronous method invocation between the different execu- tion threads within the system. However, for each request to the system, two or more threads will be used to serve the request during the whole execution. Thus, for allowing execution of a number of requests at the same time, an even larger number of threads will be required.
  • all requests (14) are made asynchronous at the inside of the front end (8) .
  • any front end thread (11) receiving a re- quest, synchronous or asynchronous will convert the request into a message and put it into a proper queue (15) within the middle tier, depending on the receiver.
  • the determination of a proper queue (15) for the receiver of the message may be implemented by JNDI (Java Naming and Direc- tory. Service) (not shown).
  • JNDI Java Naming and Direc- tory. Service
  • the thread (11) in the front end (8) will sleep until a message from the middle tier (9) returns.
  • the thread in the 5 front end (11) will terminate after transmitting the message to the queue (15) in the middle tier (9) .
  • the threads will consecutively read messages from the queues (15) , process the messages and either forward requests to the back end layer (10) or give a ⁇ o response to the front end (8) .
  • entity beans or means with similar functionalities might be used to record the states between invocation.
  • Mobile e-Pay is a component-based architecture. Each component handles specific functionality thereby allowing different sales packages to suit a buyer's needs .
  • This architecture provides a Servlet (21) for Internet based communication, and an Application Server including:
  • a Securi ty Server (23) to provide Authentication, and Digital Signing.
  • a Payment Server Gateway (24) to provide external connectivity to Payment Servers (25) and Payment Providers.
  • the Content Provider (20) will make an offer to the end user (e.g. to a Mobile Station (17) via a PLMN (18)) through the Internet (19) via the Commerce server (22) .
  • the Commerce server (22) validates that the Content provider (20) is able to make the requested transaction and identifies the payment types available to the end user.
  • the Commerce Server (22) By using the Security Server (23) , the Commerce Server (22) then presents the payment contract to the end user for authentication. On successful authentication, the payment is completed, i.e. the Payment Server (25) transfers funds from the End User account to the Content Provider (20) account .
  • the Servlet (21) represents the front end (8)
  • the Commerce Server (22) and the Security Server (23) represent the middle tier (9)
  • the Payment Server (25) (internally represented by the Payment Server Gateway (24)) represents the back end (10).
  • a main advantage of the present invention is that the number of blocked threads (12) in the middle tier (9) does not increase with the number of active transactions, but can be held at a much lower level compared to known solutions. Thus, the system of the present invention may become significantly more effective, especially in the case of long lasting transactions.
  • Another advantage of the present invention is that, because of the introduction of internal asynchronization within the client server, unnecessary blocking of threads will be avoided.
  • the threads will, for each request from a client or for each internal request, record the status of that request, and then be released to handle new requests until a response of a proceeding request returns .
  • a further advantage of the present invention is that it allows handling of asynchronous and synchronous requests by the same application server architecture.

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Two-Way Televisions, Distribution Of Moving Picture Or The Like (AREA)
  • Prostheses (AREA)
  • Computer And Data Communications (AREA)

Abstract

La présente invention concerne des systèmes client-serveur dans des réseaux de communication, notamment un procédé pour effectuer des opérations efficaces sur des systèmes serveurs à propos de transactions/sessions de longue durée dans de tels systèmes. La présente invention a trait à un procédé permettant d'établir une communication interne asynchrone entre des sous-serveurs dans un serveur appartenant à un système client-serveur. Le serveur peut comprendre un serveur frontal, un serveur à palier intermédiaire et un serveur dorsal. Les unités d'exécution dans le serveur frontal qui est utilisé pour isoler l'application du serveur de l'environnement extérieur convertit chaque requête issue d'un client en une nouvelle requête interne et la transmet dans une file d'attente se trouvant dans le palier intermédiaire. Dans ce palier intermédiaire, les unités d'exécution vont lire des requêtes/réponses internes provenant des files d'attente, les traiter, puis soit réacheminer les requêtes à la couche dorsale, soit retourner les réponses au frontal. Des actions similaires auront lieu dans le dorsal. Après chaque transmission, les unités d'exécution seront libérées afin d'exécuter de nouvelles requêtes. Toute communication interne est ainsi gérée de manière asynchrone. Cette invention permet une excellente utilisation des ressources, étant donné qu'un procédé peut exécuter d'autres requêtes au lieu de simplement attendre une réponse provenant d'ailleurs, afin de compléter la requête. La présente invention peut être avantageusement mise en oeuvre pour des services de paiement électronique.
PCT/SE2001/001815 2000-09-01 2001-08-24 Procede permettant d'effectuer des operations efficaces dans un systeme serveur WO2002019105A1 (fr)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU2001282796A AU2001282796A1 (en) 2000-09-01 2001-08-24 Method for providing efficient operations in a server system

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
NO20004360 2000-09-01
NO20004360A NO312697B1 (no) 2000-09-01 2000-09-01 Fremgangsmåte for å tilveiebringe effektive operasjoner i et serversystem

Publications (1)

Publication Number Publication Date
WO2002019105A1 true WO2002019105A1 (fr) 2002-03-07

Family

ID=19911517

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/SE2001/001815 WO2002019105A1 (fr) 2000-09-01 2001-08-24 Procede permettant d'effectuer des operations efficaces dans un systeme serveur

Country Status (3)

Country Link
AU (1) AU2001282796A1 (fr)
NO (1) NO312697B1 (fr)
WO (1) WO2002019105A1 (fr)

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1465128A1 (fr) * 2003-04-01 2004-10-06 Coöperatieve Centrale Raiffeisen-Boerenleenbank B.A. Appareil de transactions pour le traitement de transactions à l'aide d'un réseau de télécommunication, et système comprenant un tel appareil de transactions
WO2007017675A1 (fr) * 2005-08-10 2007-02-15 Symblan Software Limited Amelioration de l'efficacite des demandes d'un serveur de fichiers dans un dispositif informatique
US8433809B2 (en) 2011-03-15 2013-04-30 Amadeus S.A.S. Method and system for providing a session involving a plurality of software applications
US8473626B2 (en) 2011-03-15 2013-06-25 Amadeus S.A.S. Method and system for providing a session in a heterogeneous environment
US9098881B2 (en) 2011-06-27 2015-08-04 Amadeus S.A.S. Method and system for a pre-shopping reservation system with increased search efficiency
US9235620B2 (en) 2012-08-14 2016-01-12 Amadeus S.A.S. Updating cached database query results
US9514498B2 (en) 2011-03-15 2016-12-06 Amadeus S.A.S. Method and system for centralized reservation context management on multi-server reservation system
US11089079B2 (en) * 2017-11-22 2021-08-10 International Business Machines Corporation Asynchronously reading HTTP responses in separate process

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5835763A (en) * 1994-06-20 1998-11-10 Candle Distributed Solutions, Inc. Threaded environment for computer systems without native threading support
CA2241881A1 (fr) * 1998-06-29 1999-12-29 Ibm Canada Limited - Ibm Canada Limitee Appels de procedure a distance dans des systemes repartis

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5835763A (en) * 1994-06-20 1998-11-10 Candle Distributed Solutions, Inc. Threaded environment for computer systems without native threading support
CA2241881A1 (fr) * 1998-06-29 1999-12-29 Ibm Canada Limited - Ibm Canada Limitee Appels de procedure a distance dans des systemes repartis

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1465128A1 (fr) * 2003-04-01 2004-10-06 Coöperatieve Centrale Raiffeisen-Boerenleenbank B.A. Appareil de transactions pour le traitement de transactions à l'aide d'un réseau de télécommunication, et système comprenant un tel appareil de transactions
WO2004088605A1 (fr) * 2003-04-01 2004-10-14 Coöperatieve Centrale Raiffeisen-Boerenleenbank B.A. Appareil de transaction pour le traitement de transactions au moyen d'un reseau de communication et systeme comprenant ledit appareil de transaction
WO2007017675A1 (fr) * 2005-08-10 2007-02-15 Symblan Software Limited Amelioration de l'efficacite des demandes d'un serveur de fichiers dans un dispositif informatique
US8433809B2 (en) 2011-03-15 2013-04-30 Amadeus S.A.S. Method and system for providing a session involving a plurality of software applications
US8473626B2 (en) 2011-03-15 2013-06-25 Amadeus S.A.S. Method and system for providing a session in a heterogeneous environment
US9514498B2 (en) 2011-03-15 2016-12-06 Amadeus S.A.S. Method and system for centralized reservation context management on multi-server reservation system
US9098881B2 (en) 2011-06-27 2015-08-04 Amadeus S.A.S. Method and system for a pre-shopping reservation system with increased search efficiency
US9235620B2 (en) 2012-08-14 2016-01-12 Amadeus S.A.S. Updating cached database query results
US11089079B2 (en) * 2017-11-22 2021-08-10 International Business Machines Corporation Asynchronously reading HTTP responses in separate process

Also Published As

Publication number Publication date
NO20004360D0 (no) 2000-09-01
AU2001282796A1 (en) 2002-03-13
NO312697B1 (no) 2002-06-17
NO20004360L (no) 2002-03-04

Similar Documents

Publication Publication Date Title
CN110134534B (zh) 基于nio针对大数据分布式系统进行消息处理优化的系统及方法
CN111212085B (zh) 物联网平台同步调用的方法、物联网系统和网络设备
WO1997019411A1 (fr) Systeme de logiciel standard personnalise de communications
EP1584172A1 (fr) Transfert de messages au moyen de connexions multiplexees dans un environnement osi-tp
CA2171815A1 (fr) Methode et appareil de gestion des connexions pour les communications entre les objets d'un systeme a objets repartis
US20110055063A1 (en) Method, Centralized Control Device, and System for Charging Service
CN113259415B (zh) 一种网络报文处理方法、装置及网络服务器
WO2002019105A1 (fr) Procede permettant d'effectuer des operations efficaces dans un systeme serveur
CN105635083A (zh) 基于服务器和客户端架构的业务处理方法及业务处理系统
US6934948B2 (en) System and method for grouping diverse operations
US7145995B2 (en) Method for server-assisted data processing for a plurality of clients
WO1999009490A1 (fr) Livraison et mise en attente certifiees de messages dans des communications a diffusion/abonnement multipoint
Garces-Erice Building an enterprise service bus for real-time SOA: A messaging middleware stack
CN112333271A (zh) 一种卫星数据存储系统、方法、电子设备及存储介质
CN115297193A (zh) 非可靠物理传输通道下的多并发调用式通信方法
CN115454667A (zh) 基于消息队列的并发远程调用系统及方法
US20040068558A1 (en) Method for providing communication waiting times between at least two data nodes
CN110809020B (zh) 一种基于冗余网络异步通信的高可靠数据传输方法
Coulson et al. Implementing the CORBA GIOP in a high-performance object request broker environment
CN114844847A (zh) 一种高可靠性的实时消息分发方法及装置
CN112286668A (zh) 一种高效处理请求数据的方法及系统
CN116932233B (zh) 一种智能合约的微服务架构
US20020188764A1 (en) Method and apparatus for asynchronous component invocation
CN109901936A (zh) 一种应用于分布式系统中的服务协作方法及其装置
CN114500637A (zh) 一种微服务通信框架构建方法、装置、设备和介质

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NO NZ PH PL PT RO RU SD SE SG SI SK SL TJ TM TR TT TZ UA UG US UZ VN YU ZA ZW

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): GH GM KE LS MW MZ SD SL SZ TZ UG ZW AM AZ BY KG KZ MD RU TJ TM AT BE CH CY DE DK ES FI FR GB GR IE IT LU MC NL PT SE TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
REG Reference to national code

Ref country code: DE

Ref legal event code: 8642

122 Ep: pct application non-entry in european phase
NENP Non-entry into the national phase

Ref country code: JP