Tagged Questions
The http-method tag has no wiki summary.
9
votes
6answers
347 views
Which HTTP methods match up to which CRUD methods?
In RESTful style programming, we should use HTTP methods as our building blocks. I'm a little confused though which methods match up to the classic CRUD methods. GET/Read and DELETE/Delete are obvious ...
6
votes
1answer
1k views
Can Spring MVC handle requests from HTML forms other then POST and GET?
Spring 3 MVC supports all 4 of RESTful methods: GET, POST, PUT and DELETE. But does its view technology support them on forms? If not, what is the real use of method attribute in form:form tag?
I ...
5
votes
4answers
357 views
HTTP method to represent “fire and forget” actions in RESTful service
Thinking about REST, it's relatively easy to map HTTP methods to CRUD actions: POST for create, GET for read, etc. But what about "fire and forget" actions? What HTTP method would best represent a ...
4
votes
9answers
632 views
What is the difference between POST and GET?
I've only recently been getting involved with PHP/AJAX/jQuery and it seems to me that an important part of these technologies is that of POST & GET.
First, what is the difference between POST and ...
4
votes
3answers
129 views
Security: Brute-forcing GET-requests by URL?
what should my concerns be if I we're about to make an application that handles logins the following way:
http://api.myApp.example/printSomething/username/password/
How insecure is it compared to a ...
3
votes
1answer
57 views
searching a solution to get/post DOUBLE DATA SUBMISSION [closed]
Possible Duplicate:
Avoiding form resubmit in php when pressing f5
I need help on how to prevent the DOUBLE DATA SUBMISSION to mysql database.
This usually occurs when after the submit, ...
3
votes
3answers
386 views
How Rails 3 decides which HTTP verb will be used when clicking on a link generated by “link_to”?
I have two links:
<%= link_to("Edit", edit_product_path(product.id)) %>
<%= link_to("Delete", product, :method => :delete) %>
The generated links are:
<a ...
3
votes
7answers
2k views
Is it possible to implement X-HTTP-Method-Override in ASP.NET MVC?
I'm implementing a prototype of a RESTful API using ASP.NET MVC and apart from the odd bug here and there I've achieve all the requirements I set out at the start, apart from callers being able to use ...
2
votes
1answer
36 views
Use DELETE form method in Html.BeginForm()?
I'd like to use the appropriate HTTP method when possible. In this case, when a button is clicked to delete something, I want to fire the controller action with the attribute [HttpDelete]. However, I ...
2
votes
1answer
125 views
Using Spring Security, how can I use HTTP methods (e.g. GET, PUT, POST) to distingush security for particular URL patterns?
The Spring Security reference states:
You can use multiple elements to define different
access requirements for different sets of URLs, but they will be
evaluated in the order listed and the ...
2
votes
2answers
4k views
XHR doesn't work because “Origin is not allowed by Access-Control-Allow-Origin”
I'm working on a API-Server with Rails 3 wich is pretty handy so far but I'm running across a error all the time and I'm not sure wether it is because of my Apache Setup or the Rails App.
When I try ...
2
votes
4answers
4k views
How do the httppost, httpput etc attributes in ASP.NET MVC 2 work?
In ASP.NET MVC 2, a couple of new action filter attributes were introduced, as "shorthand" for attributes in ASP.NET MVC 1; for example, applying the HttpPostAttribute does the same thing as applying ...
1
vote
1answer
34 views
gevent.WSGIServer request method mystery
I'm getting some really strange behaviour when running gevent's WSGIServer. It seems like every request that comes through is having its method interpreted incorrectly..
If I send the following ...
1
vote
1answer
33 views
Delete action from timeline
Im using below php code to post an item to the timeline:
$request_data=http_build_query(
array(
'access_token'=>'xxx',
'item'=>'url'
)
);
...
1
vote
0answers
54 views
POST to server results in GET request
I'm trying to do a simple POST request to a server, with this code:
NSString *post = [[NSString alloc] initWithFormat:@"email=%@&password=%@", self.email.text, ..]; // .. simplified keychainItem
...
1
vote
2answers
98 views
What does the ? mean in “format(List<? extends NameValuePair>”
I'm following the indications on this post to create a a parametrized URI for an Http GetMethod (http://some.domain/path?param1=value1¶m2=value2) and I ran into a new issue.
I have this code:
...
1
vote
3answers
691 views
Payloads of HTTP Request Methods
The Wikipedia entry on HTTP lists the following HTTP request methods:
HEAD: Asks for the response identical to the one that would correspond to a GET request, but without the response body.
GET: ...
1
vote
2answers
522 views
Spring Framework, enable PUT method
I got a problem with capturing PUT request sent to server.
These are my methods:
@RequestMapping(method= RequestMethod.GET)
public String getCity(@PathVariable(value="cid") String cid, ...
1
vote
1answer
385 views
REST/Rails questions - support for HTTP methods?
So I am getting this error for one of my routes. I'am running Rails v2.3.8 + Mongrel 1.1.5. Does rails support only GET & POST??
ActionController::MethodNotAllowed (Only get and post requests are ...
1
vote
3answers
344 views
Overwrite HTTP method with JAX-RS
Today's browsers (or HTML < 5) only support HTTP GET and POST, but to communicate RESTful one need PUT and DELETE too. If the workaround should not be to use Ajax, something like a hidden form ...
0
votes
1answer
50 views
Changing Http Method + BeginRequest Event Handler
I am currently writing a custom HttpModule in an ASP .NET MVC 3 project.
I have got documentation about writing a custom HttpModule on this web page : ...
0
votes
1answer
38 views
Send data with HTTP delete method
Is it possible to send data with the HTTP delete method because when I'm trying to send data with GWT request builder, on the server, it not finding the data!!
0
votes
0answers
93 views
How to disable HTTP Trace in IIS7 [closed]
I'm trying to secure my web site, as much as I can. I came across a concept called Cross-Site Tracing (also see here).
The best countermeasure of this attack, is to stop IIS, from responding to HTTP ...
0
votes
2answers
92 views
Configuring a route in Symfony with the same URL but different HTTP methods and controller actions
I have the following routes configuration in a Symfony application:
label:
url: /label
param: { module: label, action: configure }
requirements: { sf_method: get }
...
0
votes
0answers
71 views
iOS: CFHTTPMessageCopyHeaderFieldValue():how to get filename or content type?
I'm debugging a piece of code that assigned to me to add something in it. The code is transfer an kind of file from browser to iPhone and I want to filter it only for pdf file type (allow it only ...
0
votes
0answers
26 views
Allow all access for certain extensions with certain methods
I have a virtual host configured with authmysql. I now want to configure it in such a way that files with certain extensions (doc, docx, xls, etc..) don't require authentication for certain http ...
0
votes
2answers
50 views
How can I get a collection and a Model in one Action in MVC?
How can I get a collection and a Model in one Action in MVC (http Post)?
0
votes
1answer
60 views
What method should I use for a login request?
I would like to know which http method I should use when doing a login request, and why? Since this request creates an object (a user session) on the server, I think it should be POST, what do you ...
0
votes
2answers
928 views
Java PostMethod with xml
I am trying to post XML data as a body to a REST api.
I have a method that creates the request called doREST.
String url = null;
HttpMethod method;
LOG.info("QUERY: " + query);
...
0
votes
1answer
266 views
Is There a Table That Shows HTTP Method Support by Browser
I've seen lots of stuff that generally say "not all browser support all HTTP methods" etc., but is there a nice table that shows specifically which HTTP methods are support that's broken down by ...
0
votes
2answers
463 views
Ajax request not receiving xml from Django
I have a Django server which handles requests to a URL which will return some HTML for use in an image gallery. I can navigate to the URL and the browser will display the HTML that is returned, but I ...