0 Replies Latest reply on Jan 20, 2009 10:29 AM by thiagomontovaneli

    javax.naming.NamingException: Could not dereference object

    thiagomontovaneli

      Hi,

      I am developing a EJB client, this client is running in a server Jboos 5 localhost. And o EJB is in other server. So, I do:

      Corporativo c = null;
      try {
       Properties properties = new Properties();
       properties.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
       properties.put(Context.URL_PKG_PREFIXES, "org.jboss.naming:org.jnp.interfaces");
       properties.put(Context.PROVIDER_URL, "jnp://10.160.16.29:1099");
      
       Context ctx = new InitialContext(properties);
      
       Object ref = ctx.lookup("CorporativoEJB/CorporativoEJB/home");
      
       Object object = PortableRemoteObject.narrow(ref,CorporativoHome.class);
      
       CorporativoHome corporativoHome = (CorporativoHome) object;
      
       c = corporativoHome.create();
       List<UF> temp = c.carregaUFS();
       this.ufList = c.carregaUFS(temp);
       } catch (Exception ex) {
       ex.printStackTrace();
       }
      


      And the error happens:



      12:22:15,348 ERROR [STDERR] javax.naming.NamingException: Could not dereference object [Root exception is java.lang.reflect.UndeclaredThrowableException]
      12:22:15,348 ERROR [STDERR] at org.jnp.interfaces.NamingContext.getObjectInstanceWrapFailure(NamingContext.java:1463)
      12:22:15,348 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:809)
      12:22:15,348 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:673)
      12:22:15,348 ERROR [STDERR] at javax.naming.InitialContext.lookup(Unknown Source)
      12:22:15,364 ERROR [STDERR] at demo.CorporativoCodebehind.getUfList(CorporativoCodebehind.java:51)
      12:22:15,364 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      12:22:15,364 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      12:22:15,364 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
      12:22:15,379 ERROR [STDERR] at javax.el.BeanELResolver.getValue(BeanELResolver.java:62)
      12:22:15,379 ERROR [STDERR] at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:53)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72)
      12:22:15,379 ERROR [STDERR] at org.apache.el.parser.AstValue.getValue(AstValue.java:118)
      12:22:15,379 ERROR [STDERR] at org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:186)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.el.JspValueExpression.getValue(JspValueExpression.java:101)
      12:22:15,379 ERROR [STDERR] at javax.faces.component.UISelectItems.getValue(UISelectItems.java:141)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.RenderKitUtils.getSelectItems(RenderKitUtils.java:289)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.html_basic.MenuRenderer.renderSelect(MenuRenderer.java:814)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.html_basic.MenuRenderer.encodeEnd(MenuRenderer.java:280)
      12:22:15,379 ERROR [STDERR] at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:861)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:242)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:180)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:127)
      12:22:15,379 ERROR [STDERR] at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:837)
      12:22:15,379 ERROR [STDERR] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:930)
      12:22:15,379 ERROR [STDERR] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:110)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
      12:22:15,379 ERROR [STDERR] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:444)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:382)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:310)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:696)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:667)
      12:22:15,379 ERROR [STDERR] at org.apache.jsp.index_jsp._jspService(index_jsp.java:63)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      12:22:15,379 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
      12:22:15,379 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
      12:22:15,379 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
      12:22:15,379 ERROR [STDERR] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:601)
      12:22:15,379 ERROR [STDERR] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
      12:22:15,379 ERROR [STDERR] at java.lang.Thread.run(Unknown Source)
      12:22:15,379 ERROR [STDERR] Caused by: java.lang.reflect.UndeclaredThrowableException
      12:22:15,379 ERROR [STDERR] at $Proxy96.createProxyHome(Unknown Source)
      12:22:15,379 ERROR [STDERR] at org.jboss.ejb3.proxy.objectfactory.session.SessionProxyObjectFactory.createProxy(SessionProxyObjectFactory.java:101)
      12:22:15,379 ERROR [STDERR] at org.jboss.ejb3.proxy.objectfactory.session.stateless.StatelessSessionProxyObjectFactory.getProxy(StatelessSessionProxyObjectFactory.java:79)
      12:22:15,379 ERROR [STDERR] at org.jboss.ejb3.proxy.objectfactory.ProxyObjectFactory.getObjectInstance(ProxyObjectFactory.java:156)
      12:22:15,379 ERROR [STDERR] at javax.naming.spi.NamingManager.getObjectInstance(Unknown Source)
      12:22:15,379 ERROR [STDERR] at org.jnp.interfaces.NamingContext.getObjectInstance(NamingContext.java:1438)
      12:22:15,379 ERROR [STDERR] at org.jnp.interfaces.NamingContext.getObjectInstanceWrapFailure(NamingContext.java:1455)
      12:22:15,379 ERROR [STDERR] ... 66 more
      12:22:15,379 ERROR [STDERR] Caused by: java.lang.ClassNotFoundException: br.gov.es.sefaz.corporativo.ejb.CorporativoHome
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.serialization.ClassLoaderUtility.loadClass(ClassLoaderUtility.java:103)
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.loading.RemotingClassLoader.loadClass(RemotingClassLoader.java:86)
      12:22:15,379 ERROR [STDERR] at java.lang.ClassLoader.loadClassInternal(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.lang.Class.forName0(Native Method)
      12:22:15,379 ERROR [STDERR] at java.lang.Class.forName(Unknown Source)
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.loading.ObjectInputStreamWithClassLoader.resolveProxyClass(ObjectInputStreamWithClassLoader.java:250)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readProxyDesc(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readClassDesc(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readObject0(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readObject(Unknown Source)
      12:22:15,379 ERROR [STDERR] at org.jboss.aop.joinpoint.InvocationResponse.readExternal(InvocationResponse.java:119)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readExternalData(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readObject0(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.defaultReadFields(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readSerialData(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readObject0(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.io.ObjectInputStream.readObject(Unknown Source)
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.serialization.impl.java.JavaSerializationManager.receiveObjectVersion2_2(JavaSerializationManager.java:238)
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.serialization.impl.java.JavaSerializationManager.receiveObject(JavaSerializationManager.java:138)
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.marshal.serializable.SerializableUnMarshaller.read(SerializableUnMarshaller.java:123)
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.transport.socket.MicroSocketClientInvoker.versionedRead(MicroSocketClientInvoker.java:1215)
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.transport.socket.MicroSocketClientInvoker.transport(MicroSocketClientInvoker.java:845)
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:160)
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.Client.invoke(Client.java:1708)
      12:22:15,379 ERROR [STDERR] at org.jboss.remoting.Client.invoke(Client.java:612)
      12:22:15,379 ERROR [STDERR] at org.jboss.aspects.remoting.InvokeRemoteInterceptor.invoke(InvokeRemoteInterceptor.java:60)
      12:22:15,379 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
      12:22:15,379 ERROR [STDERR] at org.jboss.ejb3.proxy.remoting.IsLocalProxyFactoryInterceptor.invoke(IsLocalProxyFactoryInterceptor.java:72)
      12:22:15,379 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
      12:22:15,379 ERROR [STDERR] at org.jboss.aspects.remoting.PojiProxy.invoke(PojiProxy.java:62)
      12:22:15,379 ERROR [STDERR] at $Proxy96.createProxyHome(Unknown Source)
      12:22:15,379 ERROR [STDERR] at org.jboss.ejb3.proxy.objectfactory.session.SessionProxyObjectFactory.createProxy(SessionProxyObjectFactory.java:101)
      12:22:15,379 ERROR [STDERR] at org.jboss.ejb3.proxy.objectfactory.session.stateless.StatelessSessionProxyObjectFactory.getProxy(StatelessSessionProxyObjectFactory.java:79)
      12:22:15,379 ERROR [STDERR] at org.jboss.ejb3.proxy.objectfactory.ProxyObjectFactory.getObjectInstance(ProxyObjectFactory.java:156)
      12:22:15,379 ERROR [STDERR] at javax.naming.spi.NamingManager.getObjectInstance(Unknown Source)
      12:22:15,379 ERROR [STDERR] at org.jnp.interfaces.NamingContext.getObjectInstance(NamingContext.java:1438)
      12:22:15,379 ERROR [STDERR] at org.jnp.interfaces.NamingContext.getObjectInstanceWrapFailure(NamingContext.java:1455)
      12:22:15,379 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:809)
      12:22:15,379 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:673)
      12:22:15,379 ERROR [STDERR] at javax.naming.InitialContext.lookup(Unknown Source)
      12:22:15,379 ERROR [STDERR] at demo.CorporativoCodebehind.getUfList(CorporativoCodebehind.java:51)
      12:22:15,379 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      12:22:15,379 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      12:22:15,379 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      12:22:15,379 ERROR [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
      12:22:15,379 ERROR [STDERR] at javax.el.BeanELResolver.getValue(BeanELResolver.java:62)
      12:22:15,379 ERROR [STDERR] at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:53)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72)
      12:22:15,379 ERROR [STDERR] at org.apache.el.parser.AstValue.getValue(AstValue.java:118)
      12:22:15,379 ERROR [STDERR] at org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:186)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.el.JspValueExpression.getValue(JspValueExpression.java:101)
      12:22:15,379 ERROR [STDERR] at javax.faces.component.UISelectItems.getValue(UISelectItems.java:141)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.RenderKitUtils.getSelectItems(RenderKitUtils.java:289)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.html_basic.MenuRenderer.renderSelect(MenuRenderer.java:814)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.html_basic.MenuRenderer.encodeEnd(MenuRenderer.java:280)
      12:22:15,379 ERROR [STDERR] at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:861)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:242)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:180)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:127)
      12:22:15,379 ERROR [STDERR] at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:837)
      12:22:15,379 ERROR [STDERR] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:930)
      12:22:15,379 ERROR [STDERR] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:933)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:266)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:197)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:110)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
      12:22:15,379 ERROR [STDERR] at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
      12:22:15,379 ERROR [STDERR] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:444)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:382)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:310)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:696)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:667)
      12:22:15,379 ERROR [STDERR] at org.apache.jsp.index_jsp._jspService(index_jsp.java:63)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      12:22:15,379 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
      12:22:15,379 ERROR [STDERR] at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
      12:22:15,379 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      12:22:15,379 ERROR [STDERR] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      12:22:15,379 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
      12:22:15,379 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
      12:22:15,379 ERROR [STDERR] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:601)
      12:22:15,379 ERROR [STDERR] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
      12:22:15,379 ERROR [STDERR] at java.lang.Thread.run(Unknown Source)
      12:22:15,379 ERROR [STDERR] at org.jboss.aspects.remoting.InvokeRemoteInterceptor.invoke(InvokeRemoteInterceptor.java:72)
      12:22:15,379 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
      12:22:15,379 ERROR [STDERR] at org.jboss.ejb3.proxy.remoting.IsLocalProxyFactoryInterceptor.invoke(IsLocalProxyFactoryInterceptor.java:72)
      12:22:15,379 ERROR [STDERR] at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:102)
      12:22:15,379 ERROR [STDERR] at org.jboss.aspects.remoting.PojiProxy.invoke(PojiProxy.java:62)
      12:22:15,379 ERROR [STDERR] ... 73 more
      
      


      Thanks.