WO2004079512A2 - Dynamic code generation - Google Patents

Dynamic code generation Download PDF

Info

Publication number
WO2004079512A2
WO2004079512A2 PCT/US2004/005396 US2004005396W WO2004079512A2 WO 2004079512 A2 WO2004079512 A2 WO 2004079512A2 US 2004005396 W US2004005396 W US 2004005396W WO 2004079512 A2 WO2004079512 A2 WO 2004079512A2
Authority
WO
WIPO (PCT)
Prior art keywords
code
class file
class
program product
computer program
Prior art date
Application number
PCT/US2004/005396
Other languages
French (fr)
Other versions
WO2004079512A3 (en
Inventor
William John Gallagher
Original Assignee
Bea Systems 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
Priority claimed from US10/706,516 external-priority patent/US7536675B2/en
Priority claimed from US10/712,384 external-priority patent/US20040172614A1/en
Application filed by Bea Systems Inc. filed Critical Bea Systems Inc.
Publication of WO2004079512A2 publication Critical patent/WO2004079512A2/en
Publication of WO2004079512A3 publication Critical patent/WO2004079512A3/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/31Programming languages or programming paradigms
    • G06F8/315Object-oriented languages
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/448Execution paradigms, e.g. implementations of programming paradigms
    • G06F9/4488Object-oriented
    • G06F9/449Object-oriented method invocation or resolution

Definitions

  • the current invention relates generally to automatically generating program code, and more particularly to high level hot code generation in an object based programming language.
  • Application server systems provide an environment that allows client applications to implement services over a server network.
  • the application server network may include vendor resources for providing services to the client applications.
  • One such application server system is Web Logic Server, provided by BEA Systems of San Jose, CA.
  • a proxy is a class that has the same interface as some other class that it is taking the place of.
  • An adapter takes the place of some class and exposes it through a different interface.
  • a typical application server system implements a large number of proxies as resources are invoked and other services are performed. Many of these proxies require substantial amounts of code while often utilized for limited periods of time. Thus, it is not desirable to implement the interfaces for the lifetime of the application server system.
  • Java dynamic proxies require that an interface and an invocation handler be provided by a user, h return, the Java dynamic proxy generation system provides a class that will forward invocations to the invocation handler. Java dynamic proxies are limited in the types of classes that they generate.
  • FIGURE 1 is an illustration of a method for automatically generating program code in accordance with one embodiment of the present invention.
  • the automatic program code generator of the present invention provides a high level means to dynamically generate code.
  • the program code generator is configured to generate code at a programming language construct level, thereby working at a level of program language statements, expressions, variables, and other constructs.
  • the code generation can occur as part of a stand-alone application or within the application server process. Typically, the code generated would be configured to exist for the life of the server. In one embodiment, the code generated could be configured to last for some time shorter or longer than the server it resides on, depending on the application and scope of the code generated.
  • FIG. 1 illustrates a method 100 for automatically generating program code in accordance with one embodiment of the present invention.
  • Method 100 begins with start step 105.
  • a class file container object is created in step 110.
  • the class file container object is a representation of a class file.
  • creating a class file container object includes setting attributes for the class file.
  • the attributes may include the class file name, parent super class, and other attributes.
  • a method is then added to the class file object at step 120. At generation, the method is empty and contains no code. Step 120 may be repeated several times depending on the number of methods that will be contained within the class file.
  • Modifier.PUBLIC Modifier. STATIC
  • the class file container object is generated using the ClassFile statement at line 213.
  • a method is added using the addMethod(NAME, DESCRIPTOR, MODIFIERS) method, wherein the NAME is the name associated with the method.
  • the NAME is "main”.
  • Information regarding the method "main” is provided at line 220 in the parameters DESCRIPTOR and MODIFIERS.
  • the "addMethod” method returns a handle to the method called "methodHandle”.
  • Code is then compiled into a list of statements using the statements at lines 236 and 240. The code is associated with a particular method using a methodHandle. add( ) statement, wherein methodHandle refers to the method added at line 219.
  • Code is added to a method using a methodHandle.setCode (XXX) format, wherein "methodHandle” is a handle to the method to populate with code and XXX identifies the code.
  • XXX methodHandle.setCode
  • code adds two lines of code tagged with "code” to the method "method”.
  • the class file is then / written using a classFile.write (YYY) format, wherein the YYY represents the file output stream.
  • the class above is a simplified example that is configured to generate text that reads, "Hello World!”.
  • the pseudo code above illustrates code for generating two types of expressions, an invoke expression and a return statement. This illustration is for illustrative purposes only. Other expressions, statements, variables, and other programming constructs are within the scope of the present invention.
  • These programming constructs may include, but are not limited to, switch statements, array expressions (such as an expression allowing one to index into an array), cast expressions (allowing a cast from one object type to another), compound statements (a list of statements), conditional expressions (including Boolean expressions), constant expressions (for all primitive programming types), invoke expressions (for invoking methods on different types of objects), expressions that represent local variables of a method, and expressions for creating new objects and arrays.
  • the code generation tool of the present invention may be configured to include an expression that represents each Java programming expression and a statement that represents each Java programming statement.
  • Dynamic code generation can be used to implement an adaptor class in a similar manner to that discussed above. In this embodiment of the present invention, the generated adapter class that may look like the code shown below.
  • the present invention includes a computer program product which is a storage medium (media) having instructions stored thereon/in which can be used to program a computer to perform any of the processes of the present invention.
  • the storage medium can include, but is not limited to, any type of disk including floppy disks, optical discs, DVD, CD-ROMs, microdrive, and magneto-optical disks, ROMs, RAMs, EPROMs, EEPROMs, DRAMs, VRAMs, flash memory devices, magnetic or optical cards, nanosystems (including molecular memory ICs), or any type of media or device suitable for storing instructions and/or data.
  • the present invention includes software for controlling both the hardware of the general purpose/specialized computer or microprocessor, and for enabling the computer or microprocessor to interact with a human user or other mechanism utilizing the results of the present invention.
  • software may include, but is not limited to, device drivers, operating systems, and user applications.
  • Included in the programming (software) of the general/specialized computer or microprocessor are software modules for implementing the teachings of the present invention, including, but not limited to, assembling class file objects, generating a parse tree, instantiating class file objects, and generating byte code.

Abstract

A system and method for high level dynamic hot code generation. A class file container object is first created. Methods and code are then added to the class file container object. Byte code is then generated from the populated class file container object. From the byte code, instances of the new class object can by generated. The program code generator is configured to generate code at a programming language construct level, thereby working at a level of program language statements, expressions, variables, and other constructs.

Description

DYNAMIC CODE GENERATION
Claim to Priority
[0001] The present application claims priority to the following applications which are incorporated herein:
[0002] U.S. Provisional Patent Application entitled "A SYSTEM FOR GENERATING HOT CODE", Application No. 60/450,720, filed on February
28, 2003.
[0003] U.S. Patent Application entitled "HOT CODE GENERATION
METHOD," Application No. 60/450,987 by William John Gallagher and filed on February 28, 2003. [0004] United States Patent Application No. 10/706,516 "DYNAMIC CODE
GENERATION SYSTEM," filed on November 12, 2003, Attorney Docket No.
BEAS-1316US2, currently pending.
[0005] United States Patent Application No. 10/712,384, entitled "DYNAMIC
CODE GENERATION METHOD", filed on November 12, 2003, Attorney Docket No. BEAS- 1316US3, currently pending.
Copyright Notice [0006] 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.
Cross Reference to Related Applications
[0007] The present application is related to the following United States Patents and Patent Applications, which patents/applications are assigned to the owner of the present invention, and which patents/applications are incorporated by reference herein in their entirety: [0008] United States Patent Application No.10/706,515 entitled "DYNAMICALLY GENERATED WRAPPER", filed on November 12, 2003 Attorney Docket No. BEAS-1339US2, currently pending.
Field of the Invention
[0009] The current invention relates generally to automatically generating program code, and more particularly to high level hot code generation in an object based programming language.
Background of the Invention
[0010] Application server systems provide an environment that allows client applications to implement services over a server network. The application server network may include vendor resources for providing services to the client applications. One such application server system is Web Logic Server, provided by BEA Systems of San Jose, CA.
[0011] As vendor resources and application server utilities are used by client applications, it is often necessary to introduce adapters or proxies to mediate requests between clients and application server resources. A proxy is a class that has the same interface as some other class that it is taking the place of. An adapter takes the place of some class and exposes it through a different interface. A typical application server system implements a large number of proxies as resources are invoked and other services are performed. Many of these proxies require substantial amounts of code while often utilized for limited periods of time. Thus, it is not desirable to implement the interfaces for the lifetime of the application server system.
[0012] One approach is to have a user initiate code generation for the interfaces only when the interface is actually needed. In this case, a client application may run a code generation tool to statically generate a Java file and compile the Java file into a class file. The user then makes the class available to the Java virtual machine. This approach is undesirable because it requires a user to manually perform many steps to generate the code. [0013] Another method for generating interfaces involves Java dynamic proxies. Java dynamic proxies require that an interface and an invocation handler be provided by a user, h return, the Java dynamic proxy generation system provides a class that will forward invocations to the invocation handler. Java dynamic proxies are limited in the types of classes that they generate. [0014] It not possible, for example, to generate a class that is a subclass of a user defined class. Another problem with dynamic proxies is that they are not as efficient as dynamic code generation. To implement many types of proxies, it is often necessary to use reflection within the invocation handler. Reflection is not as efficient as early bound invocation. There is also a cost associated with the way that dynamic proxies marshal the arguments for an invocation into an object array.
[0015] What is needed is an improved system and method for generating program code at runtime for any type of class. Summary of the Invention [0016] The present invention includes a system and method for high level dynamic hot code generation. A class file container object is first created. Methods and code are then added to the class file container object. Byte code is then generated from the populated class file container object. From the byte code, instances of the new class object can by generated. The program code generator is configured to generate code at a programming language construct level, thereby working at a level of program language statements, expressions, variables, and other constructs.
Brief Description of the Drawings
[0017] FIGURE 1 is an illustration of a method for automatically generating program code in accordance with one embodiment of the present invention.
Detailed Description [0018] The automatic program code generator of the present invention provides a high level means to dynamically generate code. The program code generator is configured to generate code at a programming language construct level, thereby working at a level of program language statements, expressions, variables, and other constructs. The code generation can occur as part of a stand-alone application or within the application server process. Typically, the code generated would be configured to exist for the life of the server. In one embodiment, the code generated could be configured to last for some time shorter or longer than the server it resides on, depending on the application and scope of the code generated.
[0019] In one embodiment, the Java based automatic program code generator may be used to generate code for any type of Java program. The invention is especially useful when used to build efficient adapters and proxies. Applications of the Java automatic code generator include but are not limited to remote method invocation (RMI) skeletons, RMI stubs, wrappers for JDBC connections, and proxies used to enforce call-by-value semantics between EJBs, the latter of which are applied to copying parameters. Typically, the code implementing a proxy or adaptor is dynamically generated when the code is needed, such as when a remote method is invoked on a resource. However, the dynamic code generation of the present invention may occur at any time depending on the particular application and resource available. [0020] An API may be used to define a method or code in the method that will comprise the class file container object. FIG. 1 illustrates a method 100 for automatically generating program code in accordance with one embodiment of the present invention. Method 100 begins with start step 105. Next, a class file container object is created in step 110. The class file container object is a representation of a class file. In one embodiment, creating a class file container object includes setting attributes for the class file. The attributes may include the class file name, parent super class, and other attributes. [0021] A method is then added to the class file object at step 120. At generation, the method is empty and contains no code. Step 120 may be repeated several times depending on the number of methods that will be contained within the class file. For example, for a stub generated for a remote object, the stub may include several methods. In this case, for each method in the remote interface, a method would be added to the new class file container object. Code may then be added to the method at step 130. In one embodiment, code is added to a method using constructs that correspond to Java language statements, expressions, variables, or any other programming elements. Each of these constructs may include parameters as necessary. [0022] Steps 120-130 generate a tree of statements and expressions. The tree represents at least one method containing at least one code statement, expression, variable, or other programming construct.
[0023] When the class file container is to be a known type, such as a proxy or adapter, the tree may form a known structure or interface. The organization of the objects in a particular structure or interface avoids the need for a compiler. In one embodiment of the present invention, each statement or expression type is represented as an object. The assembling of received objects into new class objects may be modified to fulfill specific program code implementations and applications. [0024] After the class file container object methods and code have been added, Java bytecode may be generated at step 140. In operation, each statement maintains the state of the program being generated. The maintained state includes, among other things, the contents of the stack and the contents of the local variables that are in use at each point of the program flow. The statement uses this state to generate an intermediate representation of the program flow that consists of Java objects that represent individual bytecode instructions. A bytecode assembler converts the intermediate representation into bytecode that can be interpreted by a Java virtual machine. [0025] After generating the byte code for the class file container object, an instance of the new class file object may be generated at step 150. Operation of method 100 then terminates at step 155. A class loader can be used to generate executable code from the generated byte code.
[0026] A pseudo code example of the API used to generate code as discussed above is shown below. Line numbers 201-206 are illustrated for reference purposes only. import java.io.*; 201 import j ava.lang.reflect. * ;
import weblogic.utils.classfile.*; import weblogic.utils.classfile.expr.*;
public class gen {
public static void main(String[] args) throws Exception { 210
FileOutputStream fos = new FileOutputStream("MyClass.class");
ClassFile classFile = new ClassFile(); 213 classFile.setClassName("MyClass"); classFile.setSuperClassName("java.lang.Object");
// adds the method:
// public static void main(String[] s) { ... } Methodh fo methodHandle = 219 classFile.addMethod("main", "([Ljava lang/String;)V", 220
Modifier.PUBLIC | Modifier. STATIC);
Field f = System.class.getField("out"); Method m =
PrintStream.class.getMethod("println", new Class[] { String.class}
); Expression[] arguments = new Expression^ { Const.get("Hello World!") }; 230
Compounds tatement code = new CompoundStatement();
// add the code:
// System.out.ρrintln("Hello World!"); code.add(new InvokeExpression(f, m, arguments)); 236
// add the code:
// return; code.add(new ReturnStatementQ); 240
methodHandle.setCode(code);
242
classFile.write(fos); 244
}
}
[0027] hi the pseudo code above, the class file container object is generated using the ClassFile statement at line 213. A method is added using the addMethod(NAME, DESCRIPTOR, MODIFIERS) method, wherein the NAME is the name associated with the method. At line 220, the NAME is "main". Information regarding the method "main" is provided at line 220 in the parameters DESCRIPTOR and MODIFIERS. The "addMethod" method returns a handle to the method called "methodHandle". Code is then compiled into a list of statements using the statements at lines 236 and 240. The code is associated with a particular method using a methodHandle. add( ) statement, wherein methodHandle refers to the method added at line 219. Code is added to a method using a methodHandle.setCode (XXX) format, wherein "methodHandle" is a handle to the method to populate with code and XXX identifies the code. In the pseudo code above, the statement method. setCode (code) adds two lines of code tagged with "code" to the method "method". The class file is then /written using a classFile.write (YYY) format, wherein the YYY represents the file output stream.
[0028] The pseudo code above generates the following class.
import java.io.PrintStream;
public final class MyClass {
public static void main(String args[])
{ System.out.ρrintln("Hello World!");
} }
[0029] The class above is a simplified example that is configured to generate text that reads, "Hello World!". The pseudo code above illustrates code for generating two types of expressions, an invoke expression and a return statement. This illustration is for illustrative purposes only. Other expressions, statements, variables, and other programming constructs are within the scope of the present invention. These programming constructs may include, but are not limited to, switch statements, array expressions (such as an expression allowing one to index into an array), cast expressions (allowing a cast from one object type to another), compound statements (a list of statements), conditional expressions (including Boolean expressions), constant expressions (for all primitive programming types), invoke expressions (for invoking methods on different types of objects), expressions that represent local variables of a method, and expressions for creating new objects and arrays. In one embodiment, the code generation tool of the present invention may be configured to include an expression that represents each Java programming expression and a statement that represents each Java programming statement. [0030] Dynamic code generation can be used to implement an adaptor class in a similar manner to that discussed above. In this embodiment of the present invention, the generated adapter class that may look like the code shown below.
interface Foo
{ public void bar();
}
FooProxy implements Foo
{ Foolmpl delegate;
public void bar() {
// perform some pre-processing // invoke delegate.bar(); // perform some post-processing
} }
[0031] As will be understood by those in the field of programming, this is much more efficient than using an invocation handler with Dynamic Proxies. [0032] 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.
[0033] The foregoing description of preferred embodiments of the present invention has been provided for the purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise forms disclosed. Obviously, many modifications and variations will be apparent to the practitioner skilled in the art. The embodiments were chosen and described in order to best explain the principles of the invention and its practical application, thereby enabling others skilled in the art to understand the invention for various embodiments and with various modifications that are suited to the particular use contemplated. It is intended that the scope of the invention be defined by the following claims and their equivalence.
[0034] hi addition to an embodiment consisting of specifically designed integrated circuits or other electronics, the present invention may be conveniently implemented using a conventional general purpose or a specialized digital computer or microprocessor programmed according to the teachings of the present disclosure, as will be apparent to those skilled in the computer art. [0035] Appropriate software coding can readily be prepared by skilled programmers based on the teachings of the present disclosure, as will be apparent to those skilled in the software art. The invention may also be implemented by the preparation of application specific integrated circuits or by interconnecting an appropriate network of conventional component circuits, as will be readily apparent to those skilled in the art.
[0036] The present invention includes a computer program product which is a storage medium (media) having instructions stored thereon/in which can be used to program a computer to perform any of the processes of the present invention. The storage medium can include, but is not limited to, any type of disk including floppy disks, optical discs, DVD, CD-ROMs, microdrive, and magneto-optical disks, ROMs, RAMs, EPROMs, EEPROMs, DRAMs, VRAMs, flash memory devices, magnetic or optical cards, nanosystems (including molecular memory ICs), or any type of media or device suitable for storing instructions and/or data.
[0037] Stored on any one of the computer readable medium (media), the present invention includes software for controlling both the hardware of the general purpose/specialized computer or microprocessor, and for enabling the computer or microprocessor to interact with a human user or other mechanism utilizing the results of the present invention. Such software may include, but is not limited to, device drivers, operating systems, and user applications. [0038] Included in the programming (software) of the general/specialized computer or microprocessor are software modules for implementing the teachings of the present invention, including, but not limited to, assembling class file objects, generating a parse tree, instantiating class file objects, and generating byte code.

