Linked Questions

47 votes
6 answers
13k views

I have two machines, A and B. A sends an HTTP request to B and asks for some document. B responds back and sends the requested document and gives a 200 OK message, but machine A is complaining that ...
Naveen Suryawanshi's user avatar
15 votes
5 answers
33k views

I want a bit of clarity on whether HTTPS is stateful or stateless? This is with regards to a RESTful API I built. We were initially using HTTP. Since HTTP essentially works over TCP/IP which is ...
OptionalName's user avatar
26 votes
2 answers
7k views

From my understanding, HTTP/2 comes with a stateful header compression called HPACK. Doesn't it change the stateless semantics of the HTTP protocol? Is it safe for web applications to consider HTTP/2 ...
zeronone's user avatar
  • 3,071
5 votes
3 answers
17k views

UDP is unreliable. No guarantee of message delivery No acknowledgments, retransmissions, or timeouts No guarantee of order of delivery No packet sequence numbers, no reordering, no head-of-line ...
Feng Yu's user avatar
  • 379
1 vote
1 answer
2k views

I am trying to implement data transfer between a back-end server and the android device which is a request from device to server for information and the server responds(UDP use because it is faster ...
benzabill's user avatar
  • 269
1 vote
1 answer
2k views

I thinking of building a mini-server where Java can send data through UDP protocol so that my other Flex application can read. The data consist of short string of up to 64 characters. Should I ...
Proyb2's user avatar
  • 993
1 vote
1 answer
615 views

In the book Computer Networking: A top down approach second edition by Kurose, in chapter 2 under Building a Web Server (2.8), Author creates a server listening on the port 6789 for HTTP responses. ...
Tony's user avatar
  • 110
1 vote
1 answer
583 views

After curiously googling about potentially accepting UDP packets in web clients (JavaScript), I was surprised to come up with almost nothing except some articles about Google's experimental QUIC ...
NanoWizard's user avatar
  • 2,174
-1 votes
1 answer
288 views

I am planning to use GRPC with C# and unity for gaming application. Is it possible to use UDP transport underneath GRPC? Also, is it possible to use Cronet transport underneath GRPC?
curry rocks's user avatar
-1 votes
1 answer
85 views

I have an HTTP server listening on a specific TCP port written in Golang. I have a logic that the server will reject the client request if the client payload is larger than a certain size. Now I'm ...
hani's user avatar
  • 37