Skip to content

HTTP 404 Not Found #23

Description

@ayoubfalah

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/"

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions