up vote 10 down vote favorite
1
share [g+] share [fb]


I'm getting an "Illegal characters in path error" while using XMLTextReader method. Basically, I'm sending a long URL to tr.im, and tr.im sends the response as an XML stream, which I'm trying to parse but I get the above mentioned error. Can you guys guide me as to why I'm getting this error and where I'm going wrong? Here's the code:

WebRequest wrURL;
Stream objStream;
string strURL;
wrURL = WebRequest.Create("http://api.tr.im/api/trim_url.xml?url=" + HttpUtility.UrlEncode(txtURL.Text));
objStream = wrURL.GetResponse().GetResponseStream();
StreamReader objSReader = new StreamReader(objStream);
strURL = objSReader.ReadToEnd().ToString();
XmlTextReader reader = new XmlTextReader(strURL); //getting the error at this point

I'm using Visual Studio 2008, Express Edition

link|improve this question

feedback

4 Answers

up vote 18 down vote accepted

The reason why is you are using the constructor of XmlTextReader which takes a file path as the parameter but you're passing XML content instead.

Try the following code

XmlTextReader reader = new XmlTextReader(new StringReader(strURL));
link|improve this answer
Amazing. Thanks, your suggestion did not result in the error. – Sathya Sep 3 '09 at 17:13
Won't work unless you change the request to receive xml instead of the default pretty HTML setting. Add this parameter to your request: format=xml – Lee Whitney Jul 14 '11 at 18:35
feedback

XmlTextReader constructor accepts a string that points to the URL where an XML file is stored. You are passing it the XML itself which of course is an invalid path. Try this instead:

using (var client = new WebClient())
{
    var xml = client.DownloadString("http://api.tr.im/api/trim_url.xml?url=" + HttpUtility.UrlEncode(txtURL.Text));
    using (var strReader = new StringReader(xml))
    using (var reader = XmlReader.Create(strReader))
    {

    }
}
link|improve this answer
feedback

The XmlTextReader(string) constructor expects a file path, not the actual XML data.

You can create an XML reader directly from the stream. The recommended way to do this is using the XmlReader.Create method:

XmlReader reader = XmlReader.Create(objStream);
link|improve this answer
getting Error: 'System.Xml.XmlReader.Create(string)' is a 'method' but is used like a 'type' with this. – Sathya Sep 3 '09 at 17:20
Edited to take out "new", which was the problem. – JSBᾶngs Sep 3 '09 at 17:23
Yup- works as well. – Sathya Sep 3 '09 at 17:25
feedback

You should print or otherwise display strUrl. Once you can actually see the path that you're passing to the test reader, it should be obvious what the path error is.

Also, just looking at the code, it seems like the response itself might be XML, in which case you should pass objSReader directly to the XmlTextReader constructor.

link|improve this answer
The response is XML data, as mentioned in the Question. Even with just passing objSReader I was getting the error. – Sathya Sep 3 '09 at 17:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.