.append(System.getProperty("web.host", props.getProperty("opengamma.provider.host"))).append(':')
.append(System.getProperty("web.port", props.getProperty("opengamma.provider.port")))
.append(System.getProperty("web.path", props.getProperty("opengamma.provider.path")))
.append("jax").toString();
URI componentsUri = URI.create(baseUrl);
RemoteComponentServer remote = new RemoteComponentServer(componentsUri);
_components = remote.getComponentServer();
URI uri = URI.create(props.getProperty("activeMQ.brokerURL"));
ActiveMQConnectionFactory cf = new ActiveMQConnectionFactory(uri);
JmsConnectorFactoryBean factory = new JmsConnectorFactoryBean();
factory.setName(getClass().getSimpleName());