Re: [twsocket] Latest V5 BETA in C++Builder 2006 Compile problems

2006-08-15 Thread Francois PIETTE
I think this has been fixed not so long ago. Do a little serach in the mailing list for the past few months. -- Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - From: Albert Wiersch [EMAIL

[twsocket] How to download (ftp) an entire directory (best way)

2006-08-15 Thread Clay Shannon
Hello all (I'm new to the list, and this is my first post). Is the following the way to download (via ftp) the contents of an entire directory? IOW, providing the HostDirName but no HostFileName? Or...? I'm also open to suggestion on better ways to do this, such as removing unnecessary

Re: [twsocket] How to download (ftp) an entire directory (best way)

2006-08-15 Thread Francois PIETTE
Hello all (I'm new to the list, and this is my first post). Welcome ! ICSFTP.OpenAsync; ICSFTP.GetAsync; Warning: You can't put async methods on consecutive lines. They are asynchronous, that it they return almost immediately, long before their operation is done. When you call an

[twsocket] Must explicitly start winsocks, or...?

2006-08-15 Thread Clay Shannon
Running the ftptst app in D2006, and pressing the Open button, I get a timeout error: Winsock version 2.2 WinSock 2.0 Running Executing Requested Command Request 1 Done. StatusCode = 500 LastResponse was : '500 Connection timed out (Winsock error #10060)' Error = 10060 (500 Connection

Re: [twsocket] Must explicitly start winsocks, or...?

2006-08-15 Thread Francois PIETTE
Is there some preliminary I must first perform for this to work? You must allow the program to access the ports if you have a firewall. You must configure the server hostname and IP port in the program to point to a valid FTP server. First try the same server using windows command line FTP. --

[twsocket] Implementing STUN, RFC3489

2006-08-15 Thread Arno Garrels
Francois PIETTE wrote in Re: [twsocket] UDP Concept doubt: UDP packets are not fragmented at the application level, but you may get duplicates, or miss some packet, recieve the packets in incorrect order. Those conditions are very difficult to reproduce on a small LAN. You have to

Re: [twsocket] Implementing STUN, RFC3489

2006-08-15 Thread Francois PIETTE
Simply ignore all problems ? If they should be taken into account, the the STUN protocol should have provision for that. -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - From: Arno Garrels [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Tuesday,

Re: [twsocket] Implementing STUN, RFC3489

2006-08-15 Thread Marcelo Grossi
I dunno nothing about STUN Client but you can do several things to gurantee order and single packet receival from UDP protocol usage. For instance: - To maintain order: On the receiver you have to keep a list wich receives the packets and puts them in order (you're gonna have to have a

Re: [twsocket] TWSocket Digest, Vol 182, Issue 3

2006-08-15 Thread John Grabner
Message: 4 Date: Tue, 15 Aug 2006 10:51:55 +0200 From: Francois PIETTE [EMAIL PROTECTED] Subject: Re: [twsocket] Latest V5 BETA in C++Builder 2006 Compile problems To: ICS support mailing twsocket@elists.org Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; format=flowed;

[twsocket] Using Pop3Cli in a thread

2006-08-15 Thread Patrick Wong
Dear all, I am using BCB6 and ICS. I reference The MailRcv application as a start of my new task. It works fine as long as the Pop3Cli is created and used in the main GUI context. For my app I need to do the POP3 mail client as a worker thread. However it does not work as the event

Re: [twsocket] Latest V5 BETA in C++Builder 2006 Compile problems

2006-08-15 Thread Arno Garrels
BCB doesn't like class methods as property getters. I already fixed that in V6, here's the same in V5: http://www.duodata.de/misc/delphi/HttpContCod.zip Fixed means, that BCB is happy now, I did not check whether the content coding stuff is working correctly. --- Arno Garrels [TeamICS]

Re: [twsocket] Using Pop3Cli in a thread

2006-08-15 Thread Arno Garrels
I'm not sure what you try to do, but it's easy: 1 - Create the Pop3Cli instance in Execute 2 - Assign properties and events 3 - Connect 4 - Start your MessageLoop --- Arno Garrels [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html Patrick Wong wrote: Dear all, I am using BCB6 and