public void testDecoupled() throws Exception {
SpringBusFactory bf = new SpringBusFactory();
bus = bf.createBus("/org/apache/cxf/systest/ws/rm/decoupled_bare.xml");
BusFactory.setDefaultBus(bus);
SOAPServiceAddressingDocLitBare service = new SOAPServiceAddressingDocLitBare();
assertNotNull(service);
DocLitBare greeter = service.getSoapPort();
BareDocumentResponse bareres = greeter.testDocLitBare("MySimpleDocument");
assertNotNull("no response for operation testDocLitBare", bareres);
assertEquals("CXF", bareres.getCompany());
assertTrue(bareres.getId() == 1);