Author: dkulp Date: Tue Sep 11 19:54:33 2012 New Revision: 1383588 URL: http://svn.apache.org/viewvc?rev=1383588&view=rev Log: Merged revisions 1378310 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/branches/2.5.x-fixes
........ r1378310 | dkulp | 2012-08-28 16:26:55 -0400 (Tue, 28 Aug 2012) | 18 lines Merged revisions 1378295 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/branches/2.6.x-fixes ........ r1378295 | dkulp | 2012-08-28 16:19:21 -0400 (Tue, 28 Aug 2012) | 10 lines Merged revisions 1376925 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/trunk ........ r1376925 | dkulp | 2012-08-24 10:13:20 -0400 (Fri, 24 Aug 2012) | 2 lines If provider flips to one-way, set the out message to null as well to prevent it from trying to send an out message. ........ ........ ........ Modified: cxf/branches/2.4.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JAXWSMethodInvoker.java Modified: cxf/branches/2.4.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JAXWSMethodInvoker.java URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JAXWSMethodInvoker.java?rev=1383588&r1=1383587&r2=1383588&view=diff ============================================================================== --- cxf/branches/2.4.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JAXWSMethodInvoker.java (original) +++ cxf/branches/2.4.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JAXWSMethodInvoker.java Tue Sep 11 19:54:33 2012 @@ -85,6 +85,7 @@ public class JAXWSMethodInvoker extends private void changeToOneway(Exchange exchange) { exchange.setOneWay(true); + exchange.setOutMessage(null); javax.servlet.http.HttpServletResponse httpresp = (javax.servlet.http.HttpServletResponse)exchange.getInMessage(). get("HTTP.RESPONSE");
