SoapPreProtocolOutInterceptor overrides SoapActionOutInterceptor
-----------------------------------------------------------------
Key: CXF-1733
URL: https://issues.apache.org/jira/browse/CXF-1733
Project: CXF
Issue Type: Bug
Components: Soap Binding
Affects Versions: 2.1.1
Reporter: Iman Rahmatizadeh
SoapActionOutInterceptor appends ";action=blaBla" to the content-type header :
String ct = (String) message.get(Message.CONTENT_TYPE);
if (ct.indexOf("action=\"") == -1) {
ct = new StringBuilder().append(ct)
.append("; action=").append(action).toString();
message.put(Message.CONTENT_TYPE, ct);
}
where after that SoapPreProtocolOutInterceptor resets it to the string without
the action :
message.put(Message.CONTENT_TYPE, soapVersion.getContentType());
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.