Questions tagged [restbed]

A comprehensive and consistent programming model for building applications that require seamless and secure communication over HTTP.

Restbed is a comprehensive and consistent programming model for building applications that require seamless and secure communication over HTTP, with the ability to model a range of business processes, designed to target mobile, tablet, desktop and embedded production environments.

See more details at the GitHub homepage.

38 questions
0
votes
1 answer

RestBed - Not able to compile in Redhat 7

We are building our C++ application in RHEL7 and we need to use RestBed as a service and as a client. However, when tried to compile the source code, we are getting error on GCC that the version is < 4.9. RedHat dont support GCC version > 4.8.5. So,…
Liju Mathew
  • 871
  • 1
  • 18
  • 31
0
votes
1 answer

Client only gets very limited response from REST service

I ran into following problem which I have no clue about the how and why: I have written a webservice in C++. I have also used an example for a client that should test for the response. client.cpp #include #include #include…
Paul Meyer
  • 77
  • 9
0
votes
0 answers

g++: restbed error: ld returned 1 exit status in ubuntu that only -L option solved it

My Problem I want to use restbed on my C++ project, and I follow the instruction to install it on my ubuntu machine. I installed the include file to /usr/local/include and library file to /usr/local/library. Problem is: @ubuntu:~/test$ g++ test.cpp…
catq
  • 127
  • 1
  • 6
0
votes
1 answer

dynamic resource publishing in restbed

I am using restbed. I have an endpoint where a user can request (POST) to create a new resource. Once this endpoint is called, I would like to publish the resource under a new URI and return it to user, so that he/she can access it. How should I…
fadedreamz
  • 1,156
  • 1
  • 10
  • 19
0
votes
2 answers

Restbed HTTP Client Empty Body

I tied to implement a REST Client with C++ and the Restbed Library I tried to copy the code from the example but seem to be missing something. The Example shows a body but my code does not. I tried playing with the Headers but no luck. Can anybody…
Toasterson
  • 115
  • 1
  • 2
  • 11
0
votes
1 answer

Sending Big files using Restbed http client

I am using restbed for http client in my c++ application and want to POST files which are in excess of 50 MB to a server. Is there any way to accomplish it. Thanks
0
votes
1 answer

Init git submodules outside a git repository

First of all, that question may sounds stupid, but I see no other way to do it. For one of the project at work, I need to add a dependency. There is a script that automatically grabs the tarball archive, decompress it, add the patches and build it.…
bl4ckb0ne
  • 1,097
  • 2
  • 15
  • 30
-1
votes
1 answer

Restbed set_path() for unknown number of params?

Can you allow a path with known params to have an additional number of unknown params in the Restbed API? As of right now it looks like you must declare each param. Example: known:(http://restbed.com/endpoint/) +…
Brandon Clark
  • 788
  • 1
  • 13
  • 26
1 2
3