Re: [twsocket] Webserver only with local connections

2007-12-05 Thread George
Sorry, I missed that post. I never received it :( Thanks! - Original Message - From: "Fastream Technologies" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Tuesday, December 04, 2007 2:21 PM Subject: Re: [twsocket] Webserver only with local connections

Re: [twsocket] Webserver only with local connections

2007-12-05 Thread Fastream Technologies
What I tried to explain to you is the simplest method--if the client is in the same computer and if it uses 127.0.0.1 as the destination addess, then the source address from server's point of view must be 127.0.0.1 as well.. So if you use the listening IP as 127.0.0.1, then no other IP would be abl

Re: [twsocket] Webserver only with local connections

2007-12-04 Thread Arno Garrels
Hoby Smith wrote: [Big snip] > For example, you could use, TMyHttpConnection(Client).GetPeerAddr, to > get the client's address and then determine if you want to disconnect > it. You would have to provide this logic and any rules as you need. There are helper functions available in OverbyteIcsWi

Re: [twsocket] Webserver only with local connections

2007-12-04 Thread Hoby Smith
Great additional info, dz. Thanks... Hoby :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, December 04, 2007 10:25 AM To: twsocket@elists.org Subject: Re: [twsocket] Webserver only with local connections George, I

Re: [twsocket] Webserver only with local connections

2007-12-04 Thread [EMAIL PROTECTED]
g/overbyte/teamics.html >--- Original Message --- >From: Hoby Smith[mailto:[EMAIL PROTECTED] >Sent: 12/4/2007 12:05:56 PM >To : twsocket@elists.org >Cc : >Subject : RE: Re: [twsocket] Webserver only with local connections > >George... Fundamentally,

Re: [twsocket] Webserver only with local connections

2007-12-04 Thread Hoby Smith
missing something or misunderstand something here. Regards... Hoby -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of George Sent: Tuesday, December 04, 2007 6:13 AM To: ICS support mailing Subject: [twsocket] Webserver only with local connections Hello,

Re: [twsocket] Webserver only with local connections

2007-12-04 Thread Fastream Technologies
I have already told you the best way. Make the listening IP 127.0.0.1 . On 12/4/07, George <[EMAIL PROTECTED]> wrote: > > Hello, > > I created a THttpServer that is used as a middleware between my delphi app > and a flash application. > I want to make sure that only me and flash will communicate e

[twsocket] Webserver only with local connections

2007-12-04 Thread George
Hello, I created a THttpServer that is used as a middleware between my delphi app and a flash application. I want to make sure that only me and flash will communicate each other so I want to restrict connections from outside internet or local IPs. What's the safest way to check it? Any piece of

Re: [twsocket] Webserver with local connections only

2007-12-02 Thread DZ-Jay
On Dec 2, 2007, at 06:59, Francois PIETTE wrote: > And also probably limiting the number of concurrent connections to what > flash needs. > And also examine the request header to make sure it comes from the > flash > application. Maybe you can craft some request from your application so > that

Re: [twsocket] Webserver with local connections only

2007-12-02 Thread Francois PIETTE
ROTECTED]> To: "ICS support mailing" Sent: Sunday, December 02, 2007 9:12 AM Subject: Re: [twsocket] Webserver with local connections only >I think the easiest and safest way would be to set the listening IP to > 127.0.0.1 . > > Regards, > > SZ > > > On 1

Re: [twsocket] Webserver with local connections only

2007-12-02 Thread Fastream Technologies
I think the easiest and safest way would be to set the listening IP to 127.0.0.1 . Regards, SZ On 12/2/07, George <[EMAIL PROTECTED]> wrote: > > Hello, > > I created a THttpServer that is used as a middleware between my delphi app > and a flash application. > I want to make sure that only me an

[twsocket] Webserver with local connections only

2007-12-01 Thread George
Hello, I created a THttpServer that is used as a middleware between my delphi app and a flash application. I want to make sure that only me and flash will communicate each other so I want to restrict connections from outside internet or local IPs. What's the safest way to check it? Any piece of

Re: [twsocket] Webserver AUTH keep-alive

2006-09-07 Thread Arno Garrels
port mailing" Sent: Thursday, September 07, 2006 4:40 PM Subject: Re: [twsocket] Webserver AUTH keep-alive > - Original Message - > From: "Arno Garrels" <[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Thursday, September 07, 2006 5:36 P

Re: [twsocket] Webserver AUTH keep-alive

2006-09-07 Thread Fastream Technologies
- Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Thursday, September 07, 2006 5:36 PM Subject: Re: [twsocket] Webserver AUTH keep-alive : Fastream Technologies wrote: : > Well, in our code, unless the client req

Re: [twsocket] Webserver AUTH keep-alive

2006-09-07 Thread Arno Garrels
s.html > > Regards, > > SZ > > - Original Message - > From: "Arno Garrels" <[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Thursday, September 07, 2006 4:40 PM > Subject: [twsocket] Webserver AUTH keep-alive > > >&

Re: [twsocket] Webserver AUTH keep-alive

2006-09-07 Thread Fastream Technologies
Well, in our code, unless the client request type is close, we return keep-alive if it is NOT HTTP/1.0 and 1.1. Regards, SZ - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Thursday, September 07, 2006 4:40 PM Sub

[twsocket] Webserver AUTH keep-alive

2006-09-07 Thread Arno Garrels
Hi, Current code doesn't handle keep-alive in the 401 response. What are the recommended keep-alive headers with Basic as well as Digest? M$ IIS sends always Connection: close in the first 401 header. Currently I do the same. Any veto? --- Arno Garrels [TeamICS] http://www.overbyte.be/eng/o

Re: [twsocket] WebServer demo

2005-12-22 Thread Francois PIETTE
> Now my next problem is how can I arrange my directories in order to > receive > data from the demo Form.html Page > > Where do I put the webserv.exe because the form sends data to > /cgi-bin/formhandler > > I am confused with all this (I am really newbie in this domain) You should study WebServ

[twsocket] WebServer demo

2005-12-22 Thread Daniel Reynes
First thank’s for your answer about port 80 already in use (i twas IIS running) Now my next problem is how can I arrange my directories in order to receive data from the demo Form.html Page Where do I put the webserv.exe because the form sends data to /cgi-bin/formhandler I am confused

Re: [twsocket] WebServer

2005-12-22 Thread Angus Robertson - Magenta Systems Ltd
> Error 10048 in function Bind Address already in use Stop the other web server first. Angus -- 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] WebServer

2005-12-22 Thread Marcello Vezzelli
Daniel Reynes wrote: > Hello, > > I have tried to use the demo WebServ, but when I launch it, I have the > following message : > > Error 10048 in function Bind Address already in use > > Anybody to give me some hint on this message ? The port you've selected for the WebServ software (default i

[twsocket] WebServer

2005-12-22 Thread Daniel Reynes
Hello, I have tried to use the demo WebServ, but when I launch it, I have the following message : Error 10048 in function Bind Address already in use Anybody to give me some hint on this message ? Thank you Daniel -- No virus found in this outgoing message. Checked by AVG Free E