Title of Invention

SYSTEM AND METHOD FOR CONCENTRATION AND LOAD-BALANCING OF REQUESTS

Abstract The present invention relates to a system for a distributed object environment for allowing a local client application to invoke upon a remote server service, comprising: a concentrator, for binding an invoke request from a client application upon the remote service, said concentrator comprising: a plurality of connection handlers, for handling the connection from the client to the server; a listener which determines a particular connection handler of said plurality of connection handlers to handle the connection, wherein the listener calls a service routine to bind the object reference, host, port, and client identifier parameters; and a shared memory for allowing communication between said listener and said plurality of connection handlers, said shared memory comprising a list of currently connected servers, and the connection handler handling each connection, and the shared memory is used by the listener to determine if the host and port are already in use, and incrementing a user multiplex reference count, and assigning an existing handler to the request unless no existing handler can handle the connection, then starting a new handler, The present invention also relates to a method for a distributed object environment for allowing a local client application to invoke upon a remote service on a remote server. (Figure 4)
Full Text

SYSTEM AND METHOD FOR CONCENTRATION AND LOAD-BALANCING OF REQUESTS
COPYRIGHT NOTICE A portion of the disclosure of this patent document contains material which is subject to copyright protection. The copyright owner has no objection to the facsimile reproduction by anyone of the patent document or the patent disclosure, as it appears in the Patent and Trademark Office patent file or records, but otherwise reserves all copyright rights whatsoever.
This application claims priority from provisional application "SYSTEM AMD METHOD FOR CONCENTRATION AND LOAD-BALANCING OF REQUESTS, Application No. 60/221,057, filed July 27, 2000, and incorporated herein by reference.
Field of the Invention
The invention relates generally to distributed computing environments, and specifically to a system and a method for reducing the number of Object Request Broker (ORB) connections in an Internet Inter-ORB Protocol (HOP) environment.
Background
In the field of the distributed computing, several architectures exist to allow machines to communicate with one another or to share distributed or net-centric applications. One of these architectures includes the Common Object Request Broken Architecture (CORBA). CORBA is an architecture design specification developed by the Object

Management Group (OMG), an independent group devoted to deveioping standards for u$e in object-oriented computing. Examples of CORBA-compliant systems include Netscape's ONE product, and BEA System's Webiogic Enterprise Server.
CORBA provides a specification for the Interface Definition Language (IDL), which allows software deveiopers to define interfaces to therr object-oriented applications in a standard fashion. IDL includes mappings that allow IDL definition and types to be mapped to a variety of programming languages, including C. C++, and Java. Thus, CORBA allows developers to create "transparent" applications, which may be interpreted independent of the original programming language. Developer and third-party vendors create objects which interact with one another through an Object Request Broker (ORB). Using language mappings, developers can create client-side "stubs" and server-side "skeletons", which the ORB's understand.
Since CORBA 2.0, the CORBA specification has included a method to allow ORB's to communicate seamlessly with each other. The ORB Interoperability Architecture, or more specifically, the General Inter-ORB Protocol (GlOP) standard, defines a set of message requests which ORB's may make over a network. Various flavors of GlOP exist, each tailored to the needs of a specific network transport. GlOP as defined by the OMG, comprises three components:
The Common Data Representation - a transfer syntax mapping IDL types to low-level types for use between network agents.

The GIOP Message Formats - of which there are currently seven, including client request, server reply, client cancel request, client locate request, server locate reply, server close connection, and message en'or.
The GIOP Message Transport Assumptions - including that: the transport is connection-oriented, reliable, can be viewed as a byte stream, provides reasonable notification of disorderly connection loss, and that the transport's model for initiating connections can be mapped onto the general connection model of TCP/IP.
A common GIOP implementation, which ail ORB's must by specification be able to use, is the Internet Inter-ORB Protocol (HOP). NOP maps GIOP messages to TCP/IP, allowing the ORB to use a TCP/IP network, for example the Internet, as a communications bus or backbone. Referring to the pyramid structure of Figure 1, at the lowest level of the pyramid exists the Physical Device, for example an Ethernet card having a MAC (Media Access Control) address. Upon this sits the Ethernet protocol, which provides a connection-based, broadcast topology where messages are encoded and collisions resolved. The next layer is the Internet Protocol (IP), which specifies the format of packets that traverse the Internet and supports hostnames and IP addresses. The hostname allows IP to be routed, Above IP is the Transport Control Protocol (TCP), which adds the functionality of port number and control directives such as packet segmentation and time to live. This provides reliable, stream-based delivery. HOP is built upon TCP. Above HOP sits the ORB level, which marshals the HOP requests. At the top of the pyramid is the application level itself, which includes object

