Elaine L
10/30/2025, 1:36 AMCeligo AI
10/30/2025, 1:37 AMAI generated answer (using internal Slack threads):****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ****** The error you're encountering, "Error Parsing XML: The reference to entity \"c\" must end with the ';' delimiter.", is typically caused by an issue with the XML syntax. In XML, certain characters are reserved and must be escaped. The most common of these is the ampersand (&), which is used to denote an entity reference. If you're using an ampersand in your XML, it should be escaped as
&.
Here are some steps to resolve this issue:
1. Check your XML template for any unescaped characters, especially the ampersand (&). If you find any, replace them with their escaped equivalents (& for &).
2. Validate your XML. There are many online tools available for this. Just copy and paste your XML into the validator and it will highlight any issues.
3. If you're referencing a URL in your template, ensure that it is properly encoded. URLs often contain ampersands, which can cause this error if not properly escaped.
Remember, the error message is indicating that an entity reference (like &c) is not properly terminated with a semicolon (;). So, look for instances where you have an ampersand followed by a character without a terminating semicolon.Celigo AI
10/30/2025, 1:37 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.887695432
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.877075255
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.863464415
Celigo AI
10/30/2025, 1:37 AM