[JBoss Seam] - Re: How to impliment a Paged + Sorted DataTable (session) wi
by antispart
"norman.richards(a)jboss.com" wrote : Maybe you could try a page action to refresh the data?
Well, this would actually work great.
Is there a way to refresh a Page scoped list in an action method?
| private List list;
|
| @Factory(value="list", scope=ScopeType.PAGE)
| public List<Registration> getlist() {
| query();
| return list;
| }
|
| public String sort()
| query();
| return null; // reRender table only
| }
|
Now, everything works great, it sorts properly, Page scope is working as expected, etc, except:
I can't outject a new value to Page scope in an Action method (or at least I dont know how to). When sort() is called, it sorts the list properly and sets the list property to the correctly sorted list but this isnt pushed out to page scope. Maybe this is because I'm returning null (the page should not be redisplayed, only a specific outputPanel should be reRendered). If I return a string then it's fine, the new data outjected to Page scope.
So, I guess my question is is there a way to refresh the Page scoped value from an action method?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986599#3986599
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3986599
19Â years, 7Â months
[JBoss Seam] - Problem calling SFSB
by diablo341
I'm stuck and need help. I've got a simple page that has a panelGrid backed by an entity bean. When the page first loads, i'm assuming the entity bean is created (in the request context) and the default values are displayed. I have a commandButton that calls a method on my SFSB to retrieve a particular entity. The entity is annotated with @Out, but my page reloads with the same default values. How do I know the SFSB is even being called? I see that it's loaded during startup via the deployment scanner. I've been banging my head since last night.
Entity bean:
package com.myco.workforce;
|
| import java.io.Serializable;
| import java.util.Date;
|
| import javax.persistence.*;
|
| import org.jboss.seam.annotations.Name;
|
| @Entity
| @Name("revModel")
| @Table(name="RevenuePlanningModel", uniqueConstraints = {@UniqueConstraint(columnNames={"profitCenterId","startingQuarter","startingYear"})})
| public class RevenuePlanningModel implements Serializable {
| private long id;
| private long sapProfilingId;
| private Date lastModified;
| private String profitCenterId;
| private short startingQuarter;
| private short startingYear;
| private long plannedPersonnelPriorYear = 41560l;
| private long plannedPersonnel1 = 10000l;
| private long plannedPersonnel2;
| private long plannedPersonnel3;
| private long plannedPersonnel4;
| private long plannedPersonnel5;
| private long plannedPersonnel6;
| private double revenuePriorYear = 12158412;
| private double revenue1;
| private double revenue2;
| private double revenue3;
| private double revenue4;
| private double revenue5;
| private double revenue6;
SFSB:
package com.myco.workforce;
|
| import static javax.persistence.PersistenceContextType.EXTENDED;
|
| import javax.ejb.Remove;
| import javax.ejb.Stateful;
| import javax.persistence.EntityManager;
| import javax.persistence.PersistenceContext;
|
| import org.jboss.seam.annotations.Begin;
| import org.jboss.seam.annotations.Destroy;
| import org.jboss.seam.annotations.End;
| import org.jboss.seam.annotations.In;
| import org.jboss.seam.annotations.Logger;
| import org.jboss.seam.annotations.Name;
| import org.jboss.seam.annotations.Out;
| import org.jboss.seam.core.Events;
| import org.jboss.seam.core.FacesMessages;
| import org.jboss.seam.log.Log;
|
| @Stateful
| @Name("revPlan")
| //@LoggedIn
| public class RevenuePlanningAction implements RevenuePlanning {
|
| @PersistenceContext(type=EXTENDED)
| private EntityManager em;
|
| /*
| @In
| private User user;
| */
|
| @In(required=false) @Out
| private RevenuePlanningModel revModel;
|
| @In(create=true)
| private FacesMessages facesMessages;
|
| @In(create=true)
| private Events events;
|
| @Logger
| private Log log;
|
| @Begin
| public void getRevenuePlanningModel() {
| revModel = (RevenuePlanningModel) em.createQuery(
| "select r from revenueplanningmodel r where r.id=:id")
| .setParameter("id", 1)
| .getSingleResult();
| //revModel = em.find(RevenuePlanningModel.class, 1);
| }
|
| @End
| public String saveRevenuePlanningModel() {
| em.persist(revModel);
| }
|
| @End
| public String deleteRevenuePlanningModel() {
| return null;
| }
|
| @End
| public String cancel() {
| return null;
| }
xhtml page:
<div class="section">
| <h:form>
| <h:panelGrid columns="9">
| <h:outputLabel styleClass="entry">
| <h:outputText value=""/>
| </h:outputLabel>
| <h:outputLabel styleClass="entry">
| <h:outputText value="PY"/>
| </h:outputLabel>
| <h:outputLabel styleClass="entry">
| <h:outputText value="Q1"/>
| </h:outputLabel>
| <h:outputLabel styleClass="entry">
| <h:outputText value="Q2"/>
| </h:outputLabel>
| <h:outputText value="Planned Personnel"/>
| <h:outputText value="#{revModel.plannedPersonnelPriorYear}">
| <f:convertNumber pattern="#,###,##0"/>
| </h:outputText>
| <h:inputText id="plannedPersonnel1" value="#{revModel.plannedPersonnel1}" required="true">
| <f:convertNumber pattern="#,###,##0"/>
| </h:inputText>
| <h:inputText id="plannedPersonnel2" value="#{revModel.plannedPersonnel2}" required="true">
| <f:convertNumber pattern="#,###,##0"/>
| </h:inputText>
| <h:outputText value="Revenue"/>
| <h:inputText id="revenuePriorYear" value="#{revModel.revenuePriorYear}" required="true">
| <f:convertNumber pattern="#,###,##0"/>
| </h:inputText>
| <h:inputText id="revenue1" value="#{revModel.revenue1}" required="true">
| <f:convertNumber pattern="#,###,##0"/>
| </h:inputText>
| <h:inputText id="revenue2" value="#{revModel.revenue2}" required="true">
| <f:convertNumber pattern="#,###,##0"/>
| </h:inputText>
| </h:panelGrid>
| <div class="entry errors">
| <h:messages globalOnly="true"/>
| </div>
| <div class="input">
| <h:commandButton value="Proceed" action="#{revPlan.getRevenuePlanningModel}" class="button"/>Â
| <h:commandButton value="Save" action="#{revPlan.saveRevenuePlanningModel}" class="button"/>
| </div>
| </h:form>
| </div>
Note, I'm working off of the Booking app example, so my setup is sound and I'm using a lot of existing framework.
I appreciate the help.
John
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986597#3986597
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3986597
19Â years, 7Â months
[JNDI/Naming/Network] - Recent Windows update might have broke my jboss - JNDI erro
by bmcgovern
Lastnight windoz updated my machine. Jboss was workign perfectly last night.. now.. many many errors related to JNDI .. snippet pasted below. Im at a stand still can anyone help?
| =========================================================================
|
| JBoss Bootstrap Environment
|
| JBOSS_HOME: c:\Program Files\jboss-portal-2.4.0
|
| JAVA: /cygdrive/c/Program Files/Java/jdk1.5.0_06/bin/java
|
| JAVA_OPTS: -server -Xms128m -Xmx512m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dprogram.name=run.sh
|
| CLASSPATH: c:\Program Files\jboss-portal-2.4.0\bin\run.jar;c:\Program Files\Java\jdk1.5.0_06\lib\tools.jar
|
| =========================================================================
|
| 11:18:19,500 INFO [Server] Starting JBoss (MX MicroKernel)...
| 11:18:19,515 INFO [Server] Release ID: JBoss [Zion] 4.0.4.GA (build: CVSTag=JBoss_4_0_4_GA date=200605151000)
| 11:18:19,515 INFO [Server] Home Dir: C:\Program Files\jboss-portal-2.4.0
| 11:18:19,515 INFO [Server] Home URL: file:/C:/Program Files/jboss-portal-2.4.0/
| 11:18:19,515 INFO [Server] Patch URL: null
| 11:18:19,515 INFO [Server] Server Name: default
| 11:18:19,515 INFO [Server] Server Home Dir: C:\Program Files\jboss-portal-2.4.0\server\default
| 11:18:19,515 INFO [Server] Server Home URL: file:/C:/Program Files/jboss-portal-2.4.0/server/default/
| 11:18:19,515 INFO [Server] Server Log Dir: C:\Program Files\jboss-portal-2.4.0\server\default\log
| 11:18:19,515 INFO [Server] Server Temp Dir: C:\Program Files\jboss-portal-2.4.0\server\default\tmp
| 11:18:19,515 INFO [Server] Root Deployment Filename: jboss-service.xml
| 11:18:20,375 INFO [ServerInfo] Java version: 1.5.0_06,Sun Microsystems Inc.
| 11:18:20,375 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.5.0_06-b05,Sun Microsystems Inc.
| 11:18:20,375 INFO [ServerInfo] OS-System: Windows 2000 5.0,x86
| 11:18:21,484 INFO [Server] Core system initialized
| 11:18:27,140 INFO [WebService] Using RMI server codebase: http://BERYLLIUM2:8083/
| 11:18:27,171 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml
| 11:18:28,015 WARN [ServiceController] Problem starting service jboss:service=Naming
| java.rmi.server.ExportException: Port already in use: 1098; nested exception is:
| java.net.BindException: Address already in use: JVM_Bind
| at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:243)
| at sun.rmi.transport.tcp.TCPTransport.exportObject(TCPTransport.java:178)
| at sun.rmi.transport.tcp.TCPEndpoint.exportObject(TCPEndpoint.java:382)
| at sun.rmi.transport.LiveRef.exportObject(LiveRef.java:116)
| at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:180)
| at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:293)
| at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:256)
| at org.jnp.server.Main.initJnpInvoker(Main.java:314)
| at org.jnp.server.Main.start(Main.java:277)
| at org.jboss.naming.NamingService.startService(NamingService.java:236)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.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.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| 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 $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| 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 org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:755)
| 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 $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:464)
| at java.lang.Thread.run(Thread.java:595)
| Caused by: java.net.BindException: Address already in use: JVM_Bind
| at java.net.PlainSocketImpl.socketBind(Native Method)
| at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
| at java.net.ServerSocket.bind(ServerSocket.java:319)
| at java.net.ServerSocket.<init>(ServerSocket.java:185)
| at org.jboss.net.sockets.DefaultSocketFactory.createServerSocket(DefaultSocketFactory.java:120)
| at org.jboss.net.sockets.DefaultSocketFactory.createServerSocket(DefaultSocketFactory.java:95)
| at sun.rmi.transport.tcp.TCPEndpoint.newServerSocket(TCPEndpoint.java:622)
| at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:231)
| ... 61 more
| 11:18:36,984 INFO [AspectDeployer] Deployed AOP: file:/C:/Program Files/jboss-portal-2.4.0/server/default/deploy/jboss-portal.sar/portal-aop.xml
| 11:18:46,296 INFO [Embedded] Catalina naming disabled
| 11:18:46,390 INFO [ClusterRuleSetFactory] Unable to find a cluster rule set in the classpath. Will load the default rule set.
| 11:18:46,406 INFO [ClusterRuleSetFactory] Unable to find a cluster rule set in the classpath. Will load the default rule set.
| 11:18:47,515 INFO [Http11BaseProtocol] Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
| 11:18:47,531 INFO [Catalina] Initialization processed in 1125 ms
| 11:18:47,531 INFO [StandardService] Starting service jboss.web
| 11:18:47,531 INFO [StandardEngine] Starting Servlet Engine: Apache Tomcat/5.5.17
| 11:18:47,609 INFO [StandardHost] XML validation disabled
| 11:18:47,687 INFO [Catalina] Server startup in 156 ms
| 11:18:47,953 INFO [TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/http-invoker.sar/invoker.war/
| 11:18:48,171 WARN [ServiceController] Problem starting service jboss.web.deployment:war=invoker.war,id=1948721705
| org.jboss.deployment.DeploymentException: Error during deploy; - nested throwable: (javax.naming.NameNotFoundException: comp not bound)
| at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:380)
| at org.jboss.web.WebModule.startModule(WebModule.java:83)
| at org.jboss.web.WebModule.startService(WebModule.java:61)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.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.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.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor9.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.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 $Proxy92.start(Unknown Source)
| at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:466)
| 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.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.addDeployer(MainDeployer.java:368)
| 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)
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986596#3986596
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3986596
19Â years, 7Â months
[JBoss Seam] - NPE in destroyNestedContexts()
by emsa
This should probably go in Jira, but jira doesn't like me right now so here goes:
I get this:
| java.lang.NullPointerException
| at org.jboss.seam.core.Manager.destroyNestedContexts(Manager.java:484)
| at org.jboss.seam.core.Manager.removeCurrentConversationAndDestroyNestedContexts(Manager.java:476)
| at org.jboss.seam.core.Manager.discardTemporaryConversation(Manager.java:455)
| at org.jboss.seam.core.Manager.storeConversation(Manager.java:396)
| at org.jboss.seam.jsf.AbstractSeamPhaseListener.storeAnyConversationContext(AbstractSeamPhaseListener.java:74)
| at org.jboss.seam.jsf.SeamStateManager.saveSerializedView(SeamStateManager.java:45)
| at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:601)
| at org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:101)
| at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
| at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
|
and whatever page I try to access I just get this NPE. And what did I do to make this happen? Well really cannot say but 'stuff' failed and then I get stuck and must restart jboss.
/Magnus
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986595#3986595
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3986595
19Â years, 7Â months
[JBossWS] - Re: JSR-181 Endpoint ClassCastException
by jhudson
Thank you very much for the response. I just duplicated the sample from: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWS181HelloWorld
and am running into the same problem. Are there different samples that you are talking about? If so, would you mind giving me a link to them? Thank you very much.
Joe
javax.servlet.ServletException: Class org.jboss.samples.HelloWorldWS is not a Servlet
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:54)
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:174)
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
java.lang.Thread.run(Thread.java:595)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986592#3986592
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3986592
19Â years, 7Â months