Replication is failing with error "Transformation failed on the following payload due to invalid XML"Issue Replication is failing with the error "Transformation failed on the following payload due to invalid XML"CauseWhen you have active replication which replicates work notes, additional comments or descriptions anything, and if those contain emojis we see "Transformation failed on the following payload due to invalid XML" in idr_replication_payload_error we can see the emojis are getting encoded which is not a valid XML example payload looks like <?xml version="1.0" encoding="UTF-8"?><incident><comments><entry>Testing One more Emoji ��</entry></comments><sys_updated_on>2023-04-11 15:36:21</sys_updated_on></incident> This is the actual comment added "Testing One more emoji 😒☺️😊😴" in the above payload Testing one more Emoji is an actual comment added which is plain text and #55357;� are an encoding of emoji that is not a valid XML format which is why we see the errorResolutionTo resolve the issue please add the system property "glide.util.xml.transformer.handle.utf16_surrogate_pairs" and set it to true in the producer instance, no need to add the system property in the consumer instance unless you selected bi-directional replication between two instances