public void testBridge() throws Exception {
// start external service
EndpointImpl endpoint =
(EndpointImpl)javax.xml.ws.Endpoint.publish("http://localhost:9001/mtombridgetest",
new TestMtomImpl());
SOAPBinding binding = (SOAPBinding)endpoint.getBinding();
binding.setMTOMEnabled(true);
endpoint.getInInterceptors().add(new LoggingInInterceptor());
endpoint.getOutInterceptors().add(new LoggingOutInterceptor());