I have some ASP.net code that I am working with and I am running into a silent failing.

using System;
using System.IO;
using System.Web;
using System.Web.Services;

public partial class _Default : System.Web.UI.Page
{
 [WebMethod(EnableSession=false)]
 public static string ProcessData()
 {
   string chartFile = HttpContext.Current.Server.MapPath("~/Example/chartData.json");

   //StreamWriter chartData = new StreamWriter(chartFile);
   StreamWriter chartData = new StreamWriter("C:\\_Sites\\Example\\chartData.json");

   chartData.WriteLine("Test This Out");
   chartData.Flush();
   chartData.Close();      // Close the instance of StreamWriter.
   chartData.Dispose();    // Dispose from memory.

   return chartFile;
 }

}

The code I have commented out fails silently. I know the path is being correctly placed into chartFile. I think StreamWriter is not super happy about the var possibly due to the : and \ not being escaped in the string.

I cannot provide a direct path due to the nature of the deployment server. Any suggestions on how to get StreamWriter to play nice with the string contained in chartFile?

Thanks in advance.

link|improve this question

Is there an error you are getting or you don't see the data written to the file? The code doesn't have any obvious errors at first glance. – sajoshi Dec 6 '11 at 4:52
I found that the error was with the VirtualDirectory. Thanks for checking the code out. It made me start looking for the problem elsewhere. – Joel Kelly Dec 8 '11 at 21:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.