Hi I am porting my web app from tomcat to Jetty. I am using the Jetty runner to launch it. I am using the following command to launch Jetty:
java -jar jetty-runner.jar --port --path url-path path-to-war
However when I try to browse to the from the browser I get the following error:
HTTP ERROR 403
Problem accessing . Reason:
Forbidden
In the logs i see the following Warning:
WARN:oejs.SecurityHandler:No authenticator for: {RoleInfo,C[*, all_auth_users]}
I am trying to use Jetty out of the box and haven't customized any config anywhere. Is there any additional configuration required to make this work?