The OPTIONS method represents a request for information about the communication options available on the request/response chain identified by the Request-URI. This method allows the client to determine the options and/or requirements associated with a resource, or the capabilities of a server, ...
0
votes
0answers
21 views
How Web Server responds when it gets “Options” Request?
I want to implement Options method in my HTTP web server. But I didn't yet find the good tutorial of the working of this method. I made one code that implements this method, my code is at the end of ...
0
votes
0answers
106 views
HTTP OPTIONS error in Phil Sturgeon's Codeigniter Restserver and Backbone.js
My backbone.js application throwing an HTTP OPTIONS not found error when I try to save a model to my restful web service that's located on another host/url. Based on my research
I gathered from this ...
2
votes
2answers
1k views
HTTP OPTIONS Pre-flight request Load Cancelled with pending Status in Chrome
I am using Sencha Touch 2.1.0. I am making a HTTP GET call. It is a CORS request. Hence it is sending Pre-flight HTTP OPTIONS command as expected.
I have installed CORS filter on my server and ...
0
votes
0answers
84 views
Axis2 does not support preflight requests from webkit-browsers
i am using Axis2 and HTTP_POST and CORS.
When i do a cross-origin-ajax call , webikit browsers do a so called preflight request (HTTP OPTIONS Method).
To clarify things a bit more:
Let's say i got ...
1
vote
1answer
134 views
Why are some iOS devices sending OPTIONS requests with Origin: null?
On a website I'm working on, we're seeing quite a few OPTIONS requests from iOS devices that look like CORS preflight checks, but which have Origin: null. Does anyone know what might be causing such ...
5
votes
1answer
4k views
Access-Control-Allow-Origin header not working - What am I doing wrong?
I am attempting to provide a response to the HTTP OPTIONS method with an Access-Control-Allow-Origin header copying the contents of the Origin header in the request.
This is apparently not working, ...
0
votes
0answers
121 views
Using Apache HttpClient for an OPTIONS request
I am trying to use httpclient to verify if a specific endpoint is reachable. It seems that it is only possible to check if the server is up but cannot verify if the actual resource is available.
Here ...
1
vote
1answer
940 views
Web API: HTTP verb 'OPTIONS'
Is there any support in the asp.net mvc 4 web api beta for the HTTP verb 'OPTIONS'?
The framework does not automatically send a response. I think you have to do this by yourselve. But is there a ...
0
votes
1answer
206 views
Why is the System.Web.Mvc.HttpVerbs class missing TRACE, CONNECT & OPTIONS?
The RFC 2616 HTTP/1.1 definition states that the following common HTTP methods exist:
GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS, CONNECT
But the System.Web.Mvc.HttpVerbs enum is missing TRACE, ...
3
votes
1answer
1k views
Http Option Method with Javascript request
I use backbone.js' s model. When i save the model, it sends HTTP OPTIONS method to server-side on firefox, but sends HTTP POST method with safari.
I know it is not an issue about backbone.js, it is ...
1
vote
1answer
622 views
OPTIONS request for restful cross-domain using CORS
On client side I'm using Ajax.post (jquery 1.5) with json. On server side I'm using rest resteasy-jaxrs-2.0.1.GA. I found somewhere that i should add couple of headers to server response and I've done ...
4
votes
4answers
2k views
how to handle “OPTIONS Method” in ASP.NET MVC
My Sencha Touch app is posting a form to my asp.net-mvc-3 WebService, but instead of sending POST it's sending OPTIONS.
I'm reading a similar thread here, but I just don't know how to handle the ...
15
votes
3answers
14k views
Problem sending JSON data from JQuery to WCF REST method
I'm having some trouble getting jquery to post some json data to a rest method I have on my WCF service.
On the WCF side, here's the operation contract:
[OperationContract]
[WebInvoke(Method = ...
32
votes
6answers
23k views
Jquery: Why am I getting an OPTIONS request insted of a GET request?
With this code http://paulisageek.com/tmp/options.html :
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>
<script>
...