component.getServiceUnitManager().init("su", getServiceUnitPath("org/apache/servicemix/sca/bigbank"));
component.getServiceUnitManager().start("su");
ServiceMixClient client = new DefaultServiceMixClient(container);
Source req = new StringSource("<AccountReportRequest><CustomerID>id</CustomerID></AccountReportRequest>");
Object rep = client.request(new ServiceNameEndpointResolver(
new QName("http://sca.servicemix.apache.org/Bigbank/Account", "AccountService")),
null, null, req);
if (rep instanceof Node) {
rep = new DOMSource((Node) rep);
}