public void testDiaptchWithWsaDisable() throws Exception {
QName port = new QName("http://apache.org/cxf/systest/ws/addr_feature/", "AddNumbersPort");
Dispatch<SOAPMessage> disptch = getService().createDispatch(port, SOAPMessage.class,
javax.xml.ws.Service.Mode.MESSAGE,
new AddressingFeature(false));
((BindingProvider)disptch).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
"http://localhost:9095/jaxws/add");
InputStream is = getClass().getResourceAsStream("resources/AddNumbersDispatchReq.xml");
SOAPMessage soapReqMsg = MessageFactory.newInstance().createMessage(null, is);