Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

ActiveMQ Service Properties

Revision as of 19:43, 18 October 2019 by Unnamed Poltroon (Talk)

These following may be provided as service properties when a remote service is registered. For example:

// (If not explicitly given here, the provider is free to choose a default configuration for the service)
props.put("service.exported.configs","ecf.xmlrpc.server");
props.put("ecf.xmlrpc.server.uriContext","http://myhost.com:8080"); // NOTE:  myhost.com:8080 should be exposed via HttpService impl
// Register a new TimeServiceImpl service with the above props
bundleContext.registerService(ITimeService.class, new TimeServiceImpl(), props);

ecf.jms.activemq.tcp.manager config

Property Name Description Type Default Value
ecf.jms.activemq.tcp.manager.id   URI context for a running and accessible ActiveMQ Broker. The default is localhost port 616161 with topic name: exampleTopic   String tcp://localhost:61616/exampleTopic

Back to the top