implementations and other ORB objects and services, such as the Naming Service.
In such a distributed Object System as described above and, as further illustrated in Figure 2, requests 50 are passed back and forth between processes requiring an object's function 42,44,46,48 and the processes implementing an object's function 52, 54, 56, 58. The example of Figure 2 shows n clients invoking upon m servers. With such a system it is difficult to achieve scalability when there are n x m connections, where n represents processes requiring a group of object function and m represents the processes implementing the group of object functions. This is commonly known as a "tan-out problem", and leads to difficulties in ensuring system resources are sufficient enough to allow scalability. Techniques exist to allow concentration of requests through a concentrator process to an IIOP/ORB domain o:- group of object implementations. Trie-problem is how scalability may be achieved going in the opposite direction, from the object implementations within the domain, to other object implementations outside of the domain.
Summary of the Invention
To address the problem of scalability in Object Systems, an embodiment of the invention allows native clients, and servers acting as native clients, to invoke on a remote object reference. The ability to invoke on a remote object reference should be: scalable, robust, usable as a mechanism to carry out invocations on object references implemented in foreign ORB servers, usable as a mechanism to carry out invocations that are implemented in remote clients (client callbacks), and usable as a mechanism to carry out invocations that deliver events to remote clients.

One solution and embodiment of the invention is to utilize an intelligent concentrator process for requests going from within the domain to outside of the domain, One or more master processes are configured which load-balance requests across sub-processes which actually handle the requests. The master processes may dynamically add sub-processes as required by the load. Additionally, the master processes can allow concentration by ensuring that multiple requests from within the domain use the same actual connection for their requests to an object implementation outside of the domain. A multiplicity of these master processes allow for fail-over and recoverability in case a master process dies.
An embodiment of the invention allows both native clients, and native servers acting as clients, to invoke on object references whose implementation exists outside of an Internet Inter-ORB Protccol (HOP) domain. This provides an underlying mechanism allowing for remote clients to receive events, for remote clients to receive callbacks and for native clients and servers acting as clients to invoke on object references whose implementation is in a remote server built with an Object Request Broker (ORB).
Description of the figures
Figure 1 illustrates how the HOP and ORB layers relate to other network communication protocols in the prior art.
Figure 2 illustrates a fan-out problem known in the prior art.
Figure 3 shows for an embodiment of the invention how an ISH can be used to interface between multiple clients and a TCP/IP link to a
server.

Figure 4 shows for an embodiment of the invention how an ISL/ISH concentrator may be used to minimize the number of server connections required to service n clients.
Figure 5 illustrates an embodiment of the invention in which an ISL and multiple ISH's serve a variety of client and server types.
Figure 6 shows for an embodiment of the invention how the routing code interacts with the ISL and the ISH(s).
Figure 7 shows for an embodiment of the invention the services contained in the ISL.
Figure 8 shows for an embodiment of the invention steps in the juting/binding process.
Figure 9 shows for an embodiment of the invention the unbinding process.
Figure 10 illustrates an outbound HOP embodiment of the nvention using a bi-directional connection.
Figure 11 illustrates an outbound HOP embodiment of the nvention using a paired connection.
Figure 12 illustrates an outbound HOP embodiment of the invention using an asymmetric connection.
Figure 13 shows for an embodiment of the invention how a bidirectional connection maybe rebound after a client has disconnected.
Detailed Description of the Preferred Embodiment
Various embodiments of the invention will now be described with respect to the accompanying figures, Several definitions are given below, which will be useful in the discussion of the preferred embodiments.
Client/Server - a machine or process which may act either ss a client or

as a server, or both.
Domain - a collection of machines and resources that may be administered as a unit. Domains can be set up based on application function, security needs, or geographical location, and are particularly useful in situations where multiple applications intercommunicate.
Native - a client or server located within the domain.
Callback - the ability to invoke on an object reference that has been created by a remote client (acting as a server) such that an HOP request is delivered to the object implementation in the remote client.
CaHout * the ability to take an object reference for some remote server and invoke on it such that a request is delivered to that remote server. The callout may be to a remote client acting as a server (callback) or to a remote ORB server,
ISH (HOP Server Handler) - Refers specifically to the component that receives HOP messages from remote clients, and forwards them as Tunneled GIOP^fTGlOP) messages to native (or in-domain) servers. This component also receives the replies and makes sure they get back to the appropriate
remote client, in one embodiment of the invention, the ISH will also receive TGIOP request messages from native clients/servers and send the HOP request messages on to remote servers. This component receives the replies and makes sure they get back to the appropriate native client/server.

ISL (HOP Server Listener) - Refers to the component that decides which ISH should handle a particular remote client conversation with a native server. The ISL handles fail-over for ISHs and load balancing of connections to native objects. In one embodiment of the invention, the ISL also decides which ISH should handle a particular conversation with a remote server for object references that are not located in a client connected to an ISH. The ISL concentrates connections for multiple invokes on identical remote objects.
Inbound HOP - A concept known in the prior art which refers to initiating an HOP request from a remote server to a native client within the domain.
Outbound HOP - Refers to the inventions method of initiating an HOP request from a native client, or server acting as a client, in the domain to a remote server not in the domain. '
Asymmetric HOP - In some versions of GIOP, HOP connections are not symmetrical, e.g. only clients can send requests and only servers can receive them. If a server needs to send requests to an object in the client, it must create a second connection from the server to the client.
Bi-directional HOP - connections between the client and server are symmetric, i.e. clients can send requests to servers on a connection and > servers can send requests to objects exported by the client on the same connection.

