[jboss-user] [jBPM Users] - Fire a rule from jbpm4 process

2009-09-22 Thread cssatheesh
Hi, Kindly help me out in firing a rule from my process in jBPM4. I have a Drools rule file(.drl) which needs to be triggered from a process step. I also found a sample in Wiki but it’s for jBPM3. (http://www.jboss.org/community/wiki/jBPM3AndDrools) Kindly help me out to solve this. Thanks

[jboss-user] [jBPM Users] - Start time of process instances

2009-09-22 Thread sebastian.s
Good morning, regarding the API I have a question. Why does the HistoryProcessInstance-type which is returned when using methods of the HistoryService contain an attribute with the process start time but the ProcessInstance-type which is returned by findProcessInstanceById() of the

[jboss-user] [Installation, Configuration Deployment] - Re:

2009-09-22 Thread jaikiran
anonymous wrote : java.lang.IllegalArgumentException: Must set one of the resources, root or harUrl: org.jboss.hibernate.jmx.hibern...@58a36 [BeanName=null, JNDI=java:/hibernate/GGGoMobileSessionFactory] Are you deploying as a .har file? If yes then try setting the harURL attribute of the

[jboss-user] [JBoss Cache Users] - transactions failed when integrated with cache

2009-09-22 Thread sridhar_ratna
Hi, I am using JBoss Cache 3.1 integrated with Gridgain 2.1. I built three jboss cache instances with Cache Mode as LOCAL. For a particular operation, i need to delete data from two caches and merge it with some data in third cache. Now i want to have these three opeations as atomic unit. for

[jboss-user] [EJB 3.0 Users] - Re: JBoss EJB3 Plugin 1.1.16

2009-09-22 Thread jaikiran
EJB3 Plugin 1.0.15 has been released and is available for download here http://www.jboss.org/ejb3/downloads.html Release notes https://jira.jboss.org/jira/secure/ReleaseNote.jspa?version=12313937styleName=HtmlprojectId=10021 View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Easiest way to bind IBM WS MQ hosted 'Queue' to name in

2009-09-22 Thread anilit99
I am not sure, but it looks like the connection factory is bound in the java namespace, instead of the global JNDI. You can view the jndi tree from the jmx-console. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256317#4256317 Reply to the post :

[jboss-user] [Security] - EntityContext.getCallerPrincipal() returns incorrect princip

2009-09-22 Thread vitthal_patil
when i call the EntityContext.getCallerPrincipal() method it is returning the incorrect principal i.e anonymous. is any one tell me what is the problem ? and what is the solution for this? JBOSS version 4.0.4 and EJB 2.0 View the original post :

[jboss-user] [Beginner's Corner] - Re: Question about -ds.xml file

2009-09-22 Thread shogun1234
Second solution is what I am looking for. Sorry I did not explain well and thanks for explaning clearly: ) PeterJ wrote : What do you mean by how can I make ds xml to be portable as well? ? Portable how? 1) To a different operating system? 2) To a database other than Sybase? 3) To a

[jboss-user] [jBPM Users] - Re: Fire a rule from jbpm4 process

2009-09-22 Thread kukeltje
The basics are not different for 4, just use jBPM 4 delegation classes instead of those for 3. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256322#4256322 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256322

[jboss-user] [JBoss Messaging Users] - Re: Easiest way to bind IBM WS MQ hosted 'Queue' to name in

2009-09-22 Thread ben.cot...@rutgers.edu
Thanks for the reply. The IVTCF-ds.xml includes the explicit config use-java-contextfalse/use-java-config Also, the JMX-Console JNDIView 'list' operation confirms that IVTCF is bound in the JNDI Global Namespace. It remains puzzling that when I parameterize the InitialContext with

[jboss-user] [jBPM Users] - Re: Fire a rule from jbpm4 process

