Re: [twsocket] Detecting broken connection and reestablishing

2010-10-07 Thread Angus Robertson - Magenta Systems Ltd
The only reliable way to detect a broken connection is to send or receive something. Then if the connection is gone OnSessionClosed will fire, and from there start your timer to reconnect. That is what the keep alive options do presumably, on an idle connection, if keep alive fails the

Re: [twsocket] Detecting broken connection and reestablishing

2010-10-07 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: The only reliable way to detect a broken connection is to send or receive something. Then if the connection is gone OnSessionClosed will fire, and from there start your timer to reconnect. That is what the keep alive options do presumably, on an

Re: [twsocket] Detecting broken connection and reestablishing

2010-10-07 Thread Angus Robertson - Magenta Systems Ltd
However I wonder why one has to detect a brocken, idle connection at all? One of applications captures data from various appliances, such a call data records from telephone switches. If the connection with the telephone switch is lost, CRDs are lost as is the revenue from rebilling those

[twsocket] ANN: ICS-based IQ Proxy Server v.4.0.3R available with DDoS firewall

2010-10-07 Thread Fastream Technologies
Hello, http://www.iqproxyserver.com If any you guys can find a bug in it, we will be more than glad to give away a Personal license (sold for $85). It is really hard to find a good tester here. Best Regards, SZ -- To unsubscribe or change your settings for TWSocket mailing list please goto

[twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
Hi guys, Do we have a client/server demo somewhere (connect to a server, communicate like sending messages, files etc.)? if yes, Where can I download it? Thanks in advance - daniel -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Francois PIETTE
Do we have a client/server demo somewhere (connect to a server, communicate like sending messages, files etc.)? if yes, Where can I download it? Yes, there are several such demos. They are in ICS zip file, along with the components. Look at the internet folder in the zip file and on you hard

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 19:04, Francois PIETTE wrote: Do we have a client/server demo somewhere (connect to a server, communicate like sending messages, files etc.)? if yes, Where can I download it? Yes, there are several such demos. They are in ICS zip file, along with the components. Look at the

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 19:45, Signed Source® Project wrote: On 7.10.2010 19:04, Francois PIETTE wrote: Do we have a client/server demo somewhere (connect to a server, communicate like sending messages, files etc.)? if yes, Where can I download it? Yes, there are several such demos. They are in ICS zip

Re: [twsocket] Detecting broken connection and reestablishing

2010-10-07 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: However I wonder why one has to detect a brocken, idle connection at all? One of applications captures data from various appliances, such a call data records from telephone switches. If the connection with the telephone switch is lost, CRDs are

Re: [twsocket] Client/Server Demo

2010-10-07 Thread RTT
Is it possible to encrypt the connection between the client and server? The connection, or your custom data? -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Arno Garrels
Signed Source® Project wrote: Hi guys, One more question, Is it possible to encrypt the connection between the client and server? if yes, I would appreciated any help you could provide. Of course it is possible, however it has to be implemented by yourself. You are able derive your own

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 20:20, RTT wrote: Is it possible to encrypt the connection between the client and server? The connection, or your custom data? -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 20:36, Arno Garrels wrote: Signed Source® Project wrote: Hi guys, One more question, Is it possible to encrypt the connection between the client and server? if yes, I would appreciated any help you could provide. Of course it is possible, however it has to be implemented

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Arno Garrels
Signed Source® Project wrote: On 7.10.2010 20:36, Arno Garrels wrote: Signed Source® Project wrote: Hi guys, One more question, Is it possible to encrypt the connection between the client and server? if yes, I would appreciated any help you could provide. Of course it is possible,

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Arno Garrels
Arno Garrels wrote: How to override a class is not a ICS-specific question but a Delphi or C++ language question. Sorry for my bad English, should read: How to override methods of a class is not a ICS-specific question but a Delphi or C++ language question. -- Arno Garrels -- To

Re: [twsocket] Client/Server Demo

2010-10-07 Thread RTT
Any kind of demos for the person who has never done such things before? But what kind of data are you sending/receiving. Plain text, binary? You just need to encrypt it before send, and decrypt at receive. Here is a good cryptography library http://www.cityinthesky.co.uk/cryptography.html --

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Angus Robertson - Magenta Systems Ltd
No, there are no demos available showing how to encrypt a connection. But there is exactly that code in the ICS SMTP, HTTP and FTP SSL components, clients and servers. Angus -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] Client/Server Demo

2010-10-07 Thread simon
?i can make you a demo if you wish with basic chat funcation and room support with 64bit encoding for string commands ... -Original Message- From: Signed Source® Project Sent: Thursday, October 07, 2010 6:58 PM To: ICS support mailing Subject: Re: [twsocket] Client/Server Demo On

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 21:46, Angus Robertson - Magenta Systems Ltd wrote: No, there are no demos available showing how to encrypt a connection. But there is exactly that code in the ICS SMTP, HTTP and FTP SSL components, clients and servers. Angus -- To unsubscribe or change your settings for

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 21:45, RTT wrote: Any kind of demos for the person who has never done such things before? But what kind of data are you sending/receiving. Plain text, binary? You just need to encrypt it before send, and decrypt at receive. Here is a good cryptography library

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 20:59, si...@fantaziachat.com wrote: ?i can make you a demo if you wish with basic chat funcation and room support with 64bit encoding for string commands ... -Original Message- From: Signed Source® Project Sent: Thursday, October 07, 2010 6:58 PM To: ICS support mailing

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Francois PIETTE
Is it possible to encrypt the connection between the client and server? ICS support the SSL protocol. It has a strong encryption. SSL is what is used in protocols sur as HTTPS, FTPS and many others (also supported by ICS). if yes, I would appreciated any help you could provide. See the

Re: [twsocket] Client/Server Demo

2010-10-07 Thread Signed Source® Project
On 7.10.2010 22:41, Francois PIETTE wrote: Is it possible to encrypt the connection between the client and server? ICS support the SSL protocol. It has a strong encryption. SSL is what is used in protocols sur as HTTPS, FTPS and many others (also supported by ICS). if yes, I would