Re: [twsocket] HttpCli.Abort

2006-03-14 Thread Francois Piette
Francois, what is the best way to handle this one? I can set a 'flag' within the LocationChange handler and use it to Abort the client at a later moment (or discard its content etc). I've also seen people talk about using PostMessage but I'm not sure how to do that. How would I create a

Re: [twsocket] [Wiki] Still need some author

2006-03-14 Thread Fredrik Larsson
I registered myself and will try to help a little. What I noticed that it might be needed to have seperate pages for the units. Since some units contain functions that are quite useful and isn't available in a component. I guess that there should be these block then: Overview, Components (links to

Re: [twsocket] [Wiki] Still need some author

2006-03-14 Thread Fastream Technologies
With all the experience I have, I would like to contribute to the topic Installation of ICS for BCB6-2006. In order for me to succeed in this, I think there are a few issues left to be resolved. Regards, SZ - Original Message - From: Fredrik Larsson [EMAIL PROTECTED] To: 'ICS support

Re: [twsocket] BDS2006 C++Personality = ERROR

2006-03-14 Thread Fastream Technologies
What is the delphi equivalent of the below code in C++? in worker code #include OverbyteIcsTypes.h ... in OverbyteIcsTypes.h, #include Windows.h // should be inserted in the worker code so that it would recognize ::HWND #ifdef BCB #define HWND ::HWND #else ..the current Delphi code here

[twsocket] Http server / http client

2006-03-14 Thread Jørgen Bonde
I have made an HTTP server application which on request, get the data from a HTTPclient. Sometimes if the data from the HTTP client is ‘ slow’ ( Getting the data from a GPRS station) the server disconnect before all data Has been collected via the http client. Is there a way to increase the

Re: [twsocket] Http server / http client

2006-03-14 Thread Fastream Technologies
Hello Jorgen, I came accross the same problem with our reverse proxy (http://www.fastream.com/iqreverseproxy.htm). The solution is to pause() the THttpConnection and resume when you get the data. We make it for each packet. Regards, SZ - Original Message - From: Jørgen Bonde [EMAIL

[twsocket] TFtpServer time not listed

2006-03-14 Thread Arno Garrels
Hi, Why is the time not listed if the file has been modified last year? FtpSrv.pas, function FormatUnixDirEntry(F : TSearchRec) : String; .. if Year = ThisYear then TimeStr := Format('%2.2d:%2.2d', [Hour, Min]) else TimeStr := Format('%5d', [Year]); --- Arno Garrels [TeamICS]

Re: [twsocket] TFtpServer time not listed

2006-03-14 Thread gates
Hello Arno, This is the standard behavior of all FTP sites I know. For example: ftp.borland.com, ftp.microsoft.com, ftp.intel.com. I am not sure if it is because of an RFC or not. Regards, SZ Hi, Why is the time not listed if the file has been modified last year? FtpSrv.pas, function

Re: [twsocket] TFtpServer time not listed

2006-03-14 Thread Francois Piette
Because it is the Unix format for dir lists. If you change that, clients have problems parsing the dir list. It is also related to the value returned by the SYST command. -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - From: Arno Garrels [EMAIL PROTECTED] To: ICS

Re: [twsocket] TFtpServer time not listed

2006-03-14 Thread Angus Robertson - Magenta Systems Ltd
if Year = ThisYear then TimeStr := Format('%2.2d:%2.2d', [Hour, Min]) else TimeStr := Format('%5d', [Year]); This would be much better if the test was for more than 12 months ago, rather than this calendar year, otherwise each January file time stamps for the previous year

Re: [twsocket] Http server / http client

2006-03-14 Thread Jørgen Bonde
Thanks for Your answer. But I do not understand. Is it the Httpserver You pause ?? - Is the Pause and resume a properties of the Thttpclient or Thttpserver ?? TelTecnic A/S Att.: Joergen Bonde Rudolfgaardsvej 19 DK-8260 Viby J Tlf: +45 23 20 24 03 Mailto: [EMAIL PROTECTED] -Oprindelig

Re: [twsocket] TFtpServer time not listed

2006-03-14 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: My applications all use the MLSD directory stuff, Are those commands supported by most servers today? Arno -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our

Re: [twsocket] TFtpServer time not listed

2006-03-14 Thread Angus Robertson - Magenta Systems Ltd
My applications all use the MLSD directory stuff, Are those commands supported by most servers today? All except for Microsoft I think, while each new HTTP server in IIS is a major step forward, the IIS FTP server is still pretty pathetic in terms of modern commands, no SSL and only

Re: [twsocket] TFtpServer time not listed

2006-03-14 Thread Fastream Technologies
- Original Message - From: Angus Robertson - Magenta Systems Ltd [EMAIL PROTECTED] To: twsocket@elists.org Sent: Tuesday, March 14, 2006 7:29 PM Subject: Re: [twsocket] TFtpServer time not listed My applications all use the MLSD directory stuff, Are those commands supported by most

Re: [twsocket] TFtpServer time not listed

2006-03-14 Thread Arno Garrels
Fastream Technologies wrote: - Original Message - From: Angus Robertson - Magenta Systems Ltd [EMAIL PROTECTED] To: twsocket@elists.org Sent: Tuesday, March 14, 2006 7:29 PM Subject: Re: [twsocket] TFtpServer time not listed My applications all use the MLSD directory stuff, Are

Re: [twsocket] TFtpServer time not listed

2006-03-14 Thread Fastream Technologies
- Original Message - From: Arno Garrels [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Tuesday, March 14, 2006 8:31 PM Subject: Re: [twsocket] TFtpServer time not listed Fastream Technologies wrote: - Original Message - From: Angus Robertson - Magenta

Re: [twsocket] TFtpServer time not listed

2006-03-14 Thread Arno Garrels
Fastream Technologies wrote: - Original Message - From: Arno Garrels [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Tuesday, March 14, 2006 8:31 PM Subject: Re: [twsocket] TFtpServer time not listed Fastream Technologies wrote: - Original Message -

Re: [twsocket] TFtpServer time not listed

2006-03-14 Thread Fastream Technologies
- Original Message - From: Arno Garrels [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Tuesday, March 14, 2006 9:30 PM Subject: Re: [twsocket] TFtpServer time not listed Fastream Technologies wrote: - Original Message - From: Arno Garrels [EMAIL

[twsocket] plz help me it is very urgent

2006-03-14 Thread Ramkumar Jothi
Hai, I am a thesis student working on building a softphone that supports sip or SIP/h.323 using Delphi 7. I came across RNID SIP stack for Delphi windows, can you plz tell me whether there are softphone implementations made on this already, If so where can I get a source code for the sip