The central class for client-side HTTP access. It simplifies communication with HTTP servers, and enforces RESTful principles. It handles HTTP connections, leaving application code to provide URLs (with possible template variables) and extract results.

learn more… | top users | synonyms

0
votes
1answer
15 views

How should I set a Feature on a Spring Message Converter's Object Mapper?

I'm using a 3rd party REST API which is returning 'NaN' in it's JSON response :( I can't change the response. I'm using Spring MVC with RestTemplate and the built in Message Converters to deserialize ...
0
votes
0answers
15 views

RestTemplate logging POST data

my resttemplate.exchange() failed on a POST request, with the server returning a 500 error. I tried to set the root logging level to DEBUG, but nothing was logged before the 500 error was returned. ...
0
votes
0answers
36 views

How to generate Java client proxy for RESTful service implemented with Spring?

We use Spring to implement REST controller, for example: @Controller @RequestMapping("/myservice") public class MyController { @RequestMapping(value = "foo", method = RequestMethod.GET) ...
0
votes
1answer
87 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: <!-- ...
0
votes
2answers
32 views

Spring RestTemplate post response

I'm not familiar with Spring RestTemplate. But for this project I have to use Spring RestTemplate to send a POST call to consume a rest api. I'm using this code: String restCall = ...
-1
votes
0answers
29 views

A POJO imlementing serializable is not handling by JAXB using Spring

I am going to develop Restful Webservice with Spring that passing an object to web service to save at server side. When I use simple POJO without extending Model class it runs fine. But when my POJO ...
0
votes
1answer
142 views

Required String parameter is not present with Spring RestTemplate

I am having trouble to post 2 parameters with RestTemplate : a String a MultipartFile I don't think there is a problem in my controller because it's very basic. It seems that the controller ...
0
votes
0answers
65 views

Spring MVC - RestTemplate launch exception when http 404 happens

I have a rest service which send an 404 error when the resources is not found. Here the source of my controller and the exception which send Http 404. @Controller @RequestMapping("/site") public ...
0
votes
1answer
37 views

How can I sending json data using Spring RestTemplate to PHP server

I am developing an android application and i using spring RestTemplate to get data from and post data to a PHP server. I tried to post data to PHP server, but PHP server got nothing. How can I post ...
-1
votes
1answer
71 views

sending POJO to save on server using RESTful webservices

I am developing a Restful web service which allow user to set all parameters in POJO and send it to server side web service, then web service will store this data and return generated Id back to ...
1
vote
0answers
83 views

How to use piped multi value query parameters with Spring's Rest Template or URI Builder

I'm looking for a Spring or Apache solution that separates multiple query parameters with a piped character. I'll even take a library that reduces an array or collection of strings into a single ...
3
votes
2answers
89 views

Resttemplate unable to parse array of type T

I'm facing a problem with Spring and restTemplate. I want to send an object (ListResponse) that contains a generic array. The defenition is as follow: public class ListResponse<T> implements ...
0
votes
0answers
52 views

How to call REST service method with RestTemplate

Can any please tell me how can I call following service method with RestTemplate. Thanks. @RequestMapping(value = "/file/upload", method = { RequestMethod.GET, RequestMethod.POST }) public String ...
0
votes
1answer
127 views

How to do file upload with Spring REST API and Test it with RestTemplate

I want to, 1) Implement some REST service method with Spring Rest API for upload some files from my remote web client. 2) Test that with my RestTemplate based remote web client. If any one has ...
0
votes
1answer
108 views

Spring RestTemplate POST with Google Translate API

I'm using Google Translate API with Spring RestTemplate in my application and it works fine until I use GET http request. However if I heve large piece of data the service will return 414 error ...
5
votes
1answer
118 views

How to forward large files with RestTemplate?

I have a web service call through which zip files can be uploaded. The files are then forwarded to another service for storage, unzipping, etc. For now the file is stored on the file system, then a ...
1
vote
1answer
149 views

RestTemplate POST a Collection

Ok here iam back to find a solution. Iam trying Spring RestTemplate postForEntity method to send a Collection of instances. When attempting spring gives an error ...
0
votes
1answer
196 views

How to send a getForObject request with parameters Spring MVC

