Hi Ryan,
Yes, the client proxy can only communicate with endpoint within container,
if you want connect something outside container, you need a binding
component as bridge.
Best Regards
Freeman
On 10/3/07, Ryan Moquin <[EMAIL PROTECTED]> wrote:
>
> 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?
>