Hi 

I use THttpCli to send real-time request to Apache .

I found that remains many TIME_WAIT STAT sockets

Is It possible Reuse Socket Port ?

What can i do for this ?

sorry for poor my english.

thanks




------------------------------

Message: 2
Date: Wed, 11 May 2005 08:11:25 +0200
From: First Last <[EMAIL PROTECTED]>
Subject: [twsocket] Help with ICS
To: twsocket@elists.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: TEXT/plain; charset=iso-8859-2

Hi,

Can you help me pleasse .
I use BCB 3.0.
I download and instal latest version of ICS but if I try it I get error
"stack owerflow".

PS.
I have defined 5 THttpCli components and each of them have define the same
OnRequestDone event and call GetAsync() metod.

Thank veri much.
 
By,

________________________________________
Fandite s nami hokeju! Vsetko o MS 2005.
http://spravy.atlas.sk/hokej




------------------------------

Message: 3
Date: Wed, 11 May 2005 09:30:24 +0200
From: "Francois Piette" <[EMAIL PROTECTED]>
Subject: Re: [twsocket] Help with ICS
To: "ICS support mailing" <twsocket@elists.org>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain;       charset="iso-8859-2"

> I use BCB 3.0.
> I download and instal latest version of ICS but if I try it I get 
> error "stack owerflow".

It is likely that you have a function that call itself or call a second
function that calls the first one. This is an endless loop which is
terminated when the stack is overflowed.


> PS.
> I have defined 5 THttpCli components and each of them have define the 
> same OnRequestDone event and call GetAsync() metod.

That's fine. Don't forget to use the Sender argument to identify which of
the component has triggered the event handler.
--
[EMAIL PROTECTED]
http://www.overbyte.be





------------------------------

Message: 4
Date: Wed, 11 May 2005 14:09:24 +0200
From: "Guillaume MAISON" <[EMAIL PROTECTED]>
Subject: [twsocket] [HELP] FTPServer and building directory event
To: twsocket@elists.org
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

hi everyone,

i have a weird problem :
i'm building a FTP server and i want to be able to go through every drive
the server has.

my idea was the following :
in the BuildDirectory event, if the directory asked is / (meaning root) i
build a fake directory listing with all the existing drives on the server.

the problem is that i can't upper than C:\ ! (or /C:/)

anyone has an idea to go a bit upper than drive's root and hence be able to
build a fake directory with all the available drives ?

Guillaume MAISON
-----
Guillaume MAISON - [EMAIL PROTECTED]
83, Cours Victor Hugo
47000 AGEN
Til : 05 53 87 91 48 - Fax : 05 53 68 73 50 e-mail : [EMAIL PROTECTED] -
Web : http://nauteus.com




------------------------------

Message: 5
Date: Wed, 11 May 2005 15:47:36 +0300
From: "Fastream Technologies" <[EMAIL PROTECTED]>
Subject: Re: [twsocket] [HELP] FTPServer and building directory event
To: "ICS support mailing" <twsocket@elists.org>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; format=flowed; charset="windows-1254";
        reply-type=original

Hello,

