DELPHI C# socket communication

H

Hafiz321

We have created a program in C#. This is server program. We have also
created a client program written in DELPHI which is sending continous
request to server program.


We have used tcpListener.AcceptTcpClient() method to return
TcpClient object to connect with CLIENT APPLICATION.

After creating object we are using
binaryWriter.Read(BArrayClientRequest, 0, BArrayClientRequest.Length);
What we are seeing sometimes in few cases it is taking lots of time to
communcate with client program through BinaryWriter.

Is the problem related with DELHPI C# communication?

any idea ?
 
?

=?ISO-8859-1?Q?Arne_Vajh=F8j?=

Hafiz321 said:
We have created a program in C#. This is server program. We have also
created a client program written in DELPHI which is sending continous
request to server program.


We have used tcpListener.AcceptTcpClient() method to return
TcpClient object to connect with CLIENT APPLICATION.

After creating object we are using
binaryWriter.Read(BArrayClientRequest, 0, BArrayClientRequest.Length);
What we are seeing sometimes in few cases it is taking lots of time to
communcate with client program through BinaryWriter.

Is the problem related with DELHPI C# communication?

any idea ?

Sounds more like a network or TCP/IP problem.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

c# and c++ socket communication 2
newbie socket question 1
socket programming in C# 5
FTP via TcpClient and Proxy 4
C# Socket Problem 1
socket -client 8
socket problemswhos 2
asynchronous socket communication 8

Top