Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Issues with jetty-9.4.11 running JSTL.jar

Hi Jan,

 

Maybe I am making this more difficult than it really should. These apps work when I drop the war files in standalone jetty-9.4.11, so it is definitely has to do with embedding it. When I access the webapp the way you just suggested, the browser displays the following message:

 

HTTP ERROR 403

Problem accessing /SSPDashboard/. Reason:

    !Secure

 

I have compared the jar files that jetty standalone loads on the server side and also on the webapp side, they are identical. So, I am now

Suspecting the code that I have implemented to embed the jetty server. I am sharing the code here, please let me know if there is anything unusual that you notice in the piece of code.

 

 

              HttpConfiguration httpConfiguration = new HttpConfiguration();

              httpConfiguration.setOutputBufferSize(32768);

              httpConfiguration.setRequestHeaderSize(8192);

              httpConfiguration.setResponseHeaderSize(8192);

              httpConfiguration.setSendServerVersion(false);

              httpConfiguration.setSendDateHeader(false);   

                                          

            if ( config.getHttpsEnabled() != null && config.getHttpsEnabled().booleanValue() ) {

 

              System.out.println("************ doing HTTPS");

              httpConfiguration.setSecureScheme("https");                                              

                                                          //Configure SSL

                                                          SslContextFactory sslContextFactory = new JettySslContextFactory(config);

                                                          SslConnectionFactory sslConnectionFactory = new SslConnectionFactory(sslContextFactory, HttpVersion.HTTP_1_1.asString());

                                                          HttpConfiguration https_config = new HttpConfiguration(httpConfiguration);  

                                                          ServerConnector sslConnector = new ServerConnector(server,

                                                                                      sslConnectionFactory,

                                                       new HttpConnectionFactory(https_config, HttpCompliance.valueOf("RFC7230_LEGACY")));

                                                   sslConnector.setPort(portNumber);

                                                   sslConnector.setHost(config.getHost());

                                                   server.addConnector(sslConnector);                                                       

               

            } else {

 

              ServerConnector http = new ServerConnector(server,

                           new HttpConnectionFactory(httpConfiguration, HttpCompliance.valueOf("RFC7230_LEGACY")));

                   http.setPort(portNumber);

                   http.setIdleTimeout(30000);

                   server.addConnector(http);                 

            }

           

            String sDir = hadDir + File.separator + "apps" + File.separator + JETTY_ROOT_DIR + File.separator + "webservices"

                + File.separator + "webapps";

 

            String wDir = hadDir + File.separator + "apps" + File.separator + JETTY_ROOT_DIR + File.separator + "webservices";

 

            File webDirFile = new File( wDir );

            if ( webDirFile.exists() ) {

                File files[] = webDirFile.listFiles();

                for ( File file : files ) {

                    if ( file.isDirectory() )

                        continue;

                    String sName = file.getName();

                    if ( sName.endsWith( ".war" ) ) {

                        String spWar[] = sName.split( "[.]" );

                        String context = spWar[0];

 

                        // check to make sure that app is supported

                        if ( !isSupportedApp( context ) )

                            continue;

 

                        String webAppDir = sDir + File.separator + context;

                        File webAppFile = new File( webAppDir );

                        if ( !webAppFile.exists() ) {

                            webAppFile.mkdir();

                            Resource rs = Resource.newResource( file.getAbsolutePath() );

                            Resource jrs = JarResource.newJarResource( rs );

                            jrs.copyTo( webAppFile );

                        }

                    }

                }

            }

 

            HandlerCollection hc = new HandlerCollection();

            ContextHandlerCollection contexts = new ContextHandlerCollection();

           

            DefaultHandler defaultHandler = new DefaultHandler();

            hc.setHandlers(new Handler[] { contexts, defaultHandler});

            server.setHandler(hc);           

            

            // This webapp will use jsps and jstl. We need to enable the

            // AnnotationConfiguration in order to correctly

            // set up the jsp container

            Configuration.ClassList classlist = Configuration.ClassList

                    .setServerDefault( server );

            classlist.addBefore(

                    "org.eclipse.jetty.webapp.JettyWebXmlConfiguration",

                    "org.eclipse.jetty.annotations.AnnotationConfiguration" );

           

            DeploymentManager dm = new DeploymentManager();

            WebAppProvider webappProvider = new WebAppProvider();

            webappProvider.setMonitoredDirName(sDir);

            //webappProvider.setScanInterval(60);

            webappProvider.setExtractWars(true);

            dm.setContexts(contexts);

            //dm.setContextAttribute(

            //        "org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern",

            //        ".*/servlet-api-[^/]*\\.jar$");

 

            dm.setContextAttribute(

                    "org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern",

                    ".*/[^/]*servlet-api-[^/]*\\.jar$|.*/javax.servlet.jsp.jstl-.*\\.jar$|.*/org.apache.taglibs.taglibs-standard-impl-.*\\.jar$");

           

            dm.addAppProvider(webappProvider);

            server.addBean(dm);           

            dm.start();

             

 

From: jetty-users-bounces@xxxxxxxxxxx [mailto:jetty-users-bounces@xxxxxxxxxxx] On Behalf Of Jan Bartel
Sent: Tuesday, October 2, 2018 2:01 AM
To: JETTY user mailing list <jetty-users@xxxxxxxxxxx>
Subject: Re: [jetty-users] Issues with jetty-9.4.11 running JSTL.jar

 

** This mail has been sent from an external source **

 

Eze,

 

