You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@geronimo.apache.org by "J. Patrick Bedell" <jp...@infoeng.org> on 2005/06/19 08:34:08 UTC

using ActiveMQ SecurityAdapter with Geronimo

Hi,
 	In using ActiveMQ JMS with Geronimo, is there any way to interface 
a SecurityAdapter class with the ActiveMQ Broker to control access to the 
JMS operations?  I have tried modifying the broker-config.xml file in the 
ActiveMQ rar file and the file in the config-store directory, but it 
doesn't seem to work.  Any suggestions?  ( The class specified below has 
been placed within the Geronimo config-store directory and the ActiveMQ 
rar. )

 	Patrick
 	jpb@infoeng.org


<beans>
   <broker>
     <connector>
       <tcpServerTransport uri="tcp://localhost:61616" backlog="1000"
 	useAsyncSend="true" maxOutstandingMessages="50"/>
     </connector>
     <persistence>
       <berkeleyDbPersistence directory="ActiveMQMessageStore"/>
     </persistence>

     <!-- SECURITY ELEMENT ADDED, BUT IT DOESN'T SEEM TO MATTER :) -->

     <security>
       <bean class="org.infoeng.geronimo.ICTPSecurityAdapterStub"/>
     </security>

     <!-- END ADDED ELEMENT -->

   </broker>
</beans>