Repository: cxf Updated Branches: refs/heads/2.7.x-fixes 144fc41e1 -> 15a1b752a
fix build-error caused by CXF-6434 in 2.7.x Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/15a1b752 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/15a1b752 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/15a1b752 Branch: refs/heads/2.7.x-fixes Commit: 15a1b752a572428df6191aead8aaf02ae2bb08a9 Parents: 144fc41 Author: Akitoshi Yoshida <[email protected]> Authored: Wed Jun 3 01:10:49 2015 +0200 Committer: Akitoshi Yoshida <[email protected]> Committed: Wed Jun 3 01:10:55 2015 +0200 ---------------------------------------------------------------------- .../cxf/binding/soap/interceptor/SoapActionInInterceptor.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/15a1b752/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/SoapActionInInterceptor.java ---------------------------------------------------------------------- diff --git a/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/SoapActionInInterceptor.java b/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/SoapActionInInterceptor.java index 626867d..11a20ea 100644 --- a/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/SoapActionInInterceptor.java +++ b/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/SoapActionInInterceptor.java @@ -24,7 +24,6 @@ import java.util.List; import java.util.Map; import java.util.logging.Logger; -import org.apache.cxf.attachment.AttachmentDeserializer; import org.apache.cxf.binding.soap.Soap11; import org.apache.cxf.binding.soap.Soap12; import org.apache.cxf.binding.soap.SoapBindingConstants; @@ -84,7 +83,7 @@ public class SoapActionInInterceptor extends AbstractSoapInterceptor { if (start == -1 && ct.indexOf("multipart/related") == 0) { // the action property may not be found at the package's content-type for non-mtom multipart message List<String> cts = CastUtils.cast((List<?>)(CastUtils.cast( - (Map<?, ?>)message.get(AttachmentDeserializer.ATTACHMENT_PART_HEADERS)).get(Message.CONTENT_TYPE))); + (Map<?, ?>)message.get("javax.mail.internet.InternetHeaders")).get(Message.CONTENT_TYPE))); if (cts != null && cts.size() > 0) { ct = cts.get(0); start = ct.indexOf("action=");
