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/10/15 17:50:02 UTC

svn commit: r825531 - /cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java

Author: dkulp
Date: Thu Oct 15 15:50:01 2009
New Revision: 825531

URL: http://svn.apache.org/viewvc?rev=825531&view=rev
Log:
[CXF-2474] Detect if the reader is the same and punt out

Modified:
    cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java

Modified: cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java?rev=825531&r1=825530&r2=825531&view=diff
==============================================================================
--- cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java (original)
+++ cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/DocLiteralInInterceptor.java Thu Oct 15 15:50:01 2009
@@ -189,7 +189,7 @@
                     parameters.put(p, o);
                     
                     paramNum++;
-                    if (message.getContent(XMLStreamReader.class) == null) {
+                    if (message.getContent(XMLStreamReader.class) == null || o == xmlReader) {
                         xmlReader = null;
                     }
                 } while (xmlReader != null && StaxUtils.toNextElement(xmlReader));