You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2007/11/22 21:42:25 UTC

svn commit: r597485 - /servicemix/branches/servicemix-3.2/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/marshalers/SoapWriter.java

Author: gnodet
Date: Thu Nov 22 12:42:23 2007
New Revision: 597485

URL: http://svn.apache.org/viewvc?rev=597485&view=rev
Log:
SM-1144: Error in writeDetails method when I need return fault messages

Modified:
    servicemix/branches/servicemix-3.2/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/marshalers/SoapWriter.java

Modified: servicemix/branches/servicemix-3.2/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/marshalers/SoapWriter.java
URL: http://svn.apache.org/viewvc/servicemix/branches/servicemix-3.2/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/marshalers/SoapWriter.java?rev=597485&r1=597484&r2=597485&view=diff
==============================================================================
--- servicemix/branches/servicemix-3.2/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/marshalers/SoapWriter.java (original)
+++ servicemix/branches/servicemix-3.2/common/servicemix-soap/src/main/java/org/apache/servicemix/soap/marshalers/SoapWriter.java Thu Nov 22 12:42:23 2007
@@ -346,7 +346,7 @@
                 }
             }
         } else {
-            XMLStreamReader reader = marshaler.getSourceTransformer().toXMLStreamReader(details);
+            XMLStreamReader reader = marshaler.getSourceTransformer().toXMLStreamReader(domDetails);
             XMLStreamHelper.copy(reader, writer);
         }
     }