Re: [twsocket] Computer's name

2011-05-24 Thread Francois PIETTE
I don't know how to make sure there won't be any other machines in between, I mean to make sure both data belongs to the same computer. My question is, How can I set both messages comes in the same time like one whole message or combine them by the server as one message? Is there any ways of d

Re: [twsocket] Computer's name

2011-05-24 Thread daniel cc
one message? Is there any ways of doing this? Thanks in advance -Original Message- From: Francois PIETTE Sent: Wednesday, May 11, 2011 7:15 PM To: ICS support mailing Subject: Re: [twsocket] Computer's name " Your second message comes later and is available from the OnData

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

Re: [twsocket] Computer's name

2011-05-11 Thread daniel cc
t: Wednesday, May 11, 2011 4:16 PM To: ICS support mailing Subject: Re: [twsocket] Computer's name 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 me

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
; stbMain.Panels[1].Text := 'System event lines: ' + IntToStr(memoDisplay.Lines.Count); {Writing events into the log} AssignFile(Log, ExtractFilePath(Forms.Application.ExeName) + 'System\Log\system_log.txt'); Append(Log); {Continue adding events into the log} {Add log events} Writeln(Log

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
[twsocket] Computer's name We can get some remote info of the connected client from the following code but, are there any possibilities of getting the computername as well? Are you asking about Windows networking "computername" ? This is completly independent of the TCP/IP protocol.

Re: [twsocket] Computer's name

2011-05-10 Thread Francois PIETTE
We can get some remote info of the connected client from the following code but, are there any possibilities of getting the computername as well? Are you asking about Windows networking "computername" ? This is completly independent of the TCP/IP protocol. It may even be different that the DNS

[twsocket] Computer's name

2011-05-10 Thread daniel cc
Hello, I have now been thinking of this for a while and don’t know if I have already asked but here it comes, We can get some remote info of the connected client from the following code but, are there any possibilities of getting the computername as well? if yes, Please do help me out with it. -