MOP CONCENTRATION
Figure 3 shows a typical concentration process in an embodiment of the invention. Current systems only provides for inbound HOP concentration - the invention adds support for outbound HOP concentration. As shown in Figure 3 an ISH concentrator 66 reduces the number of connections required on a remote client/server 70 by "concentrating" the connections from multiple local clients to operate over a single server link 68. Several clients are contained within the same domain as the ISH and communicate with each other by interprocess communication. Client/servers outside the domain (remote client/servers) communicate with the ISH via a standard TCP/IP link.
As illustrated in Figure 4, an embodiment of an ISH concentrator of the invention is used to improve the scalability of the system first depicted in Figure 2. An ISH 90 reduces the number of active connections from n x m to n + m. In one embodiment of the invention messago queues are used to replace the direct link to the remote servers - this reduces the number of active connections to just n.
OUTBOUND HOP SUPPORT
An exemplary system including one embodiment of the invention is shown in Figure 5. As illustrated, several clients invoke upon a series of remote servers. The client may be, for example, a native C++ client 102, a Java client 164, a notification service 106, or a native server acting as a client 108. The remote server may be another native server 110, a native client registered for events 112, or a non-native CORBA-compliant ORB server 114. When one of the clients invokes upon a server, a routing process directs the connection to the ISL by calling a

BIND service 122. The ISL determines which ISH 130. 132, or 134 is best suited to handle the connection. At least one ISH is thus required, although many ISH's may be used. The ISL determines which ISH to hand the connection to by first checking to see if any ISH currently handles a connection to the destination server. If none currency handle such a connection, then the least burdened ISH will be chosen. In this manner the ISL serves to balance the load of increasing number of connections among all available ISH's.
When an ISH is chosen 126, the ciient thereafter invokes that server via that ISH 128. Since the clients and ISH are within the same domain they may communicate using Tunneled GiOP (TGIOP) 136. The ISH's communicate with servers outside of the domain using HOP over TCP/IP 138.
Outbound NOP Support, as embodied in the invention, provides native clients, and servers acting as native clients, the ability to invoke on a remote object reference outside of the domain. This means that events are able to flow to remote clients that have registered for events, callbacks may be done to remote clients and objects In remote servers may be accessed. The Outbound HOP Support comprises four functional parts:
Support for bi-directional HOP to objects contained in clients connected to the JSH. If the remote ORB supports bi-directional GIOP 1.2, then the ISH can utilize the same connection to send requests and receive replies to/from the connected client.
Support for bi-directional-like HOP to objects contained in clients connected to the ISH. If the ORB does not support bi-directional GIOP

1.2, then the client can call an Application Program Interface (API) to notify the iSH of the listening host/port in the client The ISH utilizes a second paired outbound connection to send requests to, and receive replies from the connected client. This outbound connection is paired with the incoming connection. If the client disconnects the incoming connection, then the outbound connection is also torn down.
Support for invokes on an ISH or native client. The infrastructure supports routing to an iSH or native client based on the client information. The ORB is modified to embed client identifier information in an object reference.
Support for asymmetric outbound HOP to objects not contained in clients connected to an ISH. The ISL allows for concentration of requests from different native clients/servers that are going tc the same remote server to go through the same connection. The ISL will allow for load balancing of requests so that a specific connection does not get overburdened.
To support scalability, an ISL can start up additional handlers as necessary, and additional ISLs and additional ISHs can be added to support increased outbound HOP traffic as necessary.
To support failover, multiple ISHs can be started on a machine or within the domain. If a client attempts to use an ISH unsuccessfully, an attempt will be made to rebind the object reference and failover to another ISH.
In a typical environment of an embodiment of the invention, system administrators may be the only users that will directly interact w'rth

the Outbound HOP Support components. They are responsible for booting the ISL's with the correct startup parameters to enable outbound HOP to objects not located in a connected client. The number of ISL's booted, and the various startup parameters, may be adjusted in order to obtain the best configuration for their installations specific workload characteristics.
OUTBOUND ROUTING
Functional features in the outbound routing process are shown in Figures 6-9, As shown in Figure 6 the ISL 160 and the ISH's 168 (several are shown for demonstration purposes, although the system may operate with only one ISH) communicate with each other via a shared memory 166. In one embodiment of the invention the ISL is responsible for maintaining information about connections to remote servers. A record of such connections is kept in the shared memory. The ISH's use this information to allow invokes upon the remote servers. In return, the ISH's maintain the information in the shared memory by updating if to reflect closed or torn-down connections. The ISL then uses the updated information to better allocate incoming requests for invokes. A client seeking to invoke upon a remote sen/Ice calls a routing code 150. The routing code interacts with the ISL to determine whether a connection already exists, and if so passes it off to the respective ISH. If a connection does not already exist the ISL chooses an ISH to service the new connection.
Figure 7 shows some of the sen/ices the ISL 160 advertises or makes available to the clients. Principally, a client may request via the routing codeto BIND 161 or UNBIND 162 from the ISL An error routine 163 handles failed requests. As shown in Figure 8, the routing code 180