This is a very complex task as you will need to create "virtual folders". I
have done it in my program NETFile Server but it took 3 weeks with testing. 
Also, if you wish to show directory permissions the UNIX style (like "drwxr-
-", that's additional work too.

If your project is not a real commercial FTP server, then I would suggest
you to stay away from it and use drives like /d:/, /c:/.

Kind Regards,

SubZero

----- Original Message -----
From: "Guillaume MAISON" <[EMAIL PROTECTED]>
To: <twsocket@elists.org>
Sent: Wednesday, May 11, 2005 3:09 PM
Subject: [twsocket] [HELP] FTPServer and building directory event


hi everyone,

i have a weird problem :
i'm building a FTP server and i want to be able
to go through every drive the server has.

my idea was the following :
in the BuildDirectory event, if the directory asked is / (meaning root)
i build a fake directory listing with all the existing drives on the server.

the problem is that i can't upper than C:\ ! (or /C:/)

anyone has an idea to go a bit upper than drive's root
and hence be able to build a fake directory with all the available drives ?

Guillaume MAISON
-----
Guillaume MAISON - [EMAIL PROTECTED]
83, Cours Victor Hugo
47000 AGEN
Til : 05 53 87 91 48 - Fax : 05 53 68 73 50
e-mail : [EMAIL PROTECTED] - Web : http://nauteus.com


-- 
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 




------------------------------

Message: 6
Date: Wed, 11 May 2005 15:49:17 +0200
From: "Guillaume MAISON" <[EMAIL PROTECTED]>
Subject: Re: [twsocket] [HELP] FTPServer and building directory event
To: ICS support mailing <twsocket@elists.org>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

> This is a very complex task as you will need to create "virtual folders".
I 
> have done it in my program NETFile Server but it took 3 weeks with
testing. 
> Also, if you wish to show directory permissions the UNIX style (like 
> "drwxr--", that's additional work too.

For the rights no. Because this ftp server is just to be used with a client
of my own.

> If your project is not a real commercial FTP server, then I would suggest 
> you to stay away from it and use drives like /d:/, /c:/.
> 

in fact, i'd like, i'd like to display the level above a drive root.
ie : when listing /c:/ i'd like to go one level up to display something
like :

drwxrwxrwx   1 ftp      ftp            0 Apr 30 19:00 C:/
drwxrwxrwx   1 ftp      ftp            0 Apr 30 19:00 D:/
drwxrwxrwx   1 ftp      ftp            0 Apr 30 19:00 P:/
drwxrwxrwx   1 ftp      ftp            0 Apr 30 19:00 Q:/
drwxrwxrwx   1 ftp      ftp            0 Apr 30 19:00 T:/

or if anyone has another way how to handle that possibility ?

Guillaume MAISON
-----
Guillaume MAISON - [EMAIL PROTECTED]
83, Cours Victor Hugo
47000 AGEN
Til : 05 53 87 91 48 - Fax : 05 53 68 73 50
e-mail : [EMAIL PROTECTED] - Web : http://nauteus.com




------------------------------

Message: 7
Date: Wed, 11 May 2005 01:01:46 +0200
From: Piotr Hellrayzer Da?ek <[EMAIL PROTECTED]>
Subject: Re:  [twsocket] Datetime in mail headers
To: ICS support mailing <twsocket@elists.org>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="US-ASCII"

Hello!

> Do I need the MIME-Version, Content-Type and Content-Transfer-Encoding
> also or can it be left out ? There will be only plain text and never an
> attach.

AFAIR if you won't put them in header, the default values should be
assumed (respectively: 1.0, text/plain; charset="US-ASCII", 7bit) by the
message parser.

>    MailBody := 'Delivered-To: ' + EMail + #13#10 +
>                'Subject: ' + Subject + #13#10 +
>                'Date: ' + DT + #13#10 +
>                'MIME-Version: 1.0'#13#10 +
>                'Content-Type: text/plain; charset="us-ascii"'#13#10 +
>                'Content-Transfer-Encoding: quoted-printable'#13#10 +
>                'From: ' + From + #13#10 +
>                'To: ' + DestName + #13#10#13#10 +
>                Data;

If you're using US-ASCII, consider using Content-Transfer-Encoding: 7bit. 

-- 
Piotr "Hellrayzer" Dalek
Author of ICS-Based Hellcore Mailer - an Outlook Express killer
http://www.hcm.prv.pl
[EMAIL PROTECTED]

----------------------------------------------------------------------
Znajdz swoja milosc na wiosne... >>> http://link.interia.pl/f187a




------------------------------

_______________________________________________
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

End of TWSocket Digest, Vol 116, Issue 5
****************************************



-- 
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

Reply via email to