Adding Server to IceGrid

in Help Center
Hi,
Question on IceGrid. In order to add a server to a node in IceGrid, does it have to extend Ice::Application?
Can the server call Ice::initialize(argc, argv) manually?
Budyanto
Question on IceGrid. In order to add a server to a node in IceGrid, does it have to extend Ice::Application?
Can the server call Ice::initialize(argc, argv) manually?
Budyanto
0
Comments
IceGrid can deploy/manage/start any Ice server; you do not need to use Ice::Application or any other class.
Best regards,
Bernard
Yes I did verify it. I was having other problems that causes the server to be stucked at waiting for activation state. It turns out that the server was creating its adapter the wrong way. It wasn't matching the adapter name specified by IceGrid.
Budyanto