essobedo opened a new pull request #64:
URL: https://github.com/apache/camel-examples/pull/64


   ## Motivation
   
   The XML output file of the example `spring-xquery` doesn't seem to be what 
is really expected and thus should be fixed.
   
   Indeed the expected content is:
   ```
   <employee id="james">
       <name>James Strachan</name>
       <location>London</location>
   </employee>
   ```
   while the actual content is:
   ```
   <employee id="james">
       <name>
           <firstName>James</firstName>
           <lastName>Strachan</lastName>
       </name>
       <location>
           <city>London</city>
       </location>
   </employee>
   ```
   
   ## Modifications:
   
   * Refer the text content of the target elements
   * Add a space character between the first name and the last name.
   
   ## Result:
   
   The output file has now expected content. 
   


-- 
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