REST (Representational State Transfer) is a style of software architecture for distributed hypermedia systems such as the World Wide Web. It has increased in popularity relative to RPC-based architectures such as SOAP due to the intrinsic de-coupling of client from server that comes from having a ...
0
votes
0answers
3 views
Huge File Upload with cURL
I am attempting to upload 64GB files or larger through the linux command cURL. This is for testing a REST interface for huge file archive storage. The problem I have run into is that cURL loads the ...
0
votes
0answers
8 views
Rest API services Pagination
I'm consuming a response from a Crucible Rest API.
I want to request for a service which return the open reviews from the instance.
Something like this :
...
0
votes
0answers
13 views
Android: consuming Rest Service. “SyncServices/ValidateUser?SName={SITENAME}” + a body
This is the Reference for the rest service: (Written in ASP.net if it helps with identifying what conventions were used etc...). I'm really new to Web Services in general so please assume I know very ...
1
vote
1answer
18 views
Need help understanding REST API endpoints
I don't quite grok how to sensibly structure a REST (or REST-like) API.
Imagine an API for creating and sending out newsletter emails. You might have the following nouns/resources: newsletters ...
0
votes
1answer
17 views
Sending POST with RestKit returns no JSON content
So, i m sending a POST request for the first time. I m Mapping classes and as I thought and read from the Documentation that it would work in this way:
Init RK:
- (void)initRK{
if(!manager){
...
0
votes
0answers
4 views
How to access jsp page in Apache CXF Rest Web Service?
I have implemented a Rest WS with Apache CXF and I am trying to access a jsp file but I get 404 HTTP Response.
My Service is deployed in Tomcat Server and the directory hierarchy is shown below
...
0
votes
0answers
5 views
uploading image using Phil Sturgeon’s REST server
I am trying to use Phil Sturgeon’s REST api to upload images from the back end php code.
I can post data using Phil Sturgeon’s REST API.
But i am having difficulties to upload images using Phil ...
0
votes
0answers
9 views
Parameterize Post Request payload using Rest Assured
I have below post request in Rest Assured code :
I want to parameterize it. Please suggest.
given().contentType(JSON).with()
...
0
votes
0answers
13 views
REST - Authentification methods
we're using SOAP with WSS and HTTPS atm for our webservices.
This works well, but it can cause problems to some special systems, which dont implemented the needed functions.
So we're searching an ...
0
votes
1answer
18 views
REST listening tool for testing
There are lots of tools for testing REST from the client's perspective, as covered here.
I am looking for a tool that will receive a RESTful network request, and provide some feedback about the ...
0
votes
2answers
18 views
having a global object with cluster module of node.js
I am using clustering in the Rest api app built on express in node.js.
the full code for Rest API utilizing clustering is.
var cluster = require('cluster');
var numCPUs = ...
0
votes
1answer
16 views
What's the right way to handle HTTP caching OData queries?
I want to use OData and get some benefits from HTTP caching. I've settled on rule "one entity has one URI". There are many ways how to perform query to one entity, lets say Product with SKU=123 (which ...
0
votes
0answers
11 views
Documentation for .NET REST API with NancyFx
I am developing a REST API based on NancyFx on .NET and I would like to attach a documentation framework like IODocs or Swagger. But as far as I understand, those are not directly compatiblible with ...
0
votes
0answers
15 views
Generating valueObjects (dataobjects) in flex for REST webservices
Incase of SOAP webservices, I can create valueObjects by providing the WDSL.Now I have a RESTful webservice with POST method, that takes some java request and response objects as input and output. How ...
-7
votes
0answers
28 views
backbone.js file-uploading with java backend [on hold]
I am working in a small organization. We have decided to use backbone.js but it is new to us. We need to upload one image file and one document with some other fields, such as user information to a ...