Representational state transfer (REST) 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
12 views
XML to JSON Serialization NewtonSoft General Data Format JToken Value
I'm using NewtonSoft to convert XML to JSON data.
With the following XML:
<NewDataSet>
<Student>
<ID>1</ID>
<Name>Alex</Name>
</Student>
...
0
votes
2answers
29 views
Can't locate the file on local file system, java servlet, tomcat, on windows server
I wrote a RESTful web service using Jersey library and in order to respond to the request I have to read a text file in local file system. C:\data.txt. The servlet works fine when I run it with tomcat ...
0
votes
0answers
18 views
Node.js + Mongoose - what's going wrong?
I have been studying a node.js + mongoose simple app, however, something went wrong. I have been working based on some examples from this site, but no lucky at all.
The code runs, however, no records ...
0
votes
0answers
7 views
Rest with oauth2
I'm using this library with my codeigniter rest service. Basically, I have a REST_controller, that is inherited, and checks for a valid token, using that library.
All I want is to provide an API to ...
1
vote
0answers
8 views
Rest API: reasonable to create associated resources given a verbose representation?
Take it that we have several collection resources.
I can create an instance resource on this collection:
POST /people
{
"_links" : {
"car" : {
"href" : "/cars/66H8800"
...
-1
votes
0answers
10 views
Parse.com upload file max size
I am trying to upload a 100MB video file to Parse, but I get an error code 129 : File size exceeds maximum allowed.
I have been trying to find the size contraints on the docs with no luck. Does any ...
3
votes
2answers
26 views
What RESTFul HTTP request for executing actions on the server?
I have a RESTFul server API which I've built. Some parts of it is not controlling resources and I'm having trouble mapping the relevant URL + HTTP-method to the actions that are executed on the ...
1
vote
0answers
11 views
More RESTful naming
The more I search Google and SO the more RESTful naming seems like more of a black art than a standard. I would like to lay out a scenario I have and my current line of thinking and ask those of you ...
0
votes
0answers
11 views
Is it possible to call WCF ,which uses Windows or NTLM authentication ,from jquery ?
After trying for the whole day i was finally unable to Call a Cross Domain WCF Service with Basic authentication from jquery. You can find my previous question about this here.
Unable to add ...
0
votes
0answers
8 views
Index parameterization in Cypher REST query
I have this query which works well but without parametrization in index. emp is an index, and NUM_OFC_CA is an emp number (key in emp index), to simplify i want to return NME_CA.
curl -X POST ...
0
votes
1answer
23 views
restful controllers in laravel
I'm trying to implement a RESTful API using Laravel restful controllers ($restful = true in the controller). The problem is that I'd like to retrieve a single record by using /customer/123 instead of ...
0
votes
0answers
12 views
Unable to add Authorization header while calling WCF service with basic authentication
I am trying to call a WCF service deployed on IIS with basic authentication enabled, from j query as below.
$(document).ready(function () {
$.ajax({
type: ...
-1
votes
0answers
12 views
convert curl POST call into java urlconnection in twilio
I am trying to curl post command to java using urlconnection(HttpURLConnection) but it doesn't work. so please tell how to solve the problem.
I have curl command is:
curl -X POST ...
1
vote
1answer
11 views
Perl REST::Client best way to get and use CSRFToken and session id through cookies
So right now I'm using REST::Client which does a perfectly good job when it comes to making GET requests and fetching JSON data. However, the API in question, when issuing a POST request, should pass ...
-2
votes
0answers
6 views
each elemets with attribute using Javax annotation for REST API
I have to write REST API using javax annotation and jersey to generate a response like this.
<application>
<id type="integer">12</id>
<created ...
0
votes
1answer
22 views
Problems with render Criteria as json in Grails!Find one field in a restfull service and render it
I have this code.I want to have some rows in JSON,to find it Im trying to use criteria. I want render each case as json.
Example: I want the row of my table that have Name:"pepito" .if I put ...
0
votes
1answer
17 views
how do i output an xml file using rest
i have an xml file called articles.xml that i am trying to access with a rest service.
what i want to do is get all the articles in the articles.xml file and display them using a rest service.
i have ...
1
vote
1answer
28 views
RESTfull authentication for Java EE
I've been spending some time evaluating the options available for restfully authenticating a user in a JEE application.
So, please suggest if the options listed below are valid along with the ...
-1
votes
1answer
20 views
How to get response from server using REST protocol?
I have a requirement as follows,
1.Get the auth token and auth token secret from a soical networking site( say Facebook).
2.Usethese values in the following url.
...
0
votes
0answers
6 views
How to implement REST in IBM Cast Iron?
I am trying to create a REST services using IBM Cast Iron 6.3.0.1. I can use Read JSON or Write JSON node. But don;t know how to use them. Please let me know if anyone know about it.
...
0
votes
0answers
9 views
How to run different versions of a database-driven WPF client concurrently in .NET?
We have a data-intensive .NET WPF application which in its current form directly accesses a shared MS SQL database. The client continuously collects large amounts of data during production and ...
-4
votes
0answers
23 views
Create a REST web service allowing a client to fetch a list of articles according to given URL parameters
need to create a REST web service allowing a client to fetch a list of articles according to given URL parameters.
has to be completed on using java for this question and done endless hours of ...
0
votes
0answers
13 views
Versioning a distributable REST API with the Vendor Tree Media Type
I'm working on an open source application that will be distributable. The application itself will consume its own API, so the API itself is a very important part. While still in this planning stage ...
0
votes
0answers
19 views
Pyro CMS : Creating a REST Controller
I am a complete nob in Codeigniter so please ignore if m being stupid.
I have played with pyro cms for a while and i would like to have an API which could
return all the blogs in JSOn / XML format.
...
0
votes
0answers
22 views
How to access twilio Rest API in browers using java
I am trying to get data from this URL:
https://api.twilio.com/2010-04-01/Accounts/AC84704276aeb03ef72fa434f45bf6f871/Calls
...
0
votes
0answers
14 views
Access Oracle using Lotus Enterprise Integrator With Domino RESTful web service
I am going to develop a system including : mobile app on mobile devices, RESTful web service on Domino server, Oracle database. I have a Lotus Enterprise Integrator server for connectivity from Domino ...
-1
votes
0answers
16 views
how to give response in array from restful web service to android application [closed]
I want to give response to android app via restful web service in java language. But problem is that I am unable to to give responce in array to app from web service. Please tell me how to overcome ...
0
votes
0answers
27 views
what is type of this Response type ? (it's no json, or xml)
I am familiar with json or xml response format/type.
JSON :
{
"status": "success"
"code": "10"
}
XML :
<status>
success
</status>
<code>
10
</code>
...
0
votes
1answer
7 views
why does neo4j batch ops look like reinvention of http persistent connections
I'm looking at neo4j batch ops here: http://docs.neo4j.org/chunked/milestone/rest-api-batch-ops.html
And it reminds me a lot of persistent connections: ...
0
votes
2answers
19 views
Sharing dynamic data between two controllers with service AngularJS
I have two angular services that need to share models (a list of messages and an individual message), which they get from a call to our API. The service is as follows:
angular.module('CmServices', ...
0
votes
4answers
81 views
What is the fastest way to stand up a REST service using Java?
I have a few utility methods that I wrote in Java, for test data creation against a service. A couple of my colleagues who have the same use case thought it would be cool if they could re-use it, but ...
0
votes
0answers
13 views
RESTful method for representing a has_one relationship with no identifier
I currently have a service with a REST API which is pretty standard:
show: GET /users/1
update: PUT /users/1
...and some has_many relationships which follow the same convention:
show: GET ...
0
votes
0answers
16 views
What Kind of WS we can consume with JavaScript
I know how to use Restful WS with JavaScript. I am wondering is it possible to consume SOAP WS on some easy way or I need to make XML file (envelope) by my own hand which I could use to communicate ...
1
vote
1answer
20 views
Restangular all(“customers”).getList() does not return result
I started using Restangular to send RESTful requests from my AngularJS app. I have a REST service deployed on http://localhost:20080/v1/customer which produces JSON with customer information.
When I ...
0
votes
0answers
13 views
How to implement a safe Facebook login/register/connect web service for a mobile application?
I have a web REST API for a mobile application which supports classic signup/signin with user/password and token authentication.
Since the signup is without email confirmation how could I implement a ...
0
votes
0answers
11 views
GET request for WCF REST service using cURL
I'm a beginner is the REST world & cURL... I have a WCF REST service and I can't figure out how to call this from PHP using cURL.
My service looks like this:
[OperationContract]
...
1
vote
0answers
36 views
Best way to create an application API [closed]
I am currently working on a file-sharing platform.
I wrote it using PHP, but now I want it to be fully portable.
There goes a question : should I code a server with a REST architecture (in Java) ...
0
votes
1answer
30 views
How do I check the inbound header “content-type” response in mule?
I've got a flow that processes the response from a REST service:
<http:outbound-endpoint method="GET"
address="http://www.SomeAddress.com"
...
0
votes
1answer
31 views
Error in Cypher curl REST with multiple start points
I am getting the following error when i am trying to pass a cypher query via REST using curl command. My problem is something silly specific to curl command, which i am not able to figure out.
On ...
-1
votes
1answer
20 views
HttpClient.excute(HttpPost) no response
I constructed an HttpClient, and set timeout parameters.
the code is like this:
while(bufferedinputstream.read()!=-1){
post.setEntity(multipartEntity);
HttpResponse response = ...
0
votes
0answers
8 views
Drools REST CannotResolveClassException
Using Drools 5.5.0.Final with Guvnor 5.5.0.Final with the sample mortgages package.
When submitting REST json request with the following Batch Execution Command:
{
"batch-execution": {
...
0
votes
1answer
33 views
How to POST to RESTful API with Windows Phone 8
Can anyone point me to a working example of how to POST JSON to a RESTful API (e.g. Web API) using Windows Phone 8? I have a working example for GET but can't seem to find any working examples for ...
0
votes
1answer
11 views
Live connect SDK REST request for updating token
I'm trying to update token, but I get error "The remote server returned an error: (400) Bad Request."
My code is:
public static object Refresh_token(string client_id, string redirect_uri, string ...
0
votes
0answers
13 views
How to mock only a specific http resource (URL) in Angular
I'm working in a team split into front-end and back-end developers. Sometimes, the front-end wants to make some REST requests to a http address / REST-resource that isn't yet implemented.
In ...
-1
votes
0answers
4 views
Wavemaker RESTful web services post data
I am trying to create a simple page to send an api post and create a new account.
I have managed to do most of it using the REST(build a service) however I am not sure how to send the postdata.
I ...
0
votes
0answers
12 views
JSONObject removes decimal dot, if round number
Using a rest service, we are transfering values using JSON.
At some point, we need to decide, wheter the incoming value was a long or a double. While
Double d = 17.0;
...
0
votes
1answer
21 views
List Azure Virtual Machines via REST API
I am currently attempting to get a list of all of the Virtual Machines that I have running under a Windows Azure subscription programmatically. For this, I am attempting to use the Azure REST API ...
2
votes
0answers
32 views
apr_pollset_poll: The timeout specified ha s expired (70007), only concurrent request processed
I'm making a simple restlet server, which takes a json file as post, and returns "helloworld".(Posting here a small replica of my server). I want to benchmark this server using apache benchmark (ab), ...
0
votes
0answers
16 views
how to use rest api google cloud in java?
hi all i wand to use REST api in google cloud storage and i try this code below but it gives me error
the things that i want how to get it is
1-Authorization
2-Host
thats my code
please help ...
0
votes
0answers
8 views
WCF Rest (JSON) - contract method parameter as object
I have service with one method that accepts object type as parameter. Have two endpoints (one for soap and one for REST - json ).
Soap endpoint works fine and object is deserialized to correct object ...




