This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: JOnAs 2.4 to JBoss3.0 Migration....mteunissen Sep 5, 2002 9:44 AM (in response to muradhak)As declared in the ejb-jar.xml DTD you either declare which roles can access certain methods or declare methods as unchecked (any role can access them) 
 <ejb-jar>
 ..
 <assembly-descriptor>
 ..
 <method-permission>
 <ejb-name>YourBean</ejb-name>
 <method-name>*</method-name>
 ..
 </method-permission>
 </assembly-descriptor>
 <ejb-jar>
- 
        2. Re: JOnAs 2.4 to JBoss3.0 Migration....muradhak Sep 9, 2002 4:18 AM (in response to muradhak)Hi, 
 Thanks 'MTeunissen'.....
 The solution suggested hepled me to solve the problem.
 Reagrds
 Muraly
 
    