[Management, JMX/JBoss] - Multiple JMX/RMI queires are slow to load
by creynolds
I'm running JBoss 4.2.2GA under w2k3. There are 4 physical servers (in dev) running multiple jboss instances. I have 5 clusters or apps (4 nodes per cluster) running across the servers. Each one is bound to its own ip address and each ip address is loaded into the server. When preforming a jmx/rmi query it can take a couple of minutes to return the results (a jsp page displaying tables). This only happens when querying any of the instances that are hosted on the same physical server. For example I have 5 apps, each are clustered running in dev and prod. One of those apps is used to check vital stats on the other jboss instances (uptime, memory, connections, etc). So if i connect to the app in dev and it runs the queries on the other jboss instances in dev it can take a couple of minutes to load, but if I run the queries from dev to prod they return much quicker. Any ideas as to why, the logs show no errors or anything. Thanks in advanced!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4206280#4206280
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4206280
16 years
[JBoss jBPM] - task node does not have leaving transition
by mitabhushan
I have a jBPM Task with two tranisition
| <task-node name="QuoteApproval" end-tasks="true">
| <task name="QuoteApprove">
| <description>
| Approve/Reject the Quote
| </description>
| <assignment actor-id="#{inquireHome.instance.salesRepEmail}"/>
| </task>
| <transition to="CreateOrder" name="toCreateOrder"></transition>
| <transition to="RejectedRequest" name="toRejectedRequest"></transition>
| </task-node>
|
if I have a transition name mentioned on the EndTask I get an error "javax.ejb.EJBTransactionRolledbackException: task node does not have leaving transition 'toCreateOrder'".
It works fine when no transition name is mentioned.
Below code works fine
| @EndTask
| public String updateQuote()
| {
| return "closeRequest";
| }
|
EndTask with Transition name doesnot work
| @EndTask(transition="toCreateOrder")
| public String updateQuote()
| {
| return "closeRequest";
| }
|
|
Any Ideas!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4206272#4206272
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4206272
16 years