There's nothing unusual about the debug trace you provided:  the requested url is http://xxxxxx/SSPDashboard   and jetty sends you a redirect (the 302 response) to the url http://xxxxxx/SSPDashboard/.  This has been jetty behaviour for decades and hasn't changed recently. 


Try eliminating the roundtrip with the redirect by requesting the url with the trailing '/' already in the url. 

 

Jan

 

On Mon, 1 Oct 2018 at 16:39, Eze Ikonne <ike.ikonne@xxxxxxxxxxx> wrote:

Hi Jan,

 

Please see additional information that is logged by the Jetty server, do you see anything in the log that might give a clue as to why an invalid response is being sent to the browser? I have also noticed that the logon.jsp which supposed to be the actual response returned to the browser is not being compiled. Any pointers will really be appreciated. At the moment, the browser is displaying an invalid response message.

 

GET //10.xx.xx.xx:7777/SSPDashboard HTTP/1.1

Host: 10.xx.xx.xx:7777

Connection: keep-alive

Upgrade-Insecure-Requests: 1

User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36

Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8

Accept-Encoding: gzip, deflate, br

Accept-Language: en-US,en;q=0.9

 

 

2018-10-01 02:11:09,396 [qtp442560034-35] DEBUG HttpChannel - HttpChannelOverHttp@3aac2e46{r=1,c=false,a=IDLE,uri=//10.xx.xx.xx:7777/SSPDashboard,age=0} onContentComplete

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpChannel - HttpChannelOverHttp@3aac2e46{r=1,c=false,a=IDLE,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16} onRequestComplete

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpInput - HttpInputOverHTTP@3153323a[c=0,q=0,[0]=null,s=STREAM] addContent EOF

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpConnection - HttpConnection@c2bc1256[p=HttpParser{s=END,0 of -1},g=HttpGenerator@aab1a173{s=START}]=>HttpChannelOverHttp@3aac2e46{r=1,c=false,a=IDLE,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16}<-DecryptedEndPoint@f994cc32{/10.xx.xx.xx:58831<->/10.xx.xx.xx:7777,OPEN,fill=-,flush=-,to=31/30000}->HttpConnection@c2bc1256[p=HttpParser{s=END,0 of -1},g=HttpGenerator@aab1a173{s=START}]=>HttpChannelOverHttp@3aac2e46{r=1,c=false,a=IDLE,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16}->SocketChannelEndPoint@979163b7{/10.xx.xx.xx:58831<->/10.xx.xx.xx:7777,OPEN,fill=-,flush=-,to=16/30000}{io=0/0,kio=0,kro=1}->SslConnection@6d009ee3{NOT_HANDSHAKING,eio=-1/-1,di=-1}=>HttpConnection@c2bc1256[p=HttpParser{s=END,0 of -1},g=HttpGenerator@aab1a173{s=START}]=>HttpChannelOverHttp@3aac2e46{r=1,c=false,a=IDLE,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16} parsed true HttpParser{s=END,0 of -1}

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpConnection - releaseRequestBuffer HttpConnection@c2bc1256[p=HttpParser{s=END,0 of -1},g=HttpGenerator@aab1a173{s=START}]=>HttpChannelOverHttp@3aac2e46{r=1,c=false,a=IDLE,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16}<-DecryptedEndPoint@f994cc32{/10.xx.xx.xx:58831<->/10.xx.xx.xx:7777,OPEN,fill=-,flush=-,to=31/30000}->HttpConnection@c2bc1256[p=HttpParser{s=END,0 of -1},g=HttpGenerator@aab1a173{s=START}]=>HttpChannelOverHttp@3aac2e46{r=1,c=false,a=IDLE,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16}->SocketChannelEndPoint@979163b7{/10.xx.xx.xx:58831<->/10.xx.xx.xx:7777,OPEN,fill=-,flush=-,to=16/30000}{io=0/0,kio=0,kro=1}->SslConnection@6d009ee3{NOT_HANDSHAKING,eio=-1/-1,di=-1}=>HttpConnection@c2bc1256[p=HttpParser{s=END,0 of -1},g=HttpGenerator@aab1a173{s=START}]=>HttpChannelOverHttp@3aac2e46{r=1,c=false,a=IDLE,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16}

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpChannel - HttpChannelOverHttp@3aac2e46{r=1,c=false,a=IDLE,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16} handle //10.xx.xx.xx:7777/SSPDashboard

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpChannelState - handling HttpChannelState@a6cb8a8d{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false}

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpChannel - HttpChannelOverHttp@3aac2e46{r=1,c=false,a=DISPATCHED,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16} action DISPATCH

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG Server - REQUEST GET /SSPDashboard on HttpChannelOverHttp@3aac2e46{r=1,c=false,a=DISPATCHED,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16}

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG ContextHandler - scope null||/SSPDashboard @ o.e.j.w.WebAppContext@-243cfb10{SSPDashboard,/SSPDashboard,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SSPDashboard/,AVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SSPDashboard}

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpChannel - sendResponse info=null content=HeapByteBuffer@df7db8c0[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=true callback=Blocker@6919967b{null}

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpChannel - COMMIT for /SSPDashboard on HttpChannelOverHttp@3aac2e46{r=1,c=true,a=DISPATCHED,uri=//10.xx.xx.xx:7777/SSPDashboard,age=16}

302 null HTTP/1.1

Location: http://10.xx.xx.xx:7777/SSPDashboard/

 

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@b9567e83[PROCESSING][i=HTTP/1.1{s=302,h=1,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@1e192ab6] generate: NEED_HEADER (null,[p=0,l=0,c=0,r=0],true)@START

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpGenerator - generateHeaders HTTP/1.1{s=302,h=1,cl=-1} last=true content=HeapByteBuffer@df7db8c0[p=0,l=0,c=0,r=0]={<<<>>>}

2018-10-01 02:11:09,412 [qtp442560034-35] DEBUG HttpGenerator - Location: http://10.xx.xx.xx:7777/SSPDashboard

 

From: jetty-users-bounces@xxxxxxxxxxx [mailto:jetty-users-bounces@xxxxxxxxxxx] On Behalf Of Jan Bartel
Sent: Monday, September 24, 2018 11:58 PM
To: JETTY user mailing list <jetty-users@xxxxxxxxxxx>
Subject: Re: [jetty-users] Issues with jetty-9.4.11 running JSTL.jar

 

** This mail has been sent from an external source **

 

There's something extremely wrong with your container classpath, "file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/" is on the container's classpath dozens and dozens of times. Also it looks like you have misconfigured the org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern, because it looks like it is matching every jar in the container classpath, whereas it probably only needs to match the jars that contain the jstl taglibs (you just want to scan the minimum number of jars on the container classpath for taglibs, META-INF/resources, web-app-fragment.xml, otherwise it will take forever to start your webapp).

 

I recommend you just deploy one webapp at a time so you can get one properly deployed before you move on to another one.

 

Jan

 

On Tue, 25 Sep 2018 at 14:37, Eze Ikonne <ike.ikonne@xxxxxxxxxxx> wrote:

Hi Jan,

 

I did implement your suggestions and at the moment there is no more conflicts with jar files, at least that’s what the log file indicates. The only exception in the log file

is thrown by security handler for not enabling TLS for all methods. I have been told that this exception is innocuous. However, after Jetty loads my web app, it appears that the

scan process right off the bat stops them without any apparent exception thrown, at least there is none in the log file. Please see the segment included where the modules seem

to have been started and then the Jetty scan process just kills them all. Any idea as to why this behavior? If needed I can also send the runtime class loader interaction.

 

 

2018-09-24 23:50:43,922 [main] DEBUG LifecycleFactoryImpl - Created Default Lifecycle

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - getResource META-INF/services/javax.faces.lifecycle.LifecycleFactory null

2018-09-24 23:50:43,922 [main] DEBUG ContextHandler - contextInitialized: javax.servlet.ServletContextEvent[source=ServletContext@o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,STARTING}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}]->com.sun.rave.web.ui.appbase.servlet.LifecycleListener@9351a429

2018-09-24 23:50:43,922 [main] DEBUG ContextHandler - contextInitialized: javax.servlet.ServletContextEvent[source=ServletContext@o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,STARTING}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}]->com.sun.faces.config.ConfigureListener@5534a564

