[twsocket] A question about OpenSSL DLLs Distribution

2009-02-28 Thread jlist9
Hello all, After reading the openssl site, my understanding is that if I want to include the binaries (the two DLLs needed by ICS SSL) I'll need to include this license file in the distribution: http://www.openssl.org/source/license.html Is there anything else I need to do? Is it OK to provide b

Re: [twsocket] A question about OpenSSL DLLs Distribution

2009-03-01 Thread jlist9
Thanks for the reply! > Put the files on a server which is located in a country with > liberal export restrictions. Make sure that you don't violate > possible export restrictions. Oh. Does this mean including the two DLLs in my installer or zip package is subject to the same export restrictions?

Re: [twsocket] A question about OpenSSL DLLs Distribution

2009-03-01 Thread jlist9
Hello Arno, Yeah. It looks like it's not allowed to provide downloads from a site in the US. http://www.openssl.org/support/faq.html says: "When there were tight restrictions on the export of strong encryption software from the US only weak encryption algorithms could be freely exported (initiall

[twsocket] OpenSSL 0.9.8.e works while 0.9.8.h doesn't

2009-03-01 Thread jlist9
I have been using OpenSSL 0.9.8.e and my app works fine. Today I switched to 0.9.8.h that I got from ICS site and my app stops working. I haven't seen any obvious errors. I'm using the default OverbyteIcsSslDefs.inc, which has: {#$DEFINE NO_OSSL_VERSION_CHECK} {#$DEFINE BEFORE_OSSL_098E} {#$DEFIN

Re: [twsocket] OpenSSL 0.9.8.e works while 0.9.8.h doesn't

2009-03-02 Thread jlist9
>> I have been using OpenSSL 0.9.8.e and my app works fine. >> Today I switched to 0.9.8.h that I got from ICS site and >> my app stops working. I haven't seen any obvious errors. > It's likely that this build depends on some MS libraries, > the same applies to the build available at > http://www

Re: [twsocket] OpenSSL 0.9.8.e works while 0.9.8.h doesn't

2009-03-02 Thread jlist9
>> And the file sizes are fairly similar to the 0.9.8.e version >> that works. Has anyone tried 0.9.8.h with success? > Yes, it was the highest possible version for some time. > How does your app stop working? Any error message, AV etc.? Arno, I haven't got time to debug it yet. It looked as if i

Re: [twsocket] OpenSSL 0.9.8.e works while 0.9.8.h doesn't

2009-03-02 Thread jlist9
Hello Arno, > How does your app stop working? Any error message, AV etc.? This error shows up in IDE (and only in IDE): Project SSLTest.exe raised exception class EIcsLibeayException with message 'Unsupported OpenSSL version (0x0090808F)! Supported versions are 0x0090805F - 0x0090805F FileName:

Re: [twsocket] OpenSSL 0.9.8.e works while 0.9.8.h doesn't

2009-03-02 Thread jlist9
> Forgot to mention that you must be eating those exceptions. Hmmm. In my simple SSLTest app, I'm not catching any of the exceptions. Could it be the behavior of an earlier version of ICS SSL? -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/

Re: [twsocket] OpenSSL 0.9.8.e works while 0.9.8.h doesn't

2009-03-02 Thread jlist9
Hello Arno, > You are using in an old ICS version. I just re-downloaded V6 RC1 from ICS site (not subversion.) It seems to be the same as the version I'm using. I notice a lot of conditional defines in the source code, though. I'm only using the default. > Yes, always use the head revision from

Re: [twsocket] OpenSSL 0.9.8.e works while 0.9.8.h doesn't

2009-03-03 Thread jlist9
Thanks Arno. This did the trick! > Or change unit OverbyteIcsLIBEAY.pas: > const > [..] > //OSSL_VER_0906G = $0090607f; no longer supported > OSSL_VER_0907G = $0090707f; > OSSL_VER_0907I = $0090709f; > OSSL_VER_0908 = $00908000; > OSSL_VER_0908A = $0090801f; > OSSL_V

Re: [twsocket] OpenSSL 0.9.8.e works while 0.9.8.h doesn't

2009-03-03 Thread jlist9
Hello Arno, Thanks. That's good to know. I'll add the check. Jack > The exception is raised after the library has been loaded dynamically > at run-time. The library is loaded when the first OpenSSL function is > called. For instance WSocket.Connect would then raise this exception. > You probably

[twsocket] SSL client cer - no client cert

2009-03-07 Thread jlist9
Hi all, I'm playing with SSL socket. It seems that SSL works w/o a client certificate (no cert files is specified in SslContext.) In this case, what will the client send to the server? Jack -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/c

Re: [twsocket] SSL client cer - no client cert

2009-03-08 Thread jlist9
Thanks. Yes, I understand the traffic will be encrypted. I was looking at the TLS protocol. After the ServerHello, the client is supposed to send the client cert to the server. I wonder what will the client send in this case... On Sun, Mar 8, 2009 at 12:18 AM, Francois PIETTE wrote: >> I'm playin

Re: [twsocket] GpHTTPProxy

2009-05-16 Thread jlist9
How are you filtering the domain name exactly? Maybe you are using the full name such as http://www.domain.com/ while the google result uses a partial name such as domain.com ? On Sat, May 16, 2009 at 10:08 AM, randy wrote: > Thank you Francois , just for you information i use FireFox for testing

Re: [twsocket] GpHTTPProxy

2009-05-16 Thread jlist9
You can try printing out the header and see if it has your domain name in it. Then figure out why CompareText isn't catching it. Looks like you are doing a full string match. Wouldn't a partial match work better? > AH yes jlist9 , i use the follwing : > { * > Domain List

Re: [twsocket] GpHTTPProxy

2009-05-16 Thread jlist9
I think you should check if it's there and why your code is finding it in one case but not the other, and what's different between the two, then decide on the fix. On Sat, May 16, 2009 at 11:13 AM, randy wrote: > so jlist9 , do you suggest using Pos function  instead of CompareTex