[JCA/JBoss] - Re: Shared Jar files in RAR and WAR
by weston.priceï¼ jboss.com
anonymous wrote :
| Due to some requirement restrictions, the web application and the connector are packaged seperately - they cannot be packaged into a single EAR . Also these components needs to be self-contained, ie all the dependent JAR files need to be packaged inside these components and cannot be placed in the Server's classpath .
|
This is fine. The classes from the RAR file will still be available to the WAR deployement without having to re-package them with the WAR.
anonymous wrote :
| Since the RAR and the WAR code uses the ConenctionFactory I need to place the Connector JAR file inside both the RAR and the WAR.
| Since the classloaders for RAR and the WAR are different I get a ClassCastException when I lookup the ConnectionFactory in the Web Application.
|
The reason for the CCE is that you are including the classes in *both* deployments. Remove these classes from the WAR. See above.
anonymous wrote :
| For the connector and the web application to be run on the Weblogic App. Server I can keep the Connector JAR file (containing the ConnectionFactory implementation) in both the RAR file and the JAR file and also set the
| <enable-global-access-to-classes>true</enable-global-access-to-classes> in weblogic-ra.xml.
|
Effectively, this is accomplished in JBoss without having to specify anything beyond the defaults.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4023622#4023622
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4023622
19Â years, 1Â month
[JBoss Portal] - Portlet + Grails = Not Working.
by yesudeep
Greetings,
We're currently using the Grails framework to develop our applications
and we need to integrate a certain Grails web application with JBoss Portal.
We're not sure about how to go about doing this. Can someone
experienced in this area help out?
I've tried following the basic advice in the Portal Reference Manual
to create a test portlet for the application, but I get deployment errors.
Here is a error log:
| 17:46:03,906 INFO [Server] JBoss (MX MicroKernel) [4.0.4.GA (build: CVSTag=JBoss_4_0_4_GA date=200605151000)] Started in 2m:7s:811ms
| 17:46:44,504 INFO [TomcatDeployer] deploy, ctxPath=/Kyle, warUrl=.../tmp/deploy/tmp2364Kyle-exp.war/
| 17:46:44,742 ERROR [STDERR] log4j:ERROR A "org.jboss.logging.util.OnlyOnceErrorHandler" object is not assignable to a "org.apache.log4j.spi.ErrorHandler" variable.
| 17:46:44,742 ERROR [STDERR] log4j:ERROR The class "org.apache.log4j.spi.ErrorHandler" was loaded by
| 17:46:44,743 ERROR [STDERR] log4j:ERROR [WebappClassLoader
| delegate: false
| repositories:
| /WEB-INF/classes/
| ----------> Parent Classloader:
| java.net.FactoryURLClassLoader@1a1610b
| ] whereas object of type
| 17:46:44,743 ERROR [STDERR] log4j:ERROR "org.jboss.logging.util.OnlyOnceErrorHandler" was loaded by [org.jboss.system.server.NoAnnotationURLClassLoader@1aaa14a].
| 17:46:44,841 ERROR [STDERR] log4j:ERROR Could not create an Appender. Reported error follows.
| 17:46:44,841 ERROR [STDERR] java.lang.ClassCastException: org.jboss.logging.appender.DailyRollingFileAppender
| 17:46:44,842 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.parseAppender(DOMConfigurator.java:165)
| 17:46:44,843 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.findAppenderByName(DOMConfigurator.java:140)
| 17:46:44,843 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.findAppenderByReference(DOMConfigurator.java:153)
| 17:46:44,843 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.parseChildrenOfLoggerElement(DOMConfigurator.java:415)
| 17:46:44,843 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.parseRoot(DOMConfigurator.java:384)
| 17:46:44,843 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.parse(DOMConfigurator.java:783)
| 17:46:44,843 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:666)
| 17:46:44,844 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:616)
| 17:46:44,844 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:602)
| 17:46:44,844 ERROR [STDERR] at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:460)
| 17:46:44,844 ERROR [STDERR] at org.apache.log4j.LogManager.<clinit>(LogManager.java:113)
| 17:46:44,844 ERROR [STDERR] at org.apache.log4j.Logger.getLogger(Logger.java:85)
| 17:46:44,844 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 17:46:44,844 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 17:46:44,844 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,845 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,845 ERROR [STDERR] at org.apache.commons.logging.impl.Log4jProxy.<init>(Log4jProxy.java:132)
| 17:46:44,845 ERROR [STDERR] at org.apache.commons.logging.impl.Log4JLogger.<init>(Log4JLogger.java:39)
| 17:46:44,845 ERROR [STDERR] at sun.reflect.GeneratedConstructorAccessor14.newInstance(Unknown Source)
| 17:46:44,845 ERROR [STDERR] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
| 17:46:44,845 ERROR [STDERR] at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
| 17:46:44,845 ERROR [STDERR] at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:529)
| 17:46:44,845 ERROR [STDERR] at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:235)
| 17:46:44,845 ERROR [STDERR] at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:372)
| 17:46:44,846 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.getLogger(ContainerBase.java:380)
| 17:46:44,846 ERROR [STDERR] at org.apache.catalina.core.StandardContext.start(StandardContext.java:4090)
| 17:46:44,846 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
| 17:46:44,846 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
| 17:46:44,846 ERROR [STDERR] at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
| 17:46:44,846 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 17:46:44,846 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 17:46:44,846 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,847 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,847 ERROR [STDERR] at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
| 17:46:44,847 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
| 17:46:44,847 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:44,847 ERROR [STDERR] at org.apache.catalina.core.StandardContext.init(StandardContext.java:5116)
| 17:46:44,847 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 17:46:44,848 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 17:46:44,848 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,848 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,848 ERROR [STDERR] at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
| 17:46:44,848 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
| 17:46:44,848 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:44,848 ERROR [STDERR] at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:297)
| 17:46:44,848 ERROR [STDERR] at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:103)
| 17:46:44,849 ERROR [STDERR] at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:371)
| 17:46:44,849 ERROR [STDERR] at org.jboss.web.WebModule.startModule(WebModule.java:83)
| 17:46:44,849 ERROR [STDERR] at org.jboss.web.WebModule.startService(WebModule.java:61)
| 17:46:44,849 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| 17:46:44,849 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| 17:46:44,849 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| 17:46:44,849 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,849 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,850 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 17:46:44,850 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 17:46:44,855 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| 17:46:44,855 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 17:46:44,855 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:44,856 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| 17:46:44,912 ERROR [STDERR] at $Proxy0.start(Unknown Source)
| 17:46:44,913 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
| 17:46:44,913 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| 17:46:44,913 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,913 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,913 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 17:46:44,913 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 17:46:44,914 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| 17:46:44,914 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 17:46:44,914 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:44,914 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 17:46:44,914 ERROR [STDERR] at $Proxy92.start(Unknown Source)
| 17:46:44,914 ERROR [STDERR] at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:466)
| 17:46:44,914 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 17:46:44,914 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 17:46:44,914 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,915 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,915 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 17:46:44,915 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 17:46:44,915 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| 17:46:44,915 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 17:46:44,915 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| 17:46:44,915 ERROR [STDERR] at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
| 17:46:44,915 ERROR [STDERR] at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
| 17:46:44,916 ERROR [STDERR] at org.jboss.ws.server.WebServiceDeployer.start(WebServiceDeployer.java:117)
| 17:46:44,916 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
| 17:46:44,916 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
| 17:46:44,916 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 17:46:44,916 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 17:46:44,916 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:44,916 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 17:46:44,916 ERROR [STDERR] at $Proxy93.start(Unknown Source)
| 17:46:44,917 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
| 17:46:44,917 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
| 17:46:44,917 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
| 17:46:44,917 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor88.invoke(Unknown Source)
| 17:46:44,917 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,917 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,917 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 17:46:44,917 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 17:46:44,918 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| 17:46:44,918 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 17:46:44,918 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| 17:46:44,918 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 17:46:44,918 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 17:46:44,918 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:44,918 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 17:46:44,918 ERROR [STDERR] at $Proxy8.deploy(Unknown Source)
| 17:46:44,918 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| 17:46:44,919 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| 17:46:44,919 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| 17:46:44,919 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:274)
| 17:46:44,919 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:225)
| 17:46:44,919 ERROR [STDERR] log4j:ERROR Could not parse input source [org.xml.sax.InputSource@1a71e88].
| 17:46:44,920 ERROR [STDERR] java.lang.NullPointerException
| 17:46:44,921 ERROR [STDERR] at java.util.Hashtable.put(Hashtable.java:396)
| 17:46:44,921 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.findAppenderByName(DOMConfigurator.java:141)
| 17:46:44,921 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.findAppenderByReference(DOMConfigurator.java:153)
| 17:46:44,922 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.parseChildrenOfLoggerElement(DOMConfigurator.java:415)
| 17:46:44,927 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.parseRoot(DOMConfigurator.java:384)
| 17:46:44,927 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.parse(DOMConfigurator.java:783)
| 17:46:44,927 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:666)
| 17:46:44,927 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:616)
| 17:46:44,927 ERROR [STDERR] at org.apache.log4j.xml.DOMConfigurator.doConfigure(DOMConfigurator.java:602)
| 17:46:44,927 ERROR [STDERR] at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:460)
| 17:46:44,928 ERROR [STDERR] at org.apache.log4j.LogManager.<clinit>(LogManager.java:113)
| 17:46:44,928 ERROR [STDERR] at org.apache.log4j.Logger.getLogger(Logger.java:85)
| 17:46:44,928 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 17:46:44,928 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 17:46:44,928 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,928 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,928 ERROR [STDERR] at org.apache.commons.logging.impl.Log4jProxy.<init>(Log4jProxy.java:132)
| 17:46:44,928 ERROR [STDERR] at org.apache.commons.logging.impl.Log4JLogger.<init>(Log4JLogger.java:39)
| 17:46:44,928 ERROR [STDERR] at sun.reflect.GeneratedConstructorAccessor14.newInstance(Unknown Source)
| 17:46:44,929 ERROR [STDERR] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
| 17:46:44,929 ERROR [STDERR] at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
| 17:46:44,929 ERROR [STDERR] at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:529)
| 17:46:44,929 ERROR [STDERR] at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:235)
| 17:46:44,929 ERROR [STDERR] at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:372)
| 17:46:44,929 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.getLogger(ContainerBase.java:380)
| 17:46:44,929 ERROR [STDERR] at org.apache.catalina.core.StandardContext.start(StandardContext.java:4090)
| 17:46:44,929 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
| 17:46:44,930 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
| 17:46:44,930 ERROR [STDERR] at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
| 17:46:44,930 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 17:46:44,930 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 17:46:44,930 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,930 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,930 ERROR [STDERR] at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
| 17:46:44,930 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
| 17:46:44,931 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:44,931 ERROR [STDERR] at org.apache.catalina.core.StandardContext.init(StandardContext.java:5116)
| 17:46:44,931 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 17:46:44,931 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 17:46:44,931 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,931 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,931 ERROR [STDERR] at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
| 17:46:44,931 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
| 17:46:44,932 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:44,932 ERROR [STDERR] at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:297)
| 17:46:44,932 ERROR [STDERR] at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:103)
| 17:46:44,932 ERROR [STDERR] at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:371)
| 17:46:44,932 ERROR [STDERR] at org.jboss.web.WebModule.startModule(WebModule.java:83)
| 17:46:44,932 ERROR [STDERR] at org.jboss.web.WebModule.startService(WebModule.java:61)
| 17:46:44,932 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| 17:46:44,932 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| 17:46:44,933 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| 17:46:44,933 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,933 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,933 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 17:46:44,933 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 17:46:44,933 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| 17:46:44,933 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 17:46:44,933 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:44,934 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| 17:46:44,934 ERROR [STDERR] at $Proxy0.start(Unknown Source)
| 17:46:44,934 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
| 17:46:44,934 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| 17:46:44,934 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,934 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,934 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 17:46:44,934 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 17:46:44,934 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| 17:46:44,935 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 17:46:44,935 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:44,935 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 17:46:44,935 ERROR [STDERR] at $Proxy92.start(Unknown Source)
| 17:46:44,935 ERROR [STDERR] at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:466)
| 17:46:44,956 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 17:46:44,956 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 17:46:44,956 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:44,956 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:44,956 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 17:46:44,956 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 17:46:44,956 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| 17:46:44,956 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 17:46:44,957 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| 17:46:44,957 ERROR [STDERR] at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
| 17:46:44,957 ERROR [STDERR] at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
| 17:46:45,030 ERROR [STDERR] at org.jboss.ws.server.WebServiceDeployer.start(WebServiceDeployer.java:117)
| 17:46:45,031 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
| 17:46:45,031 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
| 17:46:45,031 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 17:46:45,031 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 17:46:45,031 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:45,031 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 17:46:45,031 ERROR [STDERR] at $Proxy93.start(Unknown Source)
| 17:46:45,031 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
| 17:46:45,032 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
| 17:46:45,032 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
| 17:46:45,032 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor88.invoke(Unknown Source)
| 17:46:45,032 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 17:46:45,032 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
| 17:46:45,032 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 17:46:45,032 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 17:46:45,032 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| 17:46:45,032 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 17:46:45,033 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| 17:46:45,033 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 17:46:45,033 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 17:46:45,033 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 17:46:45,033 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 17:46:45,033 ERROR [STDERR] at $Proxy8.deploy(Unknown Source)
| 17:46:45,033 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| 17:46:45,034 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| 17:46:45,034 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| 17:46:45,034 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:274)
| 17:46:45,034 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:225)
| 17:46:45,568 INFO [STDOUT] 17:46:45,567 INFO [[/Kyle]] Set web app root system property: 'kyle' = [/opt/jboss-portal/jboss-portal-2.4.1/server/default/./tmp/deploy/tmp2364Kyle-exp.war/]
| 17:46:45,575 INFO [STDOUT] 17:46:45,575 INFO [[/Kyle]] Initializing Log4J from [/opt/jboss-portal/jboss-portal-2.4.1/server/default/./tmp/deploy/tmp2364Kyle-exp.war/WEB-INF/classes/log4j.properties]
| 17:46:45,659 INFO [STDOUT] Loading Spring root WebApplicationContext
| 17:47:12,505 INFO [STDOUT] Attempting to load [13] core plugins
| 17:47:14,187 INFO [STDOUT] Grails plug-in [i18n] with version [0.4.2] loaded successfully
| 17:47:14,264 INFO [STDOUT] Grails plug-in [quartz] with version [0.4.2] loaded successfully
| 17:47:14,476 INFO [STDOUT] Grails plug-in [core] with version [0.4.2] loaded successfully
| 17:47:14,546 INFO [STDOUT] Grails plug-in [domainClass] with version [0.4.2] loaded successfully
| 17:47:15,699 INFO [STDOUT] Grails plug-in [controllers] with version [0.4.2] loaded successfully
| 17:47:15,699 INFO [STDOUT] Attempting to load [0] user defined plugins
| 17:47:15,700 INFO [STDOUT] Grails plug-in [dataSource] with version [0.4.2] loaded successfully
| 17:47:15,700 INFO [STDOUT] Grails plug-in [codecs] with version [0.4.2] loaded successfully
| 17:47:15,700 INFO [STDOUT] Grails plug-in [hibernate] with version [0.4.2] loaded successfully
| 17:47:15,700 INFO [STDOUT] Grails plug-in [services] with version [0.4.2] loaded successfully
| 17:47:15,701 INFO [STDOUT] Grails plug-in [scaffolding] with version [0.4.2] loaded successfully
| 17:47:19,834 INFO [STDOUT] [RuntimeConfiguration] Configuring for environment: Production
| 17:47:23,215 INFO [STDOUT] Building new Hibernate SessionFactory
| 17:47:25,557 INFO [STDOUT] Neither 'urlMap' nor 'mappings' set on SimpleUrlHandlerMapping
| 17:47:25,562 INFO [STDOUT] 66 beans defined in application context [org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext;hashCode=18353341]
| 17:47:25,891 INFO [STDOUT] Using MessageSource [org.springframework.context.support.ReloadableResourceBundleMessageSource: basenames=[WEB-INF/grails-app/i18n/messages]]
| 17:47:25,892 INFO [STDOUT] Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@1b3d473]
| 17:47:30,983 INFO [STDOUT] [GrailsContextLoader] Grails application loaded.
| 17:47:31,505 INFO [STDOUT] Initializing filter 'grailsWebRequest'
| 17:47:31,518 INFO [STDOUT] Filter 'grailsWebRequest' configured successfully
| 17:47:31,581 INFO [STDOUT] Initializing servlet 'grails'
| 17:47:32,342 INFO [STDOUT] FrameworkServlet 'grails': initialization started
| 17:47:32,343 INFO [STDOUT] Loading WebApplicationContext for Spring FrameworkServlet 'grails'
| 17:47:32,481 INFO [STDOUT] Using context class [org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext] for servlet 'grails'
| 17:47:32,482 INFO [STDOUT] Using MultipartResolver [org.springframework.web.multipart.commons.CommonsMultipartResolver@19232f]
| 17:47:32,482 INFO [STDOUT] Using LocaleResolver [org.springframework.web.servlet.i18n.CookieLocaleResolver@5514f9]
| 17:47:32,551 INFO [STDOUT] Unable to locate ThemeResolver with name 'themeResolver': using default [org.springframework.web.servlet.theme.FixedThemeResolver@4a19e2]
| 17:47:32,606 INFO [STDOUT] No HandlerAdapters found in servlet 'grails': using default
| 17:47:32,621 INFO [STDOUT] Unable to locate RequestToViewNameTranslator with name 'viewNameTranslator': using default [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@1b23bb1]
| 17:47:32,624 INFO [STDOUT] FrameworkServlet 'grails': initialization completed in 282 ms
| 17:47:32,624 INFO [STDOUT] Servlet 'grails' configured successfully
| 17:47:32,694 INFO [DelegatingFilterProxy] Initializing filter 'charEncodingFilter'
| 17:47:32,699 INFO [DelegatingFilterProxy] Filter 'charEncodingFilter' configured successfully
| 17:47:32,700 INFO [GrailsWebRequestFilter] Initializing filter 'grailsWebRequest'
| 17:47:32,700 INFO [GrailsWebRequestFilter] Filter 'grailsWebRequest' configured successfully
| 17:47:33,202 ERROR [AbstractKernelController] Error installing to Start: name=portal:container=Portlet,id=/Kyle.KylePortlet state=Create
| org.jboss.portal.portlet.container.PortletInitializationException: The portlet KylePortlet threw an error during init
| at org.jboss.portal.portlet.container.PortletContainer.start(PortletContainer.java:289)
| at org.jboss.portal.portlet.container.PortletContainerAdapter.start(PortletContainerAdapter.java:72)
| at sun.reflect.GeneratedMethodAccessor165.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.joinpoint.plugins.reflect.ReflectMethodJoinPoint.dispatch(ReflectMethodJoinPoint.java:72)
| at org.jboss.kernel.plugins.dependency.KernelControllerContextActions.dispatchJoinPoint(KernelControllerContextActions.java:92)
| at org.jboss.kernel.plugins.dependency.KernelControllerContextActions$LifecycleAction.installAction(KernelControllerContextActions.java:452)
| at org.jboss.kernel.plugins.dependency.KernelControllerContextActions$KernelControllerContextAction.install(KernelControllerContextActions.java:147)
| at org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
| at org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:226)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:593)
| at org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:346)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:438)
| at org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:379)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:225)
| at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:151)
| at org.jboss.kernel.plugins.dependency.AbstractKernelController.install(AbstractKernelController.java:74)
| at org.jboss.portal.portlet.deployment.jboss.PortletAppDeployment.start(PortletAppDeployment.java:225)
| at org.jboss.portal.core.deployment.jboss.PortletAppDeployment.start(PortletAppDeployment.java:77)
| at org.jboss.portal.server.deployment.jboss.PortalDeploymentInfo$DeploymentContext.start(PortalDeploymentInfo.java:214)
| at org.jboss.portal.server.deployment.jboss.ServerDeployer.start(ServerDeployer.java:243)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy115.deploy(Unknown Source)
| at org.jboss.portal.server.deployment.jboss.ServerDeployer.deploy(ServerDeployer.java:297)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy88.deploy(Unknown Source)
| at org.jboss.portal.server.deployment.WebAppAdapter.deploy(WebAppAdapter.java:54)
| at org.jboss.portal.server.deployment.WebAppIntercepter.handleNotification(WebAppIntercepter.java:134)
| at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.notification.NotificationListenerProxy.invoke(NotificationListenerProxy.java:153)
| at $Proxy117.handleNotification(Unknown Source)
| at org.jboss.mx.util.JBossNotificationBroadcasterSupport.handleNotification(JBossNotificationBroadcasterSupport.java:127)
| at org.jboss.mx.util.JBossNotificationBroadcasterSupport.sendNotification(JBossNotificationBroadcasterSupport.java:108)
| at org.jboss.deployment.SubDeployerSupport.emitNotification(SubDeployerSupport.java:340)
| at org.jboss.deployment.SubDeployerSupport.start(SubDeployerSupport.java:308)
| at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:482)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
| at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
| at org.jboss.ws.server.WebServiceDeployer.start(WebServiceDeployer.java:117)
| at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
| at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy93.start(Unknown Source)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
| at sun.reflect.GeneratedMethodAccessor88.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy8.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:274)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:225)
| Caused by: java.lang.UnsupportedClassVersionError: Bad version number in .class file
| at java.lang.ClassLoader.defineClass1(Native Method)
| at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
| at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
| at org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLoader.java:1812)
| at org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.java:866)
| at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1319)
| at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
| at org.jboss.portal.portlet.container.PortletContainer.start(PortletContainer.java:245)
| ... 101 more
| 17:47:33,255 WARN [PortletAppDeployment] Failed to create instance KylePortletInstance of portlet /Kyle.KylePortlet because portlet /Kyle.KylePortlet is not available
|
|
Regards,
Yesudeep.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4023618#4023618
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4023618
19Â years, 1Â month
[Beginners Corner] - Is an application server the right tool?
by ailes
I'm new to the world of JBoss and application servers and I'm trying to determine whether this type of software is a good match for my needs.
Any feedback would be greatly appreciated.
I'm looking for an environment that can host user-defined services and provide common support functionality like control, logging, communications, persistence, etc. I know that JBoss provides this.
The question I don't have an answer for, however, is whether application servers are good tools for applications that are not web-based. The system I'm working on provides services to a large farm of machines. These services include job scheduling, machine communications and management, persistence of job results to a database (e.g. through Hibernate), etc.
This model seems quite a bit different that the typical JBoss usage scenarios I've seen thus far. The services in my system are often long-running and maintain state, for example, and typically run constantly in the background instead of on-demand in response to user requests.
So, is the application server concept appropriate in this case? Is there any good info available on the web that looks at the problem from this angle.
Thanks!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4023616#4023616
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4023616
19Â years, 1Â month