Ver Mensaje Individual
  #1  
Antiguo 27-04-2008
Avatar de MaMu
MaMu MaMu is offline
Miembro
 
Registrado: abr 2006
Ubicación: Argentina
Posts: 863
Reputación: 19
MaMu Va por buen camino
No carga librería SSL

Siguiendo el ejemplo que dejó roman, no pudo hacer andar el programa:

http://www.clubdelphi.com/foros/show...ght=IdSmtp+ssl

Siempre me tira el error, de que no ha podido cargar la librería, derivando en la excepcion:

Código Delphi [-]
 
{ TIdSSLContext }
constructor TIdSSLContext.Create;
begin
  inherited Create;
  //an exception here probably means that you are using the wrong version
  //of the openssl libraries. refer to comments at the top of this file.
  if not IdSSLOpenSSL.LoadOpenSSLLibrary then begin
    raise EIdOSSLCouldNotLoadSSLLibrary.Create(RSOSSLCouldNotLoadSSLLibrary);
  end;
  fVerifyMode := [];
  fMode := sslmUnassigned;
  fSessionId := 1;
end;

He bajado todas, y las he probado una por una, tanto en la carpeta del proyecto como en %/system32/ y no hay caso.
Donde puede estar el problema?
__________________
Código Delphi [-]
 
try 
ProgramarMicro(80C52,'Intel',MnHex,True);
except
On Exception do
MicroChip.IsPresent(True);
end;
Responder Con Cita