0
votes
2answers
51 views

delphi, send image with indy10 from client to server

how i can send from a Timage (clientside) to another Timage(serverside)? I'm using delphi XE3 with idtcpclient1, idtcpserver1 (indy10 component). I already tried to do something but i had some ...
0
votes
1answer
297 views

Too many connections when developing

I'm trying (with a lot of help from this community) to put together my first client/server app. I am using Indy 10 and Delphi Xe2, but suspect my problem does not lie with those, but rather with how ...
1
vote
2answers
2k views

How to send text in UTF-8 using Indy TIdTCPServer in c++ builder

My client j2me application reading text input stream using UTF-8 reader = new InputStreamReader(in,"UTF-8"); and my server when gets connected sends text using this statement ...
1
vote
5answers
551 views

Delphi 2010 - Socket Port 119 does not work

I am opening a socket on port 119 (using idHttpServer) and it opens ok (no errors reported and i can see that the port 119 is opened by looking at netstat). But when my socket client sends a request ...
3
votes
1answer
741 views

Transferring Data Directly between 2 Connections in Indy (TIdContext)

ive a sever running TIdTCPServer, and Client Using Web Browser (or any other software) to Communicate, i dunno the protocol, but what im trying to do is to Send The Data between the client and another ...