2018-09-24 23:50:43,922 [main] DEBUG ConfigureListener - contextInitialized(SspJsf)

2018-09-24 23:50:43,922 [main] DEBUG AbstractLifeCycle - starting UploadFilter

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isSystemResource==false com.sun.rave.web.ui.util.UploadFilter jar:file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/lib/webui.jar!/com/sun/rave/web/ui/util/UploadFilter.class

2018-09-24 23:50:43,922 [main] DEBUG ClasspathPattern - match interface javax.servlet.Filter from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/servlet-api-3.1.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isServerClass==false interface javax.servlet.Filter

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP parent loaded interface javax.servlet.Filter

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sun.rave.web.ui.util.UploadFilter

2018-09-24 23:50:43,922 [main] DEBUG BaseHolder - Holding class com.sun.rave.web.ui.util.UploadFilter from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:43,922 [main] DEBUG AbstractLifeCycle - STARTED @9813ms UploadFilter

2018-09-24 23:50:43,922 [main] DEBUG ClasspathPattern - match interface javax.servlet.ServletRequest from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/servlet-api-3.1.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isServerClass==false interface javax.servlet.ServletRequest

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP parent loaded interface javax.servlet.ServletRequest

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isSystemResource==false org.apache.commons.fileupload.FileUploadException jar:file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/lib/commons-fileupload-1.3.3.jar!/org/apache/commons/fileupload/FileUploadException.class

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP webapp loaded class org.apache.commons.fileupload.FileUploadException

2018-09-24 23:50:43,922 [main] DEBUG ClasspathPattern - match class javax.servlet.ServletException from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/servlet-api-3.1.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isServerClass==false class javax.servlet.ServletException

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP parent loaded class javax.servlet.ServletException

2018-09-24 23:50:43,922 [main] DEBUG ClasspathPattern - match interface javax.servlet.ServletResponse from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/servlet-api-3.1.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isServerClass==false interface javax.servlet.ServletResponse

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP parent loaded interface javax.servlet.ServletResponse

2018-09-24 23:50:43,922 [main] DEBUG ClasspathPattern - match interface javax.servlet.FilterChain from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/servlet-api-3.1.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isServerClass==false interface javax.servlet.FilterChain

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP parent loaded interface javax.servlet.FilterChain

2018-09-24 23:50:43,922 [main] DEBUG ClasspathPattern - match interface javax.servlet.http.HttpServletRequest from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/servlet-api-3.1.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isServerClass==false interface javax.servlet.http.HttpServletRequest

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP parent loaded interface javax.servlet.http.HttpServletRequest

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isSystemResource==false org.apache.commons.fileupload.FileItem jar:file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/lib/commons-fileupload-1.3.3.jar!/org/apache/commons/fileupload/FileItem.class

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isSystemResource==false org.apache.commons.fileupload.FileItemHeadersSupport jar:file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/lib/commons-fileupload-1.3.3.jar!/org/apache/commons/fileupload/FileItemHeadersSupport.class

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP webapp loaded interface org.apache.commons.fileupload.FileItemHeadersSupport

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP webapp loaded interface org.apache.commons.fileupload.FileItem

