You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2022/01/31 09:05:06 UTC

[GitHub] [camel-examples] essobedo opened a new pull request #64: Fix the content of the spring-xquery output file

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: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-examples] oscerd commented on pull request #64: Fix the content of the spring-xquery output file

Posted by GitBox <gi...@apache.org>.
oscerd commented on pull request #64:
URL: https://github.com/apache/camel-examples/pull/64#issuecomment-1025527155


   Thanks


-- 
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: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [camel-examples] oscerd merged pull request #64: Fix the content of the spring-xquery output file

Posted by GitBox <gi...@apache.org>.
oscerd merged pull request #64:
URL: https://github.com/apache/camel-examples/pull/64


   


-- 
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: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org