CA2255406A1 - Method and apparatus for executing code during method invocation - Google Patents

Method and apparatus for executing code during method invocation Download PDF

Info

Publication number
CA2255406A1
CA2255406A1 CA002255406A CA2255406A CA2255406A1 CA 2255406 A1 CA2255406 A1 CA 2255406A1 CA 002255406 A CA002255406 A CA 002255406A CA 2255406 A CA2255406 A CA 2255406A CA 2255406 A1 CA2255406 A1 CA 2255406A1
Authority
CA
Canada
Prior art keywords
filter
server
client
filters
constructing
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
CA002255406A
Other languages
French (fr)
Inventor
Sanjeev Krishnan
Ken M. Cavanaugh
Anita Jindal
Rohit Garg
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Sun Microsystems Inc
Original Assignee
Sun Microsystems Inc
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 Sun Microsystems Inc filed Critical Sun Microsystems Inc
Publication of CA2255406A1 publication Critical patent/CA2255406A1/en
Abandoned legal-status Critical Current

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

Abstract

One or more filters may be included in each object implementation in a CORBA distributed object system. Each CORBA server object maintains a registry of filters containing unique identifiers and specifications for each of the filters and the order in which the filters must be applied. The filters execute selected code either before or after the conventional marshaling and unmarshaling which take place during a method invocation in the system. The CORBA client object builds a filter registry, from information that it received from the server. Filters may also be present in the client side of the ORB in order to execute code before and after the marshaling and unmarshaling that takes place in the client side of the ORB and these latter filters are also included in the client filter registry. The client then uses its filter registry to invoke the filters during a subsequent method invocation. The client also receives a time stamp from the server to identify the current filter composition. In method invocations to the server, the client includes the value of the time stamp it received and the server returns an exception to the client if the time stamps do not match. In response to this exception, the client reinvokes the _retrieve_filters() method in order to obtain the most recent filter registry contents and time stamp from the server.

Description

CA 022~406 1998-12-04 METHOD AND APPARATUS FOR EXECUTING CODE
DURING METHOD INVOCATION
FIELD OF THE INVENTION
This invention relates to distributed object systems using common object request broker architecture (CORBA) and, more particularly, to a method and apparatus for providing a filter framework for the execution of code during a method invocation.

Software programs are continually becoming more complicated. Early programs consisted of straightforward procedural code that presented a simple, command line interface and text display to the user. These simple programs have gradually been replaced with complex programs that have 15 graphical user interfaces and multiple features.
As programs have grown in complexity, the amount of effort which is required to write and debug the programs has also increased drastically.
Consequently, major efforts have been made to reduce the amount of programming necessary to produce a modern, full-featured product. One of 20 the most successful of these efforts has been the development of object-oriented programming in which programs are designed as collections of discrete elements called "objects". The objects can be modified and re-used in many cases, thereby reducing the development effort.
As will be understood by those skilled in the art, objects in the context 25 of object-oriented programming are software entities comprising data and methods or operations on that data. The methods of an object collectively form an interface for manipulating the data in the object. The objects exist only at program runtime and are created, or instantiated, from object "classes"
which are actually written by the programmer. The class code written by a CA 022~406 1998-12-04 programmer can be "reused" by another programmer by instantiating objects from that code.
In order to further reduce the programming burden, distributed object systems have been developed in which methods in objects resident on a server S can be executed or invoked remotely over a network from a client application.
In this manner, the objects can be developed and maintained by a party different from the party that developed the client application. In such a systeminformation is routed or streamed between the client and the server. This information includes requests from the client to invoke an object on the server 10 and results and data from the method invocation returning from the server to the client. In addition, object-oriented programs often communicate by streaming objects from one program to another.
In such streaming operations, a stream writer organizes, or marshals, the information to form a serial data stream. The serial data stream is then 15 sent to the server where a stream reader unmarshals the serial data stream to reconstruct a copy of the original information. The stream reader must operate such that the unmar.~h~ling exactly "undoes" the effect of the marshaling so that the original information can be reconstructed. Ordinarily, such an operation does not present a problem, but when the stream reader is 20 not written by the same author as the stream writer there can be incompatibilities .
In order to standardize the marshaling and unmarshaling and data transfer process, an industry consortium called the Object Management Group (OMG) was formed whose mission is to define a set of interfaces for inter-25 operable software. Its first specification, the Common Object Request BrokerArchitecture (CORBA) specification, is an industry consensus standard that hides all differences between progl,lt~ g languages, operating systems, and object location. The CORBA standard defines an object request broker (ORB) that handles the marshaling, transport and unmarshaling of information .

CA 022~406 1998-12-04 between applications. The ORB functions as a communication infrastructure, transparently relaying object requests across distributed heterogeneous computing environments. Inter-operability is accomplished through well-defined object interface specifications which allow client applications to 5 connect to the ORB. CORBA provides an implementation independent notation for defining interfaces called the OMG Interface Definition Language (IDL).
The OMG CORBA specification defines an implementation independent object model which is actually built with a programming 10 language, such as C++ or Java. In this model CORBA objects (also called "servants"), which are implemented by servers, have references that can be exported to clients. Clients and servers are roles, not mutually exclusive tasksfor a single program, so that any one program can be both a client and a server. Objects and object references are typically different programming 15 language objects, although they do not have to be.
In a server, the implementation of an actual object which can be used to satisfy an invocation on a CORBA object is generally both platform and language dependent and various models are possible for implementing objects in servers. The original CORBA standard defined a Basic Object Adapter (or 20 BOA) which is a framework that adapts the server implementation to the implementation independent ORB. A newer OMG portability standard defines a Portable Object Adapter (or POA), which replaces the BOA and is intended to be platform independent. Many ORBs also support other proprietary frameworks for implementing CORBA objects. All of these 25 frameworks are commonly referred to as Object Adapters (or OAs).
An application programmer using object request broker technology may want to execute code segments as a part of the method invocation process, specifically during the marshaling and unmarshaling processes. Such code segments may operate to monitor and debug a program, or to implement - CA 022~406 1998-12-04 security mechanisms, for example. Filters, that is, sections of code which execute during the method invocation process before or after marshaling or unmar.sh~ling of arguments in an object request broker system, are known.
Filters may be used to perform a variety of tasks, such as compression, encryption, tracing, or debugging, that may be applied to communications to or from an object. However, such filters are typically statically defined for client and server objects and compiled with the client and server code, respectfully.
Simulation, debugging, and other operations would be greatly enhanced if filters could be defined and modified during system operation.

