.NET
corbean.txt
Associated article: A CORBA Bean Framework
Tags: .NET C/C++
Published source code accompanying the article by David Houlding in which he presents a framework based on the JavaBeans standard that provides a layer of abstraction over CORBA--and in particular the CORBA Dynamic Invocation Interface (DII)--to encapsulate its complexity and facilitate visual rapid application development. Also see CORBABEAN.EXE.
A CORBA Bean Framework
by David Houlding
Listing One
module StoreServer {
struct ItemDescription {
long year;
string manufacturer;
string model;
string description;
};
struct ItemRecord {
ItemDescription description;
double cost;
};
typedef sequence<ItemRecord> ItemSequence;
interface InventoryServer {
ItemSequence getItems( in long year,
...


