Dave,
Are you talking about viewing same data (which is being transferred) or
transferring additional data while original transfer is happening?
If first option, it is easy, just display data as you read it.
For second option:-
TCP is IPAddress/PortNo from 1 machine to IPAddress/PortNo on another
machine. It is connection orientated. Once you sending something using a
connection (IPAddress/PortNo pair), you can not send additional stuff at
same time using same connection. But nothing prevents you from using a
different PortNo, create another tcp connection between server & client
and transfer additional data on that separate connection. and it can
happen at same time.
Also I would suggest reading an introductory book on tcp/ip.
vishi
davidLee wrote:
>
Hello,
>
> When the data exchange between a client and the server being executing
> , assuming at the client side , a user also request view the data
> record (just be a text file) via the same TCP port at the same time ,
> if it would block the original communication ? Thanks .
>
> David