A really difficult XML problem
Hi everyone, I know this might be sounding like a dumb idea for a post because I can not "figure it out", however after searching google for over 3 hours on this issue I am going to hope someone in here might help me in the right direction.
Ok here is the XML like I would like to add in a well formed XMl document (I removed the line and the XML validates perfectly):
<More_Info>http://maps.google.com/maps?f=q&hl=en&geocode=&q=game+players+unlimited&jsv=132d&sll=43.213659,-77.939052&sspn=0.036531,0.074072&ie=UTF8&cd=1&latlng=43218555,-77937600,13473380947166061560&ei=_uf2SIu5HoX4Npa_yNYL"</More_Info>
As you can tell it is nothing more then a URL being passed into the More_Info element, however when I try to validate the object into any validation checker it crashes when trying to read the URL. I have seen nothing online on anyone else having this issue and just stuck.
Any ideas? Thanks for reading.
Comments
<More_Info>http://maps.google.com/maps?f=q&hl=en&geocode=&q=game+players+unlimited&jsv=132d&sll=43.213659,-77.939052&sspn=0.036531,0.074072&ie=UTF8&cd=1&latlng=43218555,-77937600,13473380947166061560&ei=_uf2SIu5HoX4Npa_yNYL"</More_Info>
This should do it:
<more_info>http://maps.google.com/maps?f=q%26hl=en%26geocode=%26q=game+players+unlimited%26jsv=132d%26sll=43.213659,-77.939052%26sspn=0.036531,0.074072%26ie=UTF8%26cd=1%26latlng=43218555,-77937600,13473380947166061560%26ei=_uf2SIu5HoX4Npa_yNYL</more_info>
Edit: It is correct according to the same online XML validator. A question, what is the XML validator you are using, and why aren't you just using a free online one?