From: Christopher A B. <ca...@tc...> - 2003-01-16 19:01:16
|
As Keith A. Clay once put it so eloquently: > openssl s_client -host oracleOidServer -port 636 -CAfile oracle.pem -debug [...] > I would assume the start_tls would point to port 636 rather than 389. > When I set the port to 636 in the constructor it just hangs the program. start_tls changes an existing non-SSL session (usually on port 389) to SSL. Use Net::LDAPS instead of start_tls to do a completely SSL session to port 636, like your openssl example. %% Christopher A. Bongaarts %% ca...@tc... %% %% Internet Services %% http://umn.edu/~cab %% %% University of Minnesota %% +1 (612) 625-1809 %% |