Dear friends, I need hbtipssl.lib. It is not in the official Harbour distribution. I already searched this forum but I haven't found a clear answer.
EMG
Dear friends, I need hbtipssl.lib. It is not in the official Harbour distribution. I already searched this forum but I haven't found a clear answer.
EMG
Enrico, For which compiler?
Right, sorry: BCC 7.40 32 bit.
EMG
-env:HB_TIP_OPENSSL=yes
hbtip.hbpThank you, but I don't have Harbour source code. ![]()
EMG
Previous post updated to provide url to download it ![]()
You may get some unresolved externals. Please tell them
#include "Fivewin.ch"
FUNCTION MAIN()
  GETMAIL( cServer, cUser, cPassword )
  RETURN NIL
STATIC FUNCTION GETMAIL( cServer, cUser, cPassword )
  LOCAL lOk := .F.
  LOCAL oCli
  oCli = TIPClientPOP():New( "pop://" + cUser + ":" + cPassword + "@" + cServer )
  oCli:oUrl:cUserid = cUser
  oCli:nDefaultPort = 995
  oCli:lSSL = .T.
  ? oCli:Open()
  ? oCli:CountMail()
  oCli:Close()
  RETURN lOkWhat error do you get ? How do you know that it is failing ?
I get:
.F.
-1
while using xHarbour I get:
.T.
0
that is the right result.
EMG
Sorry, I just edited my sample (using standard FW include now).
EMG
Any ideas?
EMG
I'm still stucking on this problem. Do I have to give up with Harbour and SSL?
EMG