Hi, short questions, with a DefaultServiceMixClient one can send a ME to a service using a QName, like so
client = clientFactory.createClient(); resolver = client.createResolverForService(new QName(NS_URL, service, NS_PREFIX)); client.sendSync(exchange, timeout); client.done(exchange); But when I have one service with two endpoints, produced by having two SUs with the same service but different endpoints specified, how can one specify the endpoint name programatically? The resolver has a resolveAvailableEndpoints() method that would give all endpoints, but I want a specific one. How does the resolve method using EndpointFilter work? Does anybody have a code sample? Thanks, Peter