2018-09-24 23:50:43,922 [main] DEBUG ClasspathPattern - match interface javax.servlet.FilterConfig from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/servlet-api-3.1.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isServerClass==false interface javax.servlet.FilterConfig

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP parent loaded interface javax.servlet.FilterConfig

2018-09-24 23:50:43,922 [main] DEBUG FilterHolder - Filter.init com.sun.rave.web.ui.util.UploadFilter

2018-09-24 23:50:43,922 [main] DEBUG AbstractLifeCycle - starting debugFilter

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isSystemResource==false com.sterlingcommerce.sspgui.web.filter.SSPContentDebugFilter file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/classes/com/sterlingcommerce/sspgui/web/filter/SSPContentDebugFilter.class

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sterlingcommerce.sspgui.web.filter.SSPContentDebugFilter

2018-09-24 23:50:43,922 [main] DEBUG BaseHolder - Holding class com.sterlingcommerce.sspgui.web.filter.SSPContentDebugFilter from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:43,922 [main] DEBUG AbstractLifeCycle - STARTED @9813ms debugFilter

2018-09-24 23:50:43,922 [main] DEBUG FilterHolder - Filter.init com.sterlingcommerce.sspgui.web.filter.SSPContentDebugFilter@8d71a455

2018-09-24 23:50:43,922 [main] DEBUG AbstractLifeCycle - starting sessionValidationFilter

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isSystemResource==false com.sterlingcommerce.sspgui.web.filter.SSPContentSessionValidationFilter file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/classes/com/sterlingcommerce/sspgui/web/filter/SSPContentSessionValidationFilter.class

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sterlingcommerce.sspgui.web.filter.SSPContentSessionValidationFilter

2018-09-24 23:50:43,922 [main] DEBUG BaseHolder - Holding class com.sterlingcommerce.sspgui.web.filter.SSPContentSessionValidationFilter from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:43,922 [main] DEBUG AbstractLifeCycle - STARTED @9813ms sessionValidationFilter

2018-09-24 23:50:43,922 [main] DEBUG ClasspathPattern - match interface javax.servlet.http.HttpServletResponse from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/servlet-api-3.1.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isServerClass==false interface javax.servlet.http.HttpServletResponse

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP parent loaded interface javax.servlet.http.HttpServletResponse

2018-09-24 23:50:43,922 [main] DEBUG FilterHolder - Filter.init com.sterlingcommerce.sspgui.web.filter.SSPContentSessionValidationFilter@ba481913

2018-09-24 23:50:43,922 [main] DEBUG AbstractLifeCycle - starting systemProtectionFilter

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isSystemResource==false com.sterlingcommerce.sspgui.web.filter.SSPContentWebPagesFilter file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/classes/com/sterlingcommerce/sspgui/web/filter/SSPContentWebPagesFilter.class

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sterlingcommerce.sspgui.web.filter.SSPContentWebPagesFilter

2018-09-24 23:50:43,922 [main] DEBUG BaseHolder - Holding class com.sterlingcommerce.sspgui.web.filter.SSPContentWebPagesFilter from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:43,922 [main] DEBUG AbstractLifeCycle - STARTED @9813ms systemProtectionFilter

2018-09-24 23:50:43,922 [main] DEBUG FilterHolder - Filter.init com.sterlingcommerce.sspgui.web.filter.SSPContentWebPagesFilter@6a2cf70f

2018-09-24 23:50:43,922 [main] DEBUG AbstractLifeCycle - starting NonceProtectionFilter

2018-09-24 23:50:43,922 [main] DEBUG WebAppContext - isSystemResource==false com.sterlingcommerce.sspgui.web.filter.SSPContentNonceValidationFilter file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/classes/com/sterlingcommerce/sspgui/web/filter/SSPContentNonceValidationFilter.class

2018-09-24 23:50:43,922 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sterlingcommerce.sspgui.web.filter.SSPContentNonceValidationFilter

2018-09-24 23:50:43,922 [main] DEBUG BaseHolder - Holding class com.sterlingcommerce.sspgui.web.filter.SSPContentNonceValidationFilter from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:43,922 [main] DEBUG AbstractLifeCycle - STARTED @9813ms NonceProtectionFilter

2018-09-24 23:50:43,922 [main] DEBUG FilterHolder - Filter.init com.sterlingcommerce.sspgui.web.filter.SSPContentNonceValidationFilter@58590a1a

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - starting KeepAliveServlet@22b464fd==com.sterlingcommerce.sspgui.web.servlet.KeepAliveServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:43,937 [main] DEBUG WebAppContext - isSystemResource==false com.sterlingcommerce.sspgui.web.servlet.KeepAliveServlet file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/classes/com/sterlingcommerce/sspgui/web/servlet/KeepAliveServlet.class

2018-09-24 23:50:43,937 [main] DEBUG ClasspathPattern - match class javax.servlet.http.HttpServlet from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/servlet-api-3.1.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:43,937 [main] DEBUG WebAppContext - isServerClass==false class javax.servlet.http.HttpServlet

2018-09-24 23:50:43,937 [main] DEBUG WebAppClassLoader - WAP parent loaded class javax.servlet.http.HttpServlet

2018-09-24 23:50:43,937 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sterlingcommerce.sspgui.web.servlet.KeepAliveServlet

