Tools
corbajav.txt
Associated article: Building Distributed Applications with Java and CORBA
Tags: Tools Open Source JVM Languages
Published source code accompanying the article by Bryan Morgan in which examines the concepts behind CORBA-based development, using Borland's JBuilder and Visigenic's VisiBroker for Java. Also see CORBAJAV.ZIP
Building Distributed Applications With Java and CORBA
by Bryan Morgan
Listing One
Module TheModule
{
interface TheInterface
{
long TheAttribute;
};
};
Listing Two
package TheModule;
public interface TheInterface
{
public int TheAttribute;
}
Listing Three
// EMPLOYEE represents a single employee's personal information
module EmployeeServer
{
struct ...


