Hello
I'm trying to create a ZIP file from Silverlight with a list of JSON data and compresses well. The problem is to receive it in the server because I have no library Telerik receive the Zip to extract and process the result. The library I am using is IonicZip to receive the result but I get error trying to read the MemoryStream. Is there a library for ASP.net Telerik decompress the ZIP file
Code in Silverlight:Code in WCF:MemoryStream memoryStream =newMemoryStream();ZipCompression method = ZipCompression.Default;Telerik.Windows.Zip.ZipOutputStream zipOutputStream =newTelerik.Windows.Zip.ZipOutputStream(memoryStream, method);StreamWriter writer =newStreamWriter(zipOutputStream);writer.Write(listSave.ToJSON());writer.Flush();ServicesClient context =newServicesClient();context.SetZipFileAsync( Convert.ToBase64String(memoryStream.ToArray()));publicvoidSetZipFile(string_parameter){if(!string.IsNullOrWhiteSpace(_parameter)){var info = Convert.FromBase64String(_parameter);MemoryStream stream =newMemoryStream(info);stringdataList =string.Empty;MemoryStream output =newMemoryStream();StreamReader read =newStreamReader(output);using(ZipFile zip = ZipFile.Read(stream)){ZipEntry item = zip[0];item.Extract(output);output.Seek(0, SeekOrigin.Begin);dataList = read.ReadToEnd();}}}