Re: [twsocket] ANN: IQ Proxy Server with OpenSSL 1.0.0d available

2011-05-11 Thread Fastream Technologies
No unfrotunately this was not true... It is still working under Win7 yet not Win2008. Rather strange! SZ On Wed, May 11, 2011 at 07:51, Fastream Technologies wrote: > One other thing: With the latest ICS/OpenSSL, the HTTPS POST 10053 issue is > also gone away..! :-)) > SubZero > On Tue, May 10,

[twsocket] Found the cause of the issue for 10053 errors in HTTP

2011-05-11 Thread Fastream Technologies
Hello, In some cases SetReady() (hence OnRequestDone) is called twice, where the second one should not be called and interferes with following HTTP request (if any), ruining the state machine. I suggest something like: void __fastcall SetReady() { if(alreadySetReady) return; alreadySetReady =

Re: [twsocket] Computer's name

2011-05-11 Thread daniel cc
Hi Francois, Thanks for the response. I have tested, I can get the computer name if the computer is in the same network. I can send any message including the computer name from the client when it connects. Now, First, Server gives info of connected client with it's ip and the ID, the ID is ve

Re: [twsocket] Found the cause of the issue for 10053 errors in HTTP

2011-05-11 Thread Arno Garrels
Fastream Technologies wrote: > Hello, > > In some cases SetReady() (hence OnRequestDone) is called twice, where > the second one should not be called and interferes with following > HTTP request (if any), ruining the state machine. I suggest something > like: > > void __fastcall SetReady() > { >

Re: [twsocket] Computer's name

2011-05-11 Thread Francois PIETTE
I hope I have explained okay. I do not grasp your complete architecture. Which programs are you writing ? A server, a client, both ? What is the ID you are talking about ? Which protocol are you using ? You own ? -- francois.pie...@overbyte.be The author of the freeware multi-tier middleware Mi

Re: [twsocket] Computer's name

2011-05-11 Thread daniel cc
Hi Francois, I am building a server client application for monitoring few pc's which are in different locations(not the same network). The ID what I am having is this one(tag:FClientNo), I get it when the client connects to the server. <--- C O D E --

Re: [twsocket] Found the cause of the issue for 10053 errors in HTTP

2011-05-11 Thread Fastream Technologies
I am 99% sure that there is a problem with HTTPS POST. I have posted code here many times before but unfortunately nobody said anything. Both client and server are ICS. It works fine with HTTP. Regards, SZ On Wed, May 11, 2011 at 13:29, Arno Garrels wrote: > Fastream Technologies wrote: > > He

Re: [twsocket] Computer's name

2011-05-11 Thread Francois PIETTE
First, Server gives info of connected client with it's ip and the ID, the ID is very important for me because I need to use it for sending commands to the client. Second, Client sends a message where it tells it's name etc. when it is connected. I push client to send message to the server wit

Re: [twsocket] Computer's name

2011-05-11 Thread daniel cc
Hi Francois, Thanks for the response. " Your second message comes later and is available from the OnDataAvailable event handler at server side." Is it possible to send this at the same time as it connects? What I need is, to combine both messages and get the ID and computer name. " You should s

Re: [twsocket] Computer's name

2011-05-11 Thread Francois PIETTE
" Your second message comes later and is available from the OnDataAvailable event handler at server side." Is it possible to send this at the same time as it connects? No. The client can only send data when the TCP session is established and your first message is generated at server side form