[JBoss Seam] - Workspace/conversation switcher
by jerome_082006
Hello,
I am building a web application based on Seam 1.1 (latest build from CVS) and Icefaces 1.5.
Basically, the application consists of a main master/detail view panel in a tabbed pane and I would like to be able to create/edit entities in tabs (of the same tabbed pane), each tab having its own conversation.
Ideally, I should be able to use the workspace/conversation switcher. The problem is that with Icefaces, the DOM tree is built statically (no dynamic includes in tabs), which means I have many subviews included in one "main" view (template stack for those who know Icefaces). Hence, my JSF action listeners always have to return null outcomes.
I have used session-scoped components to prototype my application and I have implemented some sort of component switching on tab change events.
Would it be possible to bind a tab to a conversation and do automatic workspace/conversation switching ?
The Booking application allows me to start new conversations in my browser tabs, would it be possible to do the same in JSF tabbed panels ?
Regards,
Jerome.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3987165#3987165
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3987165
19Â years, 7Â months
[Tomcat, HTTPD, Servlets & JSP] - Re: servlet.jar not loadet
by guleraï¼ gmx.de
I removed the servlet.jar from WEB-INF/lib...
I deploy my web-application on Jboss. The problem is that Jboss only see my index.jsp but not the other classes. In the index.jsp ist only a forward to an action (struts actions):
| <%@ taglib uri="/tags/struts-logic" prefix="logic" %>
| <logic:redirect forward="welcomeAction"/>
|
Jboss don't see my action classes. Can anybody help me?
I get the exception:
| 21:08:09,281 ERROR [RequestProcessor] No action instance for path /WelcomeAction could be created
| java.lang.ClassNotFoundException: action.WelcomeAction
| at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1355)
| at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1201)
| at org.apache.struts.util.RequestUtils.applicationClass(RequestUtils.java:117)
| at org.apache.struts.util.RequestUtils.applicationInstance(RequestUtils.java:143)
| at org.apache.struts.action.RequestProcessor.processActionCreate(RequestProcessor.java:292)
| at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:230)
| at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
| at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
| at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
| at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
| at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
| at java.lang.Thread.run(Thread.java:595)
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3987163#3987163
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3987163
19Â years, 7Â months