You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/03/25 18:13:36 UTC

svn commit: r758347 - in /cxf/branches/2.1.x-fixes: ./ rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java

Author: dkulp
Date: Wed Mar 25 17:13:29 2009
New Revision: 758347

URL: http://svn.apache.org/viewvc?rev=758347&view=rev
Log:
Merged revisions 758308 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r758308 | dkulp | 2009-03-25 11:39:18 -0400 (Wed, 25 Mar 2009) | 2 lines
  
  Make sure the oneway flag is set
........

Modified:
    cxf/branches/2.1.x-fixes/   (props changed)
    cxf/branches/2.1.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java

Propchange: cxf/branches/2.1.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Wed Mar 25 17:13:29 2009
@@ -1 +1 @@
-/cxf/trunk:753380,753397,753421,754585,755365,757499,757859,757899,757935,757951,758195,758303
+/cxf/trunk:753380,753397,753421,754585,755365,757499,757859,757899,757935,757951,758195,758303,758308

Propchange: cxf/branches/2.1.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.1.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java?rev=758347&r1=758346&r2=758347&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java (original)
+++ cxf/branches/2.1.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java Wed Mar 25 17:13:29 2009
@@ -130,6 +130,9 @@
                         msgInfo = bop.getOutput();
                     } else {
                         msgInfo = bop.getInput();
+                        if (bop.getOutput() == null) {
+                            exchange.setOneWay(true);
+                        }
                     }
                 }