[JBoss Messaging] - Missing message statistics
by mzeijen
First some tech info:
JBoss: 4.2.2
Messaging: 1.4.SP1
Java: 6.0
OS: Windows XP 64
I am working on a project to move our application from JBoss MQ to JBoss Messaging. While testing I saw that the message statistics didn't change. All the values stay 0. I looked in the manual to see if I need to configure anything to enable it. The only thing I could find was the MessageCounterHistoryDayLimit attribute. Changing this value from -1 to something else didn't change anything. I did see that when a message is waiting in the queue that this is shown, but the statistics about how much messages the queue has processed always stays 0. I have the same problems with Topics.
Am I missing something? Did I configure something wrong?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4110568#4110568
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4110568
18 years, 4 months
[JBoss jBPM] - how to send parameters with jpdl
by gazadonf
Hy.
I'm susing jpdl to manage all my navigation.
I wonder to know how i can translate this with jpdl
| <s:link view="/#{empty from ? 'Parameter' : from}.xhtml"
| value="Select"
| id="parameter">
| <f:param name="parameterName"
| value="#{parameter.name}"/>
| </s:link>
First, i replace the view tag by an action tag like this
<s:link action="consultParam"
| value="Select"
| id="parameter">
| <f:param name="parameterName"
| value="#{parameter.name}"/>
| </s:link>
with this transition declare in my jpdl
| ...
| <transition name="consultParam" to="consultParam">
| </transition>
| </page>
|
| <page name="consultParam" view-id="/Parameter/Parameter.xhtml">
| <redirect/>
| <transition to="gestionParam" name="retour"></transition>
| <transition name="menu" to="menuGestion"></transition>
| <transition name="editParam" to="createParam"></transition>
| </page>
but what do i have to do to forward the parameter??
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4110564#4110564
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4110564
18 years, 4 months