[twsocket] Running ICS servers on the same port as IIS

2007-09-15 Thread Fastream Technologies
Hello, Our client has 3 IPs. They want to run a different server on port 80 of each. IIS6-7 does not cooperate. I am unable to find any resources using google. Any known issues/workarounds? Best Regards, SZ -- To unsubscribe or change your settings for TWSocket mailing list please goto http

Re: [twsocket] Running ICS servers on the same port as IIS

2007-09-15 Thread Francois PIETTE
> Our client has 3 IPs. They want to run a different server on port 80 of > each. IIS6-7 does not cooperate. I am unable to find any resources using > google. Any known issues/workarounds? This is a how Windows (or any other OS I know) works. There is only one program which can listen on a given t

Re: [twsocket] Running ICS servers on the same port as IIS

2007-09-15 Thread Gustavo Carreno
On 9/15/07, Fastream Technologies <[EMAIL PROTECTED]> wrote: > Hello, > > Our client has 3 IPs. They want to run a different server on port 80 of > each. IIS6-7 does not cooperate. I am unable to find any resources using > google. Any known issues/workarounds? Could you be more specific: * Is only

Re: [twsocket] Running ICS servers on the same port as IIS

2007-09-15 Thread Fastream Technologies
Again, they want to run one server on different IPs same port. However, IIS does not like to share ports--grabs all IPs. HTH, SZ - Original Message - From: "Francois PIETTE" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, September 15, 2007 12:26 PM Subject: Re: [twsocke

Re: [twsocket] Running ICS servers on the same port as IIS

2007-09-15 Thread Angus Robertson - Magenta Systems Ltd
> Again, they want to run one server on different IPs same port. > However, IIS does not like to share ports--grabs all IPs. I've seen that with IIS/5 FTP, don't have an answer though, I've got several FTP servers running on W2KS, but the IIS one is on port 2100 because it will not share 21 with

Re: [twsocket] Running ICS servers on the same port as IIS

2007-09-15 Thread Fastream Technologies
Hello, One computer has 1 nic with 3 IPs. IIS is supposed to answer only one IP and the rest should be taken care by other servers. Sorry for the confusion. Regards, SZ - Original Message - From: "Gustavo Carreno" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, Septembe

Re: [twsocket] Running ICS servers on the same port as IIS

2007-09-15 Thread Francois PIETTE
> Again, they want to run one server on different IPs same port. However, > IIS > does not like to share ports--grabs all IPs. IIS has setting to select IP addresses or to use all available IP. -- [EMAIL PROTECTED] The author of the freeware multi-tier middleware MidWare The author of the freew

Re: [twsocket] Running ICS servers on the same port as IIS

2007-09-15 Thread Fastream Technologies
Yes I saw that in IIS7. Yet when I select 192.168.2.4, it still grabs all IPs. I know it's strange but I believe that has something to do with IIS HTTP engine being kernel mode. I: - shut down IIS - install ICS code on 127.0.0.1 (so far so good) - tried to run IIS on 192.168.2.4 and it failed.

[twsocket] How to know if a port is being used

2007-09-15 Thread Éric Fleming Bonilha
Hello, I would like to know if there is any way using ICS that I can discover if a Listening UDP port is free or already in use? There is any method to do that? I ask this beacuse I need to make a port pool, so, I will have a range of ports (Eg: 3 to 31000) and I will open ports for incoming

Re: [twsocket] How to know if a port is being used

2007-09-15 Thread Wilfried Mestdagh
Hello Éric, Just call Listen method in an exception block. If exception then choose another port and call Listen again, and so on. --- Rgds, Wilfried [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html http://www.mestdagh.biz Saturday, September 15, 2007, 19:09, Éric Fleming Bonilha wrote

Re: [twsocket] Running ICS servers on the same port as IIS

2007-09-15 Thread Gustavo Carreno
On 9/15/07, Fastream Technologies <[EMAIL PROTECTED]> wrote: > Yes I saw that in IIS7. Yet when I select 192.168.2.4, it still grabs all > IPs. I know it's strange but I believe that has something to do with IIS > HTTP engine being kernel mode. This is odd but true, even if you shutdown IIS the bl

Re: [twsocket] How to know if a port is being used

2007-09-15 Thread brian
Use this function and add the following units: wsports and snmp function IsPortFree(Prt: Integer): Boolean; var p: TWSPorts; begin p := TWSPorts.Create; p.Refresh; if p.PortInUse(Prt) then Result:= False else Result:= True; p.Free; end; // // © 2000 Epsylon Software Development // // WSP

Re: [twsocket] How to know if a port is being used

2007-09-15 Thread Gustavo Carreno
On 9/15/07, Wilfried Mestdagh <[EMAIL PROTECTED]> wrote: > Just call Listen method in an exception block. If exception then choose > another port and call Listen again, and so on. Either that or Goggle a bit for the source code of a netstat copy-cat application and you'll have the code to investig