-1
votes
0answers
23 views

android string to byte via client socket

I've a trouble with sending bytes via client socket. When i use this c# code it works: String message = ">V:1,C:14,L:" + (((int)renk.R * 100) / 255).ToString() + ...
0
votes
0answers
40 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
0answers
38 views

Socket constructor is not creating new object? [duplicate]

I'm trying to connect a remote server, so i'm writing client side... But when i attempt to create Socket object with host and portnumber, it's not getting created and second attempt to use it crashes ...
0
votes
0answers
44 views

TCPClient.Close() doesn't work when using Mono

I'm trying to simply disconnect socket client. TcpClient socket = new TcpClient(); NetworkStream stream = socket.GetStream(); // ... stream.Close(); socket.Close(); Well, it works perfectly ...
0
votes
0answers
49 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
1answer
24 views

creating TCPClient giving me exception

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net; using System.Net.Sockets; namespace ConsoleApplication2 { ...
-3
votes
1answer
51 views

move sprite from different computer [closed]

I am doing an assignment where I need to develop Robot environment using XNA and control the robot using c# TCP/IP Socket Technology from another computer. But when I inserted the server code into XNA ...
0
votes
2answers
71 views

When server connection is lost, how to stop and restart a service of the client on its own?

This is the link to my code. On service start a socket a created that sends data to the server from android client. This service is stopped on destroy. But I noticed, if my client loses connection ...
0
votes
2answers
289 views

purpose of socket.shutdownOutput()

I am using the below code to send data to a tcp server. I am assuming that I need to use socket.shutdownOutput() to properly indicate that the client is done sending the request. Is my assumption ...
1
vote
1answer
71 views

.NET TCPClient Connection State

Background     I am communicating with a server (that I can't touch, of course) over a TCP connection. The application I am connecting to requires two connections. One as an "I ...
0
votes
2answers
172 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 ...
0
votes
1answer
96 views

Client for a local Java based service

I am trying to connect my C# application with a local service that is based on Java. I dont have access to the Java code and the service details, the only thing I know is to communicate via socket ...
0
votes
3answers
592 views

How to End NetworkStream.Read() safely ? (in C# or VB.net)

I wrote a class that tries to read byte data sent by a server, and when my app ends, I also want the loop to end, but it appears NetworkStream.Read() just waits if no data is ever available. using ...
0
votes
3answers
188 views

Send typed objects through tcp or sockets

I’m having trouble creating a network interface for a very simple game I’ve made in Xna. I would simply need to send objects through a TCP client / Socket. Ex: I have a class named “Player”. In every ...
2
votes
1answer
222 views

disconnect/close a client

I have a simple client-server application which works like this: the server is always listening (in a separate thread) for a client connection (which sends the name of process that it wants the server ...
-1
votes
1answer
76 views

Server program taking lots of CPU even when not in use [closed]

I have a client/server java game im working on. There's a bunch of code and im trying to paste as little as possible while still giving enough. When I first start the server, it takes no CPU. ...
0
votes
1answer
129 views

TCP Client with select , after connect waits for input

I've ran into a problem with a simple TCP Client implemented using select. The problem is that,at the second printf it only displays before it gets to the connect() function then waits for user ...
-2
votes
1answer
148 views

Socket that constantly listens [closed]

so i've searched for about 2 weeks for this , and i can't find any legit answer. I have two projects , one is a server and the other one is a client. I've only managed to make a client console ...
0
votes
1answer
534 views

Socket Programming: Server/Clients and Thread Usage

static void Main(string[] args) { Console.Title = "Socket Server"; Console.WriteLine("Listening for client messages"); Socket serverSocket = new ...
0
votes
1answer
186 views

TcpClient connection broken after timeout

I am setting timeout for a TcpClient using TcpClient.ReceiveTimeout property. When the TcpClient.Read() method throws an exception ("connected party did not properly respond after a period of time") ...
0
votes
2answers
118 views

Error while making connection using TCP Client

I am trying to make connection with remote system in the network using C#. then the program is throwing the following exception No connection could be made because the target machine actively ...
1
vote
1answer
355 views

Check if socket is connected in compact framework

I have a server software running on windows desktop and developed in .net that is always listening for incoming connection on sockets through TCP/IP. Then I have a client software running on CE 6.0 ...
0
votes
1answer
210 views

How can I make my TCP Socket Server Async?

I currently have made an all in one peer to peer 'chat' program. It currently uses a timer to receive messages, and a client to send them to other people running the program. I would really like to ...
0
votes
1answer
183 views

GCDASyncSocket SSL don't connect

I had my socket connection working, but the server was updated to SSL. I call this method: [socket startTLS:nil]; Bu I still can't make a secure connection with the server. I initiate the ...
-1
votes
1answer
56 views

Manualy accept tcp clients

Is there a way in which I can chose the clients that my TcpListener accepts? Or to set my TcpListener to accept connction only from a specific IP? C#, .NET 4.0
1
vote
1answer
127 views

Recive different type of objects on the same TCP socket

so here is the deal: I have a server running that is constantly accepting clients by TCP socket: public ArrayList<Socket> lista_users = new ArrayList<Socket>(); Socket s; s ...
0
votes
3answers
172 views

Do i need multiple streams and TCP clients to make a chat application in c#

i am using the following code on server for communication between the server and client TcpListener server = new TcpListener(IPAddress.Any, 9999); server.Start(); Console.WriteLine("Waiting for ...
0
votes
3answers
421 views

C# TcpListener external IP

I'm creating a TcpListener, and I want clients from other computers to be able to join my listener. I've read and understood that I have to do Port Forwarding, but it doesn't make any sense to me - ...
1
vote
1answer
246 views

Sending TCP packets over internet (using Ruby)

I am trying to learn how to send TCP packets across the internet to another computer. So say, computer 1 sends data across the internet to computer 2 (using TCP). Assuming that both computer have ...
0
votes
3answers
2k views

What is the correct way to read from NetworkStream in .NET

I've been struggling with this and can't find a reason why my code is failing to properly read from a TCP server I've also written. I'm using the TcpClient class and its GetStream() method but ...
1
vote
1answer
125 views

How should I bridge TCP traffic using C#? Need to copy traffic on one port and send it to another

I need to bridge traffic from one port (say port 3000) and send it to a new port (say port 4000) and have full bidirectional TCP support. How should I go about solving this? Should I use the socket ...
-2
votes
1answer
167 views

C++ Socket disconnects intermittently

I'm new to socket programming and we have a running MFC client application over the network whose socket for some reason disconnects intermittently at least once a day. It's not a problem with the ...
1
vote
1answer
912 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 ...
1
vote
1answer
211 views

Character encoding issues with Socket Connection

I am sending data to a Socket and connection and retrieving some data. The data I am retrieving (which is an XML document) contains umlauts like ä,ü,ö,... but these are not correctly encoded, I only ...
0
votes
1answer
254 views

Error in recieving data from TCP Client

I've written an application which listens to a port and receives some packets,according to my customized protocol, the packets are either 49 byte to 1500 byte, which i can tell from data length in the ...
0
votes
0answers
215 views

Simultaneous send() and recv() between a server and client program in C?

I'm doing a program where I have a client and server. What the client does is 'ping' the server by sending a msg that contains 'ping'. When the server gets the 'ping' it should send back a 'got_it'. ...
3
votes
1answer
937 views

send multiple messages from TCP server to Client(C sharp to Android)

I am developing an app, in which c sharp server communicates with android client. Server needs to send multiple message to the Android tcpClient. As to send message I have to close the tcpClient ...
1
vote
2answers
438 views

How to establish a SSL enabled TCP/IP Connection in Ruby

I need to establish a TCP connection with my server which has a SSL enabled port, that I need to access. I need to send a XML file and get the response from the server. Before the SSL was enabled, ...
0
votes
1answer
329 views

How to get an acknowledgement for the client socket from server?

I have a client socket which sends messages to the server.I want to get an acknowledgement on the client side whenever the server receives the message. Is it possible to get that acknowledgement. I ...
0
votes
0answers
115 views

Async programming and explicit use of Thread pool. Are they mutually exclusive?

I have been using Async programming for developing a TCP Proxy Server. I am using BeginXXX and EndXXX for Accepting,Receiving,Connecting and Sending Operations. The listener socket runs on the main ...
0
votes
1answer
327 views

How to gather received buffers in socket programming (TCP/IP) in .net?

I am using the server-client model for communicating with a hardware board using socket programing. I receive data from board using "read()" method of "NetworkStream" class which reads a buffer with ...
1
vote
2answers
876 views

C# Sockets and Multithreading

I am trying to learn more about sockets and threading in c#. I have come across a lot of good resources online to help get me started. The program I made so far, is a simple "man-in-the-middle" ...
3
votes
4answers
2k views

Connecting to TCP Socket from browser using javascript

I have a vb.net application that opens a socket and listens on it. I need to communicate via this socket to that application using a javascript running on a browser. That is i need to send some data ...
2
votes
3answers
135 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 ...
1
vote
1answer
449 views

C# Connecting two tcp sockets together

I'm not sure if the title is all that informative. I am trying to find/write a socket server that will accept a connection from the client (telnet) and then on behalf of the connected client, connect ...
0
votes
1answer
189 views

How do I specify a valid port when testing a client and server socket application?

I'm trying to connect a client to a server test program in C# using Sockets on my local machine. However, I get the "server actively refused the connection" error for every port number I try. How do ...
7
votes
1answer
2k views

TcpClient vs Socket when dealing with asynchronousy

This is not yet another TcpClient vs Socket. TcpClient is a wrapper arround the Socket class to ease development, also exposing the underlying Socket. still ... On the MSDN library page for ...
0
votes
2answers
495 views

C#: Correctly finishing connection when sending data to WebClient

I need to locally test some code that uses a WebClient object for communicating with an http server. For that purpose, I decided to write an incredibly simplistic mock server that reads some bytes ...
2
votes
1answer
925 views

How to detect a Socket Disconnect in C#

I'm working on a client/server relationship that is meant to push data back and forth for an indeterminate amount of time. The problem I'm attempting to overcome is on the client side, being that I ...
1
vote
1answer
412 views

Socket connection gets closed for no apparent reason

I am trying to implement Facebook X_FACEBOOK_PLATFORM SASL mechanism so I could integrate Facebook Chat to my application over XMPP. Here is the code: var ak = "my app id"; var sk = "access ...

1 2 3 4