invokes a BIND 182 upon the ISL184 which considers the remote server and determines an appropriate ISH to use 1S8. It passes this information back to the client 186. The client thereafter invokes 187 upon the specified ISH. The ISH thereafter handles the communication between the client and the server. As further shown In Figure 9, when the client is finished 190 with the server instance, or requests the connection be closed, the application invokes an UNBIND 192 upon the ISL 194. The ISL then marks the connection closed 196. After a period of time the entry for that particular connection will be removed from the shared memeory in a garbage collection process.
OUTBOUND HOP TYPES
There are three different types of Outbound HOP:
♦ Bi-directional Outbound HOP reusing the same connection
Bi-directional-like Outbound HOP via a second paired connection
* Asymmetric Outbound HOP via a second connection
Bi-directional Outbound HOP
An embodiment of the invention includes ISL/ISH support 224, 226,228 for bi-directional MOP to objects contained in clients connected to the ISH (Figures 10). If the client ORB supports bi-directional GlOP 1.2, then the ISH will utilize the same connection to send requests and receive replies to/from the connected client. A client 222 will create an object reference and invoke on a native server. The client ORB will identify the connection as being bi-directional using the service context. The service context will travel with the message to the native server 236. When unmarshalling the object reference, the native serverwill compare the host/port in the service context with the host/port in the object

reference. If they match, the ORB will add the ISH client identifier and other client information needed for routing to a tagged component in the object reference. This client information will travel with the object reference whenever it is passed to other native servers.
At some point, a native server or native client will invoke on the object reference. The routing code will invoke on the appropriate iSH given the client information. The ISH send the request to the client over the same client connection. The client wiJJ execute the method and send the reply back to the ISH via the client connection. The ISH will receive the reply and send it to the native server.
Outbound HOP Via Paired Second Connection
The invention also includes ISH support for bi-directional-like HOP to objects contained in clients connected to the ISH (Figure 11). If the client ORB does not support bi-directional GIOP 1.2, then the client can call an API routine to notify the ISH of the listening port in the client The ISH then creates a separate paired outbound connection to send requests and receive replies to/from the connected client
A client will create an object reference. It then calls a Bootstrap function passing the object reference. The ISH will get the host/port from the Interoperable Object Reference (IOR), and store it with the client context. The client will invoke on a native server passing the object reference. The ISH will create a service context containing the host/port from the register call. This service context travels with the message to the native server. When unmarshalling the object reference, the native server will compare the host/port in the service context with the host/port in the object reference. If they match, the ORB adds the ISH id and client information to a tagged component in the object reference. This client

information travels with the object reference whenever it is passed to other native servers.
At some point, a native server or native client will invoke on the object reference. The routing code will invoke on the appropriate ISH passing the client information. The ISH will create a second connection to the client. It will send the request to the client over ths second connection. The client will execute the method and send the reply back to the ISH via the client connection. The ISH wiil receive the reply and send it to the native server. If the client disconnects from the ISH, then the second connection will also be disconnected.
Asymmetric Outbound HOP
Embodiments of the invention also include iSL/ISH support for asymmetric outbound HOP to objects not contained in clients connected to an ISH (Figures 12). The ISL allows for concentration of requests from different native clients/servers that are going to the same remote server to go through the same connection. The ISL can allow for load balancing of requests so that a specific connection does hot get overburdened. A server 280 will get an object reference from some source, which couid be a naming service, or passed in through a client, but not located in that client. Since the object reference is not located in a client connected to an ISH, the outgoing call can not be made using the bi-directionai method.
At some point, a native server or native client will invoke on the object reference. On the first invoke, there is no ISH id and client information contained within the object reference* The routing code will recognize the object key as a non-native server object reference. If no ISH id and client information is passed, then the routing code will invoke

a service in the ISL 224 passing the host/port. The ISL will return a service name to use to unbind the object reference and the client information of the ISH 272. This is the client information of the ISH, not the client information of any client connected to the ISH.
The ORB will invoke on the object reference. The infrastructure will invoke on the ISH. The ISH will get the connection identifier from the client information and determine 226 which outgoing connection to use to send the request to the client. If none is connected, then the ISH wiil create a separate connection to the host/port. The ORB will utilize the appropriate GIOP version for the version of HOP profile in the iOR. The client will execute the method and send the reply back to the ISH via the separate connection. The ISH will receive the reply and send it to the native server.
PROCESS FLOW
The following are detailed process flow descriptions, which illustrate how the client, ISL, and ISH interact in one embodiment of the invention:
From the perspective of the native client
At. object reference bind time the ORB determines if the object reference is remote. If so, the ORB is initialized with client information from the object reference {if present). If client information is not present, then a BIND flag is specified. Otherwise, no flag is specified.
A routing code determines if it has a remote object reference.
If the BIND flag is present: calls the BIND service. Stores returned ISH client Information and ISL information in shared memory.
!f the BIND flag is not present: Stores client information in shared