I have a method on the Server side which gives me information about an specific name registered in my database. I'm accessing it from my Android application. The request to Server is done normally. ...
0
votes
0answers
161 views

Send serialized JSON in restTemplate postForObject

Here is the deal. I have a postForObject to sent. In that postForObject, i must send 2 objects: A JSON OBJECT WITH NAME "DATA" (e.g: data={"client":"name","id":"3"}) A STRING WITH NAME ...
1
vote
2answers
72 views

Restful Client Service in Spring

I'm having some problems using the Spring restTemplate. According to API documentation (ONLY FOR PHP) of Rest Service that i'm trying to access. The correct format of POST are: curl -d ...
0
votes
1answer
89 views

RestTemplate with basic authentication on Google App Engine

I have develop a Spring MVC Rest service on Google App Engine with Spring Security 3.1. Since the service will be available only to my other apps, I have a basic authentication setup with predefined ...
0
votes
0answers
128 views

Spring postForObject returning 400 Bad Request

So, i have that method in my Java application: public String addAppointment(String service_id, String location_id, String start_date, String client_name, String client_phone, String client_email, ...
0
votes
1answer
265 views

POST request with Spring RestTemplate- BadRequest 400

Hope a Spring guru could help me on this, Iam developing a multi web servces application, All these Web Services are based on a Jar called based-server, which got all base classes which can be ...
3
votes
2answers
248 views

Regarding uploading files through Java Rest Template

I am doing an Application with Spring Rest Template for making the Box.net Rest Calls. But I am facing the Problem of Not Uploading the Files through Rest-template. It is giving an Error as "Bad ...
0
votes
0answers
64 views

Web Service Read timed out Even if Server Responds In Time

I have a problem with consuming REST web service using resttemplate: The system made several calls per day and sometimes i had Read Timed Out exception. When i logged the service execution time, i saw ...
2
votes
1answer
264 views

SSLHandshakeException: Received fatal alert: handshake_failure when setting ciphers on tomcat 7 server

I have a Tomcat7 web-server which I tried to configure to accept secure connections by adding this connector to the server.xml file: <Connector SSLEnabled="true" acceptCount="100" ...
1
vote
2answers
360 views

Spring RestTemplate invoking webservice with errors and analyze status code

i designed a webservice to perform a task if request parameters are ok, or return 401 Unauthorized http status code if request parameters are wrong or empty. I'm using RestTemplate to perform test ...
0
votes
0answers
105 views

HttpRequestFactory setReadTimeout can't increase past 59 seconds

I'm running into issues using Spring RestTemplate for client side REST calls when the server takes too long to respond. Upon receiving the request the server has to retrieve a file from store, ...
0
votes
2answers
214 views

Gson serialization error class com.activeandroid.DatabaseHelper declares multiple JSON fields named mContext

The error im getting is "java.lang.IllegalArgumentException: class com.activeandroid.DatabaseHelper declares multiple JSON fields named mContext" I am using AndroidAnnotations RestClient to pull data ...
0
votes
1answer
297 views

How to pass key value pair using resttemplate in java

I've to pass key value pair in the body of post request. But when I run my code, I get the error as "Could not write request: no suitable HttpMessageConverter found for request type ...
0
votes
1answer
285 views

RestTemplate usage

I'm trying to use RestTemplate in order to make a PUT. For some reason I can't reproduce the PUT I created using curl that goes through without any problems. Here is my curl call that succeeds and ...
1
vote
0answers
137 views

RestTemplate MalformedByteSequenceException Invalid byte 2 of 3-byte UTF-8 sequence

I am trying to load an object from a webservice, using RestTemplate, like this: Menu menu = null; RestTemplate rest = new RestTemplate(); String request = "<?xml version=\"1.0\" ...
0
votes
1answer
366 views

Retrieving JSON data via HTTP POST using Spring Android Framework

I am using spring android framework for retrieving json data via Http POST. But while consuming the service, at server side the parameter are received null. Following is the android code : ...
0
votes
1answer
336 views

RestTemplate Post UTF-8 data with setContentType(MediaType.MULTIPART_FORM_DATA)

I'm using spring for android. I want to create registration form in my android app. The users maybe fill out the form with utf-8 format but when data send to server and store in MySQL database I find ...
0
votes
0answers
455 views

spring mvc rest service redirect / forward / proxy

I have build a web application using spring mvc framework to publish REST services. For example: @Controller @RequestMapping("/movie") public class MovieController { @RequestMapping(value = "/{id}", ...
0
votes
2answers
487 views

RestTemplate & Jackson - Custom JSON deserializing?

The webservice returns an empty string instead of NULL which causes Jackson to crash. So I created a custom parser, and I'm trying to parse it manually? Any idea How I could achieve this? What Am I ...
1
vote
1answer
229 views

Getting error to unmarshalling object from xml using resttemplate

I am using resttemplate of spring to invoke rest api getting error to unmarshall xml to object my code is:- String uri = "http://devd.webservice.com/devpl/api/1.0/credential?apiKey=" + apiKey + ...
1
vote
0answers
401 views

Deserializing Nested objects using RestTemplate

I am using RestTemplate and having issues deserializing an object. Here is what I am doing. The JSON response looks like, { "response": { "Time": "Wed 2013.01.23 at 03:35:25 PM UTC", ...
0
votes
1answer
860 views

Resttemplate android: RestClientException: Could not extract response: no suitable HttpMessageConverter found

I'm using Androd resttemplate and MappingJacksonHttpMessageConverter. For some urls exchange works well, but one is causing exception. Instantiation of Resttemplate restTemplate = new RestTemplate(); ...
1
vote
2answers
342 views

android resttemplate +httpclient header encoding problems

Android client, using Springs resttemplace and the Apache common HTTP client to make requests. I'm working against a server, that sometimes returns a 401 error, with a http header string, "ERROR" ...
0
votes
2answers
387 views

Basic Authentication with RestTemplate (3.1)

I am trying to reproduce the following curl command using Java: curl -v -u user:pass http://myapp.com/api This command returns some JSON data. My buggy Java implementation is as follows: @Test ...
0
votes
0answers
687 views

Post data using Spring RestTemplate

I am trying to post data using Spring RestTemplate as below: MultiValueMap<String, String> parameters = new LinkedMultiValueMap<String, String>(); parameters.add("name1", ...
0
votes
1answer
116 views

What is the difference between CoreConnectionPNames.SO_TIMEOUT and CoreConnectionPNames.CONNECTION_TIMEOUT?

Could someone explain me the difference between these two parameters? org.apache.http.params.CoreConnectionPNames.CONNECTION_TIMEOUT; org.apache.http.params.CoreConnectionPNames.SO_TIMEOUT. ...
0
votes
1answer
189 views

invoking url with RESTTEmplate and binding response with JAXB

using this code i hava an url to invoke when i invoke this url using a navigator i hav an xml reponse that i want to retreive in an object named Response annotated by JAXB @Test public void ...
1
vote
0answers
582 views

Spring and Jackson Mapper Can not deserialize instance of CUSTOM_CLASS out of START_OBJECT

So I'm getting the error in the title and I'm using the following code: ... RestTemplate restTemplate = new RestTemplate(); restTemplate.getMessageConverters().add( new ...
1
vote
1answer
295 views

Wrong headers when trying to GET image

I am trying to fetch an image using Spring for Android and Robospice. I have my SpiceService set up with a createRestTemplate method as per the various samples on GitHub and this is were I set my ...
0
votes
0answers
78 views

android RestTemplate - multiple connections from 2 threads

I have two threads. Each of them is calling RestTemplate.exchange method simultaneously to the same URL. Unfortunately it looks like there are no 2 concurrent HTTP connections but one is blocking the ...
0
votes
2answers
421 views

Always get null response in ResponseEntity when using RestTemplate.postForEntity

I' m trying to send JSON request using Jackson library from my Android app to the web server but response is always null. I tested it just with the HttpRequest API and all works fine - I've got a ...
2
votes
1answer
400 views

Spring REST - Can a RestTemplate consume multipart/mixed?

I want to write a REST service which does responed with a zipFile and some json data, everything in one multipart/mixed request. The server part works fine and i am testing it with the REST Client ...
0
votes
1answer
207 views

RestTemplate Basic Auth

First of All, I know there are a LOT of topics explaining how to do a basic auth with resttemplate, but I'm trying it for 4 days and nothing works for me. I'll paste my code here, without an ...

1 2 3 4