Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] WebAppContext only produces "HTTP ERROR: 503"

OK, I enabled logging in log4j (thanks guys!) and now I get this - ConstraintSecurityHandler won't start up. I've attached the full output but here's the exception:

WARN - FAILED ConstraintSecurityHandler@3e97df@: java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@10e434d in ConstraintSecurityHandler@3e97df@
DEBUG - EXCEPTION 
java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@10e434d in ConstraintSecurityHandler@3e97df@
at org.eclipse.jetty.security.authentication.LoginAuthenticator.setConfiguration(LoginAuthenticator.java:34)
at org.eclipse.jetty.security.authentication.FormAuthenticator.setConfiguration(FormAuthenticator.java:94)
at org.eclipse.jetty.security.SecurityHandler.doStart(SecurityHandler.java:335)
at org.eclipse.jetty.security.ConstraintSecurityHandler.doStart(ConstraintSecurityHandler.java:231)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
at org.eclipse.jetty.server.session.SessionHandler.doStart(SessionHandler.java:116)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
at org.eclipse.jetty.server.handler.ScopedHandler.doStart(ScopedHandler.java:97)
at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:634)
at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:189)
at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:978)
at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:586)
at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:349)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
at org.eclipse.jetty.server.Server.doStart(Server.java:228)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
at edu.umd.cs.findbugs.flybush.local.Tester.main(Tester.java:54)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:592)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:110)
WARN - FAILED SessionHandler@a7c45e@: java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@10e434d in ConstraintSecurityHandler@3e97df@
...
ERROR - Failed startup of context WebAppContext@383118@383118/,file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war
java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@10e434d in ConstraintSecurityHandler@3e97df@
at org.eclipse.jetty.security.authentication.LoginAuthenticator.setConfiguration(LoginAuthenticator.java:34)
at org.eclipse.jetty.security.authentication.FormAuthenticator.setConfiguration(FormAuthenticator.java:94)
at org.eclipse.jetty.security.SecurityHandler.doStart(SecurityHandler.java:335)
at org.eclipse.jetty.security.ConstraintSecurityHandler.doStart(ConstraintSecurityHandler.java:231)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
at org.eclipse.jetty.server.session.SessionHandler.doStart(SessionHandler.java:116)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
at org.eclipse.jetty.server.handler.ScopedHandler.doStart(ScopedHandler.java:97)
at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:634)
at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:189)
at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:978)
at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:586)
at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:349)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
at org.eclipse.jetty.server.Server.doStart(Server.java:228)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
at edu.umd.cs.findbugs.flybush.local.Tester.main(Tester.java:54)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:592)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:110)

Any ideas? I don't know what I could be doing wrong, I just installed jetty and pasted some code from a tutorial... and a google search for this error turns up very little...

On Thu, Mar 4, 2010 at 8:05 PM, Michael Gorovoy <michael@xxxxxxxxxxx> wrote:
Keith,

The DataNucleus classes are not part of Jetty, thus they have their own logging mechanism and require their own logging configuration.

As far as the issue with your web application context not working, perhaps you should review the following example: http://dev.eclipse.org/viewcvs/index.cgi/jetty/trunk/example-jetty-embedded/src/main/java/org/eclipse/jetty/embedded/OneWebApp.java?root=RT_Jetty&view=markup.

Michael Gorovoy / mgorovoy@xxxxxxxxxxx



On Thu, Mar 4, 2010 at 6:49 PM, Keith Lea <keithl@xxxxxxxxx> wrote:
OK, I will look into this, but isn't jetty supposed to log to stderr by default?


On Thu, Mar 4, 2010 at 6:35 PM, Joakim Erdfelt <joakim@xxxxxxxxxxx> wrote:
The message here ...

--(snip)--
log4j:WARN No appenders could be found for logger (DataNucleus.ClassLoading).
log4j:WARN Please initialize the log4j system properly.
--(snip)--

Tells us that you have some DataNucleus classes that are emitting log4j logging events.
Yet, you do not have a log4j configuration in place telling the log4j library what to do with those logging events.
That message is created by log4j itself telling you that there's no configuration for it found by log4j itself.

- Joakim

On Thu, Mar 4, 2010 at 4:27 PM, Keith Lea <keithl@xxxxxxxxx> wrote:
Hi, I'm new to jetty and am using version 7.0.1.v20091125, using JDK 1.5.0_22 32bit on Windows 7. I've tried this both with the eclipse jetty and the hightide jetty. I can't get WebAppContext to work at all! 

Here's my code:

    public static void main(String[] args) throws Exception {
        Server server = new Server(8081);

        WebAppContext context = new WebAppContext();
        context.setWar("C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war");
        context.setContextPath("/");
        context.setParentLoaderPriority(true);
        server.setHandler(context);
        System.out.println(server.dump());
        server.start();
        System.out.println("Server started: " + server.dump());
        Thread.sleep(5000);
        System.out.println(server.dump());
    }

