I notice it has the following code:
private Object createProxy() throws Exception {
JaxWsProxyFactoryBean cf = new JaxWsProxyFactoryBean();
cf.setServiceName(getService());
cf.setServiceClass(type);
cf.setAddress("jbi://" + new IdGenerator().generateSanitizedId());
cf.setBindingId(
org.apache.cxf.binding.jbi.JBIConstants.NS_JBI_BINDING);
return cf.create();
}
Which leads me to believe that the servicemix client proxy can't communicate
to anything but a JBI endpoint? It can't connect to something outside of
the container?