I have an asp.net 4.0 web site that needs to serve files of type .json. The request is coming in as a POST, which does not work. GET works fine. Anyone know what configuration I need to change to make this work?

link|improve this question

46% accept rate
Just a note that it's a best practice to redirect to a GET after accepting a POST: en.wikipedia.org/wiki/Post/Redirect/Get – Joel Coehoorn Oct 30 '11 at 4:40
I'm mocking a server I can't control which means my javascript app needs to do the sam when going to my iis as it does to the production server which in this case is apache. So, to not change the javascript and simulate the same behavior in IIS, I need the javascript to do a POST to get the results (not GET) – Peter Kellner Oct 30 '11 at 21:59
I'm not happy doing this as a handler, but I needed it done. I posted my solution here: peterkellner.net/2011/10/30/… I'd still like to know a better answer. – Peter Kellner Oct 31 '11 at 1:58
feedback

1 Answer

GET or POST is irrelevant, its got nothing to do with the type of response your program sends. There is no setting that would make a difference. Your problem is a logic error in your program.

link|improve this answer
Hi Logicus, there is no program here on the server side. It's a static json file I'm trying to download. when the client uses the GET verb it works, when the client uses the POST verb it fails with a 405. I'd welcome other helpful suggestions. – Peter Kellner Oct 30 '11 at 21:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.