Tagged Questions
0
votes
0answers
21 views
Can I have custom required headers on my web api?
I was wondering if can I have custom headers requireds on my web api application.
I don't know too much about headers, http protocols and etc. After reading a little, I thought on required the code ...
1
vote
0answers
24 views
ASP.NET MVC 3 Add Custom Header Exception
I want to add response header "Access-Token" >name "My Custom Value">value
then i am getting this error; system.platformnotsupportedexception why do you think?
public abstract class ...
0
votes
2answers
38 views
How to secure ASP.NET REST with JQUERY client call
I am completely new in the rest web services world and I traveled hugely articles on the web trying to implement REST webservices in ASP.NET (with in parallel a webform application in another project)
...
0
votes
4answers
44 views
Firefox plugin to monitor http headers sent to a REST Web service
I have a webapp accessing some REST APIs. Now the REST APIs need some headers to be added to the request. I already have the code for adding the headers in my webapp but i need to verify if it is ...
0
votes
1answer
38 views
Partial upgrade (PATCH) in Symfony2
I'm trying to implement a API with a Symfony2 backend.
To support PATCH and partial update of entities I'm trying to workaround the fact that Symfony2 will make attributes NULL when they're not ...
0
votes
0answers
43 views
Why is my http header parameter key in the “Access-Control-Request-Headers” header?
I am trying to include a header parameter in my rest jquery ajax rest call.
This is my jquery code:
$.ajax({
url: "http://xxx.rhcloud.com/rest/",
headers: {"xxx": "aaa"},
success: function( ...
2
votes
2answers
176 views
Basic Authentication with RestTemplate - compilation error
trying to add basic auth to restTemplate
problem I encounter is that i cant initialize : (with both the imports in the code snippet)
HttpClient client = new HttpClient();
This code resolves in a ...
0
votes
1answer
43 views
Apache wink REST - IllegalArgumentException for a particular header
My rest service works fine if I give the authentication header. But the same is throwing 500 internal Service error when I add log-level=debug|info along with the authentication header. I don't know ...
1
vote
1answer
88 views
Should HTTP Status be used in Restful Error Responses?
I'm writing a Restful API and I have to return error message but I'm not sure on which route to go.
Route 1 - HTTP Status
Use HTTP error status when the client sends bad data
Ex: 401 - Not ...
2
votes
1answer
81 views
Empty collection and HTTP headers Content-Range
How can we handle empty collection on a RESTful interface, with Content-Range's items header?
For instance, having 42 records, a request Range: items=0-41 would return everything, and the response ...
-1
votes
1answer
246 views
RESTful webservice basic authentication [closed]
I am new in webservice and I am writing a simple reasteasy RESTful webservice in java,
but I need to add http basic authentication to my service with a username and password.
It is going to be ...
2
votes
1answer
488 views
AngularJS: ignoring Content-Type parameter
I am currently struggling with an error that appears in my Chrome developer tools console
GET http://localhost:8080/movie_db/search/movie?movieTitle=Machete 415 (Unsupported Media Type)
when I try ...
2
votes
3answers
79 views
HTTP Status 202 - how to provide information about async request completion?
What is the appropriate way of giving an estimate for request completion when the server returns a 202 - Accepted status code for asynchronous requests?
From the HTTP spec (italics added by me):
...
1
vote
2answers
153 views
jQuery AJAX POST request OK in Chrome, fails with 415 in Firefox
I am building an interface for a remote XML service. Here is my $.ajax function:
this.sendInput = function () {
jQ.ajax({'url': URL,
'type': 'POST',
'data': ...
0
votes
0answers
29 views
Are there any caching issues with legacy components and the vary http header
I'm considering the design of a ReST service where resources can be served with multiple representations.
My preferred method of doing this is for client to make a request with appropriate Accept ...
3
votes
2answers
63 views
Suitable http status code to state the browser is not supported?
I'm not supporting IE8 and below, and based on a useragent checked all requests made from one of these browsers are referred to a page where I explain the reason and display links to supported ...
1
vote
2answers
245 views
Origin and Host headers for same domain requests
We have RESTful JSON endpoints serving AJAX requests, with the desire to support Cross Origin Resource Sharing. We are locking things down to ensure that we don't have to worry about Cross Site ...
2
votes
0answers
70 views
Should a custom http header or a parameter by used to identify the context of a caller to a RESTful service?
My team has inherited a WCF service that serves as a gateway into multiple back-end systems. The first step in every call to this service is a decision point based on a context key that identifies the ...
1
vote
1answer
84 views
GET request with “If-Match” and ETags
I'm working on implmenenting ETag functionality for a RESTful service, and I'd like to be as close to the HTTP spec as possible. The spec however is not as clear as it probably should be. ...
0
votes
2answers
119 views
Is there a default http request header to identify the user making a request?
In the data model behind my RESTful API there are several entities with the CreatedBy/ModifiedBy fields. The only access to this data is through my API, and as such, the fields should be populated ...
1
vote
0answers
101 views
Override Request Content-Type Header and Derive Type from URL
I have a question regarding a REST API's HTTP compliance. Is it ever advisable to override / ignore the "Content-Type" header in a request body when designing a REST API interface and instead derive ...
0
votes
0answers
137 views
Parsing HTTP Authorization header with multiple values?
i am creating a rest api in which there is a need for transferring the apikey and a signature in the http headers. Now i can supply the required parameters inside the http header and a controller ...
0
votes
0answers
71 views
I want to design a html form in python [closed]
when user will enter details in the text box on the html from
<h1>Please enter new password</h1>
<form method="POST" enctype="application/json action="uid">
...
0
votes
2answers
69 views
Is passing the tenant in a custom HTTP header RESTful?
I'm considering the following two ways of identifying the tenant of a HTTP request, in a multi-tenant environment - hardcoding the tenant in the URI:
/{tenantUuid}/foos/{id}
Or passing the tenant ...
2
votes
2answers
483 views
Versioning REST APIs and vendor specific content type
I read a lot about versioning REST APIs, f.e. in this thread: Best practices for API versioning?
Because of that I would like to use the HTTP-Accept-Header to indicate which version the client is ...
0
votes
1answer
101 views
Unable to set up POST method route in CakePHP
I've set up the following route in CakePHP 1.2:
Router::connect(
"/inbound/:hash",
array('controller' => 'profiles', 'action' => 'inbound', '[method]' => 'POST'),
array('hash' ...
4
votes
1answer
92 views
HTTP header field for URI deprecation/expiration
I'm building a REST service where I want to implement a way to deprecate certain URIs when they shouldn't be supported anymore for one reason or another. As functions are deprecated, they will be ...
1
vote
2answers
907 views
How to parse response headers in PHP?
I have made an oauth signed request to a REST API and have the response headers in an array like so:
[0] => HTTP/1.1 200 OK
[1] => Cache-Control: private
[2] => Transfer-Encoding: chunked
...
0
votes
1answer
931 views
RestSharp Usage
Recently I was using RestSharp to consume my Restful Resouce. and expected exchanging data with JSon between server and client. Below is my C# code.
var client = new RestSharp.RestClient();
var ...
0
votes
2answers
479 views
W7 Pro IIS 7.5 overwrites PHP Location: Header (solved)
I am creating a RESTful API in PHP, and have encountered a problem.
When the client is posting data to the server, the server should return:
Status code 201 CREATED
Header Location with the location ...
0
votes
2answers
544 views
iOS - POST an image to server by Resty
I used this method to POST an image to server before, but it's a little complicated because I have to add header and boundary by myself. Yesterday I found a project called Resty - "A simple ...
4
votes
1answer
760 views
Set headers using spring android resttemplate and android annotations
I am currently playing with Spring Android Resttemplate to interact with a java-backed REST API. Actually, I am using android annotations to send http calls to this back-end service and I must say it ...
0
votes
2answers
978 views
HTTPServletResponse status code is not in HTTP response header
I have pretty simple JAX-RS WS:
@Stateless
@Path("/foo")
public class FooFacadeBean {
@GET
@Produces(MediaType.TEXT_HTML)
public String performFooCall(@Context HttpServletRequest ...
1
vote
1answer
233 views
How to cache different formats/representations of REST resource?
I use tonic.php (http://peej.github.com/tonic/) library to create my REST Resources. The data is very stable and having long cache times would be preferable. I set the cache headers (using tonic.php ...
0
votes
1answer
60 views
What 4xx HTTP return code should be used for private API error responses?
I'm designing a REST API. What response should a server send to mean "I've got your request, parsed it and it's valid, but I'm not not going to process it because you didn't provide enough globs."
...
1
vote
0answers
115 views
Http compatible dealing with data transmission and error handling using jquery ajax requests
I'm wondering how should look the correct way of dealing with data transmission and handling errors using latest jquery ajax requests with http compatible approach.
I've noticed, that when unhandled ...
2
votes
1answer
611 views
Persistent HTTP Connection with RestSharp
I am using RestSharp to consume a REST web service and will be making a large volume of calls in a short time period.
The documentation for the API strongly recommends the use of persistent HTTP ...
1
vote
1answer
766 views
Rest Client implementation for spring 3 application
I have a requirement to write java APIs for one of my spring 3 web application.I should be able to do all actions that I perform using my web UI, through these APIs as well.I have controller methods ...
1
vote
2answers
2k views
REST WebApi username/password security
I am designing a series of web services using the new microsoft asp.net mvc 4 WebApi.
For any call to any of these services a username and password must be passed each time and these details must ...
1
vote
1answer
449 views
PHP - REST API - http headers - error handling
I am trying to return a HTTP header together with XML stating whether a process has been successful or not.
This all appeared to be working fine whilst developing my API, I was making test calls to ...
1
vote
3answers
362 views
How to pass custom header to RESTful call?
There are some web service APIs that I need to connect to for my website. Most of the APIs involve something like this:
$data = file_get_contents("http://www.someservice.com/api/fetch?key=1234567890
...
0
votes
3answers
348 views
With MVC3, how can I change the controller/action based on the “accept” header?
I have an application that is going to act as a "catch-all" for requests that could be coming from a variety of targets. I would like to be able to redirect to a different controller/action in my ...
3
votes
3answers
626 views
Link headers vs link elements for RESTful JSON
When building a RESTful / hypermedia API with JSON resources, it seems I have two options for specifying the hypermedia relationships between resources.
Embed the links in the body of the JSON ...
3
votes
2answers
636 views
storing contents of php://input in a variable
I'm trying to edit and tweak someone else's REST server in PHP. It's based on the REST Server written by Phil Sturgeon. Pretty much got my head around all of it, but my requests aren't working as ...
0
votes
1answer
223 views
NSMutableurlrequest http headerparameter containing newline gets lost
as the title says, can't get it to work...
Nothing strange about the code:
NSMutableURLRequest *request = [self prepareRequest:inUrl];
[request addValue:[NSString stringWithFormat:@"%@", note] ...
2
votes
1answer
150 views
Why does my web service produce an XML result for most mobile browsers instead of an HTML result?
I have a restful web service resource for which I've defined both XML and HTML methods. For desktop browsers the service accurately produces HTML, and for the Android client I've written it accurately ...
0
votes
2answers
1k views
How to add a parameter to the request header sent by a PHP script?
I'm trying to use a web service REST API for which I need to add a parameter for authorization (with the appropriate key, of course) to get a XML result. I'm developing in PHP. How can I add a ...
1
vote
4answers
797 views
JavaScript - How to set request header for a browser GET
If we do window.location = "http://MyApi.com/Pdf";, browser does a GET of the URL http://MyApi.com/Pdf. But if we want to set authentication header of the request before doing GET of the URL because ...
6
votes
2answers
6k views
Customize the Authorization HTTP header
I need to authenticate a client when he sends a request to an API. The client has an API-token and I was thinking about using the standard Auhtorization header to send the token to the server.
...
1
vote
0answers
356 views
Putting a password in the authorization header using WebChannelFactory
I'm trying to build a REST service and client and I need to send some authorization information through the HTTP request. However, the authorization header comes empty when I check it on the server.
...


