[twsocket] Listen exception

2007-04-03 Thread Engi
Hi, Sometimes, when I launch listening for TWSocketServer component, I obtain an exception with message : Error 10022 in function WSAASyncSelect - Invalid argument. What could be the problem ? TIA, Engi -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] TWSOCKET Access violation at address7C8224B2inmodule'ntdll.dll'

2007-04-03 Thread Éric Fleming Bonilha
Hello Arno, Apparently the fix that you sent to me: procedure TCustomWSocket.Dup(NewHSocket : TSocket); .. // FSelectEvent := FD_READ or FD_WRITE or FD_CLOSE or FD_CONNECT; == Comment == FSelectEvent := FD_READ or FD_WRITE or FD_CLOSE; == Add Is working fine.. The server is running for

Re: [twsocket] Compiling ICSBCB100 project for ICS v5

2007-04-03 Thread David Lewis
I've just managed to update my system with BDS2006 and I am trying to get ICS installed correctly within this new IDE, under the C++ identity. I used the link Download the latest ICS-V5 Distribution javascript:top.StartDownload('eng', 'arch/ics.zip'); on the ICS website today to get the

Re: [twsocket] Messages being sent, but Client app locking up

2007-04-03 Thread Clay Shannon
You you have an OnDataAvailable handler Yes and if yes, do you receive always all data ? I think so -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wilfried Mestdagh Sent: Saturday, March 31, 2007 2:30 AM To: ICS support mailing Subject: Re:

Re: [twsocket] Perhaps this I asked beforebut...(TransparentHTTPProxy)

2007-04-03 Thread Fastream Technologies
Thanks. Could one write a NAT and even a firewall with LSP without DDK? If so, we can just force Winsock 2 (which is required for this tech.), no problem. Best Regards, SZ - Original Message - From: Francois PIETTE [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent:

Re: [twsocket] Listen exception

2007-04-03 Thread Arno Garrels
Engi wrote: Hi, Sometimes, when I launch listening for TWSocketServer component, I obtain an exception with message : Error 10022 in function WSAASyncSelect - Invalid argument. Strange, is this in W2K3? Are you working with latest ICS-release? -- Arno Garrels [TeamICS]

Re: [twsocket] Listen exception

2007-04-03 Thread Fastream Technologies
What is the listening IP? Best Regards, SZ - Original Message - From: Engi [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Tuesday, April 03, 2007 10:42 AM Subject: [twsocket] Listen exception Hi, Sometimes, when I launch listening for TWSocketServer component,

Re: [twsocket] TWSOCKET Access violation ataddress7C8224B2inmodule'ntdll.dll'

2007-04-03 Thread Arno Garrels
Éric Fleming Bonilha wrote: Hello Arno, Apparently the fix that you sent to me: procedure TCustomWSocket.Dup(NewHSocket : TSocket); .. // FSelectEvent := FD_READ or FD_WRITE or FD_CLOSE or FD_CONNECT; == Comment == FSelectEvent := FD_READ or FD_WRITE or FD_CLOSE; == Add Is working

Re: [twsocket] Compiling ICSBCB100 project for ICS v5

2007-04-03 Thread Arno Garrels
David Lewis wrote: I then proceeded to follow the instructions within the zip file, but found a problem about missing OBJ files, starting with ICSLOGGER.OBJ Means that IcsLogger.pas is missing. Simply add all missing *.pas pascal units to the BCB package, one by one, that should work. --

[twsocket] Keepalive trouble

2007-04-03 Thread Markus Humm
Hello, I've a TCP connection (simple TWSocket, only one PC may connect) and want to implement some keep-alive now. The rest of the application seems to work well, but the keepalive killed my whole day now without much success. Currently I'm doing this in the OnSessionAvailable of the server:

Re: [twsocket] Listen exception

2007-04-03 Thread Engi
The listening IP is : 192.168.0.102 The port is 8100 -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Fastream Technologies Envoyé : mardi 3 avril 2007 18:13 À : ICS support mailing Objet : Re: [twsocket] Listen exception What is the listening IP? Best

Re: [twsocket] Keepalive trouble

2007-04-03 Thread Arno Garrels
Markus Humm wrote: Hello, I've a TCP connection (simple TWSocket, only one PC may connect) and want to implement some keep-alive now. The rest of the application seems to work well, but the keepalive killed my whole day now without much success. That's not difficult. Currently I'm

Re: [twsocket] Keepalive trouble

2007-04-03 Thread Markus Humm
Hello Arno, thanks for your replies! FreeAndNil(a); Oh, that's not a good idea, free it in SessionClose event. Okay, will try this. In the OnSessionClosed of that instance a, right? Since the listening server socket won't get a session closed because he has no longer control about it.