// Service consumer or Reference binding
OutboundHandler soapProxyOutbound1 = new OutboundHandler(config);
soapProxyOutbound1.start();
_domain.registerService(_authConsumerService1.getServiceName(), new HelloWebServiceInterface(), soapProxyOutbound1);
NtlmAuthModel auth = new V1NtlmAuthModel(SOAPNamespace.DEFAULT.uri());
auth.setUser("SwitchYard");
auth.setPassword("JBoss123!");
auth.setDomain("JBOSS");
config.setNtlmAuthConfig(auth);
config.setServiceName(_authConsumerService2.getServiceName());
// Service consumer or Reference binding
OutboundHandler soapProxyOutbound2 = new OutboundHandler(config);