Hi all,
XMLDocument.Load("http://ws.audioscrobbler.com/2.0/?method=artist.search&artist=Zlad!); If you open the link in FF it shows the error, IE seems blisfully unaware
Its failing due to Last.FM outputting artist names with the wrongly encoded characters into the xml.
This causes my C# app to crash. XMLException, invalid character
How would I go about making it work? Last.FM realise theres an issue but a fix is a long way off. Can I force it to ignore the invalid character? Best idea be catch the error, read in the page as a string instead, and then strip the invalid chars, and then load the xmldocument from there?