Table of Contents

X36DSV - ZS 2010/11 - Virtuální tabule

XML

XML-RPC

CORBA

Parametry ORB

-ORBInitialHost 192.168.30.118 -ORBInitialPort 54321

calc.idl

module Calculator {
	interface Calc {
		long secti(in long a, in long b);
		long odecti(in long a, in long b);
	};
};

definice pole

module idl {
  module data {
    struct Game {
      string gname;
      GameState state;
    };
  };
  
  interface IConnectFiveGame {
    //definice jednorozmerneho pole
    typedef sequence<data::Game> GamesT;
  };
};