SUMMARY OF THE INVENTION
In accordance with the principles of the invention, one or more filters may be included in the skeleton code for each object implementation and each server object maintains a registry of filters containing unique identifiers and specifications for each of the filters and the order in which the filters must be applied. The filters execute selected code either before or after the conventional marshaling and unmarshaling which take place during a method invocation.
The client includes a filter registry, which is built when the client side ORB invokes a special method, _retrieve_filters(), on a server. In response to a _retrieve_filters() call, the server passes the identification of the filters associated with an object implementation, and the order in which they should be invoked, to the client. The client constructs a registry of filters arranged in the order they should be applied, and uses this filter registry during subsequent method invocations.
In accordance with another aspect of the invention, filters may be added to or subtracted from the filter list during system operation without bringing down the server. The server initializes a timestamp to identify the CA 022~406 1998-12-04 current filter composition and updates the timestamp with each modification to its filter registry. When a client retrieves a list of the filters available on the server, using the _retrieve_filters() method, the server passes the time stamp to the client. In subsequent method invocations to the server, the client 5 includes the value of the time stamp it received. The server compares the timestamp in the method invocation to its own time stamp and returns an exception to the client if the time stamps do not match. In response to this exception, the client re-invokes the _retrieve_filters() method in order to obtain the most recent filter registry contents and time stamp from the server. The client then 10 proceeds to re-invoke the method using the newly received filter list and time stamp.
In another aspect of the presently preferred embodiment, filter code may be downloaded on the client side during system operation when the ORB
supports class downloading, such as a Java-based ORB. In the Java-based 15 environment, the application programmer registers both the client and server side filter code with an object implementation. The client side ORB invokes _retrieve filters() method and receives an ordered list of filter identifications.
The client side ORB then, dynamically loads the filter code from the server using a Java class loader, creates a new instance of the loaded filter class, and 20 stores the new instance in the client side filter registry.

BRIEF DESCRIPTION OF THE DRAWINGS
The above and further advantages of the invention may be better understood by referring to the following description in conjunction with the 25 accompanying drawings in which:
Figure 1 is a schematic block diagram of an illustrative prior art hardware platform which forms part of a computer system on which the invention can be run.

CA 022~406 1998-12-04 Figure 2 is a schematic diagram of a prior art computer network system on which a CORBA system can be built.
Figure 3 is a block schematic diagram illustrating a prior art CORBA
environment.
Figure 4 is a block schematic diagram illustrating a CORBA
environment including client and server filters constructed in accordance with the principles of the invention.
Figure 5 is a block schematic diagram illustrating a more detailed view of the client and server filter registries, in accordance with the principles of the 1 0 invention.
Figure 6 is a flowchart illustrating the registration of filters in accordance with the principles of the present invention.
Figures 7A and 7B combine to form a flowchart illustrating the maintenance of dynamic filter lists in accordance with the principles of the present invention.
Figure 8 is a flowchart illustrating the downloading of filter code by a client in accordance with the principles of the present invention.

DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENT
Figure 1 illustrates the system architecture for an exemplary client computer 100, such as an IBM THINKPAD 701~ computer or Digital Equipment Corporation HiNote computer, on which the disclosed network access system (system) can be implemented. The exemplary computer system of Figure 1 is discussed only for descriptive purposes, however, and should not be considered a limitation of the invention. Although the description below may refer to terms commonly used in describing particular computer systems, the described concepts apply equally to other computer systems, including systems having architectures that are dissimilar to that shown in Figure 1.

.. ... . .

The client computer 100 includes a central processing unit (CPU) 105, which may include a conventional microprocessor, random access memory (RAM) 110 for temporary storage of information, and read only memory (ROM) 115 for permanent storage of information. A memory controller 120 5 is provided for controlling system RAM 110. A bus controller 125 is provided for controlling bus 130, and an interrupt controller 135 is used for receiving and processing various interrupt signals from the other system components.
Mass storage may be provided by diskette 142, CD-ROM 147, or hard disk 152. Data and software may be exchanged with client computer 100 via 10 removable media, such as diskette 142 and CD-ROM 147. Diskette 142 is insertable into diskette drive 141, which is connected to bus 130 by controller 140. Similarly, CD-ROM 147 is insertable into CD-ROM drive 146, which is connected to bus 130 by controller 145. Finally, the hard disk 152 is part of a f1xed disk drive 151, which is connected to bus 130 by controller 150.
User input to the client computer 100 may be provided by a number of devices. For example, a keyboard 156 and a mouse 157 may be connected to bus 130 by keyboard and mouse controller 155. An audio transducer 196, which may act as both a microphone and a speaker, is connected to bus 130 by audio controller 197. It should be obvious to those reasonably skilled in the art that other input devices, such as a pen and/or tablet and a microphone for voice input, may be connected to client computer 100 through bus 130 and an a~rol~l;ate controller. DMA controller 160 is provided for performing direct memory access to system RAM 110. A visual display is generated by a video controller 165, which controls video display 170.
Client computer 100 also includes a network adapter 190 that allows the client computer 100 to be interconnected to a network 195 via a bus 191.
The network 195, which may be a local area network (LAN), a wide area network (WAN), or the Internet, may utilize general purpose communication lines that interconnect multiple network devices.

