Ok, please edit:
portal-core-sar/META-INF/jboss-service.xml
and replace:

  |    <!-- Transient cache for component security store -->
  |    <mbean
  |       code="org.jboss.cache.TreeCache"
  |       name="portal:service=TreeCache,type=transient">
  |       <attribute 
name="TransactionManagerLookupClass">org.jboss.cache.JBossTransactionManagerLookup</attribute>
  |       <attribute name="IsolationLevel">REPEATABLE_READ</attribute>
  |       <attribute name="CacheMode">LOCAL</attribute>
  |    </mbean>
  | 

by


  |    <!-- Transient cache for component security store -->
  |    <mbean
  |       code="org.jboss.cache.TreeCache"
  |       name="portal:service=TreeCache,type=transient">
  |     <depends>jboss:service=TransactionManager</depends>
  |       <attribute 
name="TransactionManagerLookupClass">org.jboss.cache.JBossTransactionManagerLookup</attribute>
  |       <attribute name="IsolationLevel">REPEATABLE_READ</attribute>
  |       <attribute name="CacheMode">LOCAL</attribute>
  |    </mbean>
  | 

You will need to add the 'depends' tag on all mbeans with 
code="org.jboss.cache.TreeCache".

Let me know how it goes.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952628#3952628

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952628

All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to