[Design of JBoss/Tomcat Integration] - Struts app in JBOSS - Action class not triggered
by ab57950
Hi there,
I have deployed my struts app into one of our existing JBOSS project. I have a sample jsp from which I try to invoke the action class. But the action class is never getting invoked. And no signs of errors in the log.The same app works good in WSAD 5.1. Can anyone pl let me know what could be the issue.
Here are my config details :
web.xml
----------
<!-- Action Servlet Configuration -->
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>2</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>2</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
<!-- Action Servlet Mapping -->
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>/*.do</url-pattern>
</servlet-mapping>
<!-- Struts Tag Library Descriptors -->
<taglib-uri>/tags/struts-bean</taglib-uri>
<taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
<taglib-uri>/tags/struts-html</taglib-uri>
<taglib-location>/WEB-INF/struts-html.tld</taglib-location>
<taglib-uri>/tags/struts-logic</taglib-uri>
<taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
<taglib-uri>/tags/struts-nested</taglib-uri>
<taglib-location>/WEB-INF/struts-nested.tld</taglib-location>
<taglib-uri>/tags/struts-template</taglib-uri>
<taglib-location>/WEB-INF/struts-template.tld</taglib-location>
<taglib-uri>/tags/struts-tiles</taglib-uri>
<taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
<taglib-uri>
pagination
</taglib-uri>
<taglib-location>
/WEB-INF/pager-taglib.tld
</taglib-location>
Here is my JSP call :
----------------------
/MCA/SbMCAPostMessageAction.do?action=initial&username1="+userid+"&group1="+group;
And here is my Struts-config.xml configurations :
| --------------------------------------------------------
| <action path="/SbMCAViewMessageAction" type="com.ssmb.mca.action.SbMCAViewMessageAction" name="sbMCAViewMessageForm" scope="session" validate="false">
|
| <forward name="success" path="/SbMCAViewMessage.jsp" />
| <forward name="failed" path="/SbMCADefaultErrorPage.jsp" />
| <forward name="MSGID" path="/SbMCAViewMessage.jsp" />
|
| </action>
|
| <action path="/SbMCAPostMessageAction" type="com.ssmb.mca.action.SbMCAPostMessageAction" name="sbMCAPostMessageForm" scope="session" validate="false">
| <forward name="success" path="/SbMCAPostMessage.jsp" />
| <forward name="failed" path="/SbMCADefaultErrorPage.jsp" />
| </action>
Thanks,
Arun B
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3994823#3994823
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3994823
19 years, 3 months
[Design of JBoss jBPM] - Re: Web Console: Context Menus and Navigation
by falazar
We've done a lot of work on the JBPM console over the past few months, making it look a little nicer and be a little more functional, so I think some of this work might be taken into account and incorperated into the system as there are some useful bits.
Here is a copy of the presentation we gave last week to our system admins locally, showing many screenshots of the system and how it works, maybe this will help show some things that are useful in the console design.
ftp://ftp.arlut.utexas.edu/pub/workflow/workflow_talk.pdf
One thing we noticed was there was a need for a more complex display of the Tasks to the lowest level user.
We added in sorting, and filtering, and paging for the processes, but due to the complex nature of the queries we could not use the HQL in an easy fashion and finally just generated a strait SQL query instead.
We display the process name, and 3 extra process variables in the display, and are looking at making special displays when 'filter by process' is used to show some other important variables.
We have focused much of the work on the end users display and not alot so far into the admin portion. But we have kept hte menu system very simple, opting for mainly a top 'tab' liek structure, and leaving hte sidebar off, due to the large size of many of the rows of data.
We haven't yet really used any fancy JSF components, just a dataTable for the display.
Any suggestions to our design would be great as well.
James Ratcliff & Jonathan Abbey
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3994784#3994784
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3994784
19 years, 3 months
[Design of JBossCache] - JBCACHE-890 - idea for consolidating meta-data on a node
by genman
I think the JIRA issue and the API 2.0 covers most of the issue.
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3994779
What would be some example "flags" to eventually introduce? Data security, mutability, replication, storage, serialization strategy, data access and visibility (i.e. buddy replicated data), compression, ordering (key or children sorted), priority, locking strategy, etc.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3994780#3994780
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3994780
19 years, 3 months