. CA 02255406 1998-12-04 Client computer system 100 generally is controlled and coordinated by operating system software, such as the WINDOWS 95~ operating system (available from Microsoft Corp., Redmond, WA). Among other computer system control functions, the operating system controls allocation of system 5 resources and performs tasks such as process scheduling, memory management, networking and I/O services.
Figure 2 illustrates, in a very simple fashion, the connection of a number of computing systems, such as that shown in Figure 1, to form a distributed computing facility. Each of the individual stations 200, 202, 204, 208 and 210 are interconnected by a network mechanism. Although the distributing computing facility could exist on a single computing system, it is more likely to operate over a network transport medium. Such a transport medium may be LAN as shown in Figure 2, but may also be other network arrangements, including the Internet. All that is necessary is that the termin~
15 200, 202, 204, 208 and 210 be able to communicate with each other using predefined protocols to exchange information. As previously mentioned, the CORBA architecture overlays such a network and relieves the individual applications from dealing with the details of transporting information over the network. More particularly, the CORBA architecture hides all of the details 20 and the actual network protocols from the application programs. It assures that the application programs operate with each other regardless of the platforms on which the software is designed to run and regardless of the network protocols used to interconnect separate computing systems.
Figure 3 illustrates, in a very schematic form, the basic CORBA
25 architecture which defines a peer-to-peer distributed computing facility where all applications are objects (in the sense of object orientation). Objects can alternate between client roles 300 and server roles 302. An object operates in a client role 300 when it is the originator of an object invocation. An object CA 022~406 1998-12-04 operates in a server role 302, called an object implementation, when it is the recipient of an object invocation.
The client 300 communicates with the server 302 by means of an object request broker or ORB 308. The ORB 308 operates with a transport 310 that conveys information between the client 300 and server 302 and, as previously mentioned, the ORB 308 handles the marshaling, transport and unmarshaling of information between client 300 and server 302. The client 300 communicates with the ORB 308, as indicated schematically by arrow 304, by means of an implementation independent syntax which describes 10 object encapsulations. This syntax is called an interface definition language(IDL) and is defined in the CORBA specification generated by OMG. The OMG interface definition language can be used to define interfaces that have attributes and operation signatures. The language also supports inheritance between interface descriptions in order to facilitate reuse by developers.
15 Objects or servants in the server 302 export object references with interfaces specified by the OMG IDL for use by clients. The object reference contains an identification of the object implementation so that the server 302 can pass a request to the correct object.
The entire CORBA architecture is actually implemented in a 20 conventional programming language, such as C, C++, Java, or Smalltalk.
Implementations in a variety of languages are available from a number of vendors who typically provide an IDL compiler bundled with their ORB
products. The IDL compilers generate header files which define the OMG
IDL interfaces and can be incorporated into application programs. The IDL
25 compilers also generate stub code 306 and skeleton code 314 for each interface.
The client application program 300 can link directly to the OMG IDL
stub code 306. As far as the client application program is concerned, an invocation of the stub code 306 appears to be a local function call. Once CA 022~406 1998-12-04 invoked, the stub code 306 provides an interface to the ORB 308 that performs marshaling to encode and unmarshaling to decode the operation's parameters into/from communication formats suitable for tr:~n~mi~sion on the transport 310 to/from the server 302.
S At the server side, the OMG IDL skeleton code 314 is the corresponding implementation of the OMG IDL interface. When the ORB
308 receives a request, the skeleton code 314 unmarshals the request parameters and generates a call, indicated schematically by arrow 312, to an object implementation in the server 302. When the server completes 10 processing ofthe request, the skeleton code 314 and stub code 306 return the results to the client program 300. If an error has occurred, exception information generated by the server or by the ORB is returned.
An object adapter 316 comprises the interface between the ORB 308, the skeleton code 314 and the server 302. Object adapters, such as adapter 15 316, support functions, such as registration of object implementations and activation of servers. There are many potential types of object adapters, depending on the purpose of the adapter. The original CORBA specification defined only a general-purpose Basic Object Adapter or BOA. The BOA
performs some basic functions. For example, when a client request specifies 20 an inactive server process, the BOA automatically activates the server process.
When the server is activated it registers its implementation with the BOA.
The BOA then stores this registration to use in future object requests. After an object is activated, it can receive client requests by means of a callback method in the skeleton code 314. BOA services also include exception 25 handling and object reference management.
The block schematic diagram of Figure 4 illustrates the addition of filters to the Figure 3 ORB architecture. In Figure 4, elements which correspond to elements in Figure 3 have been given corresponding numeral designations. For example, stub code 306 in Figure 3 corresponds to stub CA 022~406 1998-12-04 code 406 in Figure 4. On the client side, the client 400 interacts with the stubcode 406 which, in turn, communicates with the ORB 408. The ORB 408 contains implementations of the client side filters 422 - 436. On the server side, the object adapter 416 contains implementations of the server side filters5 438 - 452.
Filters are classified in accordance with the relative place within a method invocation process where they are applied and depending on the type of message to which they are applied. Thus, the filters can be categorized as pre-request, post-request, pre-reply, and post-reply filters. The pre-request filters 422 and 450 are applied before marshaling 424 of arguments on the client side in a request message and before unmarshaling 448 the request arguments in the skeleton 414. The post-request filters 426 and 446 are applied after marshaling 424 of arguments on the client side and after unmarshaling 448 the request arguments in the skeleton 414. It should be 15 noted that, although only one element is shown for each type of filter in Figure 4, there may actually be several separate pre-filters, several separate post-filters, etc. Each filter can be separately enabled or disabled.
Similarly, the pre-reply filters 438 and 434 are applied before marshaling 440 of the reply results in the skeleton 414 and before 20 unmarshaling 432 the reply results at the client side. The post-reply filters 442 and 430 are applied after marshaling 440 of result values on in the skeleton 414 and after unmarshaling 432 the results at the client side.
Transform filters may also be employed to implement encryption and decryption of data or data compression. For example, client transform filter 25 428 could be employed to encrypt data which is decrypted by server transform filter 452 and server transform filter 444 would in turn encrypt data which is decrypted by client transform filter 436. There are two kinds of transform filters supported in the presently preferred embodiment of the invention, the request filter and the reply filter. The request filters, 428, 452, are invoked on CA 022~406 1998-12-04 the client side after all pre and post filters have been applied to the request message and on the server before pre and post filters are applied to the requestmessage. The reply filters, 444, 436, are invoked on the server side after all pre and post filters have been applied to the reply message and on the client side before pre and post filters are applied to the reply message. The transform filters are applied only to the message body, not to the message header, because the object which is a part of the message header contains information that is required by the object request broker for dispatching the message to the appropriate subcontract and for selecting what particular 10 transform filters to apply. However, a dummy message header could be generated in accordance with conventional protocols to allow for the application of transformation to the message header. This would allow for a proper dispatching to the correct subcontract.
Filters are registered in both the client and the server before they can 15 be used. The client side filter registry 418 and the server side registry 420 are illustrated in more detail in Figure 5. As with Figure 4, elements in Figure 5 which correspond to elements in Figures 3 and 4 have been given corresponding numeral designations. Generally, the order of filter application is important so that linked lists of filters are actually registered. The linked20 list indicates both the filters and the their order of application. Filters are implementation specific, so that the server side registration takes place at theimplementation level. The client side registration takes place at the object request broker level, since the client is unaware of the implementation of an object.
Referring to Figure 5, the client 500 includes a filter registry 518 which includes unordered mappings from filter identifiers 519 and 523 to client filterimplementations 521 and 525, respectively. There is one client filter registry for each client process, where each entry includes the filters to be invoked on the client side, associating filter names and implementations. These could be CA 022~406 1998-12-04 the filters registered with the ORB on the client side using _register_filters(), or those that are dynamically downloaded from the server. A filter implementation group 523 includes ordered filter interface lists for pre-filters554, post-filters 556, and transform-filters 558. Such lists are preferably 5 created by the ORB in response to a _retrieve_filters() invocation. Each client object, that is, each client side representation of a CORBA object found in a process, has a filter implementation group 523. In the presently preferred embodiment, the client contains a cache which maintains a mapping from object implementation identifiers to filter implementation groups. The object 10 implementation identifiers include the host name of a the server, the server ID, and the implementation ID. On the server side, registration takes place on an object implementation level. Therefore, the server 502 includes many filter registries, of which filter registry 1, 560 and filter registry 2, 574 are shown.
Each registry contains linked lists of pre-, post-, and transform filter 15 identifications. For example filter registry 560 on the server side, using the numbers from the filter implementation group 523 on the client side, contains three lists, list 562 corresponding to pre-filters, list 564 corresponding to post-filters and list 566 corresponding to transform-filters. Similarly, filter registry 574 contains three lists, list 568 corresponding to pre-filters, list 570 20 corresponding to post-filters and list 572 corresponding to transform-filters.
Each of registries 560 and 574 also contain time stamps 567 and 573, respectively. These time stamps are used, as discussed in detail below, to indicate the current composition of the corresponding filter registry.
Two filter registration application progr~nnming interfaces (APIs):
25 "_register_filter()", and "_remove_filter()", are located on the object request broker object which enable program developers to register and remove filters on the client side. There are four filter registration APIs on the server:
"_register_filter()", "_register_filter_after()", "_register_filter_before()" and "_remove_filter()". These APIs permit the server to register a filter either at . , .... . ~ .. .