Running jetty from the command line using start.jar works fine, I see the demo at localhost:8080. However, when I run this code

I also can't get any logging to show up! I am running with -DDEBUG=true -DVERBOSE=true
I also can't find any jetty source code distribution so I could step through the code to find out what's wrong! Does this exist or do I need to check out from svn and build myself?

Here's the output. Can anyone tell me what is going wrong?? Thanks!

log4j:WARN No appenders could be found for logger (DataNucleus.ClassLoading).
log4j:WARN Please initialize the log4j system properly.
[edu.umd.cs.findbugs.flybush.local.Thing@161509b]
org.eclipse.jetty.server.Server@143073a STOPPED
 +-WebAppContext@6c2a78@6c2a78/,null,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war STOPPED
    +-null

Server started: org.eclipse.jetty.server.Server@143073a started
 +-WebAppContext@6c2a78@6c2a78/,file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war started
    +-SessionHandler@1705316 STOPPED
       +-ConstraintSecurityHandler@4d6b1a STOPPED
          +-ServletHandler@15ee9e3 STOPPED
             +-null
             +-[/*]/[]==0=>QoSFilter
             +-[/dump/*]/[]==0=>MultiPart
             +-[/*]/[]==0=>GzipFilter
             +-[/]=>default
             +-[*.jsp, *.jspf, *.jspx, *.xsp, *.JSP, *.JSPF, *.JSPX, *.XSP]=>jsp
             +-[/hello/*]=>Hello
             +-[/dump/*, *.dump]=>Dump
             +-[/session/*]=>Session
             +-[/cookie/*]=>Cookie
             +-[/dispatch/*]=>Dispatch
             +-[/cgi-bin/*]=>CGI
             +-[/chat/*]=>Chat
             +-[/ws/*]=>WSChat
             +-[/rewritten/*, /redirected/*]=>Rewrite
             +-[/secureMode/*]=>SecureMode
             +-[/google/*]=>TransparentProxy
          +=roles=[user, admin]
          +=/auth/relax.txt={HEAD={RoleInfo[]}, GET={RoleInfo[]}}
          +=/={TRACE={RoleInfo,F,C[]}}
          +=/dump/auth/*={null={RoleInfo,C[user, admin]}}
          +=/auth/*={null={RoleInfo,F,C[]}}
          +=/dump/auth/admin/*={null={RoleInfo,C[admin]}}
          +=/dump/auth/noaccess/*={null={RoleInfo,F,C[]}}
          +=/dump/auth/ssl/*={null={RoleInfo[]}}
          +=/dump/auth/relax/*={HEAD={RoleInfo[]}, GET={RoleInfo[]}}
          +=*.htm={null={RoleInfo,C[user, admin]}}

org.eclipse.jetty.server.Server@143073a started
 +-WebAppContext@6c2a78@6c2a78/,file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war started
    +-SessionHandler@1705316 STOPPED
       +-ConstraintSecurityHandler@4d6b1a STOPPED
          +-ServletHandler@15ee9e3 STOPPED
             +-null
             +-[/*]/[]==0=>QoSFilter
             +-[/dump/*]/[]==0=>MultiPart
             +-[/*]/[]==0=>GzipFilter
             +-[/]=>default
             +-[*.jsp, *.jspf, *.jspx, *.xsp, *.JSP, *.JSPF, *.JSPX, *.XSP]=>jsp
             +-[/hello/*]=>Hello
             +-[/dump/*, *.dump]=>Dump
             +-[/session/*]=>Session
             +-[/cookie/*]=>Cookie
             +-[/dispatch/*]=>Dispatch
             +-[/cgi-bin/*]=>CGI
             +-[/chat/*]=>Chat
             +-[/ws/*]=>WSChat
             +-[/rewritten/*, /redirected/*]=>Rewrite
             +-[/secureMode/*]=>SecureMode
             +-[/google/*]=>TransparentProxy
          +=roles=[user, admin]
          +=/auth/relax.txt={HEAD={RoleInfo[]}, GET={RoleInfo[]}}
          +=/={TRACE={RoleInfo,F,C[]}}
          +=/dump/auth/*={null={RoleInfo,C[user, admin]}}
          +=/auth/*={null={RoleInfo,F,C[]}}
          +=/dump/auth/admin/*={null={RoleInfo,C[admin]}}
          +=/dump/auth/noaccess/*={null={RoleInfo,F,C[]}}
          +=/dump/auth/ssl/*={null={RoleInfo[]}}
          +=/dump/auth/relax/*={HEAD={RoleInfo[]}, GET={RoleInfo[]}}
          +=*.htm={null={RoleInfo,C[user, admin]}}


_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users



_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users



_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users



_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users


"C:\Program Files (x86)\Java\jdk1.5.0_22\bin\java" -DDEBUG=true -Djava.io.tmpdir=C:\temp -DVERBOSE=true -Dlog4j.configuration=etc/logging.properties -Didea.launcher.port=7532 "-Didea.launcher.bin.path=C:\Program Files (x86)\JetBrains\IntelliJ IDEA 9.0\bin" -Dfile.encoding=windows-1252 -classpath "C:\Users\Keith\Code\findbugs\sandbox\localCloud\bin;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\charsets.jar;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\deploy.jar;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\javaws.jar;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\jce.jar;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\jsse.jar;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\plugin.jar;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\rt.jar;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\ext\dnsns.jar;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\ext\localedata.jar;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\ext\sunjce_provider.jar;C:\Program Files (x86)\Java\jdk1.5.0_22\jre\lib\ext\sunpkcs11.jar;C:\Users\Keith\Code\Libraries\hsqldb\lib\hsqldb.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\neodatis-odb-1.9.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\lib\datanucleus-core-1.1.6.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\lib\datanucleus-rdbms-1.1.6.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\jdo2-api-2.3-eb.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\slf4j-api-1.3.1.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\xercesImpl-2.8.1.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\poi-3.2-FINAL.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\jaxb-api-2.1.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\odfdom-0.6.16.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\geronimo-jpa_3.0_spec-1.1.1.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\commons-dbcp-1.2.1.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\commons-pool-1.2.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\ehcache-1.1.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\shared-asn1-0.9.13.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\log4j-1.2.8.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\shared-ldap-0.9.13.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\slf4j-log4j12-1.3.1.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\asm-3.1.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\jaxb-impl-2.1.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\hsqldb-1.8.0.4.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\shared-ldap-constants-0.9.13.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\db4o-7.4.63.11890-java5.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\commons-collections-3.1.jar;C:\Users\Keith\Code\Libraries\datanucleus-accessplatform-full-deps-1.1.6\deps\flexjson-1.7.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-webapp-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-rewrite-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-policy-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-jndi-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-websocket-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-io-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-server-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-xml-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-util-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-ajp-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-client-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-plus-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-jmx-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-annotations-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-deploy-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-continuation-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-servlet-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-security-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-http-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\servlet-api-2.5.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\lib\jetty-servlets-7.0.1.v20091125.jar;C:\Users\Keith\Code\Libraries\jetty-hightide-7.0.1.v20091125\webapps\test.war;C:\Program Files (x86)\JetBrains\IntelliJ IDEA 9.0\lib\idea_rt.jar" com.intellij.rt.execution.application.AppMain edu.umd.cs.findbugs.flybush.local.Tester
log4j:WARN No appenders could be found for logger (DataNucleus.ClassLoading).
log4j:WARN Please initialize the log4j system properly.
[edu.umd.cs.findbugs.flybush.local.Thing@fd918a]
INFO - Logging to org.slf4j.impl.Log4jLoggerAdapter(org.eclipse.jetty.util.log) via org.eclipse.jetty.util.log.Slf4jLog
DEBUG - Container org.eclipse.jetty.server.Server@14a18d + SelectChannelConnector@0.0.0.0:8081 as connector
DEBUG - Container org.eclipse.jetty.server.Server@14a18d + WebAppContext@383118@383118/,null,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war as handler
DEBUG - Container WebAppContext@383118@383118/,null,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war + ErrorPageErrorHandler@11f23e5 as error
org.eclipse.jetty.server.Server@14a18d STOPPED
 +-WebAppContext@383118@383118/,null,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war STOPPED
    +-null

DEBUG - Starting org.eclipse.jetty.server.Server@14a18d
INFO - jetty-7.0.1.v20091125
DEBUG - Container org.eclipse.jetty.server.Server@14a18d + qtp13948523{8<=0<=0/254,-1} as threadpool
DEBUG - Starting qtp13948523{8<=0<=0/254,-1}
DEBUG - STARTED qtp13948523{8<=3<=8/254,0}
DEBUG - Starting WebAppContext@383118@383118/,null,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war
DEBUG - Thread Context class loader is: ContextLoader@null([]) / sun.misc.Launcher$AppClassLoader@133056f
DEBUG - Parent class loader is: sun.misc.Launcher$AppClassLoader@133056f
DEBUG - Parent class loader is: sun.misc.Launcher$ExtClassLoader@a9c85c
DEBUG - Set temp dir C:\temp\Jetty_0_0_0_0_8081_test.war____.m7loam
DEBUG - Try webapp=file:/C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war, exists=true, directory=false
INFO - Extract jar:file:/C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war!/ to C:\temp\Jetty_0_0_0_0_8081_test.war____.m7loam\webapp
DEBUG - Extract jar:file:/C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war!/ to C:\temp\Jetty_0_0_0_0_8081_test.war____.m7loam\webapp
DEBUG - Extracting entry = null from jar file:/C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war
DEBUG - webapp=file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/
DEBUG - parse: jar:file:/C:/Users/Keith/Code/Libraries/jetty-hightide-7.0.1.v20091125/lib/jetty-webapp-7.0.1.v20091125.jar!/org/eclipse/jetty/webapp/webdefault.xml
DEBUG - parsing: sid=jar:file:/C:/Users/Keith/Code/Libraries/jetty-hightide-7.0.1.v20091125/lib/jetty-webapp-7.0.1.v20091125.jar!/org/eclipse/jetty/webapp/webdefault.xml,pid=null
DEBUG - jar:file:/C:/Users/Keith/Code/Libraries/jetty-hightide-7.0.1.v20091125/lib/jetty-webapp-7.0.1.v20091125.jar!/org/eclipse/jetty/webapp/webdefault.xml: Calculated metadatacomplete = true with version=2.5
INFO - NO JSP Support for /, did not find org.apache.jasper.servlet.JspServlet
DEBUG - filterNameMap=null
DEBUG - pathFilters=[]
DEBUG - servletFilterMap=org.eclipse.jetty.util.MultiMap@0
DEBUG - servletPathMap=null
DEBUG - servletNameMap=null
DEBUG - filterNameMap=null
DEBUG - pathFilters=[]
DEBUG - servletFilterMap=org.eclipse.jetty.util.MultiMap@0
DEBUG - servletPathMap={/=default, *.JSPX=jsp, *.xsp=jsp, *.jspf=jsp, *.JSP=jsp, *.jspx=jsp, *.XSP=jsp, *.JSPF=jsp, *.jsp=jsp}
DEBUG - servletNameMap={jsp=jsp, default=default}
DEBUG - parse: file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/web.xml
DEBUG - parsing: sid=file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/web.xml,pid=null
DEBUG - file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/web.xml: Calculated metadatacomplete = false with version=2.5
DEBUG - Search of file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-client-7.0.1.v20091125.jar
DEBUG - Search of file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-continuation-7.0.1.v20091125.jar
DEBUG - Search of file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-http-7.0.1.v20091125.jar
DEBUG - Search of file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-io-7.0.1.v20091125.jar
DEBUG - Search of file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-servlets-7.0.1.v20091125.jar
DEBUG - Search of file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-util-7.0.1.v20091125.jar
DEBUG - Path resource=file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/classes/
DEBUG - Path resource=file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-client-7.0.1.v20091125.jar
DEBUG - Path resource=file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-continuation-7.0.1.v20091125.jar
DEBUG - Path resource=file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-http-7.0.1.v20091125.jar
DEBUG - Path resource=file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-io-7.0.1.v20091125.jar
DEBUG - Path resource=file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-servlets-7.0.1.v20091125.jar
DEBUG - Path resource=file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-util-7.0.1.v20091125.jar
DEBUG - ContextParam: org.eclipse.jetty.server.context.ManagedAttributes=org.eclipse.jetty.servlets.ProxyServlet.Logger,org.eclipse.jetty.servlets.ProxyServlet.ThreadPool,org.eclipse.jetty.servlets.ProxyServlet.HttpClient
DEBUG - loaded interface javax.servlet.http.HttpSessionListener
DEBUG - loaded interface javax.servlet.http.HttpSessionListener from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - loaded interface javax.servlet.http.HttpSessionAttributeListener
DEBUG - loaded interface javax.servlet.http.HttpSessionAttributeListener from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - loaded interface javax.servlet.http.HttpSessionActivationListener
DEBUG - loaded interface javax.servlet.http.HttpSessionActivationListener from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - loaded interface javax.servlet.ServletContextListener
DEBUG - loaded interface javax.servlet.ServletContextListener from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - loaded interface javax.servlet.ServletContextAttributeListener
DEBUG - loaded interface javax.servlet.ServletContextAttributeListener from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - loaded interface javax.servlet.ServletRequestListener
DEBUG - loaded interface javax.servlet.ServletRequestListener from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - loaded interface javax.servlet.ServletRequestAttributeListener
DEBUG - loaded interface javax.servlet.ServletRequestAttributeListener from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - loaded class java.lang.Object
DEBUG - loaded class java.lang.Object from null
DEBUG - loaded class com.acme.TestListener from ContextLoader@Test WebApp([file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/classes/, file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-client-7.0.1.v20091125.jar, file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-continuation-7.0.1.v20091125.jar, file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-http-7.0.1.v20091125.jar, file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-io-7.0.1.v20091125.jar, file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-servlets-7.0.1.v20091125.jar, file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/lib/jetty-util-7.0.1.v20091125.jar]) / sun.misc.Launcher$AppClassLoader@133056f
DEBUG - filterNameMap={QoSFilter=QoSFilter, GzipFilter=GzipFilter, MultiPart=MultiPart}
DEBUG - pathFilters=[[/*]/[]==0=>QoSFilter, [/dump/*]/[]==0=>MultiPart, [/*]/[]==0=>GzipFilter]
DEBUG - servletFilterMap=org.eclipse.jetty.util.MultiMap@0
DEBUG - servletPathMap={/=default, *.JSPX=jsp, *.xsp=jsp, *.jspf=jsp, *.JSP=jsp, *.jspx=jsp, *.XSP=jsp, *.JSPF=jsp, *.jsp=jsp}
DEBUG - servletNameMap={jsp=jsp, default=default}
DEBUG - filterNameMap={QoSFilter=QoSFilter, GzipFilter=GzipFilter, MultiPart=MultiPart}
DEBUG - pathFilters=[[/*]/[]==0=>QoSFilter, [/dump/*]/[]==0=>MultiPart, [/*]/[]==0=>GzipFilter]
DEBUG - servletFilterMap=org.eclipse.jetty.util.MultiMap@0
DEBUG - servletPathMap={/=default, /session/*=Session, *.dump=Dump, *.jspf=jsp, *.xsp=jsp, *.JSPX=jsp, *.JSP=jsp, /hello/*=Hello, *.jsp=jsp, *.JSPF=jsp, *.XSP=jsp, /google/*=TransparentProxy, /ws/*=WSChat, /dump/*=Dump, /redirected/*=Rewrite, /cookie/*=Cookie, /secureMode/*=SecureMode, *.jspx=jsp, /cgi-bin/*=CGI, /dispatch/*=Dispatch, /rewritten/*=Rewrite, /chat/*=Chat}
DEBUG - servletNameMap={WSChat=WSChat, Cookie=Cookie, jsp=jsp, default=default, Hello=Hello, Rewrite=Rewrite, CGI=CGI, SecureMode=SecureMode, Session=Session, Dispatch=Dispatch, TransparentProxy=TransparentProxy, Dump=Dump, Chat=Chat}
DEBUG - Configuring web-jetty.xml
DEBUG - Configure: file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/jetty-web.xml
DEBUG - getResource(META-INF/services/javax.xml.parsers.SAXParserFactory)=jar:file:/C:/Users/Keith/Code/Libraries/datanucleus-accessplatform-full-deps-1.1.6/deps/xercesImpl-2.8.1.jar!/META-INF/services/javax.xml.parsers.SAXParserFactory
DEBUG - loaded class org.apache.xerces.jaxp.SAXParserFactoryImpl
DEBUG - loaded class org.apache.xerces.jaxp.SAXParserFactoryImpl from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - getResource(META-INF/services/javax.xml.parsers.SAXParserFactory)=jar:file:/C:/Users/Keith/Code/Libraries/datanucleus-accessplatform-full-deps-1.1.6/deps/xercesImpl-2.8.1.jar!/META-INF/services/javax.xml.parsers.SAXParserFactory
DEBUG - loaded class org.apache.xerces.jaxp.SAXParserFactoryImpl
DEBUG - loaded class org.apache.xerces.jaxp.SAXParserFactoryImpl from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - loaded class org.apache.xerces.parsers.XIncludeAwareParserConfiguration
DEBUG - loaded class org.apache.xerces.parsers.XIncludeAwareParserConfiguration from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - loaded class org.apache.xerces.impl.dv.dtd.DTDDVFactoryImpl
DEBUG - loaded class org.apache.xerces.impl.dv.dtd.DTDDVFactoryImpl from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - getResource(org/eclipse/jetty/xml/configure_6_0.dtd)=jar:file:/C:/Users/Keith/Code/Libraries/jetty-hightide-7.0.1.v20091125/lib/jetty-xml-7.0.1.v20091125.jar!/org/eclipse/jetty/xml/configure_6_0.dtd
DEBUG - parse: file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/jetty-web.xml
DEBUG - parsing: sid=file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/WEB-INF/jetty-web.xml,pid=null
DEBUG - resolveEntity(-//Mort Bay Consulting//DTD Configure//EN, http://www.eclipse.org/jetty/configure.dtd)
DEBUG - Redirected entity http://www.eclipse.org/jetty/configure.dtd --> jar:file:/C:/Users/Keith/Code/Libraries/jetty-hightide-7.0.1.v20091125/lib/jetty-xml-7.0.1.v20091125.jar!/org/eclipse/jetty/xml/configure_6_0.dtd
DEBUG - loaded class org.eclipse.jetty.webapp.WebAppContext
DEBUG - loaded class org.eclipse.jetty.webapp.WebAppContext from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - loaded class org.eclipse.jetty.util.log.Log
DEBUG - loaded class org.eclipse.jetty.util.log.Log from sun.misc.Launcher$AppClassLoader@133056f
DEBUG - XML call debug
DEBUG - executing jetty-web.xml
DEBUG - Container WebAppContext@383118@383118/,file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war + SessionHandler@a7c45e@ as handler
DEBUG - Container ServletHandler@4d2af2@ + QoSFilter as filter
DEBUG - Container ServletHandler@4d2af2@ + MultiPart as filter
DEBUG - Container ServletHandler@4d2af2@ + GzipFilter as filter
DEBUG - Container ServletHandler@4d2af2@ + [/*]/[]==0=>QoSFilter as filterMapping
DEBUG - Container ServletHandler@4d2af2@ + [/dump/*]/[]==0=>MultiPart as filterMapping
DEBUG - Container ServletHandler@4d2af2@ + [/*]/[]==0=>GzipFilter as filterMapping
DEBUG - Container ServletHandler@4d2af2@ + default as servlet
DEBUG - Container ServletHandler@4d2af2@ + jsp as servlet
DEBUG - Container ServletHandler@4d2af2@ + Hello as servlet
DEBUG - Container ServletHandler@4d2af2@ + Dump as servlet
DEBUG - Container ServletHandler@4d2af2@ + Session as servlet
DEBUG - Container ServletHandler@4d2af2@ + Cookie as servlet
DEBUG - Container ServletHandler@4d2af2@ + Dispatch as servlet
DEBUG - Container ServletHandler@4d2af2@ + CGI as servlet
DEBUG - Container ServletHandler@4d2af2@ + Chat as servlet
DEBUG - Container ServletHandler@4d2af2@ + WSChat as servlet
DEBUG - Container ServletHandler@4d2af2@ + Rewrite as servlet
DEBUG - Container ServletHandler@4d2af2@ + SecureMode as servlet
DEBUG - Container ServletHandler@4d2af2@ + TransparentProxy as servlet
DEBUG - Container ServletHandler@4d2af2@ + [/]=>default as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [*.jsp, *.jspf, *.jspx, *.xsp, *.JSP, *.JSPF, *.JSPX, *.XSP]=>jsp as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/hello/*]=>Hello as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/dump/*, *.dump]=>Dump as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/session/*]=>Session as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/cookie/*]=>Cookie as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/dispatch/*]=>Dispatch as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/cgi-bin/*]=>CGI as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/chat/*]=>Chat as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/ws/*]=>WSChat as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/rewritten/*, /redirected/*]=>Rewrite as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/secureMode/*]=>SecureMode as servletMapping
DEBUG - Container ServletHandler@4d2af2@ + [/google/*]=>TransparentProxy as servletMapping
DEBUG - Container ConstraintSecurityHandler@3e97df@ + ServletHandler@4d2af2@ as handler
DEBUG - Container SessionHandler@a7c45e@ + ConstraintSecurityHandler@3e97df@ as handler
DEBUG - Container SessionHandler@a7c45e@ + org.eclipse.jetty.server.session.HashSessionManager@164debb as sessionManager
DEBUG - Starting SessionHandler@a7c45e@
DEBUG - Starting org.eclipse.jetty.server.session.HashSessionManager@164debb
DEBUG - Container org.eclipse.jetty.server.Server@14a18d + org.eclipse.jetty.server.session.HashSessionIdManager@2f2295 as sessionIdManager
DEBUG - Starting org.eclipse.jetty.server.session.HashSessionIdManager@2f2295
DEBUG - Init SecureRandom.
DEBUG - STARTED org.eclipse.jetty.server.session.HashSessionIdManager@2f2295
DEBUG - STARTED org.eclipse.jetty.server.session.HashSessionManager@164debb
DEBUG - Starting ConstraintSecurityHandler@3e97df@
WARN - FAILED ConstraintSecurityHandler@3e97df@: java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@10e434d in ConstraintSecurityHandler@3e97df@
DEBUG - EXCEPTION 
java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@10e434d in ConstraintSecurityHandler@3e97df@
	at org.eclipse.jetty.security.authentication.LoginAuthenticator.setConfiguration(LoginAuthenticator.java:34)
	at org.eclipse.jetty.security.authentication.FormAuthenticator.setConfiguration(FormAuthenticator.java:94)
	at org.eclipse.jetty.security.SecurityHandler.doStart(SecurityHandler.java:335)
	at org.eclipse.jetty.security.ConstraintSecurityHandler.doStart(ConstraintSecurityHandler.java:231)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
	at org.eclipse.jetty.server.session.SessionHandler.doStart(SessionHandler.java:116)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
	at org.eclipse.jetty.server.handler.ScopedHandler.doStart(ScopedHandler.java:97)
	at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:634)
	at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:189)
	at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:978)
	at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:586)
	at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:349)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
	at org.eclipse.jetty.server.Server.doStart(Server.java:228)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at edu.umd.cs.findbugs.flybush.local.Tester.main(Tester.java:54)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:592)
	at com.intellij.rt.execution.application.AppMain.main(AppMain.java:110)
WARN - FAILED SessionHandler@a7c45e@: java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@10e434d in ConstraintSecurityHandler@3e97df@
DEBUG - EXCEPTION 
java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@10e434d in ConstraintSecurityHandler@3e97df@
	at org.eclipse.jetty.security.authentication.LoginAuthenticator.setConfiguration(LoginAuthenticator.java:34)
	at org.eclipse.jetty.security.authentication.FormAuthenticator.setConfiguration(FormAuthenticator.java:94)
	at org.eclipse.jetty.security.SecurityHandler.doStart(SecurityHandler.java:335)
	at org.eclipse.jetty.security.ConstraintSecurityHandler.doStart(ConstraintSecurityHandler.java:231)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
	at org.eclipse.jetty.server.session.SessionHandler.doStart(SessionHandler.java:116)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
	at org.eclipse.jetty.server.handler.ScopedHandler.doStart(ScopedHandler.java:97)
	at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:634)
	at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:189)
	at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:978)
	at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:586)
	at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:349)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
	at org.eclipse.jetty.server.Server.doStart(Server.java:228)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at edu.umd.cs.findbugs.flybush.local.Tester.main(Tester.java:54)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:592)
	at com.intellij.rt.execution.application.AppMain.main(AppMain.java:110)
ERROR - Failed startup of context WebAppContext@383118@383118/,file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war
java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@10e434d in ConstraintSecurityHandler@3e97df@
	at org.eclipse.jetty.security.authentication.LoginAuthenticator.setConfiguration(LoginAuthenticator.java:34)
	at org.eclipse.jetty.security.authentication.FormAuthenticator.setConfiguration(FormAuthenticator.java:94)
	at org.eclipse.jetty.security.SecurityHandler.doStart(SecurityHandler.java:335)
	at org.eclipse.jetty.security.ConstraintSecurityHandler.doStart(ConstraintSecurityHandler.java:231)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
	at org.eclipse.jetty.server.session.SessionHandler.doStart(SessionHandler.java:116)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
	at org.eclipse.jetty.server.handler.ScopedHandler.doStart(ScopedHandler.java:97)
	at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:634)
	at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:189)
	at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:978)
	at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:586)
	at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:349)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92)
	at org.eclipse.jetty.server.Server.doStart(Server.java:228)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55)
	at edu.umd.cs.findbugs.flybush.local.Tester.main(Tester.java:54)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:592)
	at com.intellij.rt.execution.application.AppMain.main(AppMain.java:110)
DEBUG - STARTED WebAppContext@383118@383118/,file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war
DEBUG - starting org.eclipse.jetty.server.Server@14a18d
DEBUG - Starting SelectChannelConnector@0.0.0.0:8081
DEBUG - Starting org.eclipse.jetty.server.nio.SelectChannelConnector$1@2c17f7
DEBUG - STARTED org.eclipse.jetty.server.nio.SelectChannelConnector$1@2c17f7
INFO - Started SelectChannelConnector@0.0.0.0:8081
DEBUG - STARTED SelectChannelConnector@0.0.0.0:8081
DEBUG - org.eclipse.jetty.server.Server@14a18d STOPPED
 +-WebAppContext@383118@383118/,file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war started
    +-SessionHandler@a7c45e STOPPED
       +-ConstraintSecurityHandler@3e97df STOPPED
          +-ServletHandler@4d2af2 STOPPED
             +-null
             +-[/*]/[]==0=>QoSFilter
             +-[/dump/*]/[]==0=>MultiPart
             +-[/*]/[]==0=>GzipFilter
             +-[/]=>default
             +-[*.jsp, *.jspf, *.jspx, *.xsp, *.JSP, *.JSPF, *.JSPX, *.XSP]=>jsp
             +-[/hello/*]=>Hello
             +-[/dump/*, *.dump]=>Dump
             +-[/session/*]=>Session
             +-[/cookie/*]=>Cookie
             +-[/dispatch/*]=>Dispatch
             +-[/cgi-bin/*]=>CGI
             +-[/chat/*]=>Chat
             +-[/ws/*]=>WSChat
             +-[/rewritten/*, /redirected/*]=>Rewrite
             +-[/secureMode/*]=>SecureMode
             +-[/google/*]=>TransparentProxy
          +=roles=[user, admin]
          +=/auth/relax.txt={GET={RoleInfo[]}, HEAD={RoleInfo[]}}
          +=/={TRACE={RoleInfo,F,C[]}}
          +=/dump/auth/*={null={RoleInfo,C[user, admin]}}
          +=/auth/*={null={RoleInfo,F,C[]}}
          +=/dump/auth/admin/*={null={RoleInfo,C[admin]}}
          +=/dump/auth/noaccess/*={null={RoleInfo,F,C[]}}
          +=/dump/auth/ssl/*={null={RoleInfo[]}}
          +=/dump/auth/relax/*={GET={RoleInfo[]}, HEAD={RoleInfo[]}}
          +=*.htm={null={RoleInfo,C[user, admin]}}

DEBUG - STARTED org.eclipse.jetty.server.Server@14a18d
Server started: org.eclipse.jetty.server.Server@14a18d started
 +-WebAppContext@383118@383118/,file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war started
    +-SessionHandler@a7c45e STOPPED
       +-ConstraintSecurityHandler@3e97df STOPPED
          +-ServletHandler@4d2af2 STOPPED
             +-null
             +-[/*]/[]==0=>QoSFilter
             +-[/dump/*]/[]==0=>MultiPart
             +-[/*]/[]==0=>GzipFilter
             +-[/]=>default
             +-[*.jsp, *.jspf, *.jspx, *.xsp, *.JSP, *.JSPF, *.JSPX, *.XSP]=>jsp
             +-[/hello/*]=>Hello
             +-[/dump/*, *.dump]=>Dump
             +-[/session/*]=>Session
             +-[/cookie/*]=>Cookie
             +-[/dispatch/*]=>Dispatch
             +-[/cgi-bin/*]=>CGI
             +-[/chat/*]=>Chat
             +-[/ws/*]=>WSChat
             +-[/rewritten/*, /redirected/*]=>Rewrite
             +-[/secureMode/*]=>SecureMode
             +-[/google/*]=>TransparentProxy
          +=roles=[user, admin]
          +=/auth/relax.txt={GET={RoleInfo[]}, HEAD={RoleInfo[]}}
          +=/={TRACE={RoleInfo,F,C[]}}
          +=/dump/auth/*={null={RoleInfo,C[user, admin]}}
          +=/auth/*={null={RoleInfo,F,C[]}}
          +=/dump/auth/admin/*={null={RoleInfo,C[admin]}}
          +=/dump/auth/noaccess/*={null={RoleInfo,F,C[]}}
          +=/dump/auth/ssl/*={null={RoleInfo[]}}
          +=/dump/auth/relax/*={GET={RoleInfo[]}, HEAD={RoleInfo[]}}
          +=*.htm={null={RoleInfo,C[user, admin]}}

Server started: org.eclipse.jetty.server.Server@14a18d started
 +-WebAppContext@383118@383118/,file:/C:/temp/Jetty_0_0_0_0_8081_test.war____.m7loam/webapp/,C:/Users/Keith/Code/Libraries/jetty-distribution-7.0.1.v20091125/webapps/test.war started
    +-SessionHandler@a7c45e STOPPED
       +-ConstraintSecurityHandler@3e97df STOPPED
          +-ServletHandler@4d2af2 STOPPED
             +-null
             +-[/*]/[]==0=>QoSFilter
             +-[/dump/*]/[]==0=>MultiPart
             +-[/*]/[]==0=>GzipFilter
             +-[/]=>default
             +-[*.jsp, *.jspf, *.jspx, *.xsp, *.JSP, *.JSPF, *.JSPX, *.XSP]=>jsp
             +-[/hello/*]=>Hello
             +-[/dump/*, *.dump]=>Dump
             +-[/session/*]=>Session
             +-[/cookie/*]=>Cookie
             +-[/dispatch/*]=>Dispatch
             +-[/cgi-bin/*]=>CGI
             +-[/chat/*]=>Chat
             +-[/ws/*]=>WSChat
             +-[/rewritten/*, /redirected/*]=>Rewrite
             +-[/secureMode/*]=>SecureMode
             +-[/google/*]=>TransparentProxy
          +=roles=[user, admin]
          +=/auth/relax.txt={GET={RoleInfo[]}, HEAD={RoleInfo[]}}
          +=/={TRACE={RoleInfo,F,C[]}}
          +=/dump/auth/*={null={RoleInfo,C[user, admin]}}
          +=/auth/*={null={RoleInfo,F,C[]}}
          +=/dump/auth/admin/*={null={RoleInfo,C[admin]}}
          +=/dump/auth/noaccess/*={null={RoleInfo,F,C[]}}
          +=/dump/auth/ssl/*={null={RoleInfo[]}}
          +=/dump/auth/relax/*={GET={RoleInfo[]}, HEAD={RoleInfo[]}}
          +=*.htm={null={RoleInfo,C[user, admin]}}

DEBUG - REQUEST / on org.eclipse.jetty.server.nio.SelectChannelConnector$2@16504fa
DEBUG - RESPONSE /  503
DEBUG - REQUEST /favicon.ico on org.eclipse.jetty.server.nio.SelectChannelConnector$2@16504fa
DEBUG - RESPONSE /favicon.ico  503
DEBUG - REQUEST / on org.eclipse.jetty.server.nio.SelectChannelConnector$2@16504fa
DEBUG - RESPONSE /  503
DEBUG - REQUEST /favicon.ico on org.eclipse.jetty.server.nio.SelectChannelConnector$2@16504fa
DEBUG - RESPONSE /favicon.ico  503

Back to the top