Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
-1 votes
0 answers
33 views

Alternative for RMI in Android application [closed]

I've seen a few posts about this issue, but most of them are old and differ a bit from my question. I chose to implement an Android application with RMI for a project that I work on. I created the ...
Maor Cohen's user avatar
0 votes
0 answers
8 views

Is rapid IP switchting available for attackers on TCP servers?

I'm working on a server implementation and I'm wondering how quickly attackers can switch ip addresses. I know with UDP attackers can actually just send in whatever ip address they want, but with TCP ...
brando f's user avatar
  • 381
0 votes
1 answer
35 views

Send data to a tcp streams in a multithreaded server on a Rust

Please help me, I want to create a multithreaded server with TCP connections. How to make it so that the server can transmit data by some asynchronous event with current TCP streams, as well as ...
ВуDengin's user avatar
1 vote
0 answers
34 views

Browser closes connection on chunked data after recieving 6 chunks

I want to send images, videos, audio through TCP in chunks. I wrote this function but for some reason every Browser I use closes the connection after recieving only a few chunks of data. Is there a ...
NunjaUwU's user avatar
1 vote
0 answers
34 views

Spring boot TCP Socket Server using Spring Integration

I have a TCP Socket Server using spring integration. import java.util.concurrent.Executor; import java.util.concurrent.Executors; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org....
acG's user avatar
  • 125
-2 votes
2 answers
54 views

The error when using ReceiveAsync and SendAsync to transmit text

I'm writing a server for creating an online chat in a WindowsFormsApp and encountered an error in ReceiveAsync and SendAsync. How can I fix it? The issues start with trying to pass an argument into ...
WANderer's user avatar
0 votes
0 answers
19 views

How do I make a flutter home automation app that send strings to a server over TCP

I need to make a TCP connection for a flutter app and I don’t know how to integrate the flutter app and their widgets that send a string to the server and receive string feedback I couldn’t do it ...
Aryaman Chakraborty's user avatar
1 vote
0 answers
42 views

TCP/ip information for CLIENT/SERVER EXCHANGE distributed system [duplicate]

I am trying to create a server/client in a distributed system. The server must print it's tcp/ip information and manually I have to enter it in the client side so the client can establish a tcp/ip ...
Simple Life's user avatar
0 votes
0 answers
38 views

Why does an exception occur when binding to a socket server?

IPAddress IpAddress_ = IPAddress.Parse(ip_address); int PortNumber = port_number; // 소켓 서버로 실행 if (Socket_select == false) { m_Socket = new Socket(AddressFamily.InterNetwork,SocketType.Stream,...
BlueMoon's user avatar
0 votes
0 answers
24 views

Server not retrieving a value to a client in a server-client project in C#

I'm currently working on a client-server project in C# but is not working as expected. I proceed to explain. On the server side, I have this class: public class MensajeSocket<T> { public ...
Kabir's user avatar
  • 1
0 votes
0 answers
41 views

Java socket TCP

I have to make a project of a multiplayer words game using TCP / sockets and swing GUI. I made the server class with threads (to handle multiple clients) and implemented runnable and I made the client ...
Joud's user avatar
  • 1
0 votes
0 answers
63 views

How does a server handle multiple requests, and how does is know where to send which response?

I am trying to figure out how a server handles multiple concurrent requests and each client receive the response to their own request. I did read a few answers online but those confused me even more. ...
blablagrammer's user avatar
-1 votes
1 answer
54 views

Should I expect the http data to be out of order in my http server for connections comming from a single client socket?

I am implementing my own http server: import socket import threading import queue import ssl from manipulator.parser import LineBuffer,LoggableHttpRequest class SocketServer: """ ...
Dimitrios Desyllas's user avatar
0 votes
0 answers
31 views

My python UDP sendto() is unable to send data to a "client"

I am trying to write a server that listens on localhost and has both TCP and UDP ports and also sends data over TCP and UDP. I have managed to get the data receiving part to function but cannot send ...
Asim Ashraf's user avatar
0 votes
0 answers
39 views

pickle.loads(clientSocket.recv(4028)) stuck

I am running a server and a client. The client request to sign up and must enter a username. After this point the program gets stuck in the line message = pickle.loads(clientSocket.recv(4028))on the ...
somkinggamingwolf's user avatar

15 30 50 per page
1
2 3 4 5
45