W
Winista
I have a library that reads PDF file and manipilates its content. And I use
SharpZip library to decompress the streams included in PDF file. All well
and good. I have 3 lines of my test code that takes a PDF file and spits out
the required content from the file. It all works fine in .Net.1.
environment.
Now I wrote the same 3 lines of code in .Net2.0 console test application and
use the assemblies for PDF library and SharpZip compiled with .Net.1.1. The
application will throw exceptions in the deflate algorithm "Index out of
bound". Then I tried to replace the SharpZip decompression code with
DelateStream class in .Net2.0 framework, recompiled pdf library and sharpzip
assemblies with .Net2.0. But still no luck.
Is there something I am missing in this whole equation of using my 1.1
libraries with .Net2.0 application?
Thanks
SharpZip library to decompress the streams included in PDF file. All well
and good. I have 3 lines of my test code that takes a PDF file and spits out
the required content from the file. It all works fine in .Net.1.
environment.
Now I wrote the same 3 lines of code in .Net2.0 console test application and
use the assemblies for PDF library and SharpZip compiled with .Net.1.1. The
application will throw exceptions in the deflate algorithm "Index out of
bound". Then I tried to replace the SharpZip decompression code with
DelateStream class in .Net2.0 framework, recompiled pdf library and sharpzip
assemblies with .Net2.0. But still no luck.
Is there something I am missing in this whole equation of using my 1.1
libraries with .Net2.0 application?
Thanks