Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ways to implement a JSON RESTful service in C/C++

I am trying to do a JSON Restful web service in C/C++. I have tried Axis2/C and Staff, which work great for XML serialization/deserialization but not for JSON.

like image 684
jllodra Avatar asked Mar 20 '12 14:03

jllodra


People also ask

Is JSON supported by RESTful services?

CICS JSON services can be converted into RESTful services using z/OS® Connect Enterprise Edition. A Graphical User Interface is used to map URI fragments and HTTP headers into fields of an existing copybook, and different programs can potentially act as the target for each HTTP method.


1 Answers

You might want to take a look at Casablanca introduced in Herb Sutter's blog.

like image 190
Philipp Avatar answered Sep 19 '22 23:09

Philipp