2018-09-24 23:50:43,937 [main] DEBUG BaseHolder - Holding class com.sterlingcommerce.sspgui.web.servlet.KeepAliveServlet from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - STARTED @9828ms KeepAliveServlet@22b464fd==com.sterlingcommerce.sspgui.web.servlet.KeepAliveServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - starting LogoutServlet@a794153b==com.sterlingcommerce.sspgui.web.servlet.LogoutServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:43,937 [main] DEBUG WebAppContext - isSystemResource==false com.sterlingcommerce.sspgui.web.servlet.LogoutServlet file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/classes/com/sterlingcommerce/sspgui/web/servlet/LogoutServlet.class

2018-09-24 23:50:43,937 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sterlingcommerce.sspgui.web.servlet.LogoutServlet

2018-09-24 23:50:43,937 [main] DEBUG BaseHolder - Holding class com.sterlingcommerce.sspgui.web.servlet.LogoutServlet from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - STARTED @9828ms LogoutServlet@a794153b==com.sterlingcommerce.sspgui.web.servlet.LogoutServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - starting ContentErrorHandler@c40ea71b==com.sterlingcommerce.sspgui.web.util.ContentErrorHandler,jsp=null,order=-1,inst=false

2018-09-24 23:50:43,937 [main] DEBUG WebAppContext - isSystemResource==false com.sterlingcommerce.sspgui.web.util.ContentErrorHandler file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/classes/com/sterlingcommerce/sspgui/web/util/ContentErrorHandler.class

2018-09-24 23:50:43,937 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sterlingcommerce.sspgui.web.util.ContentErrorHandler

2018-09-24 23:50:43,937 [main] DEBUG BaseHolder - Holding class com.sterlingcommerce.sspgui.web.util.ContentErrorHandler from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - STARTED @9828ms ContentErrorHandler@c40ea71b==com.sterlingcommerce.sspgui.web.util.ContentErrorHandler,jsp=null,order=-1,inst=false

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - starting ExceptionHandlerServlet@e45569aa==com.sun.errorhandler.ExceptionHandler,jsp=null,order=-1,inst=false

2018-09-24 23:50:43,937 [main] DEBUG WebAppContext - isSystemResource==false com.sun.errorhandler.ExceptionHandler jar:file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/lib/errorhandler.jar!/com/sun/errorhandler/ExceptionHandler.class

2018-09-24 23:50:43,937 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sun.errorhandler.ExceptionHandler

2018-09-24 23:50:43,937 [main] DEBUG BaseHolder - Holding class com.sun.errorhandler.ExceptionHandler from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - STARTED @9828ms ExceptionHandlerServlet@e45569aa==com.sun.errorhandler.ExceptionHandler,jsp=null,order=-1,inst=false

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - starting ThemeServlet@5aa2e45c==com.sun.rave.web.ui.theme.ThemeServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:43,937 [main] DEBUG WebAppContext - isSystemResource==false com.sun.rave.web.ui.theme.ThemeServlet jar:file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/lib/webui.jar!/com/sun/rave/web/ui/theme/ThemeServlet.class

2018-09-24 23:50:43,937 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sun.rave.web.ui.theme.ThemeServlet

2018-09-24 23:50:43,937 [main] DEBUG BaseHolder - Holding class com.sun.rave.web.ui.theme.ThemeServlet from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - STARTED @9828ms ThemeServlet@5aa2e45c==com.sun.rave.web.ui.theme.ThemeServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - starting jsp@19c47==org.eclipse.jetty.jsp.JettyJspServlet,jsp=null,order=0,inst=false

2018-09-24 23:50:43,937 [main] DEBUG WebAppContext - isServerClass==false class org.eclipse.jetty.jsp.JettyJspServlet

2018-09-24 23:50:43,937 [main] DEBUG WebAppClassLoader - WAP parent loaded class org.eclipse.jetty.jsp.JettyJspServlet

2018-09-24 23:50:43,937 [main] DEBUG BaseHolder - Holding class org.eclipse.jetty.jsp.JettyJspServlet from sun.misc.Launcher$AppClassLoader@ef738a93

2018-09-24 23:50:43,937 [main] DEBUG AbstractLifeCycle - STARTED @9828ms jsp@19c47==org.eclipse.jetty.jsp.JettyJspServlet,jsp=null,order=0,inst=false

2018-09-24 23:50:44,078 [main] DEBUG ClasspathPattern - match interface org.apache.tomcat.InstanceManager from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/org.mortbay.jasper.apache-jsp-8.5.24.2.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:44,078 [main] DEBUG WebAppContext - isServerClass==false interface org.apache.tomcat.InstanceManager

2018-09-24 23:50:44,078 [main] DEBUG WebAppClassLoader - WAP parent loaded interface org.apache.tomcat.InstanceManager

2018-09-24 23:50:44,078 [main] DEBUG ServletHolder - Apache jasper detected

2018-09-24 23:50:44,078 [main] DEBUG ServletHolder - Servlet.init org.eclipse.jetty.jsp.JettyJspServlet@7eefcc07 for jsp

2018-09-24 23:50:44,078 [main] DEBUG AbstractLifeCycle - starting default@5c13d641==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=0,inst=false

2018-09-24 23:50:44,078 [main] DEBUG WebAppContext - isServerClass==false class org.eclipse.jetty.servlet.DefaultServlet

2018-09-24 23:50:44,078 [main] DEBUG WebAppClassLoader - WAP parent loaded class org.eclipse.jetty.servlet.DefaultServlet

