in reply to SSL Transfer error 'wrong version number'
Well, this man page suggests that this occurs, as you say, when the client changes its SSL protocol values in a effort to be "helpful". Digging through Net::SSL suggests that this in fact is done by Crypt:SSLeay:
$args{SSL_Version} = 3; # the new connect might itself be overridden with a REAL SSL my $new_ssl = Net::SSL->new(%args); $REAL{$self} = $REAL{$new_ssl} || $new_ssl;
But I'm still investigating. What are the allowed values for SSL on your IIS server? Also, do they match the values for your WebSphere?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: SSL Transfer error 'wrong version number'
by rusacarr (Acolyte) on Oct 10, 2003 at 13:36 UTC | |
by idsfa (Vicar) on Oct 10, 2003 at 18:02 UTC |