Claims

hi the Claims:
1. A computer program product for execution by a server computer for automatically generating program code, comprising: computer code for creating a class file container object; computer code for adding a method to the class file object; computer code for adding code to the method; computer code for generating Java byte code for the class file container object; and computer code for generate an instance of the new class file object.
2. The computer program product of claim 1 wherein creating a class file container object includes: setting attributes for a class file.
3. The computer program product of claim 2 the attributes include at least one of class file name, parent super.
4. The computer program product of claim 1 wherein adding a method to the class file object includes: adding a plurality of methods to the class file object.
5. The computer program product of claim 1 wherein adding code to the method includes adding code to the method using constructs that correspond to programming language statements, expressions, and variables.
6. The computer program product of claim 5 wherein the constructs include parameters.
7. The computer program product of claim 5 wherein each statement, expression type, variable is represented as an object.
8. The computer program product of claim 1 wherein generating Java byte code for the class file container object includes: generating an intermediate representation of program flow.
9. The computer program product of claim 8 wherein generating Java byte code for the class file container object includes: converting the intermediate representation into byte code.
10. The computer program product of claim 1 wherein the program code implements an adaptor class.
11. The computer program product of claim 1 wherein the program code implements a proxy class.
12. A method for automatically generating program code, comprising: creating a class file container object; adding a method to the class file object; adding code to the method; generating Java byte code for the class file container object; and generate an instance of the new class file object.
13. The method of claim 12 wherein creating a class file container object includes: setting attributes for a class file.
14. The method of claim 13 the attributes include at least one of class file name, parent super.
15. The method of claim 12 wherein adding a method to the class file object includes: adding a plurality of methods to the class file object.
16. The method of claim 12 wherein adding code to the method includes adding code to the method using constructs that correspond to programming language statements, expressions, and variables.
17. The method of claim 16 wherein the constructs include parameters.
18. The method of claim 16 wherein each statement, expression type, variable is represented as an object.
19. The method of claim 16 wherein generating Java byte code for the class file container object includes: generating an intermediate representation of program flow.
20. The method of claim 19 wherein generating Java byte code for the class file container object includes: converting the intermediate representation into byte code.
21. The method of claim 12 wherein the program code implements an adaptor class.
22. The method of claim 12 wherein the program code implements a proxy class.
PCT/US2004/005396 2003-02-28 2004-02-23 Dynamic code generation WO2004079512A2 (en)

