I'm trying to run something on my localhost through a port (8080) but I am getting a 404. It should be working properly but I'm not sure why.
In my Resource Monitor, under Network -> Listening Ports, javaw.exe IS running on that port BUT under Firewall Status it says "Allowed, Restricted."
Could this be why it is not letting me access it through this port? How can I fix this? Thanks.
41 Answer
As @RussellUhl points out in his comment, you are getting a 404 status code from your web server. So you are communicating with the web server, it just can't locate the file you're requesting, and so the firewall is not your problem.
You can test this by turning off your Firewall temporarily (via the UI, not by disabling the service) and it should behave the same way. If it does then you know your firewall isn't blocking you.
So putting the Firewall aside, if the file requested exists, then it's likely a web server and/or file system permission configuration problem.