About 5,210,000 results
Open links in new tab
  1. HTTP Get with 204 No Content: Is that normal - Stack Overflow

    I know that a 204 - No Content is okay for an HTTP POST-Request. For GET request, if no data is to be sent back, is the 204 status code appropriate? Should I use 404, or just stick to 200 for …

  2. DB2 SQL Error: SQLCODE=-204, SQLSTATE=42704 - Stack Overflow

    Jan 4, 2014 · DB2 SQL Error: SQLCODE=-204, SQLSTATE=42704 Asked 11 years, 10 months ago Modified 3 years, 3 months ago Viewed 136k times

  3. How to keep ResponseBody on 204 No Content response?

    Nov 21, 2017 · The 204 (No Content) status code indicates that the server has successfully fulfilled the request and that there is no additional content to send in the response payload body.

  4. Return http 204 "no content" to client in ASP.NET MVC2

    In an ASP.net MVC 2 app that I have I want to return a 204 No Content response to a post operation. Current my controller method has a void return type, but this sends back a …

  5. What is the difference between 201 status code and 204 status code

    Aug 25, 2022 · 1 Both 201 and 204 represent a successful request. For a more detailed explanation, you can refer to the following documentation: 201 Created The request has been …

  6. HTTP status codes : 204 OR 200 with body containing an empty …

    The RFC2616 says : 10.2.5 204 No Content The server has fulfilled the request but does not need to return an entity-body, and might want to return updated metainformation. The response …

  7. Why do I get SQLCODE=-204, SQLSTATE=42704 with DB2 LUW …

    Jun 10, 2014 · There are numerous web pages where people show this message as a symptom (with the value after SQLERRMC and the driver level varying): DB2 SQL Error: SQLCODE= …

  8. Return HTTP 204 on null with spring @RestController

    Sep 4, 2015 · Return HTTP 204 on null with spring @RestController Asked 10 years, 2 months ago Modified 4 years, 5 months ago Viewed 93k times

  9. What Content-Type should a 204 No Response use?

    Jan 9, 2014 · When building a RESTful HTTP service, and a Response is given with a 204 No Content (e.g. after the Consumer issues a DELETE Request), what Content-Type should the …

  10. 200/204 or 404 in a Restful API design? - Stack Overflow

    Jun 1, 2019 · Should return empty list [] 200/204 or 404 in a Restful API design? [duplicate] Asked 6 years, 5 months ago Modified 6 years, 5 months ago Viewed 25k times