f2par0 opened a new pull request, #1558:
URL: https://github.com/apache/cxf/pull/1558

   Change xml validation strategy to use the Woodstox validation when reading 
instead of having a reader and a writer to a nulloutput because this method is 
not able to handle the xsi:nil=true attributes.
   
   **Previous  Algorithm :**
   
   - Transform the input to a DOMSource Object
   - create a XMLReader from this new object and a XMLWriter to a nulloutput
   - setup the wookdstock validation on the writer if possible
   - Create a filtered Reader to remove external references
   - Copy the filterReader to the Null Writer
   - if setup fails, use XOP validation
   
   **Suggested algorithm :**
   
   - create a filtered reader from the input to remove external references
   - setup the wookdstock validation on the reader if possible
   - call read
   - if setup fails, use XOP validation


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to