CA 022~406 1998-12-04 a default location (the end of the linked list) or relative to a previously-registered filter in the list of filter names. The remove API removes a specified filter. The filters are registered by name and each filter has a unique name which can be generated hierarchically.
The flowchart of Figure 6 illustrates the server filter registration process. Registration begins at step 600, then proceeds to decision block 602, where it is determined whether more filters are to be registered or not. If there are more filters to register, the process proceeds to step 604, where the next filter is registered using the APIs described above. From step 604, the process 10 returns to step 602. In case there are no more filters to be registered, the process proceeds from step 602 to step 606, where the server generates a timestamp. The timestamp may be an actual time designation or any other designation which indicates a time ordering. For example, the timestamp could be a combination of Unix time and the process ID, or simply a number 15 which monotonically increases. The timestamp is saved with the filter list and updated whenever there are any changes to the filter list. After step 606, the process proceeds to its termination at step 608.
A client can obtain a list of all filters supported by the server's implementation by m~king the special method call, "_retrieve_filters()", to the 20 server. The server returns three lists of the names of all pre-, post- and transform filters associated with the object implementation. The client can then construct a list of filters in the order in which they should be applied. In an alternative embodiment, filter lists for all implementations can be cached at the host implementation ID level.
In the presently preferred embodiment of the invention, the lists of filters can be changed any time, even as the system is running. Conventional systems require that the server be shut down in order to notify clients of the new filter list. Rather than requiring the client to request current filter lists each time an invocation is made, the timestamp previously mentioned is used ~ CA 022~406 1998-12-04 to "authenticate" the filter list used by the client at the server side before application of the filters. Specifically, after the timestamp has been obtained,in all subsequent method invocations, the client sends its copy of the time stamp to the server in the service context list field of the request message. The server retrieves the time stamp from the context list field and compares it against its own timestamp copy, which it updates with adjustments to the filter list. If there is a mismatch in timestamps, the server returns an exception to the client and, in response, the client re-invokes the "_retrieve_filters()"
method on the server to obtain a new filter list and the latest timestamp. The client then reinvokes the method, using the new filters and timestamp.
This process is set forth in a flow diagram of Figures 7A and 7B which starts at step 700 and proceeds to step 702 where the client invokes a "_retrieve_filters()" method on the server before invoking any other method.
In response, the server returns the filter lists and time stamp in step 704. Thefilter lists are three lists of filter names: one each for pre-filters, post- filters, and transform filters. After returning the filter lists, the process proceeds tostep 706, where the client invokes the method as shown in steps 422 through 428 in Figure 4. During the method invocation process, the client includes the copy of the time stamp that it obtained from the server in step 704 in the service context list of the request message. In step 708, the server receives the method invocation and retrieves its own timestamp, which will have been updated to reflect any adjustments to the filter list.
In step 710, the server compares the time stamp received from the client to its own, updated, time stamp. The process then proceeds, via off-page connectors 714 and 718, to decision block 720. The server compares the timestamps and, if the timestamps do not match, the process proceeds to step 722 where the server returns a "_rebind_filters()" exception to the client.
Following the "_rebind_filtersO" exception, the process proceeds, via off-page connectors 716 and 712, back to step 702 where the client re-invokes the CA 022~406 1998-12-04 "_retrieve_filter()" method in order to obtain the latest filter list and timestamp from the server, as previously described.
If, in step 720, the time stamps are found to be equal, the process proceeds to step 724, where the server processes the client method invocation 5 and then proceeds to step 726 to finish.
In another aspect of the invention, filter code may be dynamically downloaded on the client side. In this way the client application programmer can use filters without progr~mming them or understand what kind of filters need be provided. This type of operation is particularly useful with an ORB
10 based on a Java implementation which supports class downloading. In such a system, a client programmer simply writes a normal application; the Java object request broker itself takes care of discovering and applying filters. This process is illustrated in the flow diagram of Figure 8, where the process startsin step 800 and proceeds to step 802 where the client invokes a l S "_retrieve_filters()" method. With this step the client retrieves fully qualified filter names from the server. The process then proceeds to step 804 where the client employs a Java class loader to download a selected filter class. The process then proceeds to step 806 where the client creates a new instance of the loaded class using the class constructor method. The process then proceeds 20 to step 808 finish.
A software implementation of the above-described embodiment may comprise a series of computer instructions either fixed on a tangible medium, such as a computer readable media, e.g. diskette 142, CD-ROM 147, ROM
115, or fixed disk 152 of Figure 1, or transmittable to a computer system, via 25 a modem or other interface device, such as communications adapter 190 connected to the network 195 over a medium 191. Medium 191 can be either a tangible medium, including but not limited to optical or analog communications lines, or may be implemented with wireless techniques, including but not limited to microwave, infrared or other transmission ~ , . .. ... . . .

CA 022~406 1998-12-04 techniques. It may also be the Internet. The series of computer instructions embodies all or part of the functionality previously described herein with respect to the invention. Those skilled in the art will appreciate that such computer instructions can be written in a number of programming languages 5 for use with many computer architectures or operating systems. Further, such instructions may be stored using any memory technology, present or future, including, but not limited to, semiconductor, magnetic, optical or other memory devices, or transmitted using any communications technology, present or future, including but not limited to optical, infrared, microwave, or10 other transmission technologies. It is contemplated that such a computer program product may be distributed as a removable media with accompanying printed or electronic documentation, e.g., shrink wrapped software, pre-loaded with a computer system, e.g., on system ROM or fixed disk, or distributed from a server or electronic bulletin board over a network, e.g., the Internet or15 World Wide Web.
Although an exemplary embodiment of the invention has been disclosed, it will be apparent to those skilled in the art that various changes and modifications can be made which will achieve some of the advantages of the invention without departing from the spirit and scope of the invention. It 20 will be obvious to those reasonably skilled in the art that other components performing the same functions may be suitably substituted. Further, the methods of the invention may be achieved in either all software implementations, using the applol)liate processor instructions, or in hybrid implementations which utilize a combination of hardware logic and software 25 logic to achieve the same results. Further, aspects such as the size of memory, the specific configuration of logic andlor instructions utilized to achieve a particular function, as well as other modifications to the inventive concept areintended to be covered by the appended claims.

