1
vote
1answer
61 views

How use ArangoDB graph API from a C aplication

I'm trying to implement a C aplication that retrieves data from ArangoDB using REST and the graph API, but when I try to create a graph I get the message ...
2
votes
2answers
81 views

http post without libraries with C [closed]

I need to make use of an API REST with my program written in C. For that I need to make http requests, specifically the POST method. I don't want to use any libraries such as ...
1
vote
2answers
164 views

CRUD in embedded web server

I'm implementing a RESTful web API in an embedded stack which provides a webserver without the REST feature. To be precise, the embedded stack is RTCS which runs on top of the MQX RT operating system, ...
1
vote
1answer
51 views

Connect to REST service USING C

I have a C app running on a unix environment. I need to connect to a RESTful services, so far all my google'ing has shown how to connect to a soap service. To connect to a soap service I create the ...
0
votes
1answer
224 views

Using mongoose to provide rest api for my C++ application?

I want to use mongoose for exposing rest apis from inside my aplication. However, I do not see any model of how this can be implemented. Does anyone knows if it's possible of feasible to do using ...
3
votes
1answer
462 views

REST client library in C

Is there a good C library that I can use in my client application for talking to REST servers ?
3
votes
2answers
523 views

I'm searching a cgi lib in C to build a restful web service

I want to build a restful (CoAP) web service which can execute c code to handle events. Therefore I'm searching a lib which provides me with a rest api in C and cgi similar to restcgi which is sadly ...
2
votes
2answers
1k views

Sending SOAP requests using libcurl as XML file

I'm trying to use libcurl to do a SOAP http post to a web service. I have the SOAP requests already formed in XML files which I generate. Now I need to transefer these XML files to the webservice. ...
5
votes
4answers
380 views

How to 'web enable' a legacy C++ application

I am working on a system that splits users by organization. Each user belongs to an organization. Each organization stores its data in its own database which resides on a database server machine. A db ...
0
votes
1answer
587 views

libcurl (c api) READFUNCTION for http PUT blocking forever

I am using libcurl for a RESTful library. I am having two problems with a PUT message, I am just trying to send a small content like "hello" via put. My READFUNCTION for PUT's blocks for a very ...
11
votes
4answers
9k views

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

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 ...
4
votes
2answers
237 views

Tips for designing a minimalist data store suitable for an embedded device

I am trying to design a data store implementation like SQLite, BerkeleyDB or CouchDB suitable for a small embedded computer platform. The main criteria is minimal bloat and simple API. I could not ...
2
votes
3answers
183 views

What are some ways to control a device through an IP address?

I want to get some ideas on how I might control a video camera through an IP address. I have an API to control pan and tilt from a local machine. The code is going to be in C/C++ on Windows. I am ...