Archived

This forum has been archived. Please start a new discussion on GitHub.

Adding Server to IceGrid

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

Comments

  • bernard
    bernard Jupiter, FL
    Hi Budyanto,

    IceGrid can deploy/manage/start any Ice server; you do not need to use Ice::Application or any other class.

    Best regards,
    Bernard
  • Thanks 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