X36DSV - LS 2011/12 - Virtuální tabule
XML
- přidání formátovacího stylu
<?xml-stylesheet type="text/xsl" href="messages.xsl"?>
- přidání informace o schématu
<noticeboard xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="messages.xsd">
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;
};
};