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
2answers
24 views
Proper PUT implementation and ObjectIDs in MongoDB
I would like to use MongoDB's ObjectIDs to identify resources in RESTful calls. However, I'm having trouble figuring out how to properly structure PUT calls.
As I understand it, a proper PUT call ...
3
votes
1answer
51 views
How do I map multiple Request DTOs to a single Route
I have been experimenting with the ServiceStack framework to develop a simple REST API. I am having troubles trying to define the Routes properly to handle the different URLs I desire.
I have a ...
0
votes
1answer
45 views
Simple Json from RESTful query - unable to Deserialize
I am REST/JSON newbie and I am querying Feedzilla API for news articles, with keyword syria:
http://api.feedzilla.com/v1/categories/26/articles/search.json?q=syria
public FZResult Search(string ...
-5
votes
0answers
43 views
How to build my first website with slim twig and Paris? [closed]
I am total new in this area but have to build a website within a few days for my mobile apps.
The requirements is to provide REST services.
1: Mobile app send GET and get JSON file responds depend ...
0
votes
1answer
35 views
Issue deleting IDs greater than 1000
I've stumbled on a rather strange issue. Searching has not gave any answers so I thought to ask it here...
I'm creating a program that communicates with a webservice (rest). On the client side, I ...
0
votes
1answer
13 views
How to reusing org.restlet.resource.ClientResource
I am currently using Restlet 2.1.2 on Android, and I'd like to know how to reuse the instance Clientresource in my application.
Here is the code I use:
Client client = new Client (new Context (), ...
0
votes
1answer
23 views
Get request error in resting framework
I am creating an android client which connects to the web service and gets a response code. The problem is the android app crashes whenever I run the following code:
RequestParams params = new ...
0
votes
1answer
35 views
Rest service - cannot find method / operation
Thought I had some idea of how the urls are mapped, but not having any luck here.
CXF 2.7.3
I have a simple rest service that uses post to consume a string. It builds and deploys.
I think I should ...
0
votes
1answer
30 views
transfer xml file to a URL using powershell script
I have an xml document that needs to be uploaded to a url for processing by the webservice, I have limited resources so I'll have to use a powershell script for this task, ver 1.
No, I cannot upgrade ...
0
votes
1answer
30 views
Web API calls with RestSharp - prepends application/json to body causing null parameter on action
I have a Web API service that I'm trying to access via the console using RestSharp. My RestSharp code looks like this:
RestClient client = new RestClient(baseUrlString);
...
0
votes
0answers
21 views
REST with authentication in Classic ASP
I am currently "porting" a php script into ASP Classic. The php script directs a parameter in the URL into a cURL request to a REST api, and returns a JSON or XML response.
the PHP cURL is as ...
0
votes
2answers
24 views
How to define an ID for a (RESTful) API?
For a system which as an internal identifier for a resource (like person_id), does it make sense to give direct API access callable on a different unique value (like licensee_id)?
So would having ...
1
vote
2answers
65 views
RESTEasy - Reuse method parameters when @GET/@POST
I have a method in my RESTEasy service which I'd like to use as both @GET/@POST, and its data may come from both query string and request body.
@GET
@POST
public String myMethod(@QueryParam("param1") ...
0
votes
1answer
51 views
WCF RESTful service - upload two files
I need to upload two files with WCF REST. This WCF Restful service file upload with multi-platform support works for me when uploading single file, but when I try something like
[WebInvoke(Method = ...
0
votes
0answers
83 views
Web API Authentication using facebook access token
The idea
I'm working on an ASP.NET MVC 2 project, building a REST web API. It will be used as the backend of a mobile app (iOS and Android) and possibly in the future, of a facebook app and a ...
0
votes
1answer
16 views
Cross domain REST using Ajax in Dojo
I have using dojo.xhrPost method in Dojo and trying to call url from different domain server REST services. I have facing problem in cross-domain.
I have getting ERROR ::: “ RequestError: Unable to ...
0
votes
1answer
39 views
Need to send arraylist to webservice from client and return modified arraylist
I have started out by creating a basic webservice with a @GET method shown below.
package com.webservice.eoin;
import java.awt.PageAttributes.MediaType;
import java.util.ArrayList;
import ...
2
votes
1answer
35 views
Selectively disable certain REST Services in ServiceStack during runtime
I want to disable some services programmatically. The user can specify via a configuration file if he wants to enable some part of functionality, and if not, the services should not be ...
0
votes
1answer
24 views
Activiti Rest API login fails
While i am logging into activiti-rest through this URI (activitirest/service/login)
method:POST
in body i given as
{
"userId": "kermit",
"password": "kermit"
}
i get the 500 internal sever ...
0
votes
2answers
64 views
IOException: Internal Server Error when trying to consume rest service
I want to create a restful web service in java using jersey API and consume it in android application. I got this question on SO but it talks about java client whereas I have android client.
My ...
0
votes
0answers
28 views
Kerberos authentication between web app and web services
I have applied Kerberos filter for the web app and it is working fine with browser.
Now I want my web services to be Kerberos enabled and for this I have applied Kerberos filter in web services and ...
0
votes
0answers
21 views
How to debug why RestEasy is not matching a request?
I get a 404 when accessing a URI which should be handled by my RestEasy setup. So, is there a way to debug why it is not matching it?
0
votes
1answer
24 views
SOAP vs RESTful performance issue on lower bandwith (2G Service)
We have a android based application that gets data from the server using web services. Currently for consuming web services we are using SOAP protocol.
But for production roll out we are using 2G ...
0
votes
1answer
18 views
Designing a Data-Driven JSON API
I'm currently working on an API that accepts a large batch of data and performs a few different kinds of analysis on the data. Rather than forcing clients to pass in their data once for each sort of ...
0
votes
0answers
19 views
Tomcat server is not starting in eclipse helios after adding model java classes
I am using Tomcat 7.0, my server works till yesterday, after committing some model java classes and some RestAPI resources, it was not starting, its not giving any error,
After long time it says ...
0
votes
0answers
32 views
Elasticsearch has_child filter - I want to reference child fields in results?
The "has_child" filter operation returns parents that match for the given children returned for the specified query. My question is if you can access the matching child record's fields in the returned ...
0
votes
1answer
21 views
Securing ReST calls from same application
I built a ReST service using Jersey in my custom java web application, Spring not used.
I want to use the service to get data for jQuery ajax calls from a jsp.
I have the service working, and the ...
1
vote
1answer
43 views
How to authorize user in RESTful request?
From the posts about REST services, I see that it should not be used sessions together with REST, and with every request there is need to send user credentials to the REST service. But I don't see ...
0
votes
1answer
15 views
How to find only tweets with images/media?
Is it possible via the new Twitter API (preferably REST API, but I'd be as happy with the Streaming API) to find public tweets from any user containing specific search string and an image (or any ...
0
votes
1answer
65 views
Can not deserialize instance of java.lang.String out of START_OBJECT using Spring Rest Template
I am using the Rest Template to invoke a third party Restful API. but I am getting the "Can not serialize instance of java.lang.String out of START_OBJECT" Below is the code:
xml file:
<!-- ...
-1
votes
0answers
35 views
I want to create a user interface for a web application that supplies a REST API, what is the best approach? [closed]
I have created an application using Spring MVC that supplies a REST API for retrieving data from our database.
The boss now wants a web UI using Primefaces. Unfortunately, adding Primefaces onto a ...
0
votes
2answers
21 views
Does the locale belong on the path or as a request parameter on the URI?
I have seen the locale added to an URI as a path variable:
/en-US/blah/
or
/blah/en-US
and I have seen it as a request parameter:
/blah?lang=en-US
Is there a standard way that I should be ...
0
votes
0answers
8 views
How use UrlRewriteFilter to use querystring?
I am trying use UrlRewriteFilter, but, I'm not getting create a rule where I can turn this:
/bookmark-edit/1
in this:
/bookmark-edit.jsp?id=1
Examples are welcome!
Thanks,
Luciano
0
votes
2answers
41 views
Solving API Performance Issues with Cross Domain Ajax
I'm in the process of building out an infrastructure to support a gaming platform we intend to scale out to hundreds of thousands of users. Since this is in the entertainment / gaming industry, we are ...
0
votes
0answers
21 views
restlet: Using Server and Client restlet Jars in same web application
I am not able to use restlet server and client jars in same java web application. The problem is some jars of server and client have the same name. If I try to remove duplicate jars I get errors like
...
0
votes
0answers
32 views
Neo4j HTTP error
So, I thought that I configured everything correctly by following the installation and setup instructions in the neo4j documentation, but the REST API is not working.
http:7474/localhost works ...
1
vote
0answers
14 views
Twitter access token usage
I want to access twitter API on behalf of user.
I'm a bit confused with Twitter access token usage. As I compare to Github API which is very easy to integrate with, I have accessToken which is simply ...
0
votes
1answer
52 views
How to handle pagination and count with angularjs ressources?
I have to build an angularjs client for an API outputting like this:
{
"count": 10,
"next": null,
"previous": "http://site.tld/api/items/?start=4"
"results": [
{
"url": ...
0
votes
1answer
63 views
smartgwt restdatasource json date validation
I am using Spring 3.2 MVC Controller and a Spring-WS to create a RESTful web-service. The Spring controller accepts an object files an update to the database correctly and then returns JSON to the ...
0
votes
1answer
25 views
Calling the Facebook API from CasperJS?
I'm trying to call the facebook API using casperJS, using a url like so:
...
0
votes
0answers
52 views
Nested Android Asynchronous Http Client
I use the library http://loopj.com/android-async-http/ to receive some data from a REST Api and put them into a ListView. This works great!
But I have to receive some additional data from the Api.
...
0
votes
0answers
14 views
No operation matching request path
I am building RESTful API with CXF. I have added two extra methods to delete my resource (messages) but when I send request I get "No operation matching request" in my logs:
No operation matching ...
0
votes
1answer
16 views
Publish a WCF RESTful web service with Node JS
Is it possible to publish a WCF RESTful web service with Node JS? If yes then please point me to tutorial/article on this topic.
I came to know about wcf.js library but I think it only supports SOAP ...
0
votes
2answers
71 views
How to implement a REST API that takes in a file along with other parameters
I have an api that will be accessed by a URI like this:
POST: http://<domain>/app/rest/colors
This post request will send some string parameters (i.e name: "red") along with a file. Ideally I ...
0
votes
0answers
29 views
Securing REST API using HTTP_X_REQUESTED_WITH and SESSION IDS
I'm building an API for my website and I only want the API to be accessible from my own website. The way I've built it is that I call a PHP file using ajax:
<?php session_start(); ?>
...
2
votes
0answers
35 views
Backbone models and URL exceptions
I have a Backbone model called User which has a urlRoot of /api/users. Thus, if I create a new model with an ID of 5, the url will be /api/users/5.
I have also implemented another endpoint which is ...
2
votes
1answer
38 views
Restful way to validate a resource
Imagine I have a resource of a some special case of an e-commerce application /cart in my API that supports some CRUD operations: GET, POST
I want to have a service that validates if the cart is ...
1
vote
2answers
52 views
Jettison with json marshalling converting string data type to integer type, when value is numeric
We are using jettison-1.3.3 for converting JaxB to Json.
We are facing an issue.
whenever I have a String property that contains all numbers (i.e. String phone="12345";), the JSON response will ...
0
votes
0answers
55 views
Java Servlet HTTP Get Request to REST Server not working 404?
I have created a Java Servlet to act as a proxy for my Web page to make cross domain requests using AJAX to fetch XML's.
The servlet goes to a server using the parameters and returns back whatever it ...
1
vote
1answer
23 views
Rest Sercvices Custom Status Code Response Serialization
This is the ajax call I'm using to get the response from the rest services:
$.ajax({
url: xxxxx,
cache: false,
dataType: 'json',
data: JSON.stringify(xxxx),
type: "POST",
...




