UweKeim / aspnetserve

A free and open source ASP.NET 2.0/3.x web server.
BSD 3-Clause "New" or "Revised" License
4 stars 0 forks source link

WebApplicationPackage does't extract zipfiles properly. #14

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Just a minor defect: In version 1.3.1 the 
WebApplicationPackage.ExtractWapToPath(path) method won't extract zipfiles 
(correctly).
At the first line, "new ZipFile(_stream)" should be "ZipFile.Read
(_stream)". ZipFile's ctor expects an output stream but an input stream 
was given.

Original issue reported on code.google.com by Essentia...@gmail.com on 19 Oct 2008 at 9:38

GoogleCodeExporter commented 9 years ago
Thank you. That's what happens when I get too hasty and don't test those 
"minor" changes.

Regardless, the issue has been resolved per your suggestion. Until the next 
release
feel free to check out the latest source in the Subversion trunk.

Original comment by jason.wh...@gmail.com on 24 Oct 2008 at 2:48