[
  {
    "Id": "274441",
    "ThreadId": "80095",
    "Html": "<p>I have a job that backs up multiple folders to a zip archive.&nbsp; It successfully backs up most of the folders, then throws an IO exception (&quot;Cannot create a file when that file already exists.&quot;).&nbsp; At that point, the zip archive file has also been deleted.&nbsp; This is version 1.8 of DotNetZip.&nbsp; Has anyone else encountered this problem?</p>\r\n<p>Thanks in advance.</p>",
    "PostedDate": "2010-01-07T10:38:34.013-08:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "274456",
    "ThreadId": "80095",
    "Html": "<p>Never heard of anyone else encountering this problem.</p>\r\n<p>Is it reproducable?</p>\r\n<p>If so, can you send a snip of code that shows how you create the problem?&nbsp; And also a stack trace?</p>\r\n<p>There's a window of exposure between deleting the old file and copying over the new file.&nbsp; If an exception occurs while copying, you have the chance to lose the old file. I even put a comment in the source code describing this exposure. I neevr saw the problem occur, so I wrote that it's better to just keep it simple.</p>\r\n<p>as an immediate&nbsp;workaround, I suggest that you save the zip to a new, unique&nbsp;filename, and do the file management yourself.&nbsp; Once the zip file is properly saved, rename it to whatever you like. You have to do the rename outside of the Using clause that you use for the ZipFile in question.</p>\r\n<p>&nbsp;</p>",
    "PostedDate": "2010-01-07T11:19:37.117-08:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "275006",
    "ThreadId": "80095",
    "Html": "\r\n\r\n<div class=Section1>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Hi,</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Thanks for responding.  The group that can reproduce the problem\r\nare getting a stack trace and I will send it to you as soon as I get it.  The\r\ncode is contained in the attached zip file.  It is C# source code (Archive.cs).</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">BTW, the group that is having this problem also reported another\r\nstrange problem.  If they try to back up an empty directory, they get an IO\r\nexception of “Nullable object must have a value”.  They can reproduce this,\r\nalso, but when we try it we just get an empty zip file, as expected.  Both of\r\nthese problems occur in the attached code, in the call to Save.</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Thank you. I appreciate any help you can give us.</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Regards,</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Joe Affrunti</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">jaffrunti@advsyscon.com</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<div>\r\n\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n\r\n<p class=MsoNormal><b><span style=\"font-size:10.0pt;font-family:'Tahoma','sans-serif'\">From:</span></b><span style=\"font-size:10.0pt;font-family:'Tahoma','sans-serif'\"> Cheeso\r\n[mailto:notifications@codeplex.com] <br>\r\n<b>Sent:</b> Thursday, January 07, 2010 2:20 PM<br>\r\n<b>To:</b> Joseph Affrunti<br>\r\n<b>Subject:</b> Re: IO Exception causes archive file to be deleted\r\n[DotNetZip:80095]</span></p>\r\n\r\n</div>\r\n\r\n</div>\r\n\r\n<p class=MsoNormal> </p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">From:\r\nCheeso</span></p>\r\n\r\n<div style=\"margin-bottom:24.0pt\" id=ThreadNotificationPostBody>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">Never heard\r\nanyone else encountering this problem.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">Is it\r\nreproducable?</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">If so, can\r\nyou send a snip of code that shows how you create the problem?  And also a\r\nstack trace?</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">There's a\r\nwindow of exposure between deleting the old file and copying over the new\r\nfile.  If an exception occurs while copying, you have the chance to lose\r\nthe old file. I even put a comment in the source code describing this exposure.\r\nI neevr saw the problem occur, so I wrote that it's better to just keep it\r\nsimple.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">as an\r\nimmediate workaround, I suggest that you save the zip to a new,\r\nunique filename, and do the file management yourself.  Once the zip\r\nfile is properly saved, rename it to whatever you like. You have to do the\r\nrename outside of the Using clause that you use for the ZipFile in question.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\"> </span></p>\r\n\r\n</div>\r\n\r\n<div style=\"border:none;border-top:solid #CCCCCC 1.0pt;padding:0in 0in 0in 0in\" id=ThreadNotificationFooter>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">Read\r\nthe <a href=\"http://dotnetzip.codeplex.com/Thread/View.aspx?ThreadId=80095&ANCHOR#Post274456\">full\r\ndiscussion online</a>.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">To\r\nadd a post to this discussion, reply to this email (<a href=\"mailto:DotNetZip@discussions.codeplex.com?subject=[DotNetZip:80095]\">DotNetZip@discussions.codeplex.com</a>)</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">To\r\nstart a new discussion for this project, email <a href=\"mailto:DotNetZip@discussions.codeplex.com\">DotNetZip@discussions.codeplex.com</a></span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">You\r\nare receiving this email because you subscribed to this discussion on CodePlex.\r\nYou can <a href=\"http://www.codeplex.com/site/discussions/thread/unsubscribe/80095\">unsubscribe</a>\r\non CodePlex.com.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">Please\r\nnote: Images and attachments will be removed from emails. Any posts to this\r\ndiscussion will also be available online at CodePlex.com</span></p>\r\n\r\n</div>\r\n\r\n</div>\r\n\r\n",
    "PostedDate": "2010-01-08T15:51:43.883-08:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "275022",
    "ThreadId": "80095",
    "Html": "<p>What version of DotNetZip?&nbsp; (both &quot;we&quot; and &quot;they&quot;)</p>\r\n<p>&nbsp;</p>",
    "PostedDate": "2010-01-08T17:10:49.883-08:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "275392",
    "ThreadId": "80095",
    "Html": "\r\n\r\n<div class=Section1>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">1.8</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<div>\r\n\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n\r\n<p class=MsoNormal><b><span style=\"font-size:10.0pt;font-family:'Tahoma','sans-serif'\">From:</span></b><span style=\"font-size:10.0pt;font-family:'Tahoma','sans-serif'\"> Cheeso\r\n[mailto:notifications@codeplex.com] <br>\r\n<b>Sent:</b> Friday, January 08, 2010 8:11 PM<br>\r\n<b>To:</b> Joseph Affrunti<br>\r\n<b>Subject:</b> Re: IO Exception causes archive file to be deleted\r\n[DotNetZip:80095]</span></p>\r\n\r\n</div>\r\n\r\n</div>\r\n\r\n<p class=MsoNormal> </p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">From:\r\nCheeso</span></p>\r\n\r\n<div style=\"margin-bottom:24.0pt\" id=ThreadNotificationPostBody>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">What\r\nversion of DotNetZip?  (both &quot;we&quot; and &quot;they&quot;)</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\"> </span></p>\r\n\r\n</div>\r\n\r\n<div style=\"border:none;border-top:solid #CCCCCC 1.0pt;padding:0in 0in 0in 0in\" id=ThreadNotificationFooter>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">Read\r\nthe <a href=\"http://dotnetzip.codeplex.com/Thread/View.aspx?ThreadId=80095&ANCHOR#Post275022\">full\r\ndiscussion online</a>.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">To\r\nadd a post to this discussion, reply to this email (<a href=\"mailto:DotNetZip@discussions.codeplex.com?subject=[DotNetZip:80095]\">DotNetZip@discussions.codeplex.com</a>)</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">To\r\nstart a new discussion for this project, email <a href=\"mailto:DotNetZip@discussions.codeplex.com\">DotNetZip@discussions.codeplex.com</a></span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">You\r\nare receiving this email because you subscribed to this discussion on CodePlex.\r\nYou can <a href=\"http://www.codeplex.com/site/discussions/thread/unsubscribe/80095\">unsubscribe</a>\r\non CodePlex.com.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">Please\r\nnote: Images and attachments will be removed from emails. Any posts to this\r\ndiscussion will also be available online at CodePlex.com</span></p>\r\n\r\n</div>\r\n\r\n</div>\r\n\r\n",
    "PostedDate": "2010-01-10T11:03:21.207-08:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "276856",
    "ThreadId": "80095",
    "Html": "\r\n\r\n<div class=Section1>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Hi,</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">I’m still waiting for the other group to reproduce the “archive\r\nfile deleted” problem.  When they do, I will send you the stack trace from it. \r\nThe attached file contains a stack trace from the other problem, in which a “nullable\r\nobject” error occurs when trying to zip an empty directory.</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Thank you for any help you can give us.</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Joe Affrunti</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"><a href=\"mailto:jaffrunti@advsyscon.com\">jaffrunti@advsyscon.com</a></span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Advanced System Concepts, Inc.</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n</div>\r\n\r\n",
    "PostedDate": "2010-01-13T13:17:55.067-08:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "276897",
    "ThreadId": "80095",
    "Html": "<p>Hi Joe -</p>\r\n<p>I'm not getting any attached files. The replies you send get posted to the DotNetZip forums, but any attachments are stripped.</p>\r\n<p>For s aimple stack trace, it'd be best if you just included it into the message, as text.&nbsp; Then it will show up on the forums.</p>\r\n<p>thanks</p>\r\n<p>&nbsp;</p>",
    "PostedDate": "2010-01-13T15:21:11.7-08:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "276900",
    "ThreadId": "80095",
    "Html": "\r\n\r\n<div class=Section1>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Thanks.  Here’s the trace:</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">09:39:48.349 E  InvalidOperationException in step 'ForEachRow':\r\nNullable object must have a value.&lt;Workflow.Activity&gt;</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">09:39:48.349 V  TrackData('Status')&lt;Workflow.Runtime&gt;</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">09:39:48.349 I  Activity 'ForEachValueAppFolders'\r\nfailed&lt;Workflow.Runtime&gt;</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">09:39:48.349 V  TrackData('Status')&lt;Workflow.Runtime&gt;</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">09:39:48.349 E  InvalidOperationException in step\r\n'ForEachValueAppFolders': Nullable object must have a\r\nvalue.&lt;Workflow.Activity&gt;</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">09:39:48.349 V  TrackData('Status')&lt;Workflow.Runtime&gt;</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">09:39:48.349 E  The workflow has faulted&lt;Workflow.Runtime&gt;</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">09:39:48.396 E     at System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource\r\nresource)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at Asci.ActiveBatch.JobSteps.FileSystem.Archive.WildCardZip()\r\nin\r\nc:\\TFS\\Builds\\V70\\ActiveBatch\\V70-Release\\Sources\\DotNet\\AddIns\\JobSteps\\FileSystem\\Archive.cs:line\r\n367</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at Asci.ActiveBatch.JobSteps.FileSystem.Archive.Asci.ActiveBatch.Workflow.Runtime.IActivityExecutionHandler.Execute(IActivityExecutionContext\r\nexecutionContext) in\r\nc:\\TFS\\Builds\\V70\\ActiveBatch\\V70-Release\\Sources\\DotNet\\AddIns\\JobSteps\\FileSystem\\Archive.cs:line\r\n191</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at Asci.ActiveBatch.Workflow.ActivityExecutionContext.TryInvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.InvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.ExecuteActivity(Activity\r\nactivity)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.JobSteps.JobStepSequence.Asci.ActiveBatch.Workflow.Runtime.IActivityExecutionHandler.Execute(IActivityExecutionContext\r\nexecutionContext)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.TryInvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.InvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.ExecuteActivity(Activity\r\nactivity)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.JobSteps.Database.ForEachRow.Execute(ForEachRow forEachRow,\r\nIActivityExecutionContext executionContext) in\r\nc:\\TFS\\Builds\\V70\\ActiveBatch\\V70-Release\\Sources\\DotNet\\AddIns\\JobSteps\\Database\\ForEachRow.cs:line\r\n135</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at Asci.ActiveBatch.JobSteps.Database.ForEachRow.Asci.ActiveBatch.Workflow.Runtime.IActivityExecutionHandler.Execute(IActivityExecutionContext\r\nexecutionContext) in\r\nc:\\TFS\\Builds\\V70\\ActiveBatch\\V70-Release\\Sources\\DotNet\\AddIns\\JobSteps\\Database\\ForEachRow.cs:line\r\n95</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at Asci.ActiveBatch.Workflow.ActivityExecutionContext.TryInvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.InvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.ExecuteActivity(Activity\r\nactivity)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.JobSteps.JobStepSequence.Asci.ActiveBatch.Workflow.Runtime.IActivityExecutionHandler.Execute(IActivityExecutionContext\r\nexecutionContext)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.TryInvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.InvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.ExecuteActivity(Activity\r\nactivity)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.JobSteps.FlowControl.ForEachValue.Asci.ActiveBatch.Workflow.Runtime.IActivityExecutionHandler.Execute(IActivityExecutionContext\r\nexecutionContext) in\r\nc:\\TFS\\Builds\\V70\\ActiveBatch\\V70-Release\\Sources\\DotNet\\AddIns\\JobSteps\\FlowControl\\ForEachValue.cs:line\r\n84</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.TryInvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.InvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.ExecuteActivity(Activity\r\nactivity)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at Asci.ActiveBatch.JobSteps.JobStepSequence.Asci.ActiveBatch.Workflow.Runtime.IActivityExecutionHandler.Execute(IActivityExecutionContext\r\nexecutionContext)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.TryInvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.InvokeHandler(Activity\r\nactivity, IActivityExecutionHandler executionHandler)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.ActivityExecutionContext.ExecuteActivity(Activity\r\nactivity)</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">   at\r\nAsci.ActiveBatch.Workflow.WorkflowInstance.StartCallback()&lt;Workflow.Runtime&gt;</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<div>\r\n\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n\r\n<p class=MsoNormal><b><span style=\"font-size:10.0pt;font-family:'Tahoma','sans-serif'\">From:</span></b><span style=\"font-size:10.0pt;font-family:'Tahoma','sans-serif'\"> Cheeso\r\n[mailto:notifications@codeplex.com] <br>\r\n<b>Sent:</b> Wednesday, January 13, 2010 6:21 PM<br>\r\n<b>To:</b> Joseph Affrunti<br>\r\n<b>Subject:</b> Re: IO Exception causes archive file to be deleted\r\n[DotNetZip:80095]</span></p>\r\n\r\n</div>\r\n\r\n</div>\r\n\r\n<p class=MsoNormal> </p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">From:\r\nCheeso</span></p>\r\n\r\n<div style=\"margin-bottom:24.0pt\" id=ThreadNotificationPostBody>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">Hi Joe -</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">I'm not\r\ngetting any attached files. The replies you send get posted to the DotNetZip\r\nforums, but any attachments are stripped.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">For s\r\naimple stack trace, it'd be best if you just included it into the message, as\r\ntext.  Then it will show up on the forums.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">thanks</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\"> </span></p>\r\n\r\n</div>\r\n\r\n<div style=\"border:none;border-top:solid #CCCCCC 1.0pt;padding:0in 0in 0in 0in\" id=ThreadNotificationFooter>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">Read\r\nthe <a href=\"http://dotnetzip.codeplex.com/Thread/View.aspx?ThreadId=80095&ANCHOR#Post276897\">full\r\ndiscussion online</a>.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">To\r\nadd a post to this discussion, reply to this email (<a href=\"mailto:DotNetZip@discussions.codeplex.com?subject=[DotNetZip:80095]\">DotNetZip@discussions.codeplex.com</a>)</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">To\r\nstart a new discussion for this project, email <a href=\"mailto:DotNetZip@discussions.codeplex.com\">DotNetZip@discussions.codeplex.com</a></span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">You\r\nare receiving this email because you subscribed to this discussion on CodePlex.\r\nYou can <a href=\"http://www.codeplex.com/site/discussions/thread/unsubscribe/80095\">unsubscribe</a>\r\non CodePlex.com.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">Please\r\nnote: Images and attachments will be removed from emails. Any posts to this\r\ndiscussion will also be available online at CodePlex.com</span></p>\r\n\r\n</div>\r\n\r\n</div>\r\n\r\n",
    "PostedDate": "2010-01-13T15:30:23.197-08:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "276931",
    "ThreadId": "80095",
    "Html": "<p>Hi Joe,</p>\r\n<p>it sure seems like the exception is not coming from DotNetZip code.&nbsp; If I were you, I would start looking at line 367 in \\V70\\ActiveBatch\\V70-Release\\Sources\\DotNet\\AddIns\\JobSteps\\FileSystem\\Archive.cs, in&nbsp;the ActiveBatch source code.</p>",
    "PostedDate": "2010-01-13T18:12:03.083-08:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "277163",
    "ThreadId": "80095",
    "Html": "\r\n\r\n<div class=Section1>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\">Thank you.  My dumb!!! Sorry to bother you with that.</span></p>\r\n\r\n<p class=MsoNormal><span style=\"font-size:11.0pt;font-family:'Calibri','sans-serif';color:#1F497D\"> </span></p>\r\n\r\n<div>\r\n\r\n<div style=\"border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in\">\r\n\r\n<p class=MsoNormal><b><span style=\"font-size:10.0pt;font-family:'Tahoma','sans-serif'\">From:</span></b><span style=\"font-size:10.0pt;font-family:'Tahoma','sans-serif'\"> Cheeso\r\n[mailto:notifications@codeplex.com] <br>\r\n<b>Sent:</b> Wednesday, January 13, 2010 9:12 PM<br>\r\n<b>To:</b> Joseph Affrunti<br>\r\n<b>Subject:</b> Re: IO Exception causes archive file to be deleted\r\n[DotNetZip:80095]</span></p>\r\n\r\n</div>\r\n\r\n</div>\r\n\r\n<p class=MsoNormal> </p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">From:\r\nCheeso</span></p>\r\n\r\n<div style=\"margin-bottom:24.0pt\" id=ThreadNotificationPostBody>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">Hi Joe,</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif'\">it sure\r\nseems like the exception is not coming from DotNetZip code.  If I were\r\nyou, I would start looking at line 367 in\r\n\\V70\\ActiveBatch\\V70-Release\\Sources\\DotNet\\AddIns\\JobSteps\\FileSystem\\Archive.cs,\r\nin the ActiveBatch source code.</span></p>\r\n\r\n</div>\r\n\r\n<div style=\"border:none;border-top:solid #CCCCCC 1.0pt;padding:0in 0in 0in 0in\" id=ThreadNotificationFooter>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">Read\r\nthe <a href=\"http://dotnetzip.codeplex.com/Thread/View.aspx?ThreadId=80095&ANCHOR#Post276931\">full\r\ndiscussion online</a>.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">To\r\nadd a post to this discussion, reply to this email (<a href=\"mailto:DotNetZip@discussions.codeplex.com?subject=[DotNetZip:80095]\">DotNetZip@discussions.codeplex.com</a>)</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">To\r\nstart a new discussion for this project, email <a href=\"mailto:DotNetZip@discussions.codeplex.com\">DotNetZip@discussions.codeplex.com</a></span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">You\r\nare receiving this email because you subscribed to this discussion on CodePlex.\r\nYou can <a href=\"http://www.codeplex.com/site/discussions/thread/unsubscribe/80095\">unsubscribe</a>\r\non CodePlex.com.</span></p>\r\n\r\n<p><span style=\"font-size:9.0pt;font-family:'Verdana','sans-serif';color:gray\">Please\r\nnote: Images and attachments will be removed from emails. Any posts to this\r\ndiscussion will also be available online at CodePlex.com</span></p>\r\n\r\n</div>\r\n\r\n</div>\r\n\r\n",
    "PostedDate": "2010-01-14T07:51:36.043-08:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  }
]