[JBoss Seam] - Re: selectOneMenu problem
by demetrio812
I updated the project and it works now!!
Sorry for all the time you lost following me...
another little question:
I have a component in application scope:
| <framework:entity-query name="linguaAll"
| entity-manager="#{entityManager}"
| ejbql="select lingua from Lingua lingua"
| order="Descrizione"
| scope="application">
| </framework:entity-query>
|
I putted in application because it doesn't change after startup...
If I use it in a selectOneMenu in this way:
| <h:selectOneMenu id="lingua" value="#{articoloHome.instance.lingua}" required="true">
| <s:selectItems value="#{linguaAll.resultList}" var="lingua" label="#{lingua.descrizione}"/>
| <s:convertEntity />
| </h:selectOneMenu>
|
It give me the "Value is not valid" error...
if I put the component in conversation scope it works, but I thought that application scope was fine coz it is longer than conversation scope, where do I wrong? and if application scope is bad how can I do to do not reload from DB at every new conversation?
Thanks again!
Demetrio Filocamo
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076761#4076761
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076761
18Â years, 8Â months
[Security & JAAS/JBoss] - Beginner's problems with ClientLoginModule
by tdemuth
Greetings!
I've got some problems with getting my JBoss-Client's login-mechanism working. I do the following: I have got a Swing-client, that shows a LoginDialog at startup. The user types in his username and password, the Jboss ClientLoginModule is used to copy that data to the server, where it has to be evaluated against a database (for test-purposes I'm using a UsersRolesLoginModule here at the moment).
But let's have a look into my code first:
This is the code I'm using for testing the login-procedure:
logger.debug("Login");
| LoginContext lc = new LoginContext("cube", new CubeCallbackHandler());
| lc.login();
|
| // Let's force JBoss AS to evaluate the login-data
| Context ctx = new InitialContext(jndi);
| TestSession tsBean = (TestSession)ctx.lookup("TestSessionBean/remote");
| tsBean.echo("Hallo!");
| logger.debug("Logged in as " + lc.getSubject().getPrincipals());
|
| logger.debug("Logging out.");
| lc.logout();
The TestSessionBean looks like this:
@Stateless
| @SecurityDomain("cube")
| @RolesAllowed("EMPLOYEE")
| public class TestSessionBean implements TestSession {
|
| /**
| * @see de.tobiasdemuth.cube.server.TestSession#echo(java.lang.String)
| */
| public String echo(String arg) {
| System.out.println("Echo: " + arg);
| return arg;
| }
|
| }
My client-side login.conf:
cube {
| org.jboss.security.ClientLoginModule required;
| };
And the server-side policy for the security-domain "cube":
<!-- The login used by the Cube-client -->
| <application-policy name="cube">
| <authentication>
| <login-module code="org.jboss.security.auth.spi.UsersRolesLoginModule" flag="required">
| </login-module>
| </authentication>
| </application-policy>
And finally what happens:
| 2007-08-22 13:17:15,031 - DEBUG (Starter.java:59) Login
| 2007-08-22 13:17:15,046 - TRACE (ClientLoginModule.java:103) Security domain: null
| 2007-08-22 13:17:15,046 - TRACE (ClientLoginModule.java:121) Enabling restore-login-identity mode
| 2007-08-22 13:17:15,046 - TRACE (ClientLoginModule.java:139) Begin login
| 2007-08-22 13:17:29,546 - TRACE (ClientLoginModule.java:195) Obtained login: tdemuth, credential.class: [C
| 2007-08-22 13:17:29,562 - TRACE (ClientLoginModule.java:213) End login
| 2007-08-22 13:17:29,562 - TRACE (ClientLoginModule.java:223) commit, subject=Betreff:
|
| 2007-08-22 13:17:29,562 - DEBUG (SecurityAssociation.java:143) Using ThreadLocal: false
| 2007-08-22 13:17:29,578 - TRACE (SecurityAssociation.java:460) pushSubjectContext, subject=Betreff:
| , sc=org.jboss.security.SecurityAssociation$SubjectContext@132ae7{principal=tdemuth,subject=6666040}
| 2007-08-22 13:17:29,750 - TRACE (SecurityAssociation.java:190) getPrincipal, principal=tdemuth
| Exception in thread "main" javax.ejb.EJBAccessException: Authentication failure
| at org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.handleGeneralSecurityException(Ejb3AuthenticationInterceptor.java:68)
| at org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:70)
| at org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.invoke(Ejb3AuthenticationInterceptor.java:106)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:46)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.stateless.StatelessContainer.dynamicInvoke(StatelessContainer.java:278)
| at org.jboss.aop.Dispatcher.invoke(Dispatcher.java:106)
| at org.jboss.aspects.remoting.AOPRemotingInvocationHandler.invoke(AOPRemotingInvocationHandler.java:82)
| at org.jboss.remoting.ServerInvoker.invoke(ServerInvoker.java:734)
| at org.jboss.remoting.transport.socket.ServerThread.processInvocation(ServerThread.java:560)
| at org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.java:369)
| at org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.java:165)
| at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:163)
| at org.jboss.remoting.Client.invoke(Client.java:1550)
| at org.jboss.remoting.Client.invoke(Client.java:530)
| at org.jboss.aspects.remoting.InvokeRemoteInterceptor.invoke(InvokeRemoteInterceptor.java:62)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.tx.ClientTxPropagationInterceptor.invoke(ClientTxPropagationInterceptor.java:61)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.security.SecurityClientInterceptor.invoke(SecurityClientInterceptor.java:53)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.remoting.IsLocalInterceptor.invoke(IsLocalInterceptor.java:72)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.stateless.StatelessRemoteProxy.invoke(StatelessRemoteProxy.java:103)
| at $Proxy0.echo(Unknown Source)
| at de.tobiasdemuth.cube.frontoffice.Starter.<init>(Starter.java:64)
| at de.tobiasdemuth.cube.frontoffice.Starter.main(Starter.java:118)
| at org.jboss.aspects.remoting.InvokeRemoteInterceptor.invoke(InvokeRemoteInterceptor.java:74)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.tx.ClientTxPropagationInterceptor.invoke(ClientTxPropagationInterceptor.java:61)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.security.SecurityClientInterceptor.invoke(SecurityClientInterceptor.java:53)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.remoting.IsLocalInterceptor.invoke(IsLocalInterceptor.java:72)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.stateless.StatelessRemoteProxy.invoke(StatelessRemoteProxy.java:103)
| at $Proxy0.echo(Unknown Source)
| at de.tobiasdemuth.cube.frontoffice.Starter.<init>(Starter.java:64)
| at de.tobiasdemuth.cube.frontoffice.Starter.main(Starter.java:118)
So, what's wrong?
kind regards
Tobias
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076759#4076759
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076759
18Â years, 8Â months
[JBoss Seam] - EntityManagerFactory not found in JNDI : java:/poctestEntity
by jbosspatni
Hi,
I have generated a crud application using Seam 2.0 beta on jboss 4.2GA.This was done using seam generate-entitites adn then deployed.I have a single file mysql-ds.xml which has teh multiple datasources configured.The contents of teh data source file generated were copied to this file.When i try accessing the application it gives me an error
EntityManagerFactory not found in JNDI : java:/poctestEntityManagerFactory
I had earlier tried to generate teh CRUD application using the Hibernate tools from the JBoss IDE but that also gave errors on deploying.
The following is teh stack trace
17:02:42,507 INFO [Contexts] starting up: org.jboss.seam.security.identity
17:02:42,507 INFO [Contexts] starting up: org.jboss.seam.web.session
17:02:42,538 ERROR [STDERR] Aug 22, 2007 5:02:42 PM com.sun.facelets.FaceletView
Handler handleRenderException
SEVERE: Error Rendering View[/home.xhtml]
java.lang.IllegalArgumentException: EntityManagerFactory not found in JNDI : jav
a:/poctestEntityManagerFactory
at org.jboss.seam.persistence.ManagedPersistenceContext.getEntityManager
FactoryFromJndiOrValueBinding(ManagedPersistenceContext.java:239)
at org.jboss.seam.persistence.ManagedPersistenceContext.initEntityManage
r(ManagedPersistenceContext.java:79)
at org.jboss.seam.persistence.ManagedPersistenceContext.getEntityManager
(ManagedPersistenceContext.java:107)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.seam.util.Reflections.invoke(Reflections.java:21)
at org.jboss.seam.util.Reflections.invokeAndWrap(Reflections.java:124)
at org.jboss.seam.Component.callComponentMethod(Component.java:1957)
at org.jboss.seam.Component.unwrap(Component.java:1983)
at org.jboss.seam.Component.getInstance(Component.java:1770)
at org.jboss.seam.Component.getInstance(Component.java:1723)
at org.jboss.seam.Component.getInstance(Component.java:1717)
at org.jboss.seam.framework.Controller.getComponentInstance(Controller.j
ava:258)
at org.jboss.seam.framework.PersistenceController.getPersistenceContext(
PersistenceController.java:20)
at org.jboss.seam.framework.EntityQuery.getEntityManager(EntityQuery.jav
a:120)
at org.jboss.seam.framework.EntityQuery.validate(EntityQuery.java:29)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.seam.util.Reflections.invoke(Reflections.java:21)
at org.jboss.seam.intercept.RootInvocationContext.proceed(RootInvocation
Context.java:31)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
Context.java:56)
at org.jboss.seam.transaction.RollbackInterceptor.aroundInvoke(RollbackI
nterceptor.java:31)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
Context.java:68)
at org.jboss.seam.transaction.TransactionInterceptor$1.work(TransactionI
nterceptor.java:38)
at org.jboss.seam.util.Work.workInTransaction(Work.java:39)
at org.jboss.seam.transaction.TransactionInterceptor.aroundInvoke(Transa
ctionInterceptor.java:32)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
Context.java:68)
at org.jboss.seam.core.MethodContextInterceptor.aroundInvoke(MethodConte
xtInterceptor.java:42)
at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocation
Context.java:68)
at org.jboss.seam.intercept.RootInterceptor.invoke(RootInterceptor.java:
106)
at org.jboss.seam.intercept.JavaBeanInterceptor.interceptInvocation(Java
BeanInterceptor.java:151)
at org.jboss.seam.intercept.JavaBeanInterceptor.invoke(JavaBeanIntercept
or.java:87)
at com.mydomain.poc.entity.HilosequencesList_$$_javassist_131.validate(H
ilosequencesList_$$_javassist_131.java)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.seam.util.Reflections.invoke(Reflections.java:21)
at org.jboss.seam.util.Reflections.invokeAndWrap(Reflections.java:124)
at org.jboss.seam.Component.callComponentMethod(Component.java:1957)
at org.jboss.seam.Component.callCreateMethod(Component.java:1880)
at org.jboss.seam.Component.newInstance(Component.java:1859)
at org.jboss.seam.Component.getInstance(Component.java:1756)
at org.jboss.seam.Component.getInstance(Component.java:1723)
at org.jboss.seam.Component.getInstance(Component.java:1717)
at org.jboss.seam.el.SeamELResolver.getValue(SeamELResolver.java:60)
at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:53)
at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELRe
solver.java:64)
at org.jboss.el.parser.AstIdentifier.getValue(AstIdentifier.java:44)
at org.jboss.el.parser.AstValue.getValue(AstValue.java:63)
at org.jboss.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:18
6)
at org.jboss.seam.core.Expressions$1.getValue(Expressions.java:112)
at org.jboss.seam.navigation.Param.getValueFromModel(Param.java:127)
at org.jboss.seam.navigation.Pages.getPageParameterValue(Pages.java:711)
at org.jboss.seam.navigation.Pages.getConvertedParameters(Pages.java:687
)
at org.jboss.seam.ui.component.UISeamCommandBase.getUrl(UISeamCommandBas
e.java:50)
at org.jboss.seam.ui.renderkit.LinkRendererBase.doEncodeBegin(LinkRender
erBase.java:26)
at org.jboss.seam.ui.util.cdk.RendererBase.encodeBegin(RendererBase.java
:79)
at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.jav
a:785)
at org.ajax4jsf.framework.renderer.RendererBase.renderChild(RendererBase
.java:280)
at org.richfaces.renderkit.html.ToolBarRendererBase.encodeChildren(ToolB
arRendererBase.java:81)
at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.
java:809)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:886)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:892)
at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.jav
a:577)
at org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapp
er.java:108)
at org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandle
r.java:233)
at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePha
se.java:106)
at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:251)
at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:206)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:83)
at org.jboss.seam.debug.hot.HotDeployFilter.doFilter(HotDeployFilter.jav
a:63)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:87)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:63)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:46)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.ajax4jsf.framework.ajax.xmlfilter.BaseXMLFilter.doXmlFilter(BaseX
MLFilter.java:127)
at org.ajax4jsf.framework.ajax.xmlfilter.BaseFilter.doFilter(BaseFilter.
java:277)
at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:40)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter
.java:69)
at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:140)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:206)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi
lter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
alve.java:230)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
alve.java:175)
at org.jboss.web.tomcat.
17:02:42,538 ERROR [STDERR] security.SecurityAssociationValve.invoke(SecurityAss
ociationValve.java:179)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authentica
torBase.java:433)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv
e.java:84)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
ava:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
ava:104)
at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedC
onnectionValve.java:156)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
ve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
a:241)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
:844)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
ss(Http11Protocol.java:580)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:44
7)
at java.lang.Thread.run(Thread.java:595)
Caused by: javax.naming.NameNotFoundException: poctestEntityManagerFactory not b
ound
at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
at org.jnp.server.NamingServer.lookup(NamingServer.java:296)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
at javax.naming.InitialContext.lookup(InitialContext.java:351)
at org.jboss.seam.persistence.ManagedPersistenceContext.getEntityManager
FactoryFromJndiOrValueBinding(ManagedPersistenceContext.java:235)
... 109 more
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076756#4076756
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076756
18Â years, 8Â months
[JBoss Portal] - Re: Exception : javax.faces.FacesException:
by tellarsrinivasprabhu
The server log when its started is as follows...
16:43:26,687 ERROR [STDERR] java.lang.IllegalArgumentException: Class org.jboss.portal.core.admin.ui.AdminPropertyResolver is no javax.faces.el.PropertyResolver
| 16:43:26,687 ERROR [STDERR] at org.apache.myfaces.config.FacesConfigurator.getApplicationObject(FacesConfigurator.java:511)
| 16:43:26,687 ERROR [STDERR] at org.apache.myfaces.config.FacesConfigurator.configureApplication(FacesConfigurator.java:435)
| 16:43:26,687 ERROR [STDERR] at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:130)
| 16:43:26,687 ERROR [STDERR] at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:63)
| 16:43:26,687 ERROR [STDERR] at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:46)
| 16:43:26,687 ERROR [STDERR] at org.jboss.portal.faces.loader.FacesLoaderServlet.initMyFaces(FacesLoaderServlet.java:181)
| 16:43:26,687 ERROR [STDERR] at org.jboss.portal.faces.loader.FacesLoaderServlet.init(FacesLoaderServlet.java:96)
| 16:43:26,687 ERROR [STDERR] at javax.servlet.GenericServlet.init(GenericServlet.java:211)
| 16:43:26,688 ERROR [STDERR] at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
| 16:43:26,688 ERROR [STDERR] at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:932)
| 16:43:26,688 ERROR [STDERR] at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3951)
| 16:43:26,688 ERROR [STDERR] at org.apache.catalina.core.StandardContext.start(StandardContext.java:4225)
| 16:43:26,688 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
| 16:43:26,688 ERROR [STDERR] at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
| 16:43:26,688 ERROR [STDERR] at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
| 16:43:26,688 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 16:43:26,689 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 16:43:26,689 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,689 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,689 ERROR [STDERR] at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
| 16:43:26,689 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
| 16:43:26,689 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,689 ERROR [STDERR] at org.apache.catalina.core.StandardContext.init(StandardContext.java:5052)
| 16:43:26,689 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 16:43:26,689 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 16:43:26,689 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,689 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,689 ERROR [STDERR] at org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
| 16:43:26,689 ERROR [STDERR] at org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:164)
| 16:43:26,689 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,689 ERROR [STDERR] at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:297)
| 16:43:26,689 ERROR [STDERR] at org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:103)
| 16:43:26,689 ERROR [STDERR] at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:371)
| 16:43:26,689 ERROR [STDERR] at org.jboss.web.WebModule.startModule(WebModule.java:83)
| 16:43:26,690 ERROR [STDERR] at org.jboss.web.WebModule.startService(WebModule.java:61)
| 16:43:26,690 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| 16:43:26,690 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| 16:43:26,690 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| 16:43:26,690 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,690 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,690 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 16:43:26,690 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 16:43:26,690 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| 16:43:26,690 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 16:43:26,690 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,690 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| 16:43:26,690 ERROR [STDERR] at $Proxy0.start(Unknown Source)
| 16:43:26,690 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
| 16:43:26,690 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| 16:43:26,690 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,690 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,690 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 16:43:26,690 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 16:43:26,691 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| 16:43:26,691 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 16:43:26,691 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,691 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 16:43:26,691 ERROR [STDERR] at $Proxy179.start(Unknown Source)
| 16:43:26,691 ERROR [STDERR] at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:466)
| 16:43:26,691 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 16:43:26,691 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 16:43:26,691 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,691 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,691 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 16:43:26,691 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 16:43:26,691 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| 16:43:26,691 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 16:43:26,691 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| 16:43:26,691 ERROR [STDERR] at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
| 16:43:26,691 ERROR [STDERR] at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
| 16:43:26,692 ERROR [STDERR] at org.jboss.ws.integration.jboss.DeployerInterceptor.start(DeployerInterceptor.java:92)
| 16:43:26,692 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
| 16:43:26,692 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
| 16:43:26,692 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 16:43:26,692 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 16:43:26,692 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,692 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 16:43:26,692 ERROR [STDERR] at $Proxy180.start(Unknown Source)
| 16:43:26,692 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| 16:43:26,692 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| 16:43:26,692 ERROR [STDERR] at org.jboss.deployment.MainDeployer.addDeployer(MainDeployer.java:368)
| 16:43:26,692 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 16:43:26,692 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 16:43:26,692 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,692 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,692 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 16:43:26,692 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 16:43:26,692 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| 16:43:26,692 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 16:43:26,693 ERROR [STDERR] at $Proxy177.addDeployer(Unknown Source)
| 16:43:26,693 ERROR [STDERR] at org.jboss.web.tomcat.tc5.Tomcat5.startService(Tomcat5.java:506)
| 16:43:26,693 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| 16:43:26,693 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| 16:43:26,693 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| 16:43:26,693 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,693 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| 16:43:26,693 ERROR [STDERR] at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
| 16:43:26,693 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptor.invokeNext(SubDeployerInterceptor.java:124)
| 16:43:26,693 ERROR [STDERR] at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:109)
| 16:43:26,694 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 16:43:26,694 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 16:43:26,694 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,694 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| 16:43:26,694 ERROR [STDERR] at $Proxy0.start(Unknown Source)
| 16:43:26,694 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
| 16:43:26,694 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:435)
| 16:43:26,694 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| 16:43:26,694 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,694 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,694 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 16:43:26,694 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 16:43:26,694 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| 16:43:26,694 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 16:43:26,694 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,694 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 16:43:26,694 ERROR [STDERR] at $Proxy4.start(Unknown Source)
| 16:43:26,694 ERROR [STDERR] at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| 16:43:26,694 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| 16:43:26,694 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| 16:43:26,695 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| 16:43:26,695 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor24.invoke(Unknown Source)
| 16:43:26,695 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,695 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,695 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 16:43:26,695 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 16:43:26,695 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| 16:43:26,695 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 16:43:26,695 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| 16:43:26,695 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 16:43:26,695 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 16:43:26,695 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,695 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 16:43:26,695 ERROR [STDERR] at $Proxy8.deploy(Unknown Source)
| 16:43:26,695 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| 16:43:26,695 ERROR [STDERR] at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| 16:43:26,695 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| 16:43:26,695 ERROR [STDERR] at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| 16:43:26,695 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| 16:43:26,696 ERROR [STDERR] at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| 16:43:26,696 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| 16:43:26,696 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,696 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,696 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 16:43:26,696 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 16:43:26,696 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| 16:43:26,696 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 16:43:26,696 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,696 ERROR [STDERR] at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| 16:43:26,696 ERROR [STDERR] at $Proxy0.start(Unknown Source)
| 16:43:26,696 ERROR [STDERR] at org.jboss.system.ServiceController.start(ServiceController.java:417)
| 16:43:26,696 ERROR [STDERR] at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| 16:43:26,696 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,696 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,696 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 16:43:26,696 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 16:43:26,696 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| 16:43:26,696 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 16:43:26,696 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,697 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 16:43:26,697 ERROR [STDERR] at $Proxy4.start(Unknown Source)
| 16:43:26,697 ERROR [STDERR] at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| 16:43:26,697 ERROR [STDERR] at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| 16:43:26,697 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| 16:43:26,697 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| 16:43:26,697 ERROR [STDERR] at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
| 16:43:26,697 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| 16:43:26,697 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| 16:43:26,697 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| 16:43:26,697 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
| 16:43:26,697 ERROR [STDERR] at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| 16:43:26,697 ERROR [STDERR] at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| 16:43:26,697 ERROR [STDERR] at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| 16:43:26,697 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 16:43:26,697 ERROR [STDERR] at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| 16:43:26,697 ERROR [STDERR] at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| 16:43:26,697 ERROR [STDERR] at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| 16:43:26,697 ERROR [STDERR] at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| 16:43:26,697 ERROR [STDERR] at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| 16:43:26,698 ERROR [STDERR] at $Proxy5.deploy(Unknown Source)
| 16:43:26,698 ERROR [STDERR] at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| 16:43:26,698 ERROR [STDERR] at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| 16:43:26,698 ERROR [STDERR] at org.jboss.Main.boot(Main.java:200)
| 16:43:26,698 ERROR [STDERR] at org.jboss.Main$1.run(Main.java:490)
| 16:43:26,698 ERROR [STDERR] at java.lang.Thread.run(Thread.java:619)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076752#4076752
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076752
18Â years, 8Â months
[Clustering/JBoss] - Re: Version conflict of packets in jgroup
by dileepm
Well i even changed multi cast addr and port in cluster-service.xml in both machines but i still get the following error.
16:41:28,828 WARN [UDP] packet from 192.168.1.6:3431 has different version (12338) from ours (23). This may cause problems
16:41:28,828 ERROR [UDP] failed unmarshalling message
java.io.EOFException
at java.io.DataInputStream.readFully(DataInputStream.java:180)
at org.jgroups.stack.IpAddress.readFrom(IpAddress.java:268)
at org.jgroups.Message.readFrom(Message.java:606)
at org.jgroups.protocols.TP.bufferToMessage(TP.java:982)
at org.jgroups.protocols.TP.handleIncomingPacket(TP.java:838)
at org.jgroups.protocols.TP.access$200(TP.java:44)
at org.jgroups.protocols.TP$IncomingPacketHandler.run(TP.java:1290)
at java.lang.Thread.run(Thread.java:619)
"bstansberry(a)jboss.com" wrote : On your network you have a process using a different version of JGroups. Find that process and change its version to match yours, or change your multicast address and port so your channel doesn't see the packets from the other process.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076751#4076751
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076751
18Â years, 8Â months
[JBoss Seam] - Re: Finding an entity using a non-@Id unique identifier
by uke
Thanks for your response!
I tried overriding the find()-method with the following:
| @Override
| public Employee find() {
| EntityQuery eQuery = (EntityQuery)Component.getInstance("employeeIdByEmploymentNumber");
| Long l = null;
| if(eQuery.getResultCount() > 0)
| l = (Long)eQuery.getSingleResult();
|
| getEntityManager().joinTransaction();
| Employee result = getEntityManager().find( getEntityClass(), (l == null ? getId() : l));
| if (result==null) result = handleNotFound();
| return result;
| }
|
I then aimed the commandButton towards /viewEmployee.xhtml, and added to the -tag for it, but it gives me LazyInitializationException and TransientObjectException.
I wasn't really sure on what to do with the overridden find method, since I'm not really sure why my session is closed, and why it works when I reload the page.
Thanks
uke
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076750#4076750
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4076750
18Â years, 8Â months