2009-09-22 Thread cssatheesh
Hi kukeltje, Thanks a lot for the quick response. Can you please explain in detail, like an example. Please let me know if there are any equivalent ways of converting the mentioned example in http://www.jboss.org/community/wiki/jBPM3AndDrools to jBPM4. Thanks View the original post :

[jboss-user] [JBoss Messaging Users] - Re: Easiest way to bind IBM WS MQ hosted 'Queue' to name in

2009-09-22 Thread gaohoward
another thing to check is the connection-factory-service.xml, see what the JNDIBindings for it. sth like: | attribute name=JNDIBindings | bindings | binding/IVTCF/binding | /bindings | /attribute | View the original post :

[jboss-user] [Beginner's Corner] - excel data into a drl

2009-09-22 Thread simscarlet
Hi, I currently have a function in a rule which is an array of arrays that hold rating data. The issue I have is this is quite large and I want to hold this data in an external file and ie csv or excel and import it into the rule as a table. Is there a way I could store these values in excel

[jboss-user] [EJB 3.0 Users] - Returning EJB's from EJB's and transactions

2009-09-22 Thread gerbrand
Hello, I'm wondering about design of my application. We a lot of EJB (EJB3) using the @Stateless and @EJB tags. All EJB's are now local, but we're considering changing a few in remote interface. Quite a few EJB's return EJB's also and I wonder if that is correct in the first place, and

[jboss-user] [JCA] - Basic understanding of JCA-Workflow

2009-09-22 Thread LeoLo
Hi! I've a JBoss AS 4.2.3 with a very basic SessionBean in it (code below), accessing a Jackrabbit-Repository, that is connected via a JCA-ConnectionFactory. Assuming the bean is deployed and the service-method deleteNode(...) is executed once. At which point is a connection to jackrabbit

[jboss-user] [EJB 3.0 Users] - Re: Timer Service - ejbtimeout is not returned.

2009-09-22 Thread gerbrand
Do you mean, that you schedule a new timer, after the method that is executed the previous timer has finished? Can you give a code sample? If you want to 'cancel' a method that is executed using the @Timeout annotation, that's not possible by default. The method is just run as a Java Thread.

[jboss-user] [jBPM Users] - Re: Fire a rule from jbpm4 process

2009-09-22 Thread kukeltje
the equivalent way is converting the jBPM 3 delegation class to a jBPM 4 one as described in my previous post. Most of it stays the same. why don't you give it a try and get back with more detailed questions/problems when you encounter them View the original post :

[jboss-user] [JBoss Messaging Users] - Re: long live consumer stops working

2009-09-22 Thread PoonamAgarwal
Hi bodrin, I am facing a similar issue of connection getting invalidated. I am using JBM 1.4.0 SP3 and Jboss 4.20GA. I have a consumer(client) created for a queue(on server). I am successful in creating a connection and my consumer does receive messages. However, If I leave my server and

[jboss-user] [JBoss Cache Users] - Invalidation-only cache

2009-09-22 Thread adamw
Hello, here's my scenario: I want to keep some objects in cache, which are calculated basing on some persistent state (DB lets say). Rarely, the persistent state changes, and the objects have to be re-calculated (lazily). So, on a change, I want to invalidate all items. Additionally, this

[jboss-user] [jBPM Users] - Re: jBPM 4.1 HistoryDetail records not being created for tas

2009-09-22 Thread kukeltje
Exact? No, probably not, but: https://jira.jboss.org/jira/browse/JBPM-2389 https://jira.jboss.org/jira/browse/JBPM-2442 Will make up for it, won't it? and maybe: https://jira.jboss.org/jira/browse/JBPM-2416 And yes, you might consider this 'incomplete'... Contributions are welcomed ;-)

[jboss-user] [EJB 3.0 Users] - Re: Timer Service - ejbtimeout is not returned.

2009-09-22 Thread rodedh
Thanks for your reply. I'm now passed that problem and yet the fact that the method did not return puzzles me but I don't have time to investigate this issue. I just can say that it was related to creation of a web service which used https URL. From the minute we moved to work with http it

[jboss-user] [jBPM Users] - JBPM4 (with Spring beans) deployment into JBOSS

2009-09-22 Thread krajesh_7
Had referred the JBPM UserGuide/DevGuide and write a workflow application using JBPM4 and Spring (for workflow action classes). This application works in a standalone manner. Now I wanted to deploy the JBPM4 workflow application into JBOSS. The Dev Guide had given some information about

[jboss-user] [JBoss Cache Users] - Re: Is this a lazy loading issue? (not CacheLoader)

2009-09-22 Thread chtimi2
Nobody? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256387#4256387 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256387 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [Installation, Configuration Deployment] - jboss 4.2.2 GA multihomed

2009-09-22 Thread qwerty979
Hello, I have a server with 4 IP addresses, I would like JBoss listener had two ip. I tried with the parameter -b but I can not list more than one ip. How can I do? Thanks View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256391#4256391 Reply to the post :

[jboss-user] [jBPM Users] - Problems with process definition: JpdlProcessDefinition cann

2009-09-22 Thread sebastian.s
Good afternoon! Are cycles allowed in process definitions? I want to realize an escalation to a second task and then return to the original task to wait again for task completition. Could this cycle be the reason for the error I am receiving while I am trying to view all available process

[jboss-user] [JBoss Cache Users] - Re: how to lock a node for update?

2009-09-22 Thread chtimi2
Have you trying using the pessimistic locking scheme? Try adding the following to your replSync-service.xml: attribute name=NodeLockingSchemePESSIMISTIC/attribute | attribute name=SyncCommitPhasetrue/attribute | attribute name=SyncRollbackPhasetrue/attribute |

[jboss-user] [JBoss Cache Users] - Re: how to lock a node for update?

2009-09-22 Thread chtimi2
Have you trying using the pessimistic locking scheme? Try adding the following to your replSync-service.xml: attribute name=NodeLockingSchemePESSIMISTIC/attribute | attribute name=SyncCommitPhasetrue/attribute | attribute name=SyncRollbackPhasetrue/attribute |

[jboss-user] [JBoss Messaging Users] - Re: HermesJMS config for Jboss Messaging resources?

2009-09-22 Thread jbo_jboss
Yes. Include the jars required for any JBoss JMS client. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256396#4256396 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256396 ___

[jboss-user] [JBoss Cache Users] - Re: Invalidation-only cache

2009-09-22 Thread mircea.markus
can't you do the get call outside a transaction? You can use TransactionManager.suspend/resume if you need to do some more work in tx after refreshing the cache. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256397#4256397 Reply to the post :

[jboss-user] [JBoss Cache Users] - Re: JBoss 4.2.2 with TreeCache 1.4.1.SP5: nodes, attributes

2009-09-22 Thread the_olo
What's very curious is the fact that logs on both cluster nodes indicate that the elements are added to the cache. E.g., after the BPEL process is executed and transaction gets committed: node 1 (initiator): | 2009-09-22 15:56:04,686 DEBUG [org.jboss.cache.eviction.BaseEvictionAlgorithm]

[jboss-user] [JBoss Messaging Users] - JBoss Messaging 1.4.4.GA + JBoss AS 4.2.3.GA Compatibility

2009-09-22 Thread jbo_jboss
I am seeking clarification that JBoss Messaging 1.4.4.GA and JBoss AS 4.2.3.GA are fully compatible and that client failover is fully operational with this combination. I have a two node JBoss AS 4.2.3.GA cluster configured in accordance with the instructions in the JBoss Messaging 1.4.4.GA

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging 1.4.4.GA + JBoss AS 4.2.3.GA Compatibili

2009-09-22 Thread gaohoward
Yes, JBM 1.4.4.GA works with AS 4.2.3.GA. You need to pay attention to jbossall-client.jar. Make sure jboss-messaging-client.jar and jboss-remoting.jar appear BEFORE jbossall-client.jar. The working jboss-remoting version is 2.2.3. View the original post :

[jboss-user] [Clustering] - Java Heap Space error in JBOSS 5.1.0 GA

2009-09-22 Thread sridhar1985
Hi All, I am using jboss 5.1.0 GA and sun jdk 1.5 version. While running my application i am getting java heap space error. How can i over come this one. Please help me out on this. I think i can not increase the numbers simply in conf files. Thanks in advance, Sridhar. View the original

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging 1.4.4.GA + JBoss AS 4.2.3.GA Compatibili

2009-09-22 Thread jbo_jboss
Thank you for your very prompt response! I believe I have already resolved the classpath issue with respect to jboss-remoting.jar by removing the remoting classes from jbossall-client.jar (this appears to be the recommended solution in Tomcat where it is otherwise difficult to control

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging 1.4.4.GA + JBoss AS 4.2.3.GA Compatibili

2009-09-22 Thread gaohoward
the aop version should be 1.5.6 GA. I'll examine the user guide and correct it if it is wrong as you said. Thanks. Howard View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256425#4256425 Reply to the post :

[jboss-user] [jBPM Users] - jBPM 4.1 - sub tasks

2009-09-22 Thread Thomas.Kriechbaum
We have been experimenting with sub tasks for a while (parent child relation is set up within a custom activity). What is the planned/expected behavior of certain lifecycle events (e.g. complete parent task)? Currently, the CompleteTaskCmd firstly calls task.complete (in this case, a history

[jboss-user] [Installation, Configuration Deployment] - Re: jboss 4.2.2 GA multihomed

2009-09-22 Thread PeterJ
You never said which version of JBoss AS, so I will assume 5.1.0. If you have some other version, the files will be in different locations - I'll let you find them. In the server/xxx/deploy/jbossweb.sar/server.xml file, create a second HTTP connector and use a different value for address. For

[jboss-user] [Installation, Configuration Deployment] - Re: jboss 4.2.2 GA multihomed

2009-09-22 Thread PeterJ
Oh, you did say which version of JBoss AS in the subject line, missed that. Change 'jbossweb.sar' to 'jboss-web.deployer' in the file location. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256443#4256443 Reply to the post :

[jboss-user] [EJB] - AS400 System - JBoss -4.0.3- EJB + MQ Connectivity

2009-09-22 Thread chetan_aggarwal_in
Hi I am facing following problem. Please help We have AS400 Systems on which we have deployed JBoss-4.0.3 servers. We have a EJB 2.0 Stateless session bean deployed. StatelessSessionBean gets Websphere MQ Connection as resource reference. Now at one point of time on server startup, we have

[jboss-user] [Installation, Configuration Deployment] - Re: Jboss 4.2.3 GA upgrade

2009-09-22 Thread PeterJ
Are you sure this is the first error message? The text of this error states that there were prior errors. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256450#4256450 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256450

[jboss-user] [JBoss Portal Users] - Re: JBoss forum source code request

2009-09-22 Thread PeterJ
Looks like the download link if corrupted. Did you try looking at the URL in the browser's address bar and fixing it? There are two slashes in a row, editing the URL to remove one of the slashes worked for me. View the original post :

[jboss-user] [JBoss Tools Users] - birt - Seam component always null with birt embed

2009-09-22 Thread gonzalad
Hello, I'm using a Seam component in birt report (from a scripted datasource). When I try to access a Seam Component from a birt report and when I use embed mode(designType=embed), Seam component is always null. When I use designType=run, everything works fine. I don't understand why. It

[jboss-user] [JBoss Messaging Users] - Re: JBoss Messaging 1.4.4.GA + JBoss AS 4.2.3.GA Compatibili

2009-09-22 Thread jbo_jboss
1.5.6 GA is what I'm using. Producers seem to be failing over OK but not Consumers. Does this provide any clues? Can you recommend any debug/logging settings that might help to find the problem? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256455#4256455

[jboss-user] [JBoss Tools Users] - Re: birt - Seam component always null with birt embed

2009-09-22 Thread akazakov
Seam forum is better place for this question ;) www.seamframework.org View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256458#4256458 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256458

[jboss-user] [JBoss Tools Users] - Re: birt - Seam component always null with birt embed

2009-09-22 Thread gonzalad
Thanks for your fast answer ! This issue appears only when using BIRT tag in embed mode. It works fine when using the same report in frameset or run mode. So from my point of view this is a bug in the BIRT integration and not in Seam. View the original post :

[jboss-user] [JBoss Tools Users] - Re: birt - Seam component always null with birt embed

2009-09-22 Thread akazakov
Actually I meant that this problem seems to be a problem of runtime (seam or birt). But not of JBoss Tools. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256466#4256466 Reply to the post :

[jboss-user] [JBoss Tools Users] - Re: birt - Seam component always null with birt embed

2009-09-22 Thread gonzalad
In fact, the problem in my opinion is in class org.jboss.seam.birt.ui.UIDocument. This class is provided by JBoss Tools and corresponds to JSF tags p:birt which allows a JSF application to call BIRT (thanks once more to JBoss devs much for those tags ! The only existing JSF tags for BIRT).

[jboss-user] [JBoss Cache Users] - Re: how to lock a node for update?

2009-09-22 Thread alllle
Thanks for the reply. I have the same concern regarding the deprecated pessimistic locking. The JBC documents keeps talking about the benefit of mvcc, but failed to address this common use case. Note that the concurrent write is not really an exception in this scenario, it is expected to

[jboss-user] [EJB 3.0 Users] - Checked exception thrown from injected stateless bean become

2009-09-22 Thread tvrtko
I have a stateless bean injected by container. When called, this bean throws a checked exception (Failure). But the exception that caller catches is runtime exception (IllegalStateException). Here is a short example: | class Failure extends Exception { | ... | } | | @Local |

[jboss-user] [JBoss Web Services Users] - Re: Creating two difference WS-Eventing events in the same c

2009-09-22 Thread earniedyke
After some more trial-and-error I have discovered that if I have more than one Event Source endpoint defined in a war within an ear the last endpoint defined as a servlet in the web.xml becomes the soap:address in the wsdl:service definition for all Service endpoints. Can I only define one

[jboss-user] [jBPM Users] - jBPM4 and JBoss IDM

2009-09-22 Thread serquicia
I'm trying to figure out how to integrate jBPM 4.1 Identity with JBoss IDM. The final goal is to use JBoss IDM for both Seam and jBPM 4 so I can use the same back end for identity for both products. I already installed and make it work IDM with Seam. According to the developer's guide it is

[jboss-user] [JBoss Tools Users] - Re: birt - Seam component always null with birt embed

2009-09-22 Thread snjeza
Could you please create a jira issue and attach a reproducible test case? Thanks. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256482#4256482 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256482

[jboss-user] [jBPM Users] - HistoryActivityInstanceQuery.startedAfter(Date) doesnt work

2009-09-22 Thread jnlugo
No exceptions are thrown. If I call startedAfter() on the HistoryActivityInstanceQuery, then no data is returned. I even tried setting startedAfter(new Date(0)) and still got back no results. When I remove the call to startedAfter(), I get back results. I am using jbpm 4.1. View the original

[jboss-user] [jBPM Users] - Re: HistoryTaskQuery.startedBefore() and startedAfter() dont

2009-09-22 Thread tcr
Hi, I had the same problem. I checked the hibernate config for HistoryTask (jbpm.history.hbm.xml) and could not find an attribute called startTime. Additionally I could find a member of that name in the HistoryTask class. But I found a member and a mapping for CreateTime! After I changed

[jboss-user] [JBoss Tools Users] - Re: birt - Seam component always null with birt embed

2009-09-22 Thread gonzalad
Thanks snjeza, https://jira.jboss.org/jira/browse/JBIDE-4937 created. I'll post the test case tomorrow (a bit late here ;) ). Also found the explanation for this issue : the session isn't propagated in embed mode (UIDocument class creates a new URLConnection to call JBossBirtServlet without

[jboss-user] [JBoss Microcontainer Users] - VFS outside of AS

2009-09-22 Thread bob.mcwhirter
Howdy guys-- JRuby has the need to deal with things-inside-jars-inside-jars and the like. I obviously have enjoyed VFS working within JBossAS, and have solved a lot of my problems. But, we'd like to try to wedge VFS into the core of JRuby to solve their FS issues once and for all. To that

[jboss-user] [jBPM Users] - Re: Problems with process definition: JpdlProcessDefinition

2009-09-22 Thread kukeltje
afaik, there is a jira issue about this same error and it might or not ;-)) even be fixed in the svn View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256506#4256506 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256506

