Web Development
corbean.txt
Associated article: An Architecture for Web Services
Tags: Web Development
Published source code accompanying the article by David Houlding in which he discusses an architecture that facilitates both the publication of distributed object services on the web and the subsequent reuse of these web services by application developers. For an interactive demo, see http://www.trcinc.com/corbabeans/.
An Architecture for Web Services
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 ...