,. .~ ~ ..... .. . .. ..

Claims (56)

1. Apparatus for providing a framework for the execution of server-specified code at selected points during a method invocation in a distributed object system having clients and servers, the apparatus comprising:
a plurality of server filters, each of the server filters having an identifier and executing selected code during the method invocation;
a server filter registry in the server object, the server filter registry containing filter identifiers and a method for retrieving the filter identifiersfrom the registry; and a client filter registry in the client object, the client filter registry containing filter identifiers, obtained from the server object in response to the invocation of the method for retrieving the filter identifiers wherein the client object can selectively invoke one or more of said server filters using the filter identifiers in the client filter registry.
2. The apparatus of claim 1 wherein the apparatus includes:
a plurality of filter registries in the server, each registry corresponding to an implementation supported by the server, each filter registry containing filter identifiers and a method for retrieving the filter identifiersfrom the registry;
a plurality of client filters, each of the client filters having an identifier and executing selected code during the method invocation;
a client filter registry in the client, the client filter registry containing filter identifiers and the corresponding client side filter implementations, anda filter implementation group in each client object, said filter implementation group including filter lists containing client side filter implementations, where the identifiers of the client side filter implementationscorrespond to the filter identifiers obtained from the server object that corresponds to the client object in response to the method for retrieving filteridentifiers from the server object.
3. The apparatus of claim 2 wherein the filter lists correspond to pre filters, post filters, and transform filters.
4. The apparatus of claim 1 wherein a method invoked on the client object also invokes the filters indicated by the client object's filter lists.
5. The apparatus of claim 1 wherein the client contains a filter implementation group cache which maintains a mapping from object implementation identifiers to filter implementation groups, where an object implementation identifier includes the host name of a server, a server identifier, and an implementation identifier.
6. The apparatus of claim 1 wherein the distributed object system includes an object request broker which transmits the method invocation from the client object to the server object and wherein the server filters are located inimplementation specific code which connects the server object to the object request broker.
7. The apparatus of claim 6 further comprising a plurality of client filters each having an identifier and being located in the object request broker.
8. The apparatus of claim 7 wherein the client filter registry includes filter identifiers for both the client filters and the server filters.
9. The apparatus of claim 6 wherein the object request broker includes a marshaling and unmarshaling mechanism operable during the method invocation and the plurality of server filters includes a pre-filter which executes code before the marshaling and unmarshaling operates.
10. The apparatus of claim 6 wherein the object request broker includes a marshaling and unmarshaling mechanism operable during the method invocation and the plurality of server filters includes a post-filter which executes code after the marshaling and unmarshaling operates.
11. The apparatus of claim 6 wherein the object request broker includes a marshaling and unmarshaling mechanism operable during the method invocation and the plurality of server filters includes a pre-filter which executes code before the marshaling and unmarshaling operates, a post-filter which executes code after the marshaling and unmarshaling operates and transform filters which execute code before the pre-filter operates and after the post-filter operates.
12. The apparatus of claim 6 wherein the client object utilizes all the server filters effected in the implementation specific code which connects the server object to the object request broker.
13. The apparatus of claim 1 wherein each filter identifier is unique.
14. The apparatus of claim 1 wherein the filter identifiers are hierarchical.
15. The apparatus of claim 1 wherein the server filter registry indicates an order in which the filters are to be invoked.
16. The apparatus of claim 1 wherein the server filter registry and the client filter registry each include an indication of parameters required by each filter.
17. The apparatus of claim 1 further including filter registration application programmer interfaces whereby filters may be added to, and removed from, the plurality of filters and the server filter registry during distributed object system operation.
18. The apparatus of claim 17 wherein the server filter registry includes a storage which stores an indication reflecting the current composition of the plurality of server filters.
19. The apparatus of claim 18 wherein the server object includes a mechanism which sends the indication to the client object.
20. The apparatus of claim 19 wherein the client object includes the indication in the method invocation and the server object includes a nechanism to alert the client object if the indication in the method invocation indicates that the client filter registry does not include the current composition of the plurality of server filters.
21. The apparatus of claim 1 further comprising a mechanism for downloading filter code from the server object to the client object so that the client object can run the filter code.
22. A method for providing a framework for the execution of client-specified code at selected points during a method invocation in a distributed object system having client and server objects, the method comprising the steps of:
(a) constructing a plurality of server filters, each of the server filters having an identifier and executing selected code during the method invocation;

