Re: [twsocket] Report a strange problem about using TsslHttpCli(ICSv7)in Delphi 2010 thread.

2009-10-06 Thread Tobias Rapp
Arno Garrels wrote: > procedure TTestThread.Execute; > var > Msg: TMsg; > begin > // PeekMessage(Msg, 0, 0, 0, PM_NOREMOVE); // Initialize thread's message > queue > > FHandle := Classes.AllocateHWnd(WndProc); // Create a hidden window > [...] Can you give details why a call to PeekMessag

Re: [twsocket] Need some help with OverbyteIcsLibEayEx

2009-10-06 Thread Paul
- Original Message - From: "Arno Garrels" To: "ICS support mailing" I don't know, however the RSA crypto demo in V7 PemTool works fine with D2010/D2009, String is converted to AnsiString first which IMO ensures best backwards compatibility. It does not. The rsa encryption does

Re: [twsocket] Need some help with OverbyteIcsLibEayEx

2009-10-06 Thread Arno Garrels
Paul wrote: > - Original Message - > From: "Arno Garrels" > To: "ICS support mailing" >> >> I don't know, however the RSA crypto demo in V7 PemTool works fine >> with D2010/D2009, String is converted to AnsiString first >> which IMO ensures best backwards compatibility. > > It does not.

Re: [twsocket] Report a strange problem about using TsslHttpCli(ICSv7)in Delphi 2010 thread.

2009-10-06 Thread Arno Garrels
Tobias Rapp wrote: > Arno Garrels wrote: > >> procedure TTestThread.Execute; >> var >> Msg: TMsg; >> begin >> // PeekMessage(Msg, 0, 0, 0, PM_NOREMOVE); // Initialize thread's >> message queue >> >> FHandle := Classes.AllocateHWnd(WndProc); // Create a hidden window >> [...] > > Can you g

Re: [twsocket] Need some help with OverbyteIcsLibEayEx

2009-10-06 Thread Paul
- Original Message - From: "Arno Garrels" To: "ICS support mailing" Sent: Tuesday, October 06, 2009 6:18 PM Subject: Re: [twsocket] Need some help with OverbyteIcsLibEayEx Decryption uses the private key, if the private key PEM is password protected it has to be specified otherwise

Re: [twsocket] Need some help with OverbyteIcsLibEayEx

2009-10-06 Thread Arno Garrels
Paul wrote: > - Original Message - > From: "Arno Garrels" > To: "ICS support mailing" > Sent: Tuesday, October 06, 2009 6:18 PM > Subject: Re: [twsocket] Need some help with OverbyteIcsLibEayEx > > >> Decryption uses the private key, if the private key PEM is >> password protected it ha

Re: [twsocket] Report a strange problem about using TsslHttpCli(ICSv7)in Delphi 2010 thread.

2009-10-06 Thread Tobias Rapp
Arno Garrels wrote: > Tobias Rapp wrote: > > Can you give details why a call to PeekMessage() should be added > > here? > > Not necessarily, but it's good practice to initialize the queue as > soon as possible in order not to miss any message. Ok, I understand now. It's not strictly necessary b