Re: [twsocket] Pause and Resume

2007-03-29 Thread Francois Piette
Does this make sense to you? Yes, it does. Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] Author of ICS (Internet Component Suite, freeware) Author of MidWare (Multi-tier framework, freeware) http://www.overbyte.be - Original Message -

Re: [twsocket] Testing messages sent from client to server app

2007-03-29 Thread Arno Garrels
Clay Shannon wrote: BTW, didn't you have something to do with Alice's Restaurant? I don't think so, when the movie came out in the late sixties I still was a young teenager. -- Arno Garrels [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html -- To unsubscribe or change your settings

Re: [twsocket] Testing messages sent from client to server app

2007-03-29 Thread Darin McGee
I think he meant the song by Arlo Guthrie (sic?) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Arno Garrels Sent: Thursday, March 29, 2007 3:34 AM To: ICS support mailing Subject: Re: [twsocket] Testing messages sent from client to server app Clay

Re: [twsocket] Testing messages sent from client to server app

2007-03-29 Thread Clay Shannon
I think he meant the song by Arlo Guthrie (sic?) Actually, it was a song AND a movie. I don't recall which one came first, or if they were simultaneously released. I was also a young teenager at the time. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

[twsocket] Questions about FTPClient

2007-03-29 Thread Arnau Font
Greetings François, I’m currently developing a service that requires downloading a file from a FTP. I’ve used your POP3 and SMTP components and they worked very well, so I’m trying your FTPClient component to do the download. My service is multithreaded, as I receive different TCP/IP

Re: [twsocket] Testing messages sent from client to server app

2007-03-29 Thread Arno Garrels
Clay Shannon wrote: I think he meant the song by Arlo Guthrie (sic?) Actually, it was a song AND a movie. I don't recall which one came first, or if they were simultaneously released. I was also a young teenager at the time. I do not understand why you think that I could have something to

Re: [twsocket] Questions about FTPClient

2007-03-29 Thread Arno Garrels
Arnau Font wrote: My service is multithreaded, as I receive different TCP/IP connections. And, as it is a service, I have no forms, so I compiled the component (and its related units) with the NOFORMS directive (in fact, I've copied the files and deleted the lines accordingly). Why? If

[twsocket] Messages being sent, but Client app locking up

2007-03-29 Thread Clay Shannon
I am successfully sending messages from my Client MIDAS app to my Server MIDAS app, but then the Client app locks up. Here is my code: 1) The user (me) presses a button to send a message: { This is a test } procedure TfClientMain.Button1Click(Sender: TObject); begin SendMessageToRealTime(1,

Re: [twsocket] Messages being sent, but Client app locking up

2007-03-29 Thread Clay Shannon
Oops, I left out a part: { Called by SendMessageToRealTime() } procedure TfClientMain.ICS_SendString(AMessageToSend: String); begin try ICSSocket_Sending.SendStr(AMessageToSend); except on E: Exception do begin ShowMessage(Format('%s: %s', [E.ClassName, E.Message]));

Re: [twsocket] Messages being sent, but Client app locking up

2007-03-29 Thread Clay Shannon
Adding ICSSocket_Sending.Close as shown below solves the lockup problem: for i := Pred(slMessagesToSend.Count) downto 0 do slMessagesToSend.Delete(i); ICSSocket_Sending.Close; //Voila! The information transmitted is intended only for the person or entity to which it is addressed and may

[twsocket] Problem with HTTPCli.Get

2007-03-29 Thread Jean-Paul Passama
Hi all, When I send a GET command with login/password, I see that the command is sended first without login/password then (less than 1 second after) with the Authorization field correctly filled. Do you have an idea about this ? Thank you JP Passama -- To unsubscribe or change your settings