memory.
The routing code looks in the shared memory for client identifier and invokes on it
When the connection is torn down the system looks inside the shared memory for the appropriate entry and calls UNBIND.
The !SL in turn marks connection as closing in shared memory so ISH closes it.
From the perspective of the ISH
The iSH is invoked using the client id.
The ISH receives the message from the message queue. A request is handled in a inverse manner to a reply.
The infrastructure switches the ISH to the appropriate context based on the client. If asymmetric Outbound HOP, then the context is the ISH context (0), not a client context.
A copy of the HOP request is made, and the HOP request id is replaced with a unique Id, The request is placed on a list of outstanding requests for this context
If the context is a client context, then it has a bi-directional connection or a paired second connection. If paired second connection and the connection does not yet exist, then one is created. Routines are called to send the HOP request to the client The routines buffer the request until the connection is completed. Else, routines are called to send the liOP request to the client.
If the context is the ISH context, the connection index is used to determine the outbound connection. If there is not an existing connection, then one is created, Routines are called to send the HOP request to the client. The routines buffer the request until the connection

is completed if there is an existing connection, the routines are called to send the HOP request to the client.
The ISH handles network and message queue events. When a reply comes back from a connection, the list of outstanding requests is searched for the corresponding request. The ISH replaces the unique id wfth the original request id and sends the reply back to the client.
From the perspective of the ISL
The ISL is invoked on the first invoke on an object reference.
The service routine is called to bind the object reference. The parameters are the host, the port, and the client identifier.
The ISL hashes the host/port and looks in the data structures to determine 'rf the host/port is already in use. If in use and not at the multiplex user limit, then the appropriate ISH client identifier, domain, client process identifier, client queue, ISL group and server identifier are returned.
The user multiplex reference count is incremented.
If not found and an existing ISH can handle the connection, then the existing ISH is assigned to handle the request. The appropriate ISH client id, domain, client process identifier, client queue, ISL group and server identifier are returned.
If no ISH can handle the connection/then a new ISH is started. The appropriate ISH client identifier, client process identifier, client queue, ISL group and server identifier are returned.
CONNECTION MANAGEMENT
Connection management is the process by which embodiments of the invention handle connections between the clients and the servers,

and specifically how the system handles connections it evaluates are not currently in use.
One of the goals of the invention is that of scalability. Therefore, it is desired to minimize the number of outbound connections, For this reason, the system supports bi-directionai connections and paired second connections in order to have an efficient mechanism to invoke on objects contained within connected clients, These cases comprise the majority of outbound HOP traffic. However, there may still be scenarios where customers want to invoke on object references not contained in a currently connected client. This couid be object references ror foreign ORB servers; client/servers who connect and disconnect from the native domain; or any object reference obtained from a name server. In order to support these type of object references, but still provide scalability* the system relocates these TCP/IP connections from the caller pro cess to an ISH. The caller(native client or native server) invokes on the IOR and the native infrastructure is used to send the message to an ISH. The ISH then sends the message to the remote server using the TCP/IP connection. However, since these TCP/IP connections are no longer in the actual caller process, they are not automatically torn down when the caller (native client or native server) exits.
Asymmetric outbound HOP connections (not currently used by any callers) should be torn down if the caller (native client or native server) exits. This could be immediately after the last caller exits or it could be after some timeout period. The different alternatives for managing asymmetric outbound HOP connections are described in the following sections.

Reference Counting and Validation of Users
This alternative works as follows;
The native client or native server {user of the object reference) invokes on an object reference.
On the first invoke, the ORB makes a call to the BIND service in the 1SL An entry for this host/port is added to the shared memory, An entn/ for the identifier of the user (native client identifier or native server group/srvid) is added to the shared memory. The ISL returns a connection identifier (maps to the host/port entry in the shared memory) and the appropriate client information for an ISH that will contain the TCP/IP connection to the remote server,
The ORB uses the client information to send the message to the appropriate ISH. The ISH uses the connection identifier to determine which outbound HOP connection to use.
The native client or native sen/er continues to perform" invokes on the object reference. • Each invoke results in a message sent to the ISH,
If another native client invokes on an object reference with the same host/port, the BIND service will return the same connection identifier and the same client information as the first user. The reference count of the host/port entry will be incremented. An entry for the identifier of the second user (native client or native server) is added to the shared memory.
Eventually, the first and second users release the object reference. The first user release results in a call to the UNBIND sen/ice, which decrements the reference count of host/port entry and removes the identifier of the user On the second user

release, the reference count of the host/port entry is decremented
to zero. The ISL removes the host/port entry from the shared memory and marks the connection entry (different from host/port entry) as closing in the shared memory.
The 1SH closes the connection when it sees that the
connection entry in the shared memory is marked as closed. It marks the connection entry as unused.
This is the case where the user exits normally and releases object references. Other cases include the user exitingwithout releasing object references and the user abnormally exiting. In order to ensure that connections are released when no longer needed, this alternative uses validation, in which the ISL validates the identifier of users of the connection; stores the id's in the shared memory; checks to see If a ser/er is inactive; and if on the local machine, the ISL will compare a tirnestamp to see if the native client is stili active; or uses a call to validate a native client that is not on the same machine as the ISL.
Asymmetric Outbound Connection Timeout with No Unbind
This alternative works as follows:
The native client or native server (user of the object reference) invokes on an object reference.
On the first invoke, the ORB calls the BIND service in the ISL, An entry for this host/port is added to the shared memory. The ISL returns a connection identifier (maps to the host/port entry in the shared memory plus an additional generation/timestamp field) and the appropriate client information

