Archived

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

IceStorm & IcePack

xdm
xdm La Coruña, Spain
Hello

is posible deploy IceStorm as a service into IcePack?

thanks in advantage

Comments

  • matthew
    matthew NL, Canada
    xdm wrote:
    Hello

    is posible deploy IceStorm as a service into IcePack?

    thanks in advantage

    Yes, you need a descriptor like the following:
    <server name="IceStorm" kind="cpp-icebox" endpoints="tcp -h 127.0.0.1" activation="on-demand">
        <service name="IceStorm" entry="IceStormService,21:create">
             <dbenv name="${service}"/>
             <adapters>
                <adapter name="${service}.TopicManager" endpoints="tcp">
                    <object identity="${service}/TopicManager" type="::IceStorm::TopicManager"/>
                </adapter>
                <adapter name="${service}.Publish" endpoints="tcp"/>
            </adapters>
        </service>
    </server>
    

    The endpoints attribute of the server is necessary to setup the IceBox admin endpoints. You should set this according to your deployment. See the Ice manual for more details.

    Regards, Matthew