Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Question on 404 (not technical, I just want opinions)

Question on 404 (not technical, I just want opinions)

Scheduled Pinned Locked Moved The Lounge
csharpjavascriptsysadminquestionwcf
38 Posts 26 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • OriginalGriffO OriginalGriff

    A further thought: if I get a 404 and it doesn't "come back later" then I assume the site was written by idiots, or isn't maintained - and I bugger off elsewhere anyway.

    Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!

    Sander RosselS Offline
    Sander RosselS Offline
    Sander Rossel
    wrote on last edited by
    #9

    That's not really what a 404 does, is it? https://www.codeproject.com/something[^] gives you a 404, but it wasn't moved and it's not coming back either :) It just does not exist.

    Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

    1 Reply Last reply
    0
    • L lmoelleb

      When should 404 be returned according to you? It can't be when the server does not exist - because then it can't response. It can't be when the URL is malformed - that would be a bad request. 404 means exactly what it says on the tin: I looked at the location you specified, and I did not find anything - i.e. what you asked for was NOT FOUND. What you are missing is proper logging and health monitoring. :)

      Sander RosselS Offline
      Sander RosselS Offline
      Sander Rossel
      wrote on last edited by
      #10

      lmoelleb wrote:

      When should 404 be returned according to you?

      You're right about the server, of course, and probably also the domain, but when you're trying to call a controller or function that doesn't exist it should return a 404, for example https://www.codeproject.com/something[^]. I agree that when the function exists, but returns no result a 404 might be appropriate, but it becomes a hassle to differentiate between "function does not exist" and "whatever you're looking for does not exist". So what should a search form return if a user searches for the (human) name "123"? 404 or 200 with no results? I'm saying 200, because everything went well, but there is simply no person with name "123" (which is also a valid response) :)

      Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

      L 1 Reply Last reply
      0
      • Sander RosselS Sander Rossel

        lmoelleb wrote:

        When should 404 be returned according to you?

        You're right about the server, of course, and probably also the domain, but when you're trying to call a controller or function that doesn't exist it should return a 404, for example https://www.codeproject.com/something[^]. I agree that when the function exists, but returns no result a 404 might be appropriate, but it becomes a hassle to differentiate between "function does not exist" and "whatever you're looking for does not exist". So what should a search form return if a user searches for the (human) name "123"? 404 or 200 with no results? I'm saying 200, because everything went well, but there is simply no person with name "123" (which is also a valid response) :)

        Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

        L Offline
        L Offline
        lmoelleb
        wrote on last edited by
        #11

        Well, it did find the search result - it was an instance of an empty list which it returned, so 200 with an empty response it is. ;P REST return values are indeed problematic, as is often the case when something is repurposed well beyond the initial design plan (that would be all of HTTP/HTML pretty much). But your original example was not one I would throw into the "problematic bucket". :)

        1 Reply Last reply
        0
        • Sander RosselS Sander Rossel

          I'm wondering, what are your opinions on this. My current employer uses 404 in web services when some entity cannot be found. For example, let's say we're trying to get product x, but x does not exist. Personally, I'd opt for a 200 with an empty response (or a response with a "product could not be found" error). But here, they return a 404. Why am I against returning a 404? Because the server exists, the URL exists, the web service exists, so technically everything was found. According to Wikipedia "The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link;", but the link isn't broken! I've ran into trouble because I don't want to throw an exception on 404, but I never know if some service could not be reached or if an invalid entity was requested. In one case I returned the error "Product x could not be found" to a front-end, while in reality the configuration was wrong and the URL to the web service was broken. I'd understand this on a website, where you browse to mydomain.com/product/x, but a web service? So... Opinions? Do you use 404 to indicate that some object could not be found (in a web service)? I get that we did not find product x, but there must be a better way to separate functional from technical error... How do you handle this?

          Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

          J Offline
          J Offline
          Jorgen Andersson
          wrote on last edited by
          #12

          200 OK is in any case wrong, but you have to decide whether this is a Client error or not. All responses in the 400 category are Client Errors. If it's not a client error you should consider 204 No Content

          Wrong is evil and must be defeated. - Jeff Ello

          1 Reply Last reply
          0
          • Sander RosselS Sander Rossel

            I'm wondering, what are your opinions on this. My current employer uses 404 in web services when some entity cannot be found. For example, let's say we're trying to get product x, but x does not exist. Personally, I'd opt for a 200 with an empty response (or a response with a "product could not be found" error). But here, they return a 404. Why am I against returning a 404? Because the server exists, the URL exists, the web service exists, so technically everything was found. According to Wikipedia "The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link;", but the link isn't broken! I've ran into trouble because I don't want to throw an exception on 404, but I never know if some service could not be reached or if an invalid entity was requested. In one case I returned the error "Product x could not be found" to a front-end, while in reality the configuration was wrong and the URL to the web service was broken. I'd understand this on a website, where you browse to mydomain.com/product/x, but a web service? So... Opinions? Do you use 404 to indicate that some object could not be found (in a web service)? I get that we did not find product x, but there must be a better way to separate functional from technical error... How do you handle this?

            Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

            F Offline
            F Offline
            F ES Sitecore
            wrote on last edited by
            #13

            When you are asking a server for a resource you issue a GET with the URI of the resource. If you're looking for a file called home.html you would issue GET /home.html If that resource can't be found the server will respond 404 to let you know. When you are asking a web service for a resource you issue a GET with the URI of the resource. If you're looking for a Product with id of 123 you would issue GET /product/123 If that resource can't be found the server will respond 404 to let you know. In the first case the resource is a file, in the second the resource is the product. You're not thinking about the resource itself, you're thinking about the mechanism to deliver the resource. The fact that the /product controller exists means the mechanism to find the product exists, but the client isn't interested in that, it doesn't care if the delivery mechanism is there, it cares if its product\resource is there. When you ask for /thisdoesnotexist.aspx if we return 200 because the mechanism to deliver the resource exists even if the target resource doesn't then this would return 200 also as the http handler that deals with the aspx pipeline exists, even if it can't fine the relevant aspx file on the file system.

            Sander RosselS 1 Reply Last reply
            0
            • Sander RosselS Sander Rossel

              I'm wondering, what are your opinions on this. My current employer uses 404 in web services when some entity cannot be found. For example, let's say we're trying to get product x, but x does not exist. Personally, I'd opt for a 200 with an empty response (or a response with a "product could not be found" error). But here, they return a 404. Why am I against returning a 404? Because the server exists, the URL exists, the web service exists, so technically everything was found. According to Wikipedia "The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link;", but the link isn't broken! I've ran into trouble because I don't want to throw an exception on 404, but I never know if some service could not be reached or if an invalid entity was requested. In one case I returned the error "Product x could not be found" to a front-end, while in reality the configuration was wrong and the URL to the web service was broken. I'd understand this on a website, where you browse to mydomain.com/product/x, but a web service? So... Opinions? Do you use 404 to indicate that some object could not be found (in a web service)? I get that we did not find product x, but there must be a better way to separate functional from technical error... How do you handle this?

              Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

              1 Offline
              1 Offline
              11917640 Member
              wrote on last edited by
              #14

              Talking about desktop development, I always feel uncomfortable to format hard disk, when user types out-of-range value in some textbox.

              Sander RosselS 1 Reply Last reply
              0
              • F F ES Sitecore

                When you are asking a server for a resource you issue a GET with the URI of the resource. If you're looking for a file called home.html you would issue GET /home.html If that resource can't be found the server will respond 404 to let you know. When you are asking a web service for a resource you issue a GET with the URI of the resource. If you're looking for a Product with id of 123 you would issue GET /product/123 If that resource can't be found the server will respond 404 to let you know. In the first case the resource is a file, in the second the resource is the product. You're not thinking about the resource itself, you're thinking about the mechanism to deliver the resource. The fact that the /product controller exists means the mechanism to find the product exists, but the client isn't interested in that, it doesn't care if the delivery mechanism is there, it cares if its product\resource is there. When you ask for /thisdoesnotexist.aspx if we return 200 because the mechanism to deliver the resource exists even if the target resource doesn't then this would return 200 also as the http handler that deals with the aspx pipeline exists, even if it can't fine the relevant aspx file on the file system.

                Sander RosselS Offline
                Sander RosselS Offline
                Sander Rossel
                wrote on last edited by
                #15

                You do make a valid point. I'm still not sure how to gracefully differentiate between "URL not found" and "Product not found". In my specific case I'm calling a web API that returns a 404 when a product isn't found. However, I need to report 400 "product not found", along with other error messages. In my case a 404 URL not found is more like a 500, I'm calling a URL that doesn't exist. In some other service I have to try and parse the body, if it's a string it's probably an error, else it's a valid request. All those if-elses don't feel very nice though...

                Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                M 1 Reply Last reply
                0
                • 1 11917640 Member

                  Talking about desktop development, I always feel uncomfortable to format hard disk, when user types out-of-range value in some textbox.

                  Sander RosselS Offline
                  Sander RosselS Offline
                  Sander Rossel
                  wrote on last edited by
                  #16

                  No one was talking about desktop development... But formatting a disk sounds like a good plan, maybe we should implement that on our back-end too! :thumbsup:

                  Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                  1 1 Reply Last reply
                  0
                  • Sander RosselS Sander Rossel

                    I'm wondering, what are your opinions on this. My current employer uses 404 in web services when some entity cannot be found. For example, let's say we're trying to get product x, but x does not exist. Personally, I'd opt for a 200 with an empty response (or a response with a "product could not be found" error). But here, they return a 404. Why am I against returning a 404? Because the server exists, the URL exists, the web service exists, so technically everything was found. According to Wikipedia "The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link;", but the link isn't broken! I've ran into trouble because I don't want to throw an exception on 404, but I never know if some service could not be reached or if an invalid entity was requested. In one case I returned the error "Product x could not be found" to a front-end, while in reality the configuration was wrong and the URL to the web service was broken. I'd understand this on a website, where you browse to mydomain.com/product/x, but a web service? So... Opinions? Do you use 404 to indicate that some object could not be found (in a web service)? I get that we did not find product x, but there must be a better way to separate functional from technical error... How do you handle this?

                    Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                    C Offline
                    C Offline
                    Chris Maunder
                    wrote on last edited by
                    #17

                    We’ve just had exactly that discussion at CodeProject. 404 means “The server has not found anything matching the Request-URI” This doesn’t only mean it can’t find a page. It also means it can be used if it can’t find a resource corresponding to the URI. It’s used when you want to say ‘can’t find it but I’m not going to give you any further info on why’

                    cheers Chris Maunder

                    M 1 Reply Last reply
                    0
                    • Sander RosselS Sander Rossel

                      No one was talking about desktop development... But formatting a disk sounds like a good plan, maybe we should implement that on our back-end too! :thumbsup:

                      Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                      1 Offline
                      1 Offline
                      11917640 Member
                      wrote on last edited by
                      #18

                      Actually, I share your feeling that 404 is too much for "Product x could not be found" case. But probably my sarcasm was not clear without smiles, I don't like them (old school). So, these smiles provide required emotions for my both posts: :) :) :) :)

                      Sander RosselS 1 Reply Last reply
                      0
                      • C Chris Maunder

                        We’ve just had exactly that discussion at CodeProject. 404 means “The server has not found anything matching the Request-URI” This doesn’t only mean it can’t find a page. It also means it can be used if it can’t find a resource corresponding to the URI. It’s used when you want to say ‘can’t find it but I’m not going to give you any further info on why’

                        cheers Chris Maunder

                        M Offline
                        M Offline
                        MadMyche
                        wrote on last edited by
                        #19

                        Exactly. What is being requested (the resource) is not of any particular content-type. The great philosopher Obi-Wan Kenobi in essence returned a 404 when he stated "these aren't the droids you're looking for"


                        Director of Transmogrification Services Shinobi of Query Language Master of Yoda Conditional

                        Sander RosselS 1 Reply Last reply
                        0
                        • Sander RosselS Sander Rossel

                          You do make a valid point. I'm still not sure how to gracefully differentiate between "URL not found" and "Product not found". In my specific case I'm calling a web API that returns a 404 when a product isn't found. However, I need to report 400 "product not found", along with other error messages. In my case a 404 URL not found is more like a 500, I'm calling a URL that doesn't exist. In some other service I have to try and parse the body, if it's a string it's probably an error, else it's a valid request. All those if-elses don't feel very nice though...

                          Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                          M Offline
                          M Offline
                          MadMyche
                          wrote on last edited by
                          #20

                          The title for 404 is "Not Found". It is agnostic as to what type of resource is being requested; could be a product, a category, a page, or something else. In my world... - The message returned would be based on the context of the path; if it is a product endpoint then I would say "Product Not Found". Likewise if it was a Category I would say "Category Not Found" - In the above example, if I know the product existed (e.g. via a ProductID) and had been deleted, I would return a "410: Gone" status I suppose a 400 could be used if the requested path was invalid; such as "domain.com/retrieve/porduct/101" as the mis-spelling could be viewed as being an example of malformed request syntax Unless there is a system exception that is not being caught; I do not return 500 errors.


                          Director of Transmogrification Services Shinobi of Query Language Master of Yoda Conditional

                          1 Reply Last reply
                          0
                          • M MadMyche

                            Exactly. What is being requested (the resource) is not of any particular content-type. The great philosopher Obi-Wan Kenobi in essence returned a 404 when he stated "these aren't the droids you're looking for"


                            Director of Transmogrification Services Shinobi of Query Language Master of Yoda Conditional

                            Sander RosselS Offline
                            Sander RosselS Offline
                            Sander Rossel
                            wrote on last edited by
                            #21

                            Not the best example as master Kenobi was lying at the time, were he a web service he should've returned a 200 :)

                            Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                            1 Reply Last reply
                            0
                            • 1 11917640 Member

                              Actually, I share your feeling that 404 is too much for "Product x could not be found" case. But probably my sarcasm was not clear without smiles, I don't like them (old school). So, these smiles provide required emotions for my both posts: :) :) :) :)

                              Sander RosselS Offline
                              Sander RosselS Offline
                              Sander Rossel
                              wrote on last edited by
                              #22

                              Sarcasm and such are hard to convey on the web ;) I get your point now though :laugh:

                              Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                              J 1 Reply Last reply
                              0
                              • Sander RosselS Sander Rossel

                                I'm wondering, what are your opinions on this. My current employer uses 404 in web services when some entity cannot be found. For example, let's say we're trying to get product x, but x does not exist. Personally, I'd opt for a 200 with an empty response (or a response with a "product could not be found" error). But here, they return a 404. Why am I against returning a 404? Because the server exists, the URL exists, the web service exists, so technically everything was found. According to Wikipedia "The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link;", but the link isn't broken! I've ran into trouble because I don't want to throw an exception on 404, but I never know if some service could not be reached or if an invalid entity was requested. In one case I returned the error "Product x could not be found" to a front-end, while in reality the configuration was wrong and the URL to the web service was broken. I'd understand this on a website, where you browse to mydomain.com/product/x, but a web service? So... Opinions? Do you use 404 to indicate that some object could not be found (in a web service)? I get that we did not find product x, but there must be a better way to separate functional from technical error... How do you handle this?

                                Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                                B Offline
                                B Offline
                                Bajaja
                                wrote on last edited by
                                #23

                                How about code '204 No Content'? I would say based on the definition it is closest to your case...

                                1 Reply Last reply
                                0
                                • Sander RosselS Sander Rossel

                                  I'm wondering, what are your opinions on this. My current employer uses 404 in web services when some entity cannot be found. For example, let's say we're trying to get product x, but x does not exist. Personally, I'd opt for a 200 with an empty response (or a response with a "product could not be found" error). But here, they return a 404. Why am I against returning a 404? Because the server exists, the URL exists, the web service exists, so technically everything was found. According to Wikipedia "The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link;", but the link isn't broken! I've ran into trouble because I don't want to throw an exception on 404, but I never know if some service could not be reached or if an invalid entity was requested. In one case I returned the error "Product x could not be found" to a front-end, while in reality the configuration was wrong and the URL to the web service was broken. I'd understand this on a website, where you browse to mydomain.com/product/x, but a web service? So... Opinions? Do you use 404 to indicate that some object could not be found (in a web service)? I get that we did not find product x, but there must be a better way to separate functional from technical error... How do you handle this?

                                  Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                                  J Offline
                                  J Offline
                                  John Bevan
                                  wrote on last edited by
                                  #24

                                  I agree that 404 seems wrong in the sense that the service has been found; it's just the data's not there. Taking a quick look on SO it seems 204 is the most popular choice of code for where the service is found, but there's no data: rest - HTTP status code for "no data available" from an external datasource - Stack Overflow[^]. A 200 with empty result set makes sense if you're returning a list in some contexts; e.g. if I want all students attending a course and provide a valid id for the course but there are no students allocated, I'd want an empty list. If the course id was invalid I'd want an HTTP error (probably 204 as per SO link above). If searching for a single item and it's not found, a 204 makes sense (i.e. presumably I'm searching by ID / some unique field as I know that I only expect a single item, so I'm expecting that single item to exist; thus it's an error if it does not).

                                  1 Reply Last reply
                                  0
                                  • Sander RosselS Sander Rossel

                                    Sarcasm and such are hard to convey on the web ;) I get your point now though :laugh:

                                    Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                                    J Offline
                                    J Offline
                                    John Bevan
                                    wrote on last edited by
                                    #25

                                    (Tangent thread) You could use ⸮

                                    • [⸮]
                                    • Irony punctuation - Wikipedia[^]
                                    1 1 Reply Last reply
                                    0
                                    • Sander RosselS Sander Rossel

                                      I'm wondering, what are your opinions on this. My current employer uses 404 in web services when some entity cannot be found. For example, let's say we're trying to get product x, but x does not exist. Personally, I'd opt for a 200 with an empty response (or a response with a "product could not be found" error). But here, they return a 404. Why am I against returning a 404? Because the server exists, the URL exists, the web service exists, so technically everything was found. According to Wikipedia "The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link;", but the link isn't broken! I've ran into trouble because I don't want to throw an exception on 404, but I never know if some service could not be reached or if an invalid entity was requested. In one case I returned the error "Product x could not be found" to a front-end, while in reality the configuration was wrong and the URL to the web service was broken. I'd understand this on a website, where you browse to mydomain.com/product/x, but a web service? So... Opinions? Do you use 404 to indicate that some object could not be found (in a web service)? I get that we did not find product x, but there must be a better way to separate functional from technical error... How do you handle this?

                                      Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                                      M Offline
                                      M Offline
                                      maze3
                                      wrote on last edited by
                                      #26

                                      Lets try an analogy, which might not translate, but lets give it a try. This mainly based on the comment

                                      Sander Rossel wrote:

                                      Because the server exists, the URL exists, the web service exists, so technically everything was found.

                                      So lets change this mydomain.com/product/x, to a physical building. You are asked to go to Building MyHouse, Floor 3, Sales Room and get Document Sale#123 What is the important part of that request? The Document. So you go to MyHouse, it exists. Good start! Oh, and it has a 3rd floor, which indeed has a Sales Room. Now there is a stack of papers in the middle of the room. No furniture. That costs money. You look through the stack but do not find Dcoument Sale#123. It is not found. It may have never existed. The number might be wrong. someone might have deleted. Many possible reasons, but for the request, it is not found. In contrast, I have implemented in a web service 404 if id not found, but if found and query for date range where empty amount of results, returns an 200 empty array. That data at some point may be generated.

                                      1 Reply Last reply
                                      0
                                      • Sander RosselS Sander Rossel

                                        I'm wondering, what are your opinions on this. My current employer uses 404 in web services when some entity cannot be found. For example, let's say we're trying to get product x, but x does not exist. Personally, I'd opt for a 200 with an empty response (or a response with a "product could not be found" error). But here, they return a 404. Why am I against returning a 404? Because the server exists, the URL exists, the web service exists, so technically everything was found. According to Wikipedia "The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link;", but the link isn't broken! I've ran into trouble because I don't want to throw an exception on 404, but I never know if some service could not be reached or if an invalid entity was requested. In one case I returned the error "Product x could not be found" to a front-end, while in reality the configuration was wrong and the URL to the web service was broken. I'd understand this on a website, where you browse to mydomain.com/product/x, but a web service? So... Opinions? Do you use 404 to indicate that some object could not be found (in a web service)? I get that we did not find product x, but there must be a better way to separate functional from technical error... How do you handle this?

                                        Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                                        P Offline
                                        P Offline
                                        Peter Shaw
                                        wrote on last edited by
                                        #27

                                        I recall reading in some news letter or email notification I get, that the IETF are actually considering adding an official status code to the HTTP spec, specifically for this reason. Iv'e just had a look through the RFC List ([RFC HTTP Index by Date](https://tools.ietf.org/id/http?maxhits=458&key=date&dir=desc)) however and I can't see anything that jumps out at me. The last official update to the established status codes was back in 2012, and that was only a handfull to communicate header size preferences and stuff :-) In my mind though, 404 in this scenario is perfectly valid, Iv'e used it a bunch of times, but with a small caveat. I do what IIS does. Everyone's seen the 404.3 that IIS throws back at you when you ask it to download a mime type it's not yet had configured correctly? Well, why not use sub codes? Many sub codes are free to be used as you see fit 404.3 is for example afaik not an official allocation anywhere. There is however one small point no one here has actually brought up yet... Is this a page request or is it an ajax request? If it's a page request, that is /foo/bar/123 is expected to bring back a visible page change, then I understand the need to get this right, BUT, if your using something like angular , vue, aurelia etc then really what does it matter what your status code is? In the case of an Ajax request the ONLY thing that should see the response code is the client code running in the browser, not the end user. So if you feel that sending back a 404 to what's essentially (or should be) invisible to the user of the web application, then a 404 is basically whats needed, given that all your doing is telling your own code that entity was not found. Shawty

                                        1 Reply Last reply
                                        0
                                        • Sander RosselS Sander Rossel

                                          I'm wondering, what are your opinions on this. My current employer uses 404 in web services when some entity cannot be found. For example, let's say we're trying to get product x, but x does not exist. Personally, I'd opt for a 200 with an empty response (or a response with a "product could not be found" error). But here, they return a 404. Why am I against returning a 404? Because the server exists, the URL exists, the web service exists, so technically everything was found. According to Wikipedia "The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link;", but the link isn't broken! I've ran into trouble because I don't want to throw an exception on 404, but I never know if some service could not be reached or if an invalid entity was requested. In one case I returned the error "Product x could not be found" to a front-end, while in reality the configuration was wrong and the URL to the web service was broken. I'd understand this on a website, where you browse to mydomain.com/product/x, but a web service? So... Opinions? Do you use 404 to indicate that some object could not be found (in a web service)? I get that we did not find product x, but there must be a better way to separate functional from technical error... How do you handle this?

                                          Best, Sander Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                                          S Offline
                                          S Offline
                                          ScottM1
                                          wrote on last edited by
                                          #28

                                          I'd do what you've suggested - a 200 with an empty response. A 404 doesn't feel correct to me. To me that indicates that the web service was not found.

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups