Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In ASP.NET, I have an XML file (within my project) that I would like to deserialize. FileStream objects do not allow you to open a file via URL.

What is the easiest way to open the file so that I can deserialize it?

share|improve this question

3 Answers

If the file is within your project you just need to get the physical location of the file. You can use Server.MapPath("/yourfile.txt") to get the phyical location and then open it with a filestream.

share|improve this answer

you can use the XmlDocument.Load(url) method which will load an XML Document from a URL

share|improve this answer

I do not quite understand, do you mean that you would like to serve the file to the user? Or that in your server side code you need to get access to an XML file that resides on a different server? Or, c) none of the above?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.