Author: dkulp Date: Tue Jul 16 19:44:03 2013 New Revision: 1503845 URL: http://svn.apache.org/r1503845 Log: Merged revisions 1503508 via svn merge from https://svn.apache.org/repos/asf/cxf/branches/2.6.x-fixes
........ r1503508 | asoldano | 2013-07-15 18:47:16 -0400 (Mon, 15 Jul 2013) | 16 lines Merged revisions 1503503 via svnmerge from https://svn.apache.org/repos/asf/cxf/branches/2.7.x-fixes ................ r1503503 | asoldano | 2013-07-16 00:27:10 +0200 (Tue, 16 Jul 2013) | 9 lines Merged revisions 1503498 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r1503498 | asoldano | 2013-07-16 00:22:46 +0200 (Tue, 16 Jul 2013) | 2 lines [CXF-5116] Also fixing JAXWS 2.2 HTTP SPI destination impl ........ ................ ........ Modified: cxf/branches/2.5.x-fixes/ (props changed) cxf/branches/2.5.x-fixes/rt/frontend/jaxws/src/main/jaxws22/org/apache/cxf/transport/http_jaxws_spi/JAXWSHttpSpiDestination.java Propchange: cxf/branches/2.5.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.5.x-fixes/rt/frontend/jaxws/src/main/jaxws22/org/apache/cxf/transport/http_jaxws_spi/JAXWSHttpSpiDestination.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/rt/frontend/jaxws/src/main/jaxws22/org/apache/cxf/transport/http_jaxws_spi/JAXWSHttpSpiDestination.java?rev=1503845&r1=1503844&r2=1503845&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/rt/frontend/jaxws/src/main/jaxws22/org/apache/cxf/transport/http_jaxws_spi/JAXWSHttpSpiDestination.java (original) +++ cxf/branches/2.5.x-fixes/rt/frontend/jaxws/src/main/jaxws22/org/apache/cxf/transport/http_jaxws_spi/JAXWSHttpSpiDestination.java Tue Jul 16 19:44:03 2013 @@ -135,12 +135,12 @@ public class JAXWSHttpSpiDestination ext LOG.fine("Service http request on thread: " + Thread.currentThread()); } Message inMessage = new MessageImpl(); + ExchangeImpl exchange = new ExchangeImpl(); + exchange.setInMessage(inMessage); setupMessage(inMessage, null, req, resp); ((MessageImpl)inMessage).setDestination(this); - ExchangeImpl exchange = new ExchangeImpl(); - exchange.setInMessage(inMessage); exchange.setSession(new HTTPSession(req)); try {