2018-09-24 23:50:44,078 [main] DEBUG BaseHolder - Holding class org.eclipse.jetty.servlet.DefaultServlet from sun.misc.Launcher$AppClassLoader@ef738a93

2018-09-24 23:50:44,078 [main] DEBUG AbstractLifeCycle - STARTED @9969ms default@5c13d641==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=0,inst=false

2018-09-24 23:50:44,093 [main] DEBUG ServletHolder - Servlet.init org.eclipse.jetty.servlet.DefaultServlet@6fa5b52b for default

2018-09-24 23:50:44,093 [main] DEBUG DefaultServlet - resource base = null

2018-09-24 23:50:44,093 [main] DEBUG AbstractLifeCycle - starting Faces Servlet@87ee159b==com.sterlingcommerce.sspgui.web.servlet.SSPContentFacesServlet,jsp=null,order=1,inst=false

2018-09-24 23:50:44,093 [main] DEBUG WebAppContext - isSystemResource==false com.sterlingcommerce.sspgui.web.servlet.SSPContentFacesServlet file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/classes/com/sterlingcommerce/sspgui/web/servlet/SSPContentFacesServlet.class

2018-09-24 23:50:44,093 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sterlingcommerce.sspgui.web.servlet.SSPContentFacesServlet

2018-09-24 23:50:44,093 [main] DEBUG BaseHolder - Holding class com.sterlingcommerce.sspgui.web.servlet.SSPContentFacesServlet from WebAppClassLoader=SspJsf@6f478373

2018-09-24 23:50:44,093 [main] DEBUG AbstractLifeCycle - STARTED @9984ms Faces Servlet@87ee159b==com.sterlingcommerce.sspgui.web.servlet.SSPContentFacesServlet,jsp=null,order=1,inst=false

2018-09-24 23:50:44,093 [main] DEBUG ClasspathPattern - match interface javax.servlet.ServletConfig from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/servlet-api-3.1.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:44,093 [main] DEBUG WebAppContext - isServerClass==false interface javax.servlet.ServletConfig

2018-09-24 23:50:44,093 [main] DEBUG WebAppClassLoader - WAP parent loaded interface javax.servlet.ServletConfig

2018-09-24 23:50:44,093 [main] DEBUG WebAppContext - isSystemResource==false com.sterlingcommerce.sspgui.web.servlet.SSPContentFacesServlet$ExceptionType file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/classes/com/sterlingcommerce/sspgui/web/servlet/SSPContentFacesServlet$ExceptionType.class

2018-09-24 23:50:44,093 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sterlingcommerce.sspgui.web.servlet.SSPContentFacesServlet$ExceptionType

2018-09-24 23:50:44,093 [main] DEBUG WebAppContext - isSystemResource==true javax.faces.webapp.FacesServlet jar:file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/lib/jsf-api.jar!/javax/faces/webapp/FacesServlet.class

2018-09-24 23:50:44,093 [main] DEBUG ClasspathPattern - match class javax.faces.webapp.FacesServlet from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/jsf-api.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:44,093 [main] DEBUG WebAppContext - isServerClass==false class javax.faces.webapp.FacesServlet

2018-09-24 23:50:44,093 [main] DEBUG WebAppClassLoader - WAP parent loaded class javax.faces.webapp.FacesServlet

2018-09-24 23:50:44,093 [main] DEBUG ServletHolder - Servlet.init com.sterlingcommerce.sspgui.web.servlet.SSPContentFacesServlet@67c09f68 for Faces Servlet

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - isSystemResource==false com.sterlingcommerce.csp.gui.web.utils.SSPGUILog4jInitializer jar:file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/WEB-INF/lib/WebUIUtils.jar!/com/sterlingcommerce/csp/gui/web/utils/SSPGUILog4jInitializer.class

2018-09-24 23:50:44,109 [main] DEBUG WebAppClassLoader - WAP webapp loaded class com.sterlingcommerce.csp.gui.web.utils.SSPGUILog4jInitializer

2018-09-24 23:50:44,109 [main] INFO  ContextHandler - Started o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,AVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - postConfigure o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,AVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf} with org.eclipse.jetty.webapp.WebInfConfiguration@9f3774af

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - postConfigure o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,AVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf} with org.eclipse.jetty.webapp.WebXmlConfiguration@b9c5e3f0

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - postConfigure o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,AVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf} with org.eclipse.jetty.webapp.MetaInfConfiguration@97b8f23a

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - postConfigure o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,AVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf} with org.eclipse.jetty.webapp.FragmentConfiguration@680608a9

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - postConfigure o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,AVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf} with org.eclipse.jetty.annotations.AnnotationConfiguration@8e02e379

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - postConfigure o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,AVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf} with org.eclipse.jetty.webapp.JettyWebXmlConfiguration@17b5410e

2018-09-24 23:50:44,109 [main] DEBUG AbstractLifeCycle - STARTED @10000ms o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,AVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}

