-
Notifications
You must be signed in to change notification settings - Fork 89
Open
Description
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:
"http://" + httpServletRequest.getLocalName() + ":" + httpServletRequest.getLocalPort() +
httpServletRequest.getContextPath() + "/webresources/movie/"
kabasakalis
Metadata
Metadata
Assignees
Labels
No labels