show/hide this revision's text 3 edited tags
show/hide this revision's text 2 added 18 characters in body

We are monitoring the progress of a customized app (whose source is not under our control) which writes to a XML Manifest. At times , the application is stuck due to unable to write into the Manifest file. Although we are covering our traces by explicitly closing the file handle suing using File.Close and also creating the file variables in Using Blocks. But some how somehow it keep keeps happening. ( Our application is multithreaded and at most three threads might be accessing the file. ) Another interesting thing is that their app updates this manifest at three different events(add items, deleting tiemsitems, completion of items) but we are only suffering because of about one event (complettion completion of items). My code is listed here

using (var st = new FileStream(MenifestPath, FileMode.Open, FileAccess.Read))
{
    using (TextReader r = new StreamReader(st))
    {
       var xml = r.ReadToEnd();
           r.Close();
           st.Close();
          ................ //................ Rest of our operations
    }
}
show/hide this revision's text 1

How to avoid File Blocking

We are monitoring the progress of a customized app (whose source is not under our control) which writes to a XML Manifest. At times , the application is stuck due to unable to write into the Manifest file. Although we are covering our traces by explicitly closing the file handle suing File.Close and also creating the file variables in Using Blocks. But some how it keep happening. ( Our application is multithreaded and at most three threads might be accessing the file. ) Another interesting thing is that their app updates this manifest at three different events(add items, deleting tiems, completion of items) but we only suffering because of one event (complettion of items). My code is listed here

using (var st = new FileStream(MenifestPath, FileMode.Open, FileAccess.Read)) { using (TextReader r = new StreamReader(st)) { var xml = r.ReadToEnd(); r.Close(); st.Close(); ................ Rest of our operations } }