Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
92 views

I have 2 python programs: 1st one is a tcp server that in while True cycle accepts new clients and handles each of them in a separate thread. On the client side I have basic functionality and use it ...
good user's user avatar
0 votes
0 answers
317 views

I am new to socket program and I am facing an issue. I created a client socket, now I am try to connect to the server using the connect() function. If my server is down or not reachable for some ...
sathish k's user avatar
0 votes
0 answers
128 views

I'm new to next.js and I've struggling with this error for a few days now, I would really appreciate some help. I also got a "Hydration failed because the server rendered HTML didn't match the ...
Gwiba Ntulini's user avatar
2 votes
1 answer
131 views

This is the template I'm using: I got it from github here: https://github.com/boostorg/beast/blob/develop/example/websocket/client/async/websocket_client_async.cpp class session : public std::...
LPi's user avatar
  • 23
0 votes
1 answer
148 views

I'm trying to establish connection between client and server using grpc. I'm doing the .proto file approach. I have couple of questions on this. Does grpc only have to run with HTTPS? Doeschat.proto ...
Abbas Hussain's user avatar
0 votes
2 answers
72 views

I am using Socket.IO to emit an event from the server to a specific client. The event is being successfully received on the client side, and the client processes the data without any errors. However, ...
Nilesh Vasudev's user avatar
1 vote
1 answer
128 views

I am new to the world of encryption and I was wondering if my solution for encrypting/decrypting data is okay. When creating this, I referenced the API documentation from PyCryptodome: https://...
Solitude's user avatar
1 vote
1 answer
725 views

I'm setting up post-quantum cryptography (PQC)-based self-signed certificates for PostgreSQL-16.4, aiming to use PQC KEM and DSA algorithms (specifically Kyber768 for KEM and Dilithium3 for digital ...
Sai Gautam Mandapati's user avatar
1 vote
1 answer
224 views

I am working on a package that includes a server with the corresponding client. I was thinking that I could save a lot of effort mocking all the interactions and just write some test cases that test ...
Uuruurrgh's user avatar
0 votes
0 answers
61 views

The ServiceHost is throwing a NullReferenceException when I try to facilitate the service announcement. I do it exactly as described here Below is a complete running code illustrating the problem. I ...
Jossi85's user avatar
  • 13
0 votes
1 answer
103 views

In the typical client-server model, a server cannot send data to a client without an explicit request from the client. However, webhooks seem to operate differently. I understand that webhooks allow a ...
user3759177's user avatar
0 votes
1 answer
188 views

I'm trying to connect my client application written in Delphi to a service running on a server using TCP/IP. The service is also written in Delphi and uses TIdTCPServer to listen for connections. When ...
Amelia's user avatar
  • 1
-1 votes
1 answer
75 views

I m training with http request via android client and a server, using Okhttp3 module. I already used get request with no problems, but when I try post request they don't reach the server. Using some ...
Alberto Palladipelo's user avatar
0 votes
1 answer
123 views

I'm working on a C++ Client Server Application where client is on Windows and Server is on AIX. Both the existing applications are on 32-bit and we are planning to move them to 64 bit. As per the ...
Ganesh Manneedi's user avatar
0 votes
1 answer
50 views

In the project I'm working now, I have the task to create a server-client program in python. The idea is to have "n" remote devices connected to a server. Through socket programming, the ...
Pedro Carvalho's user avatar
1 vote
1 answer
57 views

I'm building a simple file uploader, basically for learning/testing purposes, using Vue for the front-end and Go for the back-end. Here's the code <template> <div class="adddocument-...
NicolaM94's user avatar
  • 161
1 vote
0 answers
124 views

I would like to implement full duplex named pipe communications on Windows. The server needs to be in C++, and needs to be able to connect to multiple clients simultaneously. The client needs to be ...
Lorne's user avatar
  • 121
1 vote
0 answers
110 views

I’m trying to write a program that transfers real-time video from a Seek thermal camera integrated with raspberry pi 3b+. The setup includes a flask server with websocket protocol and PC, where the ...
Nancy Mohammed's user avatar
1 vote
0 answers
53 views

hi I try to connect to socket-io and I get this error, is there anyway i can fix this error? uncaughtException: TypeError: isValidUTF8 is not a functionat module.exports.isValidUTF8 (webpack-internal:...
Lin BM's user avatar
  • 11
-2 votes
1 answer
199 views

set up UDP client-server communication and installed Wireshark on Ubuntu to monitor packet capture . However, Wireshark didn't display the IP addresses and port numbers of the server and client, ...
Niveditha K's user avatar
0 votes
1 answer
181 views

/* I am sending a response from CoAP server to CoAP client which is more than 1024 size. But, I am not able to receive the complete data in CoAP client. I could receive only 1024 size of data. API ...
Gokul's user avatar
  • 1
0 votes
0 answers
77 views

As title says, I've generated primary key as: async function generateKey() { const key = await window.crypto.subtle.generateKey( { name: "AES-GCM", ...
xoro_anti's user avatar
0 votes
0 answers
70 views

Exception in thread "client" java.lang.NoSuchMethodError: org.apache.commons.net.ftp.FTPSClient.getDataTimeout()Ljava/time/Duration; at org.apache.commons.net.ftp.FTPSClient....
Dan's user avatar
  • 1
2 votes
0 answers
56 views

I'm developing a simple client/server application that requires a single entry point (called from an external process); to make it simple the current architecture kinda looks like this: Client.py <...
Rrr's user avatar
  • 41
0 votes
0 answers
17 views

Ok so I have an assignment and I need to use select to handle receive because it is a blocking function , but I cant get the syntax of select right I read about it but I didn't understand how to ...
Orio20's user avatar
  • 3

1
2 3 4 5
130