Applications Claiming Priority (8)

Application Number Priority Date Filing Date Title
US45072003P 2003-02-28 2003-02-28
US45098703P 2003-02-28 2003-02-28
US60/450,987 2003-02-28
US60/450,720 2003-02-28
US10/712,384 2003-11-12
US10/706,516 US7536675B2 (en) 2003-02-28 2003-11-12 Dynamic code generation system
US10/706,516 2003-11-12
US10/712,384 US20040172614A1 (en) 2003-02-28 2003-11-12 Dynamic code generation method

Publications (2)

Publication Number Publication Date
WO2004079512A2 true WO2004079512A2 (en) 2004-09-16
WO2004079512A3 WO2004079512A3 (en) 2005-06-02

Family

ID=32966703

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2004/005396 WO2004079512A2 (en) 2003-02-28 2004-02-23 Dynamic code generation

Country Status (1)

Country Link
WO (1) WO2004079512A2 (en)

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5999988A (en) * 1997-03-31 1999-12-07 Sun Microsystems, Inc. Method and apparatus for generating and employing a run-time generated stub to reference an object in object oriented systems
US6085198A (en) * 1998-06-05 2000-07-04 Sun Microsystems, Inc. Integrated three-tier application framework with automated class and table generation
US6523171B1 (en) * 1998-12-29 2003-02-18 International Business Machines Corporation Enhanced source code translator from procedural programming language (PPL) to an object oriented programming language (OOPL)

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5999988A (en) * 1997-03-31 1999-12-07 Sun Microsystems, Inc. Method and apparatus for generating and employing a run-time generated stub to reference an object in object oriented systems
US6085198A (en) * 1998-06-05 2000-07-04 Sun Microsystems, Inc. Integrated three-tier application framework with automated class and table generation
US6523171B1 (en) * 1998-12-29 2003-02-18 International Business Machines Corporation Enhanced source code translator from procedural programming language (PPL) to an object oriented programming language (OOPL)