for an !SH that will contain the TCP/IP connection to the remote
server.
• The ORB uses the client information to send the message
to the appropriate ISH. The ISH uses the connection identifier to determine which outbound HOP socket to use. If the connection identifier is no longer valid (due to connection timeout), then an error is returned.
The native client or native server continues to perform invokes on the object reference. Each invoke results in a message sent to the ISH.
If another native client invokes on an object reference with the same host/port, the BIND sen/ice will return the same connection identifier and the same client information ;as the first invoke. No reference counting will be performed on the host/port entry.
Eventually, the first and second users release the object reference. No unbind service is called. The connection stays up.
On each invoke, the ISH updates an activity timestarnp field in shared memory for the connection. On a regular basis, tie ISL will timeout the connection if no activity takes place within a user specified time period. The ISL will mark the connection as closed and remove the host/port entry. The ISH will disconnect the connection when it sees the connection has been marked as closed. It marks the connection entry as unused.If the users of an connection die or do not release object references, then the connection will stay up as long as it is active. It will be torn down when it has not been active for thespecified time period. An object reference may still be valid, but not used within the specified

timeout period. In this case, the connection will be torn down and the host/port entry removed. The ISH will receive the request, validate the connection id, and return an error. This error will cause the ORB to rebind the object reference. This will involve a call to the ISL BIND service and an existing connection may be used or a new connection may be created. This rebind should not be visible to the user,
Reference Count with Asymmetric Outbound Connection Timeout
This is a combination of alternative 1 and 2. The main difference is that connections are torn down as soon as no one is using them. This alternative works ss follows:
The native client or native server (user of the object reference) invokes on an object reference.
On the first invoke, the ORB calls the BIND service in the ISL. An entry for this host/port is added to the shared memory. The ISL returns a connection identifier (maps to the host/pore entry in the shared memory plus an additional generation/timestamp field) and the appropriate ISH id and client information for an !SH that will contain the TCP/IP connection to the remote server.
The ORB uses the ISH id and client information to send the message to the appropriate ISH. The ISH uses the connection identifier to determine which outbound HOP connection to use. if the connection identifier is no longer valid (due to connection timeout), then an error is returned.
The native client or native server continues to perform invokes on the object reference. Each invoke results in a message sent to the ISH.

If another native client invokes on an object reference with the same host/port, the BIND service will return the same connection identifier and the same client information as the first invoke. The reference count of the host/port entry will be incremented.
Eventually, the first and second users release the object reference. The first user release results in a call to the UNBIND service. It decrements the reference count of host/port entry. On the second user release, the reference count of the host/port entry is decremented to zero. The ISL removes the host/port entry from the shared memory and marks the connection as closing in the shared memory.
The ISH closes the connection when it sees that the connection entry in the shared memory is marked as dosed.
It marks the connection entry as unused-

If the users of an connection die or do not release object referenced, then the connection will stay up as long as it is active. It will be torn down when it has not been active for the specified time period. An object reference may still be valid, but not used within the specified timeout period. In this case, the connection will be torn down and the host/port entry removed. On a subsequent invoke, the ISH will receive the request, validate the connection identifier, and return an error, This error will cause the ORB to rebind the object reference. This will involve a call to the ISL BIND service and an existing connection may be used or a new connection may be created. This rebind should not be visible to the user.

ADDITIONAL FEATURES
Use of Bi-directional Connections for Callout
In some scenarios a client may connect, create a persistent subscription to an event, and then disconnects from the ISH. When the client reconnects to an ISH, it then expects to receive events for that persistent subscription.
In one embodiment of the invention, the ISL knows about current bi-directional connections and then uses them instead of creating a separate connection to the host/port in the I OR. Notifying the ISL of bi-directional connections allows for the optimal use of resources. The ISH notifies the ISL of the bi-directional information. This requires locking of the shared memory or extra messages on connection creation and deletion.
Client Disconnection
•In this scenario, illustrated in Figure 13, the client has disconnected from the domain, but is still listening at the same host and port. The object reference contains the client information of the disconnected client When the ORB invokes upon an unavailable service, the infrastructure will return an error. The ORB will handle this error and rebind 304 the object reference. An ISH will be selected to create a new connection to the remote server, and the client information will be updated.
Data Design
The ISL and ISH each have data that they keep in memory. They also share memory for items that need to be persistent across the life of the ISL and its ISHs. If an ISL dies and restarts, it will reattach to the

shared memory and will be able to recover any state that has been saved in that shared memory.
Shared Memory
The ISL shares memory with the ISHs that it controls. If asymmetric outbound NOP is enabled, then additional sections will be present in the shared memory table. This memory is used by the ISL to do appropriate concentration and load balancing and is used by the ISH to keep track of which connections it needs to create. The ISL is the primary writer of the shared memory.
ISH Failure
The ISH has to keep information around that does not need to be in shared memory. Among the information that does not need to be shared is areas for holding information about the current request, areas to map request ids to clients (server). The ISL is responsible for restarting an ISH. When it restarts the ISHt it will clear out the old shared . memor/ slots for the dead ISH and ensure that the ISH will connect to that ISL's shared memory.
If a client invokes on an object reference bound to the ISH that failed, an error will occur. The caller will rebind, and an ISH will be selected to perform the invoke. This could be the restarted ISH or another ISH,
ISL Failure
The ISL will eventually restart if the system administrator started it with recommended settings. If an object code was Invoking the service, but has not yet selected the server, then an alternative ISL will

