We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following URI leads to HTTP 404 Code:
"http://" + httpServletRequest.getLocalName() + ":" + httpServletRequest.getLocalPort() + "/" + httpServletRequest.getContextPath() + "/webresources/movie/"
That is because of the / after httpServletRequest.getLocalPort() so the URI should be changed to:
/
httpServletRequest.getLocalPort()
"http://" + httpServletRequest.getLocalName() + ":" + httpServletRequest.getLocalPort() + httpServletRequest.getContextPath() + "/webresources/movie/"
The text was updated successfully, but these errors were encountered:
@ayoubfalah Thank you! This was driving me crazy!
Sorry, something went wrong.
No branches or pull requests
The following URI leads to HTTP 404 Code:
That is because of the
/
afterhttpServletRequest.getLocalPort()
so the URI should be changed to:The text was updated successfully, but these errors were encountered: