Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XML Validation error : EntityRef: expecting';'

<url>
  <loc>http://www.ezed.in/ezed/courseDemoIntroPage.do?courseId=COU10000000138003530&checkingCourseFrom=preLogin#.U2DcKvmSySo</loc>
</url>

error on line 102 at column 103: EntityRef: expecting';'

Not able to figure out what could be the problem.

like image 794
user99322 Avatar asked May 02 '14 06:05

user99322


3 Answers

Your URL must be escaped.

& character is used in XML to insert a character reference with syntax &name; (note ; after name). Parser expects a ; but it can't find it (there are more available delimiters, this is just most common case).

Solution is then escaping (how it's done depends on language you use to generate that XML file) but final result must be something like this:

<url>
  <loc>http://www.ezed.in/ezed/courseDemoIntroPage.do?courseId=COU10000000138003530&amp;checkingCourseFrom=preLogin#.U2DcKvmSySo</loc>
</url>

Note that plain & has been replaced with its escaped version &amp;. For further details see this simple article.

Another possible solution (if you don't want/you can't escape) is to enclose URL inside a CDATA section like this:

<url>
  <loc><![CDATA[http://www.ezed.in/ezed/courseDemoIntroPage.do?courseId=COU10000000138003530&checkingCourseFrom=preLogin#.U2DcKvmSySo]]></loc>
</url>
like image 133
Adriano Repetti Avatar answered Oct 08 '22 06:10

Adriano Repetti


Another way as below:

Instead of "CDATA" we could use htmlspecialchars PHP native function for url node. it will work few of xml feed they don't want CDATA in xml output so this will be helpful for someone.

Thanks

like image 28
Vinod Patidar Avatar answered Oct 08 '22 04:10

Vinod Patidar


I stumbled on the same problem today, if you are building the links with PHP you can use this function:

htmlspecialchars();

It will format the desired string for you to HTML chars so you can insert it as a <loc>.

like image 41
Bullsized Avatar answered Oct 08 '22 04:10

Bullsized