2018-09-24 23:50:44,109 [main] DEBUG AbstractLifeCycle - starting o.e.j.w.WebAppContext@-7275f62c{SSPDashboard,/SSPDashboard,null,UNAVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SSPDashboard}

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,AVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractHandler - stopping o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,UNAVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.annotations.ServletContainerInitializersStarter@c6955689

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.annotations.ServletContainerInitializersStarter@c6955689

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.servlet.ErrorPageErrorHandler@dd2a8135

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractHandler - stopping org.eclipse.jetty.servlet.ErrorPageErrorHandler@dd2a8135

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.ErrorPageErrorHandler@dd2a8135

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.server.session.SessionHandler-121859204==dftMaxIdleSec=1800

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.server.session.DefaultSessionCache@f49b0437[evict=-1,removeUnloadable=false,saveOnCreate=false,saveOnInactiveEvict=false]

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.server.session.NullSessionDataStore@b2b25ad1[passivating=false,graceSec=3600]

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.server.session.NullSessionDataStore@b2b25ad1[passivating=false,graceSec=3600]

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.server.session.DefaultSessionCache@f49b0437[evict=-1,removeUnloadable=false,saveOnCreate=false,saveOnInactiveEvict=false]

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractHandler - stopping org.eclipse.jetty.server.session.SessionHandler-121859204==dftMaxIdleSec=1800

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.security.ConstraintSecurityHandler@c2e4eac3

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractHandler - stopping org.eclipse.jetty.security.ConstraintSecurityHandler@c2e4eac3

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.servlet.ServletHandler@756a145a

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractHandler - stopping org.eclipse.jetty.servlet.ServletHandler@756a145a

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.servlet.ListenerHolder@2cd92532

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.ListenerHolder@2cd92532

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.servlet.ListenerHolder@6a954ad4

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.ListenerHolder@6a954ad4

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping KeepAliveServlet@22b464fd==com.sterlingcommerce.sspgui.web.servlet.KeepAliveServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED KeepAliveServlet@22b464fd==com.sterlingcommerce.sspgui.web.servlet.KeepAliveServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - Thread Context classloader WebAppClassLoader=SSPDashboard@4c46dc3e

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping ContentErrorHandler@c40ea71b==com.sterlingcommerce.sspgui.web.util.ContentErrorHandler,jsp=null,order=-1,inst=false

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - Parent class loader: sun.misc.Launcher$AppClassLoader@ef738a93

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - Parent class loader: sun.misc.Launcher$ExtClassLoader@a33e7628

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED ContentErrorHandler@c40ea71b==com.sterlingcommerce.sspgui.web.util.ContentErrorHandler,jsp=null,order=-1,inst=false

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping LogoutServlet@a794153b==com.sterlingcommerce.sspgui.web.servlet.LogoutServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:44,109 [main] DEBUG WebAppContext - preConfigure o.e.j.w.WebAppContext@-7275f62c{SSPDashboard,/SSPDashboard,null,UNAVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SSPDashboard} with org.eclipse.jetty.webapp.WebInfConfiguration@5a00079a

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED LogoutServlet@a794153b==com.sterlingcommerce.sspgui.web.servlet.LogoutServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping ThemeServlet@5aa2e45c==com.sun.rave.web.ui.theme.ThemeServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED ThemeServlet@5aa2e45c==com.sun.rave.web.ui.theme.ThemeServlet,jsp=null,order=-1,inst=false

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping ExceptionHandlerServlet@e45569aa==com.sun.errorhandler.ExceptionHandler,jsp=null,order=-1,inst=false

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED ExceptionHandlerServlet@e45569aa==com.sun.errorhandler.ExceptionHandler,jsp=null,order=-1,inst=false

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping Faces Servlet@87ee159b==com.sterlingcommerce.sspgui.web.servlet.SSPContentFacesServlet,jsp=null,order=1,inst=true

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED Faces Servlet@87ee159b==com.sterlingcommerce.sspgui.web.servlet.SSPContentFacesServlet,jsp=null,order=1,inst=false

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping NonceProtectionFilter

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED NonceProtectionFilter

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping systemProtectionFilter

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED systemProtectionFilter

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping sessionValidationFilter

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED sessionValidationFilter

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping debugFilter

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED debugFilter

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping UploadFilter

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED UploadFilter

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.servlet.ListenerHolder@6c38be1b

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.ListenerHolder@6c38be1b

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping jsp@19c47==org.eclipse.jetty.jsp.JettyJspServlet,jsp=null,order=0,inst=true

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED jsp@19c47==org.eclipse.jetty.jsp.JettyJspServlet,jsp=null,order=0,inst=false

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping default@5c13d641==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=0,inst=true

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED default@5c13d641==org.eclipse.jetty.servlet.DefaultServlet,jsp=null,order=0,inst=false

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.servlet.ListenerHolder@d91c4482

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.ListenerHolder@d91c4482

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - stopping org.eclipse.jetty.servlet.ListenerHolder@9910592e

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.ListenerHolder@9910592e

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.servlet.ServletHandler@756a145a

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.security.ConstraintSecurityHandler@c2e4eac3

2018-09-24 23:50:44,109 [Scanner-0] DEBUG AbstractLifeCycle - STOPPED org.eclipse.jetty.server.session.SessionHandler-121859204==dftMaxIdleSec=1800

2018-09-24 23:50:44,109 [Scanner-0] DEBUG ContextHandler - contextDestroyed: javax.servlet.ServletContextEvent[source=ServletContext@o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,UNAVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}]->com.sun.faces.config.ConfigureListener@5534a564

2018-09-24 23:50:44,109 [Scanner-0] DEBUG ConfigureListener - contextDestroyed(SspJsf)

2018-09-24 23:50:44,109 [Scanner-0] DEBUG ContextHandler - contextDestroyed: javax.servlet.ServletContextEvent[source=ServletContext@o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,UNAVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}]->com.sun.rave.web.ui.appbase.servlet.LifecycleListener@9351a429

