Re: [twsocket] error with Ftp over TLS

2009-12-07 Thread Arno Garrels
Svemu - Reparto Sviluppo wrote: > Hi, > i use a TSslFtpClient and TSslContext for upload and download data > from FtpServer over TLS. > > some customers have this error: > 500 Control connection closed - Connection aborted (#10053) Strange, was it possible to post a common FTP log as well? With m

[twsocket] error with Ftp over TLS

2009-12-07 Thread Svemu - Reparto Sviluppo
Hi, i use a TSslFtpClient and TSslContext for upload and download data from FtpServer over TLS. some customers have this error: 500 Control connection closed - Connection aborted (#10053) this is the section of code that i use for download: FtpClient1.DisplayFileFlag := false;

Re: [twsocket] SSL Ciphers

2009-12-07 Thread Arno Garrels
Fastream Technologies wrote: > It did not work! Peers exchange cipher suits in plain text during the SSL handshake so it's possible to check whether one peer might sent only a few, weak ciphers using a protocol analizer. If I recall it well, by default clients select the cipher for the session.

[twsocket] Mailing list usage

2009-12-07 Thread Francois PIETTE
To all subscribers: 1) Please do not use HTML or RTF messages in the list. Use only plain/text messages (by default Outlook uses HTML ! You must change the setting). When replying, be sure to use plain/text. If someone email to list accidently NOT in plain text and if you reply to it, do

[twsocket] Wiki : author wanted

2009-12-07 Thread Francois PIETTE
Hi ! As you probably know, we have a Wiki for ICS documentation: http://wiki.overbyte.be A wiki is a collaborative tool. We already have a few authors writing articles. Actually not that much ! If you have some spare time, please use it to write some article in the wiki. If each ICS user wri

[twsocket] ICS group on social networks LinkedIn and FaceBook

2009-12-07 Thread Francois PIETTE
Hi ! Every ICS user is invited to be part of ICS-group on Linked-In. See http://www.linkedin.com/e/gis/136245 Why ? Just to have a little bit more visibility for everyone of us and for ICS. There is another one on FaceBook: http://www.facebook.com/pages/ICS-Internet-Component-Suite/394936221

Re: [twsocket] Use of twsocket in thttpserver application

2009-12-07 Thread Paul
Each time my webserver needs to "nudge" one of the other applications then I guess I should start a thread to do this. Not always, but when it has lenghty operations to perform. Keep in mind that creating a thread takes its time too. If you have to create a thread frequently, it's better to cre

Re: [twsocket] Use of twsocket in thttpserver application

2009-12-07 Thread Francois PIETTE
After I call connect I call application processmessages until I get connected and then I close. Do you think this could be "interfering" with the HttpServer component logic? Not excatly the logic, but it will make things go wrong because calling ProcessMessages will cause events to be triggere

Re: [twsocket] Use of twsocket in thttpserver application

2009-12-07 Thread Angus Robertson - Magenta Systems Ltd
> Each time my webserver needs to "nudge" one of the other > applications then I guess I should start a thread to do this. Why do you need a thread? If you call connect to open a socket to the other application, it will eventually give a connect event with fail or success, from which you can tri

Re: [twsocket] Use of twsocket in thttpserver application

2009-12-07 Thread Chris Schofield
Hi Paul Hmm. I thought the application process messages might be screwing things up. I just needed it confirming. Each time my webserver needs to "nudge" one of the other applications then I guess I should start a thread to do this. The "other" applications simply come to life when "nudged" by t

Re: [twsocket] Use of twsocket in thttpserver application

2009-12-07 Thread Paul
My socket connection to other programs is done in the main thread. Should not be a problem, but it could slow down the server. After I call connect I call application processmessages until I get connected and then I close. Do you think this could be "interfering" with the HttpServer component

Re: [twsocket] SSL Ciphers

2009-12-07 Thread Fastream Technologies
It did not work! On Sat, Nov 28, 2009 at 1:12 PM, Fastream Technologies wrote: > I thought it was the default setting. > > On Sat, Nov 28, 2009 at 12:00 PM, Arno Garrels > wrote: > > Fastream Technologies wrote: > >> I forgot to say: useSSLv2 is off and the other two is on in flags. > > > > Did

Re: [twsocket] Use of twsocket in thttpserver application

2009-12-07 Thread Chris Schofield
Hi Paul My socket connection to other programs is done in the main thread. After I call connect I call application processmessages until I get connected and then I close. Do you think this could be "interfering" with the HttpServer component logic? Is doing the communication socket call in a

Re: [twsocket] Use of twsocket in thttpserver application

2009-12-07 Thread Paul
I have many Https servers running 24/7. The communication with other applications/webservices in done by several SslHttpCli's running in continuous threads and never had problems with it. Add some logging in both sever and client sockets so you at least find when the error occurs and if it occ

[twsocket] Use of twsocket in thttpserver application

2009-12-07 Thread Chris Schofield
Hi I have a web server application based on THTTPServer component. As part of the processing I need to signal a separate program that an update is required. I use a twsocket to connect the programs tcp socket to do this. This causes some issues with the Httpserver component and it "sto