Author: dkulp Date: Tue Apr 15 10:05:42 2008 New Revision: 648333 URL: http://svn.apache.org/viewvc?rev=648333&view=rev Log: Merged revisions 648213 via svnmerge from https://svn.apache.org/repos/asf/incubator/cxf/trunk
........ r648213 | seanoc | 2008-04-15 07:30:53 -0400 (Tue, 15 Apr 2008) | 1 line Fix for https://issues.apache.org/jira/browse/CXF-1466 ........ Modified: incubator/cxf/branches/2.0.x-fixes/ (props changed) incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/DispatchImpl.java Propchange: incubator/cxf/branches/2.0.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/DispatchImpl.java URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/DispatchImpl.java?rev=648333&r1=648332&r2=648333&view=diff ============================================================================== --- incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/DispatchImpl.java (original) +++ incubator/cxf/branches/2.0.x-fixes/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/DispatchImpl.java Tue Apr 15 10:05:42 2008 @@ -185,7 +185,7 @@ if (exp != null) { getConduitSelector().complete(exchange); - if (getBinding() instanceof SOAPBinding) { + if (getBinding() instanceof SOAPBinding && exp instanceof Fault) { try { SOAPFault soapFault = SOAPFactory.newInstance().createFault(); Fault fault = (Fault)exp;
