Re: [twsocket] Android

2018-09-27 Thread Markus Humm
> >> Now my other topic: what became of the idea to support Android >> which came up lately? > > Effort on mobile platforms and Linux stalled due the massive changes > needed to replace missing AnsiStrings. Also little demand. Means if there would be some sort of AnsiString support say for

[twsocket] Android

2018-09-26 Thread Markus Humm
@Arno: great what you achieved! Thanks for implementing this! Now my other topic: what became of the idea to support Android which came up lately? How far is it? WHat needs to be done to get such a thing working? I'm currently unsure which options for Delphi exist to call web services etc. on

Re: [twsocket] SSL enabling SMTPCLi

2017-05-03 Thread Markus Humm
Hello, I shortly looked at the mentioned sample. It contains some pem files which seem to be certificates. Correct? The seem to be different from the ones I already used for my DataSnap rest server to SSL enable it. And the other thing: if I initiate some SMTP connection using such certificates,

Re: [twsocket] SSL enabling SMTPCLi

2017-04-29 Thread Markus Humm
Hello Angus, thanks for your answer. It is a good starting point for me once I actually find the time to do the necessary changes (which is not now). As for sending issues: I already implemented the possibility to specify several e-mail servers in my application which will be tried in the

[twsocket] SSL enabling SMTPCLi

2017-04-28 Thread Markus Humm
Hello, I once wrote a Delphi application in D2007 sending e-mails via SMTPCli which got migrated to Berlin 10.1 meanwhile and thus ICS got upgraded to some 8.x version. Sending still works, but only for SMTP servers not requiring TLS. What would I need to do to TLS enable this application? There

Re: [twsocket] TWSocket Digest, Vol 634, Issue 1

2015-12-29 Thread Markus Humm
> Message: 3 > Date: Tue, 29 Dec 2015 11:36:34 + > From: Stephen Dickason > To: "twsocket@lists.elists.org" > Subject: [twsocket] FW: ICS contributions faq > Message-ID: > <23c0cbd4325cb84dabd7533e8cdc613701ed532...@femia.elcb.co.za> >

[twsocket] UDP issue

2015-07-07 Thread Markus Humm
Hello, I tested one of my applications today which I moved from Delphi XE to XE8 recently and thus to a newer ICS version V8 from March 2015. I don't remember the version used back in XE, but I guess it was something current back then and never updated. One functionality seems to constantly fail

[twsocket] TWSocket.Receive and WASE_WOULDBLOCK

2015-04-24 Thread Markus Humm
Hello, I searched for quite some time for some sporadic bug in my app and at the end found out that TWSocket.ReceiveFrom can return -1 to indicate an error. Ok. But: why is the OnDataAvailable method being called when the result of the receive call results in error WASE_WOULDBLOCK? Could this

Re: [twsocket] HTTP and proxy

2015-01-04 Thread Markus Humm
Message: 3 Date: Sat, 03 Jan 2015 15:12:09 + From: RTT p...@sapo.pt To: ICS support mailing twsocket@lists.elists.org Subject: Re: [twsocket] HTTP and proxy Message-ID: 54a806c9.4060...@sapo.pt Content-Type: text/plain; charset=windows-1252; format=flowed On 02-Jan-2015 18:55, Markus

Re: [twsocket] TWSocket Digest, Vol 591, Issue 4

2014-12-06 Thread Markus Humm
Am 06.12.2014 13:00, schrieb twsocket-requ...@lists.elists.org: procedure TLobbyServer.SocketServerDataAvailable(Sender: TObject; ErrCode: Word); begin if ErrCode 0 then Exit; with Sender as TWSocketClient do begin RunCommand(ReceiveStr, Sender as TWSocketClient); end; end;