[jboss-user] [Installation, Configuration Deployment] - JBOSS 5.1 Upgrade - Will JGroups from JBOSS 4.0.5 Talk?

2009-09-22 Thread dmurphy1
Hi - we are about to upgrade our production cluster from JBOSS AS 4.0.5 to JBOSS AS 5.1. In the app we use code that uses the JGroups API to share data between cluster nodes. Question: Will the JGroups version bundled with JBOSS 4.0.5 work with the JGroups version bundled with JBOSS AS 5.1?

[jboss-user] [Installation, Configuration Deployment] - Re: Is web application client context useable?

2009-09-22 Thread steeven
nobody using this feature? :'( I afraid that I have to give up View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4256514#4256514 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256514

[jboss-user] [Installation, Configuration Deployment] - Re: JBOSS 5.1 Upgrade - Will JGroups from JBOSS 4.0.5 Talk?

2009-09-22 Thread dmurphy1
BTW - this requirement is a very nice to have for us since it would allow us to deploy our JBOSS application across our cluster in a rolling deployment. e.g. we would know that the new nodes still running JBOSS 4 could communicate with the new nodes running JBOSS 5 until the rolling deployment

[jboss-user] [JBoss Remoting Users] - Help Me

2009-09-22 Thread songrouchen
ERROR [ServerThread] Worker thread initialization failure java.net.SocketException: Software caused connection abort: socket write error at java.net.SocketOutputStream.socketWrite0(Native Method) at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) at

