Author: dkulp
Date: Tue Mar 9 02:31:48 2010
New Revision: 920626
URL: http://svn.apache.org/viewvc?rev=920626&view=rev
Log:
Merged revisions 920621 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r920621 | dkulp | 2010-03-08 21:09:30 -0500 (Mon, 08 Mar 2010) | 1 line
Don't send a content-type on the one-way accept response
........
Modified:
cxf/branches/2.2.x-fixes/ (props changed)
cxf/branches/2.2.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/OneWayProcessorInterceptor.java
Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.2.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/OneWayProcessorInterceptor.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/OneWayProcessorInterceptor.java?rev=920626&r1=920625&r2=920626&view=diff
==============================================================================
---
cxf/branches/2.2.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/OneWayProcessorInterceptor.java
(original)
+++
cxf/branches/2.2.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/OneWayProcessorInterceptor.java
Tue Mar 9 02:31:48 2010
@@ -82,6 +82,7 @@ public class OneWayProcessorInterceptor
try {
Message partial = createMessage(message.getExchange());
+ partial.remove(Message.CONTENT_TYPE);
partial.setExchange(message.getExchange());
Conduit conduit = message.getExchange().getDestination()
.getBackChannel(message, null, null);