Ok, so the server is listening on port 10000:
Code:
-- 3/15/2011 09:01:56:638 CalculatorServer090155217: Network: attempting to bind to tcp socket 192.168.20.206:10000
-- 3/15/2011 09:01:56:638 CalculatorServer090155217: Network: accepting tcp connections at 192.168.20.206:10000
-- 3/15/2011 09:01:56:638 CalculatorServer090155217: Network: published endpoints for object adapter `CalculatorAdapter':
tcp -h 192.168.20.206 -p 10000
and the client establishes a connection to this server (as expected):
Code:
-- 15/03/2011 09:03:10:234 OSLServer.exe: Network: trying to establish tcp connection to 192.168.20.206:10000
-- 15/03/2011 09:03:10:239 OSLServer.exe: Network: tcp connection established
local address = 192.168.20.212:3461
remote address = 192.168.20.206:10000
and then waits for the "validate connection" message from the server ... and waits and waits.
You don't get any trace for the server around the time this connection is established (09:03)?
Did you try to use an OS-assigned port for your server, in case there is some conflict with port 10000? (To do so, just don't specify -p 10000 in your server XML configuration).
Can you run the client on the same host as the server to see if it makes a difference?
Cheers,
Bernard