0
votes
0answers
42 views

Indy10 TCP and asynchronous data exchange

Good morning to all.I am building a Delphi TCP server/client application using Indy 10.0.52,with TIdTCPClient and TIdTCPServer. I have problem with receiving asynchronous responses from server. Here's ...
0
votes
0answers
53 views

TCPConnection refusing conection

I have a standard Client/Server model and the server successfully binds but the Client can not connect and keeps saying the connection has been refused. (stacktrace above client code) I have put my ...
0
votes
2answers
42 views

Pass data table from server to client using tcp c#

I m new to tcp client server applications in c#. I want to pass data table from server to client over the network (between 2 pc's). Plz help by giving me some reference.
0
votes
0answers
59 views

Sending image Through TCP Socket in Java

I'm trying to make a Client Server Application which the server list name of available images and the client select one of them to download Such as here : Thread in Server public void run() { ...
0
votes
2answers
288 views

Error TCP Client server chat program using thread java

I m making a tcp client server chat program. my server is made by thread and its code is as below: System.out.println("Server binded at ...
1
vote
1answer
281 views

TCP server and client C# Best Practice [closed]

I'm writing a TCP client and server app. The Server gets a request and opens a Socket per client in a separate thread. the client might register for event and the server should send the events to the ...
0
votes
1answer
109 views

Remote Connection Porgam, Like Teamviewer

The Standard TCPServer and TCPClient doesnt work in my machine for some reason, but teamviewer manages to make a connection between two machine, and i would guess that the actual remote desktop ...
0
votes
0answers
105 views

TCP buffer size advantages & disadvantages

I have an application, and I need to send a huge amount of data (some mb's). My program is programmed so that when I send data it's always the length of the buffer so I never need to wait for data. ...
0
votes
2answers
180 views

Close socket connection after receiving stream - java

I made a tcp server which takes a file name from the client and read the content of the file located on the server and then stream it back to the client. I also made a client to receive the file. My ...
-1
votes
1answer
510 views

Delphi TcpClient(Sockets) and TcpServer(Sockets) connection? [closed]

I am trying to connect from a PC to another PC in Delphi using TcpClient(Sockets) and TcpServer(Sockets). Is it possible to connect like this? And if possible, how do I connect them to each other?
1
vote
2answers
134 views

TCP ZeroWindow Issue C#

i have been writing a file server/client application in c# and it appeared to be working but then i realized the the stream was not being advanced and the client kept failing to receive from the ...
0
votes
1answer
117 views

c# send specific data in TcpClient class

I have a TCP server software and accepting a client by TcpClient NewClient = TCPListener.AcceptTcpClient(); line. Also i have a string list that holds safe client IP's. If an unknown client wants ...
0
votes
0answers
264 views

RTSP connection closed from server

I have got RTSP client trying to get live stream form camera. I connect to camera RTSP port, then i send OPTION, DESCRIBE, SETUP commands. Here is my communication captured by wireshark: OPTIONS ...
2
votes
3answers
207 views

tcp client to communicate with server present in different network (NAT issue)

I have a TCP client program and which needs to communicate with servers embedded in devices. There can be 1000's of devices which need to be controlled through the single client program. Since the ...
0
votes
0answers
79 views

Can anyone give an example on how to make connection with a server or remote machine with RemObjects (TCPclient and TCPserver) control?

I am using RemObjects TCPClient and TCPserver control to make TCP Connection between two computers. However, it is not working as expected, although remote machine is showing that client machine try ...
3
votes
1answer
198 views

Java TCP Server send more messages in one flush

using this code: Java Server side: ... out = new PrintWriter(this.client.getOutputStream(), true); ... public void sendMsg(String msg) { out.println(msg); //out.flush(); // we don't flush ...
1
vote
1answer
269 views

Unity3d c# TCP client code can't receive second message in a row

I have similar problem maybe the same like here. From the server (Java TCP Server) im doing this: public void sendMsg(String msg) { out.println(msg); // msg is: "MSG Hello" without quetes ...
0
votes
1answer
368 views

Reading message(data) from TCPServer Buffer by using StreamReader.ReadLine() in TCPClient(ReadLine() doesn't return until a disconnection)

I have problem with StreamReader.ReadLine() method.I wrote a C# program, but only TCPclient side. I'm using Hercules program to create a TCPServer. I entered the port number and made a connection. ...
1
vote
1answer
932 views

C++ socket programming Max size of tcp/ip socket Buffer?

I am using C++ tcp/ip sockets. According to my requirements my client has to connect to a server and read the messages sent by it(that's something really new, isn't it) but... in my application i have ...
-2
votes
1answer
94 views

Minesweeper On A Network Using TCP Server/Client [closed]

I have this minesweeper game that I already finished a couple of days ago(the code below is not the finished code), Now I want to make this game be playable using two computer/network, I really don't ...
2
votes
3answers
136 views

TCP Client Side Issue

I am facing a big issue in TCP client application return in c#. Normal case it's working fine but in some case server send simultaneous response to a particular client, so this case all the ...
0
votes
2answers
136 views

TCP Client Server issue [duplicate]

Possible Duplicate: TCP Client Side Issue I am having a big trouble by using c# TCP client and server application. Everything work fine... But in some case, when a TCP server send ...
-5
votes
1answer
638 views

Conecting TCP client (on linux/c++) to TCP server (on windows c#) [duplicate]

Possible Duplicate: Connection from linux to windows via tcp I have a TCP client on windows/c# and another one on linux/c++ Also I have a TCP server on both. My TCP client on windows/c# ...
0
votes
1answer
130 views

How to stream data structure or record through NetworkStream?

I have the following data structure or record, which I need to stream to and from another machine through NetworkStream. TRemoteRecord = record command:TRemoteCommand; status:TRemoteStatus; ...
1
vote
0answers
218 views

How to decompress bitmap in VB.Net Server that was compressed by Java Client

I'm trying to have android send an image to vb.net server via tcp/ip. Android compresses the bitmap and when the server receives the bitmap and converts it to image it comes to all black I think that ...
0
votes
1answer
696 views

How to formulate IP forwarding rule using iptables

I have two Systems A and B. A is a TCP Client and sends a message to TCP Server on B. ------------------ -------------------------- System A System B ...
0
votes
3answers
624 views

Unable To Accept TcpClient a Second Time C#

I am new to both C# and to client-server programming. Right now, for class, I'm attempting to create an FTP client without using any pre-established FTP libraries. I feel like I have the project down ...
0
votes
1answer
135 views

Best approach to pass the public key from client to server

I have a tcp server and using cms/pkcs#7 to secure the message passed between the client and server. Would it be normal practice to pass the clients public key to the server, as part of initial ...
0
votes
1answer
1k views

How to transfer bitmap using TCP socket

I have the a Server/Client application in which i want to send and display screenshot of server on client. Can any body help me in that. thanks The code is the following Server side public class ...
0
votes
0answers
398 views

Handling TCP client disconnect mid-send

Here's my situation: I have a TCP server (written in C/C++) that can accept multiple clients. In a loop, the server sends a large chunk of data (an image) to each connected client. If one of my ...
3
votes
1answer
186 views

Apple IOS application and Delphi TidCmdTcpServer

I have a server process written in Delphi which has been in production for several years. It is using the TidCmdTcpServer to communicate with the client (also written in Delphi and using the ...
1
vote
1answer
1k views

Indy TCPServer doesn't receive all packages from TCPClient when sending packages too frequently

I have a problem with Indy TCP connection. I use Turbo Delphi 2006 with Indy 10. I want to send multiple TCP packages from idTCPClient to idTCPServer. It works finely, when I want to send only one ...
0
votes
0answers
192 views

Why RemoteEndPoint in Server side don't represent Clients IP?

I tried Asynchronous Socket with Server and Client in a Computer (1 server and 2 client): server ip = 0.0.0.0 client 1 ip = 127.0.0.1 client 2 ip = 127.0.0.2 In Server side, when the server ...
1
vote
2answers
150 views

Reading/Writing is not working in my TCP code

I have a basic TCP client/server program. I have a method in both the client and the server that reads and writes. It works perfectly the first time I run it, but when it runs again (it's in a ...
0
votes
1answer
78 views

Best convention of tcp-messaging

I'am using this message convetion : %total_msg_length%|%msg_body% to recieve string data over tcp-sockets (python/pyqt). Is this is the good convetion, or should i try something else?
1
vote
2answers
475 views

Sanding data from a C# TCP server to connected client outside of the listening thread

I am writing a simple Tcp server in Unity and have my Flash application connects to it. I found a great tutorial on threaded Tcp server online, and my flash app connects to it nicely. However, I am ...
1
vote
0answers
452 views

Adding send option to vb.net listener

I have the following code which listens and evaluates strings received, but I now need to add the option of sending pre-defined strings back to the source on a button click. Any help or a pointer of ...
5
votes
1answer
2k views

Faster way to communicate using TcpClient?

I'm writing a client/server application in C#, and it's going great. For now, everything works and it's all pretty robust. My problem is that I run into some delays when sending packets across the ...
1
vote
1answer
998 views

About TCPClient receive data from TCPServer problem

Hello everyone~ I have a problem to solve~ I have created a server that every one can connect to this server. The function of The server is in order to transfer message from one client to another ...
2
votes
2answers
566 views

How to send a “hello” to server and reply a “hi”?

With my code I can read a message on the server and write from the client. But I am not being able to write a response from the server and read in the client. The code on the client var cli = new ...
0
votes
2answers
767 views

C# send and receive tcp packet via web app

Hi We are writing a unique project. I was wondering if someone could point me us in the right direction, as I am not familiar with tcp programming. We talk to an external system. I send a tcp packet ...
1
vote
1answer
133 views

Is it possible to have non blocking server and blocked I/O client communicate?

I was just wondering, is it possible to have have two sockets that communicate to each other, and one is using blocked I/O and another is using non blocked I/O?
1
vote
5answers
228 views

How you pass path from client to server?

Hello i am trying to make a TCP client/server that i want these things. The client will give the filename or the path of filename of a file. The server will find that file and give these details: ...