Also Published As

Publication number Publication date
WO2004079512A3 (en) 2005-06-02

Similar Documents

Publication Publication Date Title
US7536675B2 (en) Dynamic code generation system
US20040172614A1 (en) Dynamic code generation method
US6622175B1 (en) System and method for communications in a distributed processing environment
US6199196B1 (en) Methods and apparatus for linking a program for remote execution
USRE43375E1 (en) System and method for communications in a distributed computing environment
US6629128B1 (en) System and method for distributed processing in a computer network
US6993774B1 (en) System and method for remote enabling classes without interfaces
US6493870B1 (en) Methods and apparatus for packaging a program for remote execution
US7213236B2 (en) Method of bridging between .Net and Java
US6877163B1 (en) Method and system for dynamic proxy classes
US20050240945A1 (en) System and method for dynamic generation of remote proxies
WO2004021220A1 (en) System for web service generation and brokering
US7574714B2 (en) System and method for providing interoperability between different programming protocols
JPH09101883A (en) Object directed communication frame work system and method for constructing plural application programs by using the frame work
US20090083769A1 (en) Communicating with remote objects in a data processing network
JPH09114753A (en) Method for using object-oriented communication system
US20040172639A1 (en) Method for dynamically generating a wrapper
US6675227B1 (en) Method for providing a service implementation for both EJB and non-EJB environments
US20040172640A1 (en) Dynamically generated wrapper
US20080271007A1 (en) System and method for managed tuxedo wrapper for .net applications
Weerawarana et al. Bean Markup Language: A Composition Language for {JavaBeans} Components
Schaaf et al. Integrating Java and CORBA: A programmer's perspective
US20060107222A1 (en) Dynamic generation of wrapper classes to implement call-by-value semantics
WO2004079512A2 (en) Dynamic code generation
Oberleitner et al. Composing distributed components with the Component Workbench

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A2

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

AL Designated countries for regional patents

Kind code of ref document: A2

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

121 Ep: the epo has been informed by wipo that ep was designated in this application
122 Ep: pct application non-entry in european phase