ESBCOMP-130 Add addressing feature to WS endpoint

master
David BRASSELY 2015-04-17 11:55:35 +02:00
parent 817e74eee7
commit fc464a58e0
1 changed files with 2 additions and 1 deletions

View File

@ -694,7 +694,8 @@ public class HttpSoapEndpoint extends AbstractEndpoint {
SOAPMessage.class,
javax.xml.ws.Service.Mode.MESSAGE,
new javax.xml.ws.WebServiceFeature[] {
new javax.xml.ws.RespectBindingFeature(true)
new javax.xml.ws.RespectBindingFeature(true),
new javax.xml.ws.soap.AddressingFeature(true)
});
return dispatch;
}