(b) constructing a server filter registry in the server object, the server filter registry containing filter identifiers and a method for retrievingthe filter identifiers from the registry;
(c) constructing a client filter implementation group in the client object, the client filter implementation group containing client filter implementations corresponding to filter identifiers obtained from server objects in response to the invocation of the method for retrieving the filter identifiers; and (d) using the client object to invoke one or more filters in the filter implementation group.
23. The method of claim 22 wherein step (d) comprises the step of:
(e) using the client object to selectively invoke filters that are flagged as optional by said server.
24. The method of claim 23 wherein the distributed object system includes an object request broker which transmits the method invocation from the client object to the server object and wherein step (a) comprises the step of:
(al) constructing the server filters in implementation specific code which connects the server object to the object request broker.
25. The method of claim 24 further comprising the step of:
(e) constructing a plurality of client filters each having an identifier and being located in the object request broker.
26. The method of claim 25 wherein step (c) comprises the step of:
(cl) constructing the client filter registry with filter identifiers for both the client filters and the server filters.
27. The method of claim 24 wherein the object request broker includes a marshaling and unmarshaling mechanism operable during the method invocation and step (a) comprises the step of:
(a2) constructing a pre-filter which executes code before the marshaling and unmarshaling operates.
28. The method of claim 24 wherein the object request broker includes a marshaling and unmarshaling mechanism operable during the method invocation and step (a) comprises the step of:
(a3) constructing a post-filter which executes code after the marshaling and unmarshaling mechanism operates.
29. The method of claim 24 wherein the object request broker includes a marshaling and unmarshaling mechanism operable during the method invocation and step (a) comprises the steps of:
(a4) constructing a pre-filter which executes code before the marshaling and unmarshaling operates;
(a5) constructing a post-filter which executes code after the marshaling and unmarshaling mechanism operates;
(a6) constructing a transform filter which executes code before the pre-filter; and (a7) constructing a transform filter which executes code after the post-filter.
30. The method of claim 24 wherein step (d) comprises the step of:
(d1) utilizing all the filters effected in the implementation specific code which connects the server object to the object request broker.
31. The method of claim 23 wherein step (a) comprises the step of:
(a8) constructing each filter with a unique identifier.
32. The method of claim 23 wherein step (a) comprises the step of:
(a9) constructing the plurality of filters with hierarchical filter identifiers.
33. The method of claim 23 wherein step (b) comprises the step of:
(b1) constructing the server filter registry to indicate an order in which the filters are to be invoked.
34. The method of claim 23 wherein step (b) includes the step of:
(b2) constructing the server filter registry with an indication of parameters required by each filter, and step (c) comprises the step of:
(c2) constructing the client filter registry with an indication of parameters required by each filter.
35. The method of claim 23 further comprising the step of:
(f) using filter registration application programmer interfaces to add and remove filters from the plurality of filters and the server filter registry during distributed object system operation.
36. The method of claim 35 further comprising the step of:
(g) storing an indication reflecting the current composition of the plurality of server filters in a storage in the server object.
37. The method of claim 36 further comprising the step of:
(h) sending the indication from the server object to the client object.
38. The method of claim 37 further comprising the steps of:
(i) including the indication in the method invocation;
(.1) receiving the method invocation in the server object; and (k) alerting the client object if the indication in the received method invocation indicates that the client filter registry does not include the current composition of the plurality of server filters.
39. The method of claim 23 further comprising the step of:
(l) downloading filter code from the server object to the client object so that the client object can run the filter code.
40. A computer program product for providing a framework for the execution of application program-specified code at selected points during a method invocation in a distributed object system having client and server objects, the computer program product comprising a computer usable medium having computer readable program code thereon including:
program code for constructing a plurality of server filters, each of the server filters having an identifier and executing selected code during the method invocation.
program code for constructing a server filter registry in the server object, the server filter registry containing filter identifiers and a method for retrieving the filter identifiers from the registry;
program code for constructing a client filter registry in the client object, the client filter registry containing filter identifiers, obtained from the server object in response to the invocation of the method for retrieving the filter identifiers; and program code in the client object for selectively invoking at least one of the server filters using the filter identifiers in the client filter registry.
41. The computer program product of claim 40 wherein the distributed object system includes an object request broker which transmits the method invocation from the client object to the server object and wherein the program code for constructing filters comprises program code for constructing the server filters in implementation specific code which connects the server object to the object request broker.
42. The computer program product of claim 41 further comprising program code for constructing a plurality of client filters, each having an identifier and being located in the object request broker.
43. The computer program product of claim 42 wherein the program code for constructing a client filter registry comprises program code for constructing the client filter registry with filter identifiers for both the client filters and the server filters.
44. The computer program product of claim 41 wherein the object request broker includes a marshaling and unmarshaling mechanism operable during the method invocation and the program code for constructing the plurality of filters comprises program code for constructing a pre-filter which executes code before the marshaling and unmarshaling operates.
45. The computer program product of claim 41 wherein the object request broker includes a marshaling and unmarshaling mechanism operable during the method invocation and the program code for constructing a plurality of filters comprises program code for constructing a post-filter which executes code after the marshaling and unmarshaling mechanism operates.
46. The computer program product of claim 41 wherein the object request broker includes a marshaling and unmarshaling mechanism operable during the method invocation and the program code for constructing a plurality of filters comprises:
program code for constructing a pre-filter which executes code before the marshaling and unmarshaling operates;

program code for constructing a post-filter which executes code after the marshaling and unmarshaling mechanism operates;
program code for constructing a transform filter which executes code before the pre-filter; and program code for constructing a transform filter which executes code after the post-filter.
47. The computer program product of claim 41 wherein the program code for invoking at least one of the server filters comprises program code for utilizing all the filters effected in the implementation specific code which connects the server object to the object request broker.
48. The computer program product of claim 47 wherein the program code for constructing a plurality of filters comprises program code for constructing each filter with a unique identifier.
49. The computer program product of claim 40 wherein the program code for constructing a plurality of filters comprises program code for constructing the plurality of filters with hierarchical filter identifiers.
50. The computer program product of claim 40 wherein the program code for constructing the server filter registry comprises program code for constructing the server filter registry to indicate an order in which the filters are to be invoked.
51. The computer program product of claim 40 wherein the program code for constructing the server filter registry comprises program code for constructing the server filter registry with an indication of parameters required by each filter, and the program code for constructing the client filter registry comprises program code for constructing the client filter registry with an indication of parameters required by each filter.
52. The computer program product of claim 40 further comprising filter registration application programmer interfaces for adding and removing filters from the plurality of filters and the server filter registry during distributed object system operation.
53. The computer program product of claim 52 further comprising program code for storing an indication reflecting the current composition of the plurality of server filters in a storage in the server object.
54. The computer program product of claim 53 further comprising program code for sending the indication from the server object to the client object.
55. The computer program product of claim 54 further comprising:
program code for including the indication in the method invocation;
program code for receiving the method invocation in the server object;
and program code for alerting the client object if the indication in the received method invocation indicates that the client filter registry does not include the current composition of the plurality of server filters.
56. The computer program product of claim 40 further comprising program code for downloading filter code from the server object to the client object so that the client object can run the filter code.
CA002255406A 1997-12-18 1998-12-04 Method and apparatus for executing code during method invocation Abandoned CA2255406A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US08/993,287 1997-12-18
US08/993,287 US6249803B1 (en) 1997-12-18 1997-12-18 Method and apparatus for executing code during method invocation

Publications (1)

Publication Number Publication Date
CA2255406A1 true CA2255406A1 (en) 1999-06-18

Family

ID=25539346

Family Applications (1)

Application Number Title Priority Date Filing Date
CA002255406A Abandoned CA2255406A1 (en) 1997-12-18 1998-12-04 Method and apparatus for executing code during method invocation

Country Status (4)

Country Link
US (1) US6249803B1 (en)
EP (1) EP0924617A3 (en)
JP (1) JP2000029730A (en)
CA (1) CA2255406A1 (en)

