Skip to main content
Home Forums General Silverlight Getting Started Substitute for System.IO.Packaging
6 replies. Latest Post by prujohn on January 8, 2009.
(0)
krantisi...
Member
4 points
13 Posts
01-07-2009 5:36 AM |
Hi,
I am upgrading my Silverlight 1.1 application to Silverlight 2.0. For that I need classes from System.IO.Packaging.Can anybody tell what is substitute for System.IO.Packaging in Silverlight 2.0.
Thanks,Krantisinh
bryant
Star
9927 points
1,629 Posts
01-07-2009 10:16 AM |
Sorry, but can you provide some information on why you need the Packaging? Are you zipping things up on the client? You'll probably need to do the packaging on the server which would have access to this namespace.
ken tucker
All-Star
16154 points
2,463 Posts
01-07-2009 10:17 AM |
Sorry there is no direct replacement for the packing class. There are some third party zip libraries from component one, and xceed. There is a silverlight version of the sharpziplib on codeplex. I am not sure how well it works
http://www.codeplex.com/slsharpziplib
prujohn
Contributor
3567 points
703 Posts
01-07-2009 10:43 AM |
ken tucker: Sorry there is no direct replacement for the packing class. There are some third party zip libraries from component one, and xceed. There is a silverlight version of the sharpziplib on codeplex. I am not sure how well it works http://www.codeplex.com/slsharpziplib
I can endorse this library. Works very well for me.
01-08-2009 1:51 AM |
Using Packaging for creating ZIP at run time.
01-08-2009 1:58 AM |
Thanks,
I browse sharpziplib, but i didn't got required methods.Is there any other library, which can help me?
01-08-2009 9:42 AM |
The library will give you a compressed (with zip compression) of your data, you can then send that data to a web service to save it as an actual .zip file.