top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

can anyone help me with the List of C++ based HTTP library's which can act as client and server?

+1 vote
400 views
can anyone help me with the List of C++ based HTTP library's which can act as client and server?
posted Jul 13, 2016 by Vinay Kumar Tokala

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button
Are you looking for
http://cpp-netlib.org/
Has it solved your issue?
Hi salil,

 I dint gone through it.I'll check It later
 Thanks for your answer.

Similar Questions
+2 votes

(a) HTTP/1.0 vs HTTP/1.1. What are the dierences between these versions? what the methos (HTTP
commands) that are supported by HTTP/1.0 and that are supported by HTTP/1.1?
(b) WebSocket: What is a WebSocket (namely with HTML5) and what they are being used for?

+1 vote

I've got a very feeble web server. The crypto handshaking involved in opening an https: connection takes 2-3 seconds. That would be fine if a browser opened a single connection and then sent a series of requests on that connection to load the various elements on a page.

But that's not what browsers do. They all seem to open whole handful of connections (often as many as 8-10) and try to load all the page's elements in parallel. That turns what would be a 3-4 second page load time (using a single connection) into a 20-30 second page load time. Even with plaintext http: connections, the multi-connection page load time is slower than the single-connection load time, but not by as large a factor.

Some browsers have user-preference settings that limit the max number of simultaneous connections to a single server (IIRC the RFCs suggest a max of 4, but most browsers seem to default to a max of 8-16).

What I really need is an HTTP header or meta-tag or something that I can use to tell clients to limit themselves to a single connection.

I haven't been able to find such a thing, but I'm hoping I've overlooked something...

+1 vote

How can I differentiate the call between client ios app & browser call?
session_controller - create method is being used by both client & rails web application.I want to restrict for web application to use create method. how can I achieve this?

...