[jboss-user] [Installation, Configuration Deployment] - ClassNotFoundException During Hibernate JBOSS Deployment

2009-09-22 Thread cdub
I am getting a ClassNotFoundException for a composite-id element in a hibernate mapping file during deployment of a hibernate app even though the class in question does correctly exist in the GGGoMobile.jar file. I am using NetBeans 6.7.1 Hibernate utilities to reverse engineer a MySQL 5

[jboss-user] [JBoss Web Services Users] - jbossws 5

2009-09-22 Thread pramod_bs
I was having a web services client in 4.2.1. When I moved the client to Jboss 5.1 environment (with the default jbossws native) I get the following error.(Version: jbossws-native-3.1.2.GA Build: 200905081542 ) | | 23:27:52,860 ERROR [CommonClient] Exception caught while (preparing for)

[jboss-user] [jBPM Users] - Re: jBPM4 and JBoss IDM

2009-09-22 Thread jeff.yuchang
I just checked the jbpm 4.1, the installation has been taken out in this release. The integration work is done. I kept it as 'work in progress' as there was an issue in the IDM, it doesnt provide the user defined groupId. Tom like to IDM supports it. In the current code base, I am using the

[jboss-user] [Installation, Configuration Deployment] - Re: Jboss 4.2.3 GA upgrade

2009-09-22 Thread rasa
PeterJ wrote : Are you sure this is the first error message? The text of this error states that there were prior errors. Yes this are the first errors. But before that i am getting some warnings. | Bean : AppsCache | Method : public abstract String getMenuPath(String) throws Exception