<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Use ICSharpCode.SharpZipLib to write directly to Response.OutputStream in a asp.net application</title>
	<atom:link href="http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/</link>
	<description>Wrecks of code floating in the sea of Internet</description>
	<lastBuildDate>Wed, 28 Jul 2010 15:30:03 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Moshe</title>
		<link>http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/comment-page-1/#comment-2554</link>
		<dc:creator>Moshe</dc:creator>
		<pubDate>Thu, 02 Jul 2009 15:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/#comment-2554</guid>
		<description>I was able to get streaming with sharpZip, but not able to set the root directory, so I must physically copy the files before zipping, which is no good. 

So I&#039;m taking on Cheeso&#039;s offer to use his DotNetZip and I&#039;ll try to add support for realtime on-the-fly streaming output myself.  If I succeed, I&#039;ll tell you all. Moshe</description>
		<content:encoded><![CDATA[<p>I was able to get streaming with sharpZip, but not able to set the root directory, so I must physically copy the files before zipping, which is no good. </p>
<p>So I&#8217;m taking on Cheeso&#8217;s offer to use his DotNetZip and I&#8217;ll try to add support for realtime on-the-fly streaming output myself.  If I succeed, I&#8217;ll tell you all. Moshe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alkampfer</title>
		<link>http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/comment-page-1/#comment-2549</link>
		<dc:creator>alkampfer</dc:creator>
		<pubDate>Tue, 30 Jun 2009 17:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/#comment-2549</guid>
		<description>anyway ICSharpCode is in production and never gave me a problem. Actually im quite satisfied of it and I do not want to change it :P. Thanks for comments.

alk.</description>
		<content:encoded><![CDATA[<p>anyway ICSharpCode is in production and never gave me a problem. Actually im quite satisfied of it and I do not want to change it <img src='http://www.codewrecks.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> . Thanks for comments.</p>
<p>alk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moshe</title>
		<link>http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/comment-page-1/#comment-2548</link>
		<dc:creator>Moshe</dc:creator>
		<pubDate>Tue, 30 Jun 2009 08:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/#comment-2548</guid>
		<description>But DotNetZip does not support streaming before the whole file is saved, whereas the sharpZip currently does, which is what alkampfer who posted this, was trying to do.</description>
		<content:encoded><![CDATA[<p>But DotNetZip does not support streaming before the whole file is saved, whereas the sharpZip currently does, which is what alkampfer who posted this, was trying to do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cheeso</title>
		<link>http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/comment-page-1/#comment-2124</link>
		<dc:creator>Cheeso</dc:creator>
		<pubDate>Mon, 09 Mar 2009 22:29:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/#comment-2124</guid>
		<description>You can use DotNetZip to save directly to the ASP.NET Response.OutputStream, with no intervening wrapper class. 
No temp file is created - the zip content just goes straight out to the browser. It&#039;s very simple to do.  

A working example is here: 
http://dinoch.dyndns.org:6060/zip/DotNetZip-CreateZip-Csharp.aspx 
You can see the source there, too.  

DotNetZip is free and open source, a good library for zip files. 
Check it out.</description>
		<content:encoded><![CDATA[<p>You can use DotNetZip to save directly to the ASP.NET Response.OutputStream, with no intervening wrapper class.<br />
No temp file is created &#8211; the zip content just goes straight out to the browser. It&#8217;s very simple to do.  </p>
<p>A working example is here:<br />
<a href="http://dinoch.dyndns.org:6060/zip/DotNetZip-CreateZip-Csharp.aspx" rel="nofollow">http://dinoch.dyndns.org:6060/.....sharp.aspx</a><br />
You can see the source there, too.  </p>
<p>DotNetZip is free and open source, a good library for zip files.<br />
Check it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Use ICSharpCode.SharpZipLib to write directly to Response &#8230; : insurancesitesfind</title>
		<link>http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/comment-page-1/#comment-1715</link>
		<dc:creator>Use ICSharpCode.SharpZipLib to write directly to Response &#8230; : insurancesitesfind</dc:creator>
		<pubDate>Tue, 26 Aug 2008 12:52:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.codewrecks.com/blog/index.php/2008/08/26/use-icsharpcodesharpziplib-to-write-directly-to-responseoutputstream-in-a-aspnet-application/#comment-1715</guid>
		<description>[...] Original post by alkampfer [...]</description>
		<content:encoded><![CDATA[<p>[...] Original post by alkampfer [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
