yesamer opened a new pull request, #6320: URL: https://github.com/apache/incubator-kie-drools/pull/6320
Closes https://github.com/apache/incubator-kie-issues/issues/1930 XML Character References are special characters internally used in XML to refer to other entities Objects. Those characters are: - `&` - `"` - `'` - `<` - `>` DMN Functions like `matches()` and `replace()` work with XPath specs and implementation. Passing a string that contains one or more of the above characters list will throw an exception. To fix the issue, it's necessary to escape the above character list, replacing them with: - `&` ---> `&` - `"` ---> `"` - `'` ---> `'` - `<` ---> `<` - `>` ---> `>` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