be selected. If the object code was invoking the service and selected the server then the system returns an error to the client. When the ISL eventually restarts it will reconnect to the shared memory.
Native Client (or server acting as a client) Failure
The ISL will periodically scan the list of outbound connections. If a connection has not been active in the timeout period specified, then the corresponding entry will be freed and the outbound connection disconnected. This will ensure that outbound connections created by native clients or servers will always be torn down it the native client or server fails.
Garbage Collection
There are "events" that can cause some portion of shared
memory to be cleaned up:
Remote server fails. The ISH will return an error to the client (or clients if multiple clients were using the connection). When the client exits and the ISL is notified it will clean out the appropriate host and port slot and appropriate client identrfier slot(s).
The ISH realizes that a connection has exceeded the timeout set by the administrator. The corresponding entry will be freed and the socket will be marked as closing. On the next invoke, an error will be returned to the caller, and the ORB will rebind the object reference. A new connection will be created and the invoke will occur.
* The ISH dies. The ISL restarts the ISH, On the next invoke
on that bound object reference, an error will occur. The caller will

rebind and an ISH will be selected to perform the invoke. The existing entries for the ISH will remain in the shared memory. On the first invoke, the restarted ISH will connect to the remote server.
The ISL dies. At restart time, it checks all ISHs and cleans up entries for any ISH that has died.
The ISL is shutdown. The ISL sends shutdown messages to the ISH. The ISL removes the shared memory.
The machine crashes and ISL and all the ISHs die at the same time. The shared memory disappears.
Other features, aspects and objects of the invention can be obtained from a review of the figures and the claims. It is to be understood that other embodiments of the invention can be developed and fall within the spirit and scope of the invention and claims.
INDUSTRIAL APPLICABILITY
The invention has particular use in the field of Object-Oriented systems, and specifically CORBA-compliant systems where n clients may invoke upon m servers. Typically this would require n x m number of connections to handle the requests. The invention described allows there to be only m connections on the server which significantly reduces resource requirements and allows scalability. The invention further allows for multiple intelligent master concentrator processes, to tackle concentrator failure and offer dynamic scalability.




What is claimed is;
1 A system for use in a distributed object environment for allowing ; a local client application to invoke upon a remote seiver service, comprising:
a concentrator which binds a request from the client application to invoke upon the remote service, identifies the remote seiver, and operabiy connects the client to that remote server.
2. The system of claim 1 wherein the concentrator further comprises:
at least one connection handier, which handles the connection
from the client to the server; and,
a listener which determines which connection handler to use to handle the connection,
3. The system of claim 2 wherein the listener and connection handler ■communicate via a shared memory.
4. The system of claim 3 wherein the shared memory comprises a list of currently connected servers, and the connection handler handling each connection.
5. The system of claim 2 wherein the concentrator comprises a plurality of connection handlers.
6. The system of claim 5 wherein the listener determines which connection handler to use based on the entries in the shared memory.

7. A method for use in a distributed object environment for allowing
a local client application to invoke upon a remote service on a remote
server, comprising:
binding a request from the client application invoking upon the remote service;
identifying the remote server; and,
operably connecting the client to that remote server through a connection handler.
8. The method of claim 7 further comprising:
referencing a shared memory space to see if the remote server is currently connected to a connection handler.
9. The method of claim 8 further comprising:
if the remote server is not currently connected to a connection handler, then connecting the remote serverto a-connection handier and updating the shared memory.
10. The method of claim 9 wherein the step of updating the shared memory comprises updating a list of currently connected servers, and the connection handier handling each connection.
11. The method of claim 7 wherein one of multiple connection handlers may be used to handle the connection.
12. The method of claim 11 further comprising the step of:
determining which connection handler should handle the
connection by referencing the entries in the shared memory.

13. A system for use in a distributed object environment for allowing
a local client application to invoke upon a remote server service,
comprising:
a concentrator, for binding an invoke request from a client application upon the remote service, said concentrator further including
a plurality of connection handlers, for handling the connection from the client to the server;
a listener which determines a particular connection handler of said plurality of connection handlers to handle the connection; and,
a shared memory for allowing communication between said listener and said pluralrty of connection handlers, said shared memory including a list of currently connected servers, and the connection handler handling each connection.
14. The system of claim 13 wherein the local client application
performs the steps of:
determining, at object reference bind time, whether the object reference is remote, and if so initializing the ORB with client information from the object reference;
if a bind flag is present binding the service and storing returned ISH client information and listener information in said shared memory;
if a bind flag is not present storing client information in said shared memory;
searching within said shared memory for a client identifier and invoking upon it; and,
when the connection is torn down searching within said shared memory for the appropriate entry, and using said entry to unbind the service.

