Weather Data Distribution & System Monitoring 
by Chris McClellen

Example 1:

typedef sequence<string> StringList;
exception UnknownNames {
	StringList names;
};
interface MonitorTarget {
	void getValues(in StringList names, out StringList values)
	  raises(UnknownNames);
	string ping();
	long getUpTime();		
};







1


