PassportIdentity.Compress - ??
-
I've tried to use this method just as I see it after Googling every way I can find, and the usage is all the same:
string strCompressed = PassportIdentity.Compress(strToCompress);
But when I try to use it, I get an exception: "Unable to load dll (aspnet_isapi.dll)". I added a reference to System.Web and a using directive for System.Web.Security, and it just won't work. Any clues as to what I'm screwing up? My Music | My Pics | My Articles BlackDice -
I've tried to use this method just as I see it after Googling every way I can find, and the usage is all the same:
string strCompressed = PassportIdentity.Compress(strToCompress);
But when I try to use it, I get an exception: "Unable to load dll (aspnet_isapi.dll)". I added a reference to System.Web and a using directive for System.Web.Security, and it just won't work. Any clues as to what I'm screwing up? My Music | My Pics | My Articles BlackDice- Are you trying to use it in ASP.NET with Microsoft IIS installed? 2) How are you trying to use it? -- I've killed again, haven't I?
-
- Are you trying to use it in ASP.NET with Microsoft IIS installed? 2) How are you trying to use it? -- I've killed again, haven't I?
I've found out I'm using the wrong thing. What I need to use is System.IO.Compression to achieve what I'm trying to do (compress a long string that is sent both ways from client and server using sockets on specific ports) My Music | My Pics | My Articles BlackDice