ICE 3.4.2
[php5-ice-freebsdport.git] / java / demo / Ice / hello / README
blob0cc7c5b7cc944502bfef620c8213a561bfbdabc9
1 This demo illustrates how to invoke ordinary (twoway) operations, as
2 well as how to make oneway, datagram, secure, and batched invocations.
4 To run the demo, first start the server:
6 $ java Server
8 In a separate window, start the client:
10 $ java Client
12 To test timeouts you can use 'T' to set a timeout on the client proxy 
13 and 'P' to set a delayed response in the server to cause a timeout.
14 You will notice that two "Hello World!" messages will be printed by
15 the server in this case. This is because the sayHello method is marked
16 as idempotent in the slice, meaning that Ice does not need to follow
17 the at-most-once retry semantics. See the manual for more information
18 about retry behavior.