[jboss-user] [JBoss Seam] - Re: howto: expose application scope component with JMX?

2007-06-19 Thread [EMAIL PROTECTED]
This is something that JBoss EJB3 provides, check the docs.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4055711#4055711

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4055711
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: howto: expose application scope component with JMX?

2007-06-19 Thread koenhandekyn
as i had to look for a while to find what gavin was referring to, i think it is 
the below thing : 'service beans'

http://docs.jboss.org/ejb3/app-server/tutorial/service/service.html

???any comment on service beans versus application scope session beans for 
holding configuration type of data???

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4055791#4055791

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4055791
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: howto: expose application scope component with JMX?

2007-06-19 Thread koenhandekyn
feature request to gavin :)

to inject a ' service ' bean you have to resort to the standard jboss 
provisioning wich looks like

  private GlobalConfigurationMBean globalConfiguration;
  
  @Depends (upr:service=globalConfiguration)
  |   public void setGlobalConfiguration(final GlobalConfigurationMBean 
globalConfiguration)
  |   {
  |  this.globalConfiguration = globalConfiguration;
  |   }
  |   


it would be nice to be able to add an @Name attribute to the service and inject 
it with @In

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4055836#4055836

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4055836
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user