Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can anyone recommend a good C/C++ RESTful framework [closed]

Tags:

c++

rest

c

Rather than possibly reinventing the wheel (by "rolling my own") - I thought I'd ask in here first.

Anyone knows where I can download a good C/C++ RESTful framework?. I have had a quick look on google, but there is nothing too impressive so far - maybe someone in here has written one already (that they dont mind sharing), or may know a lik to a good one (preferably, they have already used it before)

like image 969
Stick it to THE MAN Avatar asked Dec 25 '09 14:12

Stick it to THE MAN


People also ask

What are the disadvantages of RESTful approach?

One of the disadvantages of RESTful APIs is that you can lose the ability to maintain state in REST, such as within sessions. It can also be more difficult for newer developers to use. It's important to understand what makes a REST API RESTful, and why these constraints exist before building your API.

Which Microsoft framework is used to produce RESTful services?

NET web service framework.

Is REST API still relevant?

However, REST API is certainly still proper for designing networked applications in the year 2021. To this day, it is used for communication between the server and the client's software via the Web, and within this process, the existing protocols are being used.


2 Answers

I've just seen this, it may be what I'm looking for. Could be useful for others too

like image 75
Stick it to THE MAN Avatar answered Oct 05 '22 21:10

Stick it to THE MAN


A solution to this would be the ffead-cpp framework, It provides the HTTPRequest, HTTPResponse and the HTTPResponseParser utility classes. Once you get hold of the HTTP Request parameters, developing a rest-full service would be a walk in the park.

like image 45
Sumeet Avatar answered Oct 05 '22 19:10

Sumeet