15. The system of claim 13 wherein said connection handler performs
the steps of:
receiving a message from the message queue;
switching the handlerto either a client context or a handler context based on the client;
making a copy of the HOP request, and replacing the IIO'P request id with a unique id;
placing the request on a list of outstanding requests for this context;
if the context is a client context, and if paired second connection and the connection does not yet exist, then creating one, and sending the HOP request to the client;
if the context is the handler context, using a connection index to determine the outbound connection, and if one does not exist then creating one, and sending the HOP request to the client; and,
when a reply comes back from a connection, searching the list of outstanding requests forthe corresponding request, replacing tie unique id with the original request id, and sending the reply back to the client
16. The system of claim 13 wherein said listener performs the steps
of:
calling a service routine to bind the object reference, together with
host, port, and client identifier parameters;
searching within the shared memory to determine if the host/port is already in use;
incrementing a user multiplex reference count;

if an existing handler can handle the connection, then assigning the existing handler to handle the request; and,
if no existing handler can handle the connection, then starting a
new handler.
17. The system of claim 13 wherein the client is any one of a native C++ client a Java client, a notification service, or a native server acting as a client.
18. The system of claim 13 wherein the remote server is any one of a native server, a native client registered for events, or a non-native CORBA-compliant ORB server.
19. A method for use in a distributed object environment for allowing a local client application to invoke upon a remote server service, comprising:
providing a plurality of connection handlers, for handling the connection from the client to the server;
determining, at a listener, which particular connection handler of said plurality of connection handlers to handle the connection; and,
binding a request from the client application invoking upon the remote service, said step of binding includes;
identifying the remote server, and, operably connecting the clientto that remote serverthrough said particular connection handler,
20. The method of claim 19 wherein said local client application
performs the additional steps of:

determining, at object reference bind time, whether the object reference is remote, and if so initializing the ORB with client information from the object reference;
if a bind flag is present binding the service and storing returned ISH client information and listener information in said shared memory;
if a bind flag is not present storing client information in said shared memory;
searching within said shared memory for a client identifier and invoking upon it; and,
when the connection is torn down searching within said shared memory for the appropriate entry, and using said entry to unbind the service.
21, The method of claim 19 wherein said connection handler performs the additional steps of;
receiving a message from the message queue;
switching the handler to either a client context or a handler context based on the client;
making a copy of the HOP request, and replacing the HOP request id with a unique id;
placing the request on a list of outstanding requests for this context;
if the context is a client context, and rf paired second connection and the connection does not yet exist, then creating one, and sending the HOP request to the Client;
if the context is the handler context, using a connection index to determine the outbound connection, and if one does not exist then creating one, and sending the HOP request to the client; and,

when a reply comes back from a connection, searching the list of outstanding requests forthe corresponding request replacing the unique id with the original request id, and sending the reply back to the client
22. The method of claim 19 wherein said listener performs the
additional steps of:
calling a service routine to bind the object reference, together with host port, and client identifier parameters;
searching within the shared memory to determine if the host/port is already in use;
incrementing a user multiplex reference count;
if an existing handler can handle the connection, then assigning the existing handier to handle the request; and,
if no existing handler can handle the connection, then starting a i new handier.
*
23. The method of claim 19 wherein the client is any one of a native
C++ client a Java client, a notification service, or a native server acting
as a client
)
24. The method of claim 19 wherein the remote server is any one of
a native server, a native client registered for events, or a non-native
CORBA-compliant ORB sen/er.

25. A system for use in a distributed object environment substantially as herein described with reference to the accompanying drawings.


Documents:

151-chenp-2003-abstract.pdf

151-chenp-2003-assignement.pdf

151-chenp-2003-claims filed.pdf

151-chenp-2003-claims granted.pdf

151-chenp-2003-correspondnece-others.pdf

151-chenp-2003-correspondnece-po.pdf

151-chenp-2003-description(complete)filed.pdf

151-chenp-2003-description(complete)granted.pdf

151-chenp-2003-drawings.pdf

151-chenp-2003-form 1.pdf

151-chenp-2003-form 13.pdf

151-chenp-2003-form 18.pdf

151-chenp-2003-form 26.pdf

151-chenp-2003-form 3.pdf

151-chenp-2003-form 5.pdf

151-chenp-2003-other document.pdf

151-chenp-2003-pct.pdf

abs-151-chenp-2003.jpg


Patent Number 212189
Indian Patent Application Number 151/CHENP/2003
PG Journal Number 02/2008
Publication Date 11-Jan-2008
Grant Date 26-Nov-2007
Date of Filing 24-Jul-2003
Name of Patentee M/S. BEA SYSTEMS, INC
Applicant Address 2315 North First Street, San Jose, CALIFORNIA 95131
Inventors:
# Inventor's Name Inventor's Address
1 FERWERDA, Paul 78 Graston Drive Bedford, NH 03110
PCT International Classification Number G06F 9/46
PCT International Application Number PCT/US2001/022343
PCT International Filing date 2001-07-17
PCT Conventions:
# PCT Application Number Date of Convention Priority Country
1 60/221,057 2000-07-27 U.S.A.