theta
theta

Reputation: 25601

XML parsing error: not well-formed (invalid token)

Online validator throws error on url in my XML page. Here is affected string:

http://some.normal.url?params=id%2Cburst%2Cfactor%2Ccp&exp=907031

error is pointed at place of second equal sign exp = 907031.

I searched before, and according some posts equal sign is not allowed, but then how first equal sign passed, and link won't work if I urlquote it.

What can I do here to bypass this error?

Upvotes: 2

Views: 4970

Answers (1)

Emma Leis
Emma Leis

Reputation: 2900

The ampersand is the problem. Ampersands in XML act as the start of an encoded character, so you need to encode the ampersand itself. E.g. &.
Change your complete URL to this:
http://some.normal.url?params=id%2Cburst%2Cfactor%2Ccp&exp=907031

Upvotes: 4

Related Questions