I am writing an application that is accepting POST data from a third party service.
When this data is POSTed I must return a 200 HTTP Status Code.
How can I do this from my controller?
Thanks Paul
|
I am writing an application that is accepting POST data from a third party service. When this data is POSTed I must return a 200 HTTP Status Code. How can I do this from my controller? Thanks Paul |
|||
|
|
|
In your controller you'd return an HttpStatusCodeResult like this...
|
||||
|
200 is just the normal HTTP header for a successful request. If that's all you need, just have the controller |
|||
|
|
|
You can simply set the status code of the response to 200 like the following
|
|||
|
|