[twsocket] Secure FTP

2007-04-25 Thread Robert Chafer
Hi Does ICS support secure FTP? -- Rob Chafer Silverfrost -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] Secure FTP

2007-04-26 Thread Robert Chafer
Thanks Francois On Thu, 26 Apr 2007 10:51:06 +0200, you wrote: > > Does ICS support secure FTP? > > ICS-SSL support FTP over SSL (FTPS) and TLS. > ICS-SSL doesn't support FTP over SSH (SFTP). > > SSL => Secure Socket Layer, a general purpose strong cryptography transport, > used by HTTPS

Re: [twsocket] Keeping a Responsive UI during THTTPCli Download

2007-11-11 Thread Robert Chafer
> > I have tried a number of things and finally ended up adding a timer with an > Application.ProcessMessages in it. Is there a better way to keep the UI > responsive for button clicks and such? > > Thanks, > -- > Johnnie Norsworthy -- Robert Chafer Silverfros

Re: [twsocket] HTTP LINK method?

2008-01-21 Thread Robert Chafer
; > LINK /dunman/ - 80 - 15.227.137.71 > Mozilla/4.0+(compatible;+MSIE+5.0;+Win32) 501 0 0 > > Is this an error or something new? > > Angus Robert Chafer http://www.silverfrost.com http://www.kickandscream.co.uk http://cricket-forever.blogspot.com -- To unsubscribe or chan

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

2009-05-14 Thread Robert Chafer
gt; >> case smtpMailFrom: SMTP->RcptTo(); break; > >> case smtpRcptTo: SMTP->Data(); break; > >> case smtpData: SMTP->Quit(); break; > >> } > > > > No. Tried this too. > > Really? > > > T

Re: [twsocket] Bandwidth control TFtpClient

2006-01-18 Thread Robert Chafer
One reason would be that the client does not want to soak up all the bandwidth. For example, I routinely run an RDP session over my Internet connection. It would be nice to also do some low-level downloading with FTP -- generally I cannot because the FTP client gets data at the limit of my bandwidt

Re: [twsocket] HttpCli UTF-8 Coding Issue

2006-07-20 Thread Robert Chafer
It depends on how you interpret the characters you are downloading. Look at this page: http://www.expansys.fr/ Now change the encoding from ISO8859-1 to UTF-8 (in IE its right click the page and choose encoding, FF View->Character Encoding). You see how (in IE) the accented characters turn into C

Re: [twsocket] HttpCli UTF-8 Coding Issue

2006-07-20 Thread Robert Chafer
FireFox knows because it says so in the HTML itself: http://www.expansys.fr/ http://www.expansys.cn/ In addition the http headers indicate (for the Chinese one above): Connection: close Date: Thu, 20 Jul 2006 23:52:55 GMT Server: Microsoft-IIS/6.0 Content-Type: text/html; Charset=utf-8 Cache

Re: [twsocket] HttpCli UTF-8 Coding Issue

2006-07-21 Thread Robert Chafer
the first 7 bits of UTF-8 are ASCII, it uses the top 128 characters to represent all the other Unicode characters. Take a look at the JEDI library they have converters. On Fri, 21 Jul 2006 10:25:17 -0300, you wrote: > Thank you all for your answers, > > I found out the error. It was, as

[twsocket] TWSocket threads

2006-08-28 Thread Robert Chafer
Hi When I use TWSocket based components and they do an async operation, does the operation actually happen on a separate thread and then the results get sent via a message to the calling thread? My reasons for asking is that is how ADO works, if you perform an asynchronous execute, it is done on

Re: [twsocket] TWSocket threads

2006-08-28 Thread Robert Chafer
Hi Angus Do you use a different ADO connection for every query (my app does)? On Mon, 28 Aug 2006 14:12 +0100 (BST), you wrote: > > There is a (very) subtle bug in ADO > > that means ADO async threads sometimes hang when they are released. > > This happens about one time in 100,000 calls (by

Re: [twsocket] TWSocket threads

2006-08-28 Thread Robert Chafer
I am opening a new connection for each query. When happens is that when the connection is closed it never returns. The ADO Close code seems to wait in a message loop on the async thread ending -- it never does so I get a block in the stack and routines run on top of it. If the async thread is termi

Re: [twsocket] TWSocket threads

2006-08-29 Thread Robert Chafer
Yes it is specific to asyn execute because it only create a new thread when its an async execute. On Tue, 29 Aug 2006 10:17 +0100 (BST), you wrote: > > I am opening a new connection for each query. When happens is that > > when the connection is closed it never returns. > > OK, so nothing s

Re: [twsocket] HttpServer Application

2006-09-14 Thread Robert Chafer
You can use a web programming framework like asp, php or asp.net to deliver your web content dyncamically On Thu, 14 Sep 2006 11:24:29 +0100, you wrote: > This maybe a little OT but it's related to the use of ICS. > > I have some real-time data generated by my application that I'd like > ext