Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
12k views

ASP.NET MVC AcceptVerbs and registering routes

do I have to register the HttpVerb constraint in my route definition (when i'm registering routes) if i have decorated my action method with the [AcceptVerbs(..)] attribute already? eg. i have this. ...
4
votes
4answers
64 views

Defining Idempotence

So "idempotence" can be defined as: An action, that if performed N times has the same effect as performing the action only once. Got it, easy enough. My question is about the subtlety of this ...
4
votes
2answers
306 views

How can I overload ASP.NET MVC Actions based on the accepted HTTP verbs?

Wanted to use the same URL for a GET/PUT/DELETE/POST for a REST based API, but when the only thing different about the Actions is which HTTP verbs it accepts, it considers them to be duplicate! "Type ...
4
votes
5answers
566 views

REST - Modify Part of Resource - PUT or POST

I'm seeing a good bit of hand-waving on the subject of how to update only part of a resource (eg. status indicator) using REST. The options seem to be: Complain that HTTP doesn't have a PATCH or ...
3
votes
5answers
184 views

Using POST as a workaround for the URL character limit

If you have an API and support the POST operation only because of URL length limitations and the passing of complex parameters in the request, can you still say that you have a RESTful architecture? ...
3
votes
3answers
257 views

How does IsPostback technically work?

I'm currently having a strange issue whereby all browsers except from Google Chrome are registering a call to IsPostback within a Page_Load event as true when I click an asp.net button which simply ...
3
votes
3answers
387 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
1answer
265 views

Incrementing resource counter in a RESTful way: PUT vs POST

I have a resource that has a counter. For the sake of example, let's call the resource profile, and the counter is the number of views for that profile. Per the REST wiki, PUT requests should be used ...
3
votes
2answers
1k views

Http verb decorator for Django?

In ASP.NET MVC, you can use the AcceptVerbs attribute to correlate a view function with a verb: public ActionResult Create() { // do get stuff } [AcceptVerbs(HttpVerbs.Post)] public ...
2
votes
1answer
34 views

Forms Authentication. Get allowed verb for a role specified in web.config

I've specified verbs for roles in web.config. This works fine, the role observer is redirected to login page if the role tries to post in page Test.aspx. Example: <location path="Test1.aspx"> ...
2
votes
1answer
139 views

Can ASMX be configured to respond to an HTTP 1.1 OPTIONS request?

It seems that ASMX implicitly does not allow the OPTIONS verb. I'm posting this question because I'm using jQuery AJAX calls with POST which first queries the server for available OPTIONS before the ...
2
votes
4answers
98 views

Confused about Http verbs

I get confused when and why should you use specific verbs in REST? I know basic things like: Get -> for retrieval Post -> adding new entity PUT -> updating Delete -> for deleting These ...
2
votes
2answers
174 views

Why aren't the rest of the HTTP verbs used?

Most of the times, websites mainly only use GET and POST for all operations, yet there are seven more verbs out there. Where they used in older times but not so much now? Or maybe is it because some ...
2
votes
1answer
183 views

How to automatically overload DELETE and PUT if they are not available by the client?

How can I detect at the startup of the application that a client doesn't support DELETE and PUT verbs and automatically overload the POST verb? On the server side, how can I redirect those overloaded ...
2
votes
3answers
400 views

ASP.NET MVC - How to Create a RESTful Controller Scheme?

If this is a duplicate, please let me know - because i had a quick look and couldn't find anything that really answers my question. I'm experimenting with ASP.NET MVC 2. Now coming from a Web Forms ...
2
votes
3answers
588 views

Is the HTTP 'HEAD' verb useful in web development?

I've read the w3.org spec on the 'HEAD' verb, and I guess I'm missing something. I can't see how it would be useful. Is the HTTP 'HEAD' verb useful in web development? If so, how?
1
vote
2answers
52 views

How do i Deploy HttpHandlers in asp.net 2.0

Question: How does one deploy a HttpHandler in asp.net 2.0? Updated Http Handler code (Inside App_Code): namespace Samples { public class SampleHandler : IHttpHandler { public ...
1
vote
1answer
134 views

Rails' link_to method: GETing when it should DELETE

I'm following Michael Hartl's Rails Tutorial, and for some reason the following code: <%= link_to 'delete', user, :method => :delete, :confirm => "You sure?", ...
1
vote
1answer
165 views

The missing HTTP Verbs in MVC

I'm trying to create a simple CalDav server using ASP.NET MVC 3, but the lack of the missing HTTP Verbs got me confused. How can I add them and use them? Maybe I could create an ActionFilter for each ...
1
vote
1answer
111 views

How to specify DELETE method in a link or form?

Rfc2616 lists many methods besides GET and POST, like, say, DELETE, PUT etc. Method field in html forms, though, seems to be allowed to specify only GET or POST. Is it possible to create a link or ...
1
vote
1answer
130 views

Why are OPTIONS requests not arriving in my ASP.NET application?

I can't seem to receive HTTP OPTIONS requests in my IIS6 hosted ASP.NET application. I'm testing it using a debug breakpoint (and file-log) in my Global.asax's Application_BeginRequest method. The ...
1
vote
3answers
301 views

Limiting HTTP verbs on every action

Is it a good practice to limit the available HTTP verbs for every action? My code is cleaner without [HttpGet], [HttpPost], [HttpPut], or [HttpDelete] decorating every action, but it might also be ...
1
vote
3answers
374 views

post vs. put when posting a form

When evaluating that a form was submitted, I check that the method was post, not get. I was told this is a good way to know that the form was submitted by clicking the submit button and that it's not ...
1
vote
1answer
103 views

Assert that request verb is POST

How do you ensure early enough in the PHP request pipeline the verb is POST and deny others?
1
vote
5answers
511 views

Why do i need PUT or DELETE Http Verbs?

After the release of MVC 2, i have started to check and play with the new features. But i couldnt understand that why do i need to use PUT or DELETE verbs ? I have searched about it and read some ...
1
vote
2answers
2k views

Sharepoint - Multiple document upload - HTTP 'post' verb not allowed

When attempting to upload any number of documents, including very small files, seems to succeed- but subsequently redirects to an error page indicating the following: ...
1
vote
4answers
253 views

Do you check HttpVerbs in your unit tests?

While looking at the unit tests that come with the standard ASP.MVC Web Project template, I noticed that these do not test whether or not a proper HttpVerbs attribute is set on each action method. ...
0
votes
1answer
44 views

destroy_user_session doesn't work in Devise

I'm using rails 3.1.3 and devise 1.5.3 and when I add destroy_user_session_path to my layout file, the link doesn't work. I can login just fine, but when I click this path I get this error: No route ...
0
votes
0answers
27 views

How to set dynamically the verb in a IRouteHandler

How to set the verb (GET, HEAD, POST) dynamically in your custom IRouteHandler.
0
votes
4answers
72 views

Is the HEAD response faster than the GET?

I'm currently getting the info about the files with GET, will it be faster if I rewrite it using HEAD request? Cause I close the connection after the first response.
0
votes
2answers
2k views

server error:405 - HTTP verb used to access this page is not allowed

I have a php Facebook application which I have uploaded in a Microsoft server. When I run the application i get this error. Does anybody know the cause of this ? 405 - HTTP verb used to access ...
0
votes
1answer
57 views

rails redirect or render with a specific verb

I want to redirect to a resource index when a new item is created Here is a piece of the controller: def create @asset = Asset.new(params[:asset]) @assets = Asset.all respond_to do ...
0
votes
1answer
390 views

acceptverbs httpverbs.get?

What is the use of it???? acceptverbs(httpverbs.get) and explain about the httpverbs.post too.. thanks
0
votes
1answer
556 views

405 HTTP Error - PHP POST

I have a site running on windows server 2008. The site is HTML, and has two forms which POST to PHP scripts (both to send an email). This error comes up however when I click the submit button on ...