Hi,
Setup: Ice version 3.3.1, VS 2009, Windows XP, Language C#.
I'm manually starting servers using IceGrid Admin and I notice the server must startup before the Ice connection timeout is exceeded.
I currently use Ice.Override.Timeout and I want to keep it small to keep the system responsive. However, I would like a larger value when starting servers.
Is it possible to modify the timeout value for an AdminPrx object?
I tried the following (see code snippet below) without success, i.e. an ObjectNotExistException is thrown when I invoke admin.
IceGrid.AdminPrx admin;
IceGrid.AdminSessionPrx session;
... setup session code here
admin = session.getAdmin();
ObjectPrx prx = this.admin.ice_timeout(10000);
this.admin = AdminPrxHelper.checkedCast(prx);
Regards John

Reply With Quote