2018-09-24 23:50:44,109 [Scanner-0] DEBUG ContextHandler - contextDestroyed: javax.servlet.ServletContextEvent[source=ServletContext@o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,UNAVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}]->com.sun.faces.config.ConfigureListener@52d0cbd3

2018-09-24 23:50:44,109 [Scanner-0] DEBUG ConfigureListener - contextDestroyed(SspJsf)

2018-09-24 23:50:44,109 [Scanner-0] DEBUG ContextHandler - contextDestroyed: javax.servlet.ServletContextEvent[source=ServletContext@o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,UNAVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}]->org.eclipse.jetty.servlet.listener.IntrospectorCleaner@1a02ebe8

2018-09-24 23:50:44,109 [Scanner-0] DEBUG ContextHandler - contextDestroyed: javax.servlet.ServletContextEvent[source=ServletContext@o.e.j.w.WebAppContext@-71bd3073{SspJsf,/SspJsf,file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SspJsf/,UNAVAILABLE}{C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SspJsf}]->org.eclipse.jetty.servlet.listener.ELContextCleaner@d0cbeb8c

2018-09-24 23:50:44,109 [Scanner-0] DEBUG ClasspathPattern - match class javax.el.BeanELResolver from file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/org.mortbay.jasper.apache-el-8.5.24.2.jar byName=null byLocation=null in [-org.eclipse.jetty.util.log., -org.eclipse.jetty.continuation., -org.eclipse.jetty.servlet.NoJspServlet, -org.eclipse.jetty.jaas., -org.eclipse.jetty.jsp., org.eclipse.jetty., org.objectweb.asm., -org.eclipse.jetty.server.session.SessionData, -org.eclipse.jetty.servlets., -org.eclipse.jetty.websocket., -org.eclipse.jetty.servlet.DefaultServlet, org.eclipse.jdt., -org.eclipse.jetty.servlet.listener., -org.eclipse.jetty.jndi., -org.eclipse.jetty.alpn., -org.eclipse.jetty.jmx., -org.eclipse.jetty.util.annotation., -org.eclipse.jetty.apache.]

2018-09-24 23:50:44,109 [Scanner-0] DEBUG WebAppContext - isServerClass==false class javax.el.BeanELResolver

2018-09-24 23:50:44,109 [Scanner-0] DEBUG WebAppClassLoader - WAP parent loaded class javax.el.BeanELResolver

2018-09-24 23:50:44,109 [Scanner-0] DEBUG ELContextCleaner - Not cleaning cached beans: no such field javax.el.BeanELResolver.properties

2018-09-24 23:50:44,109 [main] DEBUG WebInfConfiguration - Try webapp=file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SSPDashboard/, exists=true, directory=true file=C:\Users\ari51787\sandbox\SSPConfig3432-20180529-NEW-HEAD-BUILD400\apps\jetty\webservices\webapps\SSPDashboard

2018-09-24 23:50:44,109 [main] DEBUG WebInfConfiguration - webapp=file:///C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/apps/jetty/webservices/webapps/SSPDashboard/

2018-09-24 23:50:44,109 [main] DEBUG WebInfConfiguration - Matching container urls [file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/sspconfig.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/accepter.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/authentication.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/componentCommon.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/configurator.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/haas.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/hadrian-client.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/hadrian-common.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/hadrian-gui.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/persistence.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/sterling/sspconfig.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/activemq-client-5.11.1.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/alloy.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/alpn-api-1.1.3.v20160715.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/asm-6.2.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/asm-commons-6.2.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/castor-1.3.3-anttasks.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/castor-1.3.3-codegen.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/castor-1.3.3-core.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/castor-1.3.3-ddlgen.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/castor-1.3.3-jdo.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/castor-1.3.3-xml-schema.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/castor-1.3.3-xml.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/castor-1.3.3.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/cdi-2-9.4.11.v20180605.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/cdi-core-9.4.11.v20180605.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/cdi-servlet-9.4.11.v20180605.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/CL3Export.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/CL3Nonexport.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/com.ibm.mq.headers.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/com.ibm.mq.jmqi.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/com.ibm.mqjms.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-beanutils-core.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-beanutils.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-cli-1.2.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-codec-1.6.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-codec.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-collections-3.2.2.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-digester.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-fileupload-1.3.3.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-httpclient-3.1.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-io-2.4.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-logging-1.1.1.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-logging-api.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/commons-logging.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/concurrent.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/dhbcore.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/fluent-hc-4.2.5.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/geronimo-j2ee-management_1.1_spec-1.0.1.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/geronimo-jms_1.1_spec-1.1.1.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/help-4_2-ehelp-integration.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/help-demo.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/help-indexer.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/help-share.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/help-wizard.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/help4.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/hivemind-1.1.1.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/hivemind-jmx-1.1.1.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/hivemind-lib-1.1.1.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/httpclient-4.2.5.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/httpclient-cache-4.2.5.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/httpcore-4.2.4.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/httpmime-4.2.5.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/ibmpkcs.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/jackson-core-asl-1.9.2.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/jackson-jaxrs-1.9.2.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/jackson-mapper-asl-1.9.2.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/jackson-xc-1.9.2.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bin/, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/lib/thirdparty/jakarta-oro-2.0.8.jar, file:/C:/Users/ari51787/sandbox/SSPConfig3432-20180529-NEW-HEAD-BUILD400/bi


 

--

Jan Bartel <janb@xxxxxxxxxxx>

www.webtide.com
Expert assistance from the creators of Jetty and CometD

 

=====================================================
Please refer to http://www.aricent.com/email-disclaimer
for important disclosures regarding this electronic communication.
=====================================================

Back to the top