[JBoss JIRA] Created: (JBAS-9429) org.jboss.test.jbas8528.test.ApplicationNamingUnitTestCase.
by Shelly McGowan (JIRA)
org.jboss.test.jbas8528.test.ApplicationNamingUnitTestCase.
-----------------------------------------------------------
Key: JBAS-9429
URL: https://issues.jboss.org/browse/JBAS-9429
Project: Legacy JBoss Application Server 6
Issue Type: Sub-task
Security Level: Public (Everyone can see)
Reporter: Shelly McGowan
Fix For: 6.1.0
testApplicationDeployment:
vfs:///mnt/hudson_workspace/workspace/JBoss-AS-6.1.x-testSuite-sun16/JBossAS/testsuite/output/lib/jbas8528.ear
*** DEPLOYMENTS IN ERROR: Name -> Error
vfs:///mnt/hudson_workspace/workspace/JBoss-AS-6.1.x-testSuite-sun16/JBossAS/testsuite/output/lib/jbas8528.ear -> org.jboss.deployers.spi.DeploymentException: Unable to find class path entry ClassPathEntryImpl{path=jbas8528.war/WEB-INF} from jbas8528.ear
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (JBBUILD-602) Missing javax.jms:jms:jar:1.1
by Thomas Diesler (JIRA)
Missing javax.jms:jms:jar:1.1
-----------------------------
Key: JBBUILD-602
URL: https://jira.jboss.org/jira/browse/JBBUILD-602
Project: JBoss Build System
Issue Type: Bug
Components: Artifact Repositories
Reporter: Thomas Diesler
Fix For: Maven Repository 2.0
Missing:
----------
1) javax.jms:jms:jar:1.1
Try downloading the file manually from:
http://java.sun.com/products/jms/docs.html
Then, install it using the command:
mvn install:install-file -DgroupId=javax.jms -DartifactId=jms -Dversion=1.1 -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=javax.jms -DartifactId=jms -Dversion=1.1 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency:
1) org.jboss.osgi.framework:jboss-osgi-framework:jar:1.0.0.Alpha5-SNAPSHOT
2) org.jboss.logging:jboss-logging-log4j:jar:2.2.0.CR1
3) log4j:log4j:jar:1.2.15
4) javax.jms:jms:jar:1.1
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (JBAS-9431) Unable to set no-tx-separate-pools for Oracle XA datasource
by Jeff Reester (JIRA)
Unable to set no-tx-separate-pools for Oracle XA datasource
-----------------------------------------------------------
Key: JBAS-9431
URL: https://issues.jboss.org/browse/JBAS-9431
Project: Legacy JBoss Application Server 6
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Deployers
Affects Versions: 6.0.0.Final
Environment: Windows 7 64-bit, Windows Oracle 11g 32-bit, Linux 64-bit, Linux Oracle 11g 64-bit
Reporter: Jeff Reester
Assignee: Ales Justin
Code is using Oracle XA DB connections with and without transactions.
Seeing exceptions like the following:
2011-07-26 20:04:04,622 WARN [com.arjuna.ats.jta] (Thread-24 (group:HornetQ-client-global-threads-1898046)) ARJUNA-16061 TransactionImple.enlistResource - XAResource.start returned: XAException.XAER_PROTO for < formatId=131076, gtrid_length=29, bqual_length=28, tx_uid=0:ffff0a158387:126a:4e2f5438:6b5, node_name=1, branch_uid=0:ffff0a158387:126a:4e2f5438:6ba, eis_name=unknown eis name >: oracle.jdbc.xa.OracleXAException
at oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:1120)
at oracle.jdbc.xa.client.OracleXAResource.start(OracleXAResource.java:249)
at org.jboss.resource.adapter.jdbc.xa.XAManagedConnection.start(XAManagedConnection.java:213)
at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.enlistResource(TransactionImple.java:629)
at com.arjuna.ats.internal.jta.transaction.arjunacore.TransactionImple.enlistResource(TransactionImple.java:390)
at org.jboss.resource.connectionmanager.TxConnectionManager$TxConnectionEventListener$TransactionSynchronization.enlist(TxConnectionManager.java:975)
at org.jboss.resource.connectionmanager.TxConnectionManager$TxConnectionEventListener.enlist(TxConnectionManager.java:729)
at org.jboss.resource.connectionmanager.TxConnectionManager.managedConnectionReconnected(TxConnectionManager.java:459)
at org.jboss.resource.connectionmanager.BaseConnectionManager2.reconnectManagedConnection(BaseConnectionManager2.java:625)
at org.jboss.resource.connectionmanager.BaseConnectionManager2.allocateConnection(BaseConnectionManager2.java:499)
at org.jboss.resource.connectionmanager.BaseConnectionManager2$ConnectionManagerProxy.allocateConnection(BaseConnectionManager2.java:941)
at org.jboss.resource.adapter.jdbc.WrapperDataSource.getConnection(WrapperDataSource.java:89)
I looked up org.jboss.resource.connectionmanager.JBossManagedConnectionPool in the JMX Console and found NoTxSeparatePools = false. So I tried other combinations like <no-tx-separate-pools>true</no-tx-separate-pools> and I cannot get NoTxSeparatePools = true.
I was able to change NoTxSeparatePools = true and apply the change in the JMX Console and then stop and start the MBean. I then could run the code without any of the errors.
I was able to see in the debugger that no-tx-separate-pools = true never makes it to the JBossManagedConnectionPool MBean from the oracle-xa-ds.xml datasource configuration.
I could see the correct value in org.jboss.resource.metadata.mcf.ManagedConnectionFactoryDeploymentMetaData, but the setting never appears to make it to org.jboss.resource.connectionmanager.JBossManagedConnectionPool for the datasource.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (JBAS-9432) Deployments fail when there is no WEB-INF directory in a .war
by Shelly McGowan (JIRA)
Deployments fail when there is no WEB-INF directory in a .war
-------------------------------------------------------------
Key: JBAS-9432
URL: https://issues.jboss.org/browse/JBAS-9432
Project: Legacy JBoss Application Server 6
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Shelly McGowan
Some test suite regressions occurred since this commit:
http://source.jboss.org/changelog/JBossAS6/?cs=111852
The issues are related to deployment failures when a .war archive does *not* contain a WEB-INF directory in the .war file but the deployer expects to find one:
2011-08-01 14:36:07,211 INFO [org.jboss.deployment.MainDeployer] (RMI TCP Connection(2)-127.0.0.1) deploy, url=file:/NotBackedUp/TRUNK/trunk/testsuite/output/lib/jbas8528.ear
2011-08-01 14:36:07,240 WARN [org.jboss.deployers.vfs.plugins.structure.VFSStructureBuilder] (RMI TCP Connection(2)-127.0.0.1) Error populating deployment vfs:///NotBackedUp/TRUNK/trunk/testsuite/output/lib/jbas8528.ear: org.jboss.deployers.spi.DeploymentException: Unable to find class path entry ClassPathEntryImpl{path=jbas8528.war/WEB-INF} from jbas8528.ear
at org.jboss.deployers.vfs.plugins.structure.VFSStructureBuilder.applyContextInfo(VFSStructureBuilder.java:193) [:2.2.2.GA]
at org.jboss.deployers.structure.spi.helpers.AbstractStructureBuilder.populateContext(AbstractStructureBuilder.java:139) [:2.2.2.GA]
at org.jboss.deployers.structure.spi.helpers.AbstractStructureBuilder.populateContext(AbstractStructureBuilder.java:92) [:2.2.2.GA]
at org.jboss.deployers.structure.spi.helpers.AbstractStructuralDeployers.determineStructure(AbstractStructuralDeployers.java:89) [:2.2.2.GA]
at org.jboss.deployers.plugins.main.MainDeployerImpl.determineStructure(MainDeployerImpl.java:1106) [:2.2.2.GA]
at org.jboss.deployers.plugins.main.MainDeployerImpl.determineDeploymentContext(MainDeployerImpl.java:417) [:2.2.2.GA]
at org.jboss.deployers.plugins.main.MainDeployerImpl.addDeployment(MainDeployerImpl.java:367) [:2.2.2.GA]
at org.jboss.deployers.plugins.main.MainDeployerImpl.addDeployment(MainDeployerImpl.java:277) [:2.2.2.GA]
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:379) [:6.1.0-SNAPSHOT]
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (SECURITY-607) security-spi should depend on servlet-api 3.0 instead of 2.5
by Lin Gao (JIRA)
security-spi should depend on servlet-api 3.0 instead of 2.5
------------------------------------------------------------
Key: SECURITY-607
URL: https://issues.jboss.org/browse/SECURITY-607
Project: PicketBox (JBoss Security and Identity Management)
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: AS-Integration
Reporter: Lin Gao
Assignee: Anil Saldhana
In security-spi/parent/pom.xml:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
In security-spi/spi/pom.xml:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
This dependency should be changed to:
<dependency>
<groupId>org.jboss.spec.javax.servlet</groupId>
<artifactId>jboss-servlet-api_3.0_spec</artifactId>
<version>1.0.0.Final</version>
</dependency>
because the Servlet API in AS 7 is 3.0
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (JBLOGGING-66) Class org.jboss.logging.JDKLevel causes classloader leaks on undeployment of projects using jboss-logging in their war
by Craig Ringer (JIRA)
Class org.jboss.logging.JDKLevel causes classloader leaks on undeployment of projects using jboss-logging in their war
----------------------------------------------------------------------------------------------------------------------
Key: JBLOGGING-66
URL: https://issues.jboss.org/browse/JBLOGGING-66
Project: JBoss Logging
Issue Type: Bug
Security Level: Public (Everyone can see)
Environment: java version "1.6.0_22"
OpenJDK Runtime Environment (IcedTea6 1.10.2) (fedora-58.1.10.2.fc15-x86_64)
OpenJDK 64-Bit Server VM (build 20.0-b11, mixed mode)
x64 Core 2 Duo laptop with 4GB RAM
Reporter: Craig Ringer
Assignee: David Lloyd
I've been chasing classloader leaks that've been causing my app to fail to redeploy after a few iterations. A bit of digging using jmap and jhat has begun to strongly suggest that JBoss Logging is the problem.
The issue is exactly the same as the one used as an example in this article on tracing classloader leaks:
http://blogs.oracle.com/fkieviet/entry/classloader_leaks_the_dreaded_java
Specifically, org.jboss.logging.JDKLevel extends java.util.logging.Level . Unfortunately, java.util.logging.Level keeps a static array of all known logging levels. If JBoss Logging was deployed as part of an application war, that means there's a reference kept from an application server class (java.util.logging.Level) to a client application class (org.jboss.logging.JDKLevel). This keeps the whole reference chain intact and stops the application classloader from being destroyed.
This is a problem on Glassfish 3.1, because JBoss Logging isn't included in the application server so it must be deployed by applications if they want to use things like JBoss Seam.
It should be possible to add jboss-logging to glassfish/domains/domain1/lib to work around this, by making sure that org.jboss.logging.JDKLevel is loaded by the appserver classloader not the classloader of the deployed application.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (JBAS-8579) Taglibs with no body-content cause a NPE
by Marius Bogoevici (JIRA)
Taglibs with no body-content cause a NPE
----------------------------------------
Key: JBAS-8579
URL: https://jira.jboss.org/browse/JBAS-8579
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Web (Tomcat) service
Affects Versions: 6.0.0.M5
Reporter: Marius Bogoevici
Assignee: Remy Maucherat
Priority: Critical
Fix For: 6.0.0.CR1
Existing taglibs that do not specify a body-content for the tag yield a null pointer exception [1].
For example:
<tag>
<name>authorize</name>
<tag-class>org.springframework.security.taglibs.authz.AuthorizeTag</tag-class>
<description>
A tag which outputs the body of the tag if the configured access expression
evaluates to true for the currently authenticated principal.
</description>
The same taglib worked fine on JBoss AS 5.x. While this is a Spring Security taglib, there are other taglibs, such as Struts, that are in the same situation (due to JSP 1.2 defaulting to JSP).
[1]:
11:15:00,895 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/travel].[jsp]] Servlet.service() for servlet jsp threw exception: java.lang.NullPointerException
at org.apache.jasper.compiler.Parser.parseBody(Parser.java:1598) [:]
at org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:976) [:]
at org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1247) [:]
at org.apache.jasper.compiler.Parser.parseElements(Parser.java:1421) [:]
at org.apache.jasper.compiler.Parser.parse(Parser.java:130) [:]
at org.apache.jasper.compiler.ParserController.doParse(ParserController.java:255) [:]
at org.apache.jasper.compiler.ParserController.parse(ParserController.java:103) [:]
at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:196) [:]
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:358) [:]
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:338) [:]
at org.apache.jasper.compiler.Compiler.compile(Compiler.java:325) [:]
at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:607) [:]
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:312) [:]
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:326) [:]
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:253) [:]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [:1.0.0.Final]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:324) [:]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242) [:]
at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:734) [:]
at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:541) [:]
at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:479) [:]
at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:407) [:]
at org.apache.tiles.servlet.context.ServletTilesRequestContext.forward(ServletTilesRequestContext.java:241) [:2.1.3]
at org.apache.tiles.servlet.context.ServletTilesRequestContext.dispatch(ServletTilesRequestContext.java:222) [:2.1.3]
at org.apache.tiles.renderer.impl.TemplateAttributeRenderer.write(TemplateAttributeRenderer.java:44) [:2.1.3]
at org.apache.tiles.renderer.impl.AbstractBaseAttributeRenderer.render(AbstractBaseAttributeRenderer.java:103) [:2.1.3]
at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:669) [:2.1.3]
at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:689) [:2.1.3]
at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:643) [:2.1.3]
at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:626) [:2.1.3]
at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:322) [:2.1.3]
at org.springframework.web.servlet.view.tiles2.TilesView.renderMergedOutputModel(TilesView.java:124) [:3.0.3.RELEASE]
at org.springframework.js.ajax.tiles2.AjaxTilesView.renderMergedOutputModel(AjaxTilesView.java:131) [:2.1.0.RELEASE]
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:250) [:3.0.3.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1063) [:3.0.3.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:801) [:3.0.3.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:719) [:3.0.3.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644) [:3.0.3.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:549) [:3.0.3.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [:1.0.0.Final]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [:1.0.0.Final]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:324) [:]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242) [:]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:366) [:3.0.4.RELEASE]
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:109) [:3.0.4.RELEASE]
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83) [:3.0.4.RELEASE]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378) [:3.0.4.RELEASE]
at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:97) [:3.0.4.RELEASE]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378) [:3.0.4.RELEASE]
at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:100) [:3.0.4.RELEASE]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378) [:3.0.4.RELEASE]
at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:78) [:3.0.4.RELEASE]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378) [:3.0.4.RELEASE]
at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54) [:3.0.4.RELEASE]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378) [:3.0.4.RELEASE]
at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:35) [:3.0.4.RELEASE]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378) [:3.0.4.RELEASE]
at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:187) [:3.0.4.RELEASE]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378) [:3.0.4.RELEASE]
at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:105) [:3.0.4.RELEASE]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378) [:3.0.4.RELEASE]
at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:79) [:3.0.4.RELEASE]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378) [:3.0.4.RELEASE]
at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:167) [:3.0.4.RELEASE]
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:237) [:3.0.3.RELEASE]
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:167) [:3.0.3.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:274) [:]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242) [:]
at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77) [:3.0.3.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76) [:3.0.3.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:274) [:]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242) [:]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [:]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) [:]
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:181) [:6.0.0-SNAPSHOT]
at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.event(CatalinaContext.java:285) [:1.1.0.CR3]
at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invoke(CatalinaContext.java:261) [:1.1.0.CR3]
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:88) [:6.0.0-SNAPSHOT]
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:100) [:6.0.0-SNAPSHOT]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) [:]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [:]
at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158) [:6.0.0-SNAPSHOT]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [:]
at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.invoke(ActiveRequestResponseCacheValve.java:53) [:6.0.0-SNAPSHOT]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:362) [:]
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [:]
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:653) [:]
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951) [:]
at java.lang.Thread.run(Thread.java:680) [:1.6.0_22]
11:15:00,924 INFO [STDOUT] DEBUG: org.springframework.web.servlet.DispatcherServlet - Could not complete request
11:15:00,924 INFO [STDOUT] org.apache.tiles.impl.CannotRenderException: ServletException including path '/WEB-INF/layouts/standard.jsp'.
11:15:00,924 INFO [STDOUT] at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:691)
11:15:00,924 INFO [STDOUT] at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:643)
11:15:00,924 INFO [STDOUT] at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:626)
11:15:00,925 INFO [STDOUT] at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:322)
11:15:00,925 INFO [STDOUT] at org.springframework.web.servlet.view.tiles2.TilesView.renderMergedOutputModel(TilesView.java:124)
11:15:00,925 INFO [STDOUT] at org.springframework.js.ajax.tiles2.AjaxTilesView.renderMergedOutputModel(AjaxTilesView.java:131)
11:15:00,925 INFO [STDOUT] at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:250)
11:15:00,925 INFO [STDOUT] at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1063)
11:15:00,925 INFO [STDOUT] at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:801)
11:15:00,925 INFO [STDOUT] at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:719)
11:15:00,925 INFO [STDOUT] at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644)
11:15:00,926 INFO [STDOUT] at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:549)
11:15:00,926 INFO [STDOUT] at javax.servlet.http.HttpServlet.service(HttpServlet.java:734)
11:15:00,926 INFO [STDOUT] at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
11:15:00,926 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:324)
11:15:00,926 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242)
11:15:00,926 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:366)
11:15:00,926 INFO [STDOUT] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:109)
11:15:00,926 INFO [STDOUT] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
11:15:00,926 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378)
11:15:00,927 INFO [STDOUT] at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:97)
11:15:00,927 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378)
11:15:00,927 INFO [STDOUT] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:100)
11:15:00,927 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378)
11:15:00,927 INFO [STDOUT] at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:78)
11:15:00,927 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378)
11:15:00,927 INFO [STDOUT] at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54)
11:15:00,927 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378)
11:15:00,928 INFO [STDOUT] at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:35)
11:15:00,928 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378)
11:15:00,928 INFO [STDOUT] at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:187)
11:15:00,928 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378)
11:15:00,928 INFO [STDOUT] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:105)
11:15:00,928 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378)
11:15:00,928 INFO [STDOUT] at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:79)
11:15:00,929 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378)
11:15:00,929 INFO [STDOUT] at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:167)
11:15:00,929 INFO [STDOUT] at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:237)
11:15:00,929 INFO [STDOUT] at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:167)
11:15:00,929 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:274)
11:15:00,929 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242)
11:15:00,929 INFO [STDOUT] at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77)
11:15:00,929 INFO [STDOUT] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76)
11:15:00,929 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:274)
11:15:00,930 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242)
11:15:00,930 INFO [STDOUT] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275)
11:15:00,930 INFO [STDOUT] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
11:15:00,930 INFO [STDOUT] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:181)
11:15:00,930 INFO [STDOUT] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.event(CatalinaContext.java:285)
11:15:00,930 INFO [STDOUT] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invoke(CatalinaContext.java:261)
11:15:00,930 INFO [STDOUT] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:88)
11:15:00,930 INFO [STDOUT] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:100)
11:15:00,930 INFO [STDOUT] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
11:15:00,931 INFO [STDOUT] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
11:15:00,931 INFO [STDOUT] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
11:15:00,931 INFO [STDOUT] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
11:15:00,931 INFO [STDOUT] at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.invoke(ActiveRequestResponseCacheValve.java:53)
11:15:00,931 INFO [STDOUT] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:362)
11:15:00,931 INFO [STDOUT] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877)
11:15:00,931 INFO [STDOUT] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:653)
11:15:00,931 INFO [STDOUT] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951)
11:15:00,932 INFO [STDOUT] at java.lang.Thread.run(Thread.java:680)
11:15:00,932 INFO [STDOUT] Caused by: org.apache.tiles.util.TilesIOException: ServletException including path '/WEB-INF/layouts/standard.jsp'.
11:15:00,932 INFO [STDOUT] at org.apache.tiles.servlet.context.ServletUtil.wrapServletException(ServletUtil.java:232)
11:15:00,932 INFO [STDOUT] at org.apache.tiles.servlet.context.ServletTilesRequestContext.forward(ServletTilesRequestContext.java:243)
11:15:00,932 INFO [STDOUT] at org.apache.tiles.servlet.context.ServletTilesRequestContext.dispatch(ServletTilesRequestContext.java:222)
11:15:00,932 INFO [STDOUT] at org.apache.tiles.renderer.impl.TemplateAttributeRenderer.write(TemplateAttributeRenderer.java:44)
11:15:00,932 INFO [STDOUT] at org.apache.tiles.renderer.impl.AbstractBaseAttributeRenderer.render(AbstractBaseAttributeRenderer.java:103)
11:15:00,932 INFO [STDOUT] at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:669)
11:15:00,932 INFO [STDOUT] at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:689)
11:15:00,933 INFO [STDOUT] ... 61 more
11:15:00,933 INFO [STDOUT] Caused by: java.lang.NullPointerException
11:15:00,933 INFO [STDOUT] at org.apache.jasper.compiler.Parser.parseBody(Parser.java:1598)
11:15:00,933 INFO [STDOUT] at org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:976)
11:15:00,933 INFO [STDOUT] at org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1247)
11:15:00,933 INFO [STDOUT] at org.apache.jasper.compiler.Parser.parseElements(Parser.java:1421)
11:15:00,933 INFO [STDOUT] at org.apache.jasper.compiler.Parser.parse(Parser.java:130)
11:15:00,934 INFO [STDOUT] at org.apache.jasper.compiler.ParserController.doParse(ParserController.java:255)
11:15:00,934 INFO [STDOUT] at org.apache.jasper.compiler.ParserController.parse(ParserController.java:103)
11:15:00,934 INFO [STDOUT] at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:196)
11:15:00,934 INFO [STDOUT] at org.apache.jasper.compiler.Compiler.compile(Compiler.java:358)
11:15:00,934 INFO [STDOUT] at org.apache.jasper.compiler.Compiler.compile(Compiler.java:338)
11:15:00,934 INFO [STDOUT] at org.apache.jasper.compiler.Compiler.compile(Compiler.java:325)
11:15:00,934 INFO [STDOUT] at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:607)
11:15:00,934 INFO [STDOUT] at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:312)
11:15:00,935 INFO [STDOUT] at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:326)
11:15:00,936 INFO [STDOUT] at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:253)
11:15:00,936 INFO [STDOUT] at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
11:15:00,936 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:324)
11:15:00,936 INFO [STDOUT] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242)
11:15:00,937 INFO [STDOUT] at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:734)
11:15:00,937 INFO [STDOUT] at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:541)
11:15:00,937 INFO [STDOUT] at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:479)
11:15:00,937 INFO [STDOUT] at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:407)
11:15:00,937 INFO [STDOUT] at org.apache.tiles.servlet.context.ServletTilesRequestContext.forward(ServletTilesRequestContext.java:241)
11:15:00,937 INFO [STDOUT] ... 66 more
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months