Families Citing this family (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6405264B1 (en) * 1997-12-18 2002-06-11 Sun Microsystems, Inc. Marshaling and unmarshaling framework for supporting filters in a distributed object system
GB9828794D0 (en) * 1998-12-29 1999-02-17 Sgs Thomson Microelectronics Generation of a system model
WO2000045238A2 (en) * 1999-01-29 2000-08-03 Iona Technologies, Inc. Dynamic configuration of activators in a client-server environment
US6412010B1 (en) * 1999-06-18 2002-06-25 Hewlett-Packard Company Apparatus and method for implementing a network protocol that supports the transmission of a variable number of application-usable object over a network as a single network transmittable container object and the re-creation of those application-usable object therefrom
DE60039554D1 (en) * 1999-06-25 2008-09-04 Canon Res Ct France S A Distributed management of data objects in a communication network
US6556220B1 (en) * 1999-10-21 2003-04-29 International Business Machines Corporation Method and system to display, modify or substitute the contents of self-describing objects
US6912578B1 (en) * 2000-02-25 2005-06-28 Sun Microsystems, Inc. Method and apparatus for improving utilization of a resource on a shared client
US7962603B1 (en) 2000-06-06 2011-06-14 Nobuyoshi Morimoto System and method for identifying individual users accessing a web site
US7543304B2 (en) * 2000-12-14 2009-06-02 Borland Software Corporation Method for efficient location of corba objects based on an unmarshaled object key in a request
US7457858B1 (en) * 2001-04-02 2008-11-25 Fujitsu Limited Filtering network management messages
BR0209200A (en) * 2001-04-27 2004-07-06 Simdesk Technologies Inc High speed server system
US20030236925A1 (en) * 2001-05-17 2003-12-25 Dusan Balek Interactive portable object adapters support in an integrated development environment
US20030177484A1 (en) * 2002-03-15 2003-09-18 Bosschaert Allaert J. D. Firewall class loader
US6925586B1 (en) * 2002-05-09 2005-08-02 Ronald Perrella Methods and systems for centrally-controlled client-side filtering
US7406695B2 (en) * 2003-01-17 2008-07-29 Sap Aktiengesellschaft Automatically upgradeable extension of software
FR2877116B1 (en) * 2004-10-27 2012-04-27 Thales Sa LOCAL SERVICE CALLING SYSTEM OF AT LEAST ONE LOCAL APPLICATION WITH CLASSIC MESSAGING ARCHITECTURE FROM AT LEAST ONE REMOTE APPLICATION WITH CLASSIC MESSAGING ARCHITECTURE
US7933881B2 (en) * 2006-03-17 2011-04-26 Microsoft Corporation Concurrency control within an enterprise resource planning system
US20080201481A1 (en) * 2007-02-20 2008-08-21 Microsoft Corporation Remote interface marshalling
US10325206B2 (en) * 2014-06-09 2019-06-18 Cognitive Scale, Inc. Dataset engine for use within a cognitive environment
US10262264B2 (en) 2014-06-09 2019-04-16 Cognitive Scale, Inc. Method for performing dataset operations within a cognitive environment

Family Cites Families (61)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4823310A (en) 1987-08-10 1989-04-18 Wang Laboratories, Inc. Device for enabling concurrent access of indexed sequential data files
US5218699A (en) 1989-08-24 1993-06-08 International Business Machines Corporation Remote procedure calls in heterogeneous systems
AU639802B2 (en) 1990-08-14 1993-08-05 Oracle International Corporation Methods and apparatus for providing dynamic invocation of applications in a distributed heterogeneous environment
AU628264B2 (en) * 1990-08-14 1992-09-10 Oracle International Corporation Methods and apparatus for providing a client interface to an object-oriented invocation of an application
US5263160A (en) 1991-01-31 1993-11-16 Digital Equipment Corporation Augmented doubly-linked list search and management method for a system having data stored in a list of data elements in memory
CA2098461A1 (en) * 1992-06-17 1993-12-18 Antony S. Williams Method and system for registering data formats for objects
JPH06103075A (en) 1992-07-06 1994-04-15 Internatl Business Mach Corp <Ibm> Operation for object-oriented application
US5307490A (en) 1992-08-28 1994-04-26 Tandem Computers, Inc. Method and system for implementing remote procedure calls in a distributed computer system
EP0596591B1 (en) * 1992-10-09 1998-04-15 Sun Microsystems, Inc. Method and apparatus for a real-time data collection and display system
DE69327448T2 (en) 1992-12-21 2004-03-04 Sun Microsystems, Inc., Mountain View Method and device for subtasks in a distributed processing system
US5566302A (en) 1992-12-21 1996-10-15 Sun Microsystems, Inc. Method for executing operation call from client application using shared memory region and establishing shared memory region when the shared memory region does not exist
US5455951A (en) 1993-07-19 1995-10-03 Taligent, Inc. Method and apparatus for running an object-oriented program on a host computer with a procedural operating system
US5379432A (en) 1993-07-19 1995-01-03 Taligent, Inc. Object-oriented interface for a procedural operating system
US5481706A (en) 1993-11-01 1996-01-02 International Business Machines Corporation System and method for creating thread-safe shared libraries
US5699518A (en) * 1993-11-29 1997-12-16 Microsoft Corporation System for selectively setting a server node, evaluating to determine server node for executing server code, and downloading server code prior to executing if necessary
US5515508A (en) 1993-12-17 1996-05-07 Taligent, Inc. Client server system and method of operation including a dynamically configurable protocol stack
US5491800A (en) 1993-12-20 1996-02-13 Taligent, Inc. Object-oriented remote procedure call networking system
US5734903A (en) * 1994-05-13 1998-03-31 Apple Computer, Inc. System and method for object oriented message filtering
US5540014A (en) 1994-06-15 1996-07-30 Smith; A. Graeme Plant cover
US5832487A (en) 1994-12-15 1998-11-03 Novell, Inc. Replicated object identification in a partitioned hierarchy
US5577261A (en) 1995-01-23 1996-11-19 Tandem Computers Incorporated Ordered and reliable maintenance of inter-process relationships in a distributed multiprocessor
US5758342A (en) 1995-01-23 1998-05-26 International Business Machines Corporation Client server based multi-processor file system wherein client files written to by a client processor are invisible to the server
US5790848A (en) 1995-02-03 1998-08-04 Dex Information Systems, Inc. Method and apparatus for data access and update in a shared file environment
EP0729097A1 (en) 1995-02-07 1996-08-28 Sun Microsystems, Inc. Method and apparatus for run-time memory access checking and memory leak detection of a multi-threaded program
US5819093A (en) * 1995-03-03 1998-10-06 Sun Microsystems, Inc. System and method for a distributed debugger for debugging distributed application programs
US5793965A (en) 1995-03-22 1998-08-11 Sun Microsystems, Inc. Method and apparatus for determining the type of an object in a distributed object system
US5724503A (en) 1995-03-31 1998-03-03 Sun Microsystems, Inc. Method and apparatus for interpreting exceptions in a distributed object system
US5787447A (en) 1995-05-08 1998-07-28 Sun Microsystems, Inc. Memory allocation maintaining ordering across multiple heaps
US5748963A (en) 1995-05-12 1998-05-05 Design Intelligence, Inc. Adaptive binding
DE19519104C1 (en) 1995-05-24 1996-05-23 Siemens Ag Program error removal in program-controlled communication devices
US5852731A (en) 1995-06-05 1998-12-22 International Business Machines Corporation Computer program product for synchronizing static variable initialization and reference under a multi-threaded computer environment
US5761499A (en) 1995-12-21 1998-06-02 Novell, Inc. Method for managing globally distributed software components
US5881315A (en) * 1995-08-18 1999-03-09 International Business Machines Corporation Queue management for distributed computing environment to deliver events to interested consumers even when events are generated faster than consumers can receive
US5682534A (en) 1995-09-12 1997-10-28 International Business Machines Corporation Transparent local RPC optimization
US5892946A (en) 1995-09-12 1999-04-06 Alcatel Usa, Inc. System and method for multi-site distributed object management environment
US5737607A (en) 1995-09-28 1998-04-07 Sun Microsystems, Inc. Method and apparatus for allowing generic stubs to marshal and unmarshal data in object reference specific data formats
JP3426428B2 (en) * 1995-10-27 2003-07-14 富士通株式会社 Transaction tracing device
JP3097525B2 (en) * 1995-11-10 2000-10-10 株式会社日立製作所 Data transmission method for performing information filtering
US5958006A (en) * 1995-11-13 1999-09-28 Motorola, Inc. Method and apparatus for communicating summarized data
US5761670A (en) 1995-12-08 1998-06-02 Sun Microsystems, Inc. System and method for space efficient object locking using global and local locks
US5751962A (en) 1995-12-13 1998-05-12 Ncr Corporation Object-based systems management of computer networks
US5870605A (en) * 1996-01-18 1999-02-09 Sun Microsystems, Inc. Middleware for enterprise information distribution
US5848236A (en) * 1996-03-22 1998-12-08 Sun Microsystems, Inc. Object-oriented development framework for distributed hardware simulation
US5928323A (en) 1996-05-30 1999-07-27 Sun Microsystems, Inc. Apparatus and method for dynamically generating information with server-side software objects
US5862376A (en) 1996-06-24 1999-01-19 Sun Microsystems, Inc. System and method for space and time efficient object locking
US6044409A (en) 1996-06-26 2000-03-28 Sun Microsystems, Inc. Framework for marshaling and unmarshaling argument object references
US5727145A (en) * 1996-06-26 1998-03-10 Sun Microsystems, Inc. Mechanism for locating objects in a secure fashion
US5991823A (en) * 1996-06-26 1999-11-23 Sun Microsystems, Inc. Low overhead object adaptor
US5815703A (en) * 1996-06-28 1998-09-29 Microsoft Corporation Computer-based uniform data interface (UDI) method and system using an application programming interface (API)
US5974410A (en) * 1996-06-28 1999-10-26 Microsoft Corporation Method and system for filtering in a uniform data interface
US5835906A (en) 1996-07-01 1998-11-10 Sun Microsystems, Inc. Methods and apparatus for sharing stored data objects in a computer system
US5809507A (en) * 1996-07-01 1998-09-15 Sun Microsystems, Inc. Method and apparatus for storing persistent objects on a distributed object network using a marshaling framework
US5915252A (en) * 1996-09-30 1999-06-22 International Business Machines Corporation Object oriented framework mechanism for data transfer between a data source and a data target
US6128640A (en) 1996-10-03 2000-10-03 Sun Microsystems, Inc. Method and apparatus for user-level support for multiple event synchronization
US5873116A (en) 1996-11-22 1999-02-16 International Business Machines Corp. Method and apparatus for controlling access to data structures without the use of locks
US5913038A (en) * 1996-12-13 1999-06-15 Microsoft Corporation System and method for processing multimedia data streams using filter graphs
US5864866A (en) * 1997-03-26 1999-01-26 International Business Machines Corporation Apparatus and method for providing externalization in an object-oriented environment
JPH1139209A (en) 1997-07-07 1999-02-12 Internatl Business Mach Corp <Ibm> Device and method for controlling access to computer resource
US6016499A (en) 1997-07-21 2000-01-18 Novell, Inc. System and method for accessing a directory services respository
US5978940A (en) * 1997-08-20 1999-11-02 Mci Communications Corporation System method and article of manufacture for test operations
US5926775A (en) 1997-10-08 1999-07-20 National Instruments Corporation Mini driver software architecture for a data acquisition system

Also Published As

Publication number Publication date
EP0924617A3 (en) 2004-12-15
JP2000029730A (en) 2000-01-28
US6249803B1 (en) 2001-06-19
EP0924617A2 (en) 1999-06-23

Similar Documents

Publication Publication Date Title
US6405264B1 (en) Marshaling and unmarshaling framework for supporting filters in a distributed object system
US6249803B1 (en) Method and apparatus for executing code during method invocation
US6434543B1 (en) System and method for reliable caching of database connections in a distributed application
EP0648354B1 (en) Method and system for implementation-independent interface specification
Schmidt et al. Pattern-oriented software architecture, patterns for concurrent and networked objects
JP3251800B2 (en) Communication system for exchanging data between computers in a network
Schmidt et al. C++ Network Programming, Volume 2: Systematic Reuse with ACE and Frameworks
US6947965B2 (en) System and method for communications in a distributed computing environment
US5864866A (en) Apparatus and method for providing externalization in an object-oriented environment
Schmidt Applying patterns and frameworks to develop object-oriented communication software
US7607128B2 (en) Method and system for enabling a server application to be executed in the same virtual machine as a client application using direct object oriented programming method calls
US6931455B1 (en) System and method for communications between a CORBA object request broker and a non-CORBA object request broker
US20020199036A1 (en) Downloadable smart proxies for performing processing associated with a remote procedure call in a distributed system
EP1117035A1 (en) Runtime environment component services
JP2002507017A (en) Modular application collaboration, including filtering at the source and proxy execution of compensating transactions to conserve server resources
US6516354B2 (en) Method and apparatus for efficient representation of variable length identifiers in a distributed object system
CA2255393A1 (en) Method and apparatus for constructing stable iterators in a shared data collection
US7010609B1 (en) System and method for adding transport protocols in distributed middleware applications
Costa et al. The role of reflective middleware in supporting the engineering of dynamic applications
US6510460B1 (en) Method and apparatus for enforcing locking invariants in multi-threaded systems
US6813629B1 (en) Method and apparatus for facilitating object communication across a network
CN113835904A (en) Remote procedure call control method, device, equipment and storage medium
JP2004240890A (en) Middleware transparent distributed application access system
CN115994077A (en) Service simulation processing method and related equipment
Newcomer et al. STDL as a high-level interoperability concept for distributed transaction processing systems

Legal Events

Date Code Title Description
FZDE Discontinued