Hi, I am using RemoteServiceMixClient (servicemix 3.2.2) in my unit test and I try to play with dynamic endpoint resolution. The code I use is the following
InOnly me = getRemoteServiceMixClient().createInOnlyExchange(); URIResolver.configureExchange( me, getRemoteServiceMixClient().getContext(), "myse://something" ); getRemoteServiceMixClient().sendSync( me ); I have a SE component named MySeComponent which is deployed and active in servicemix 3.2.2 getRemoteServiceMixClient() create a org.apache.servicemix.client.RemoteServiceMixClient, calls init() and start() on it. When calling the above code, getResolvedEPR() of the component is never called. When using servicemix as an embedded instance, it works. Is dynamic resolution supported by the service mix remote client ? Jos.
