[jboss-user] [JBoss OSGi Users] - Re: how to start a bundle in standalone JBossOSGi Runtime wi

2009-11-25 Thread CsabaSzucs
Hello Thomas, here is the JIRA issue: https://jira.jboss.org/jira/browse/JBOSGI-210 Thanks for your help! Csaba View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4267454#4267454 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply

[jboss-user] [JBoss OSGi Users] - how to start a bundle in standalone JBossOSGi Runtime with E

2009-11-24 Thread CsabaSzucs
Hello Users, I installed JBossOSGi with Eclipse Equinox integration and hot-deployed a simple Equinox bundle. It is installed only but not started. How can I force it to start (programmatically or adminstratively)? With Apache Felix integration the bundle is started as well and on JBoss OSGi

[jboss-user] [JBoss Microcontainer Users] - Re: how to instantiate a generic/parameterized MC bean/POJO

2009-11-11 Thread CsabaSzucs
But what if I don't have that output variable in the constructor...like in the default constructor of the parameterized class? In Java syntax the parameter type is inferred in the instantiation command. In my case, the parameter type can only be inferred from the instance methods of the class.

[jboss-user] [JBoss Microcontainer Users] - Re: how to instantiate a generic/parameterized MC bean/POJO

2009-11-11 Thread CsabaSzucs
Sorry, here is the parameterized type again but I couldn't insert the less than and greater than characters: public class TypedRegistry_T_ { // ... public TypedRegistry() { // ... } } View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4264992#4264992 Reply to

[jboss-user] [JBoss Microcontainer Users] - how to instantiate a generic/parameterized MC bean/POJO in b

2009-11-11 Thread CsabaSzucs
Hello, would you please so kind to give an example of a jboss-beans.xml /bean deployer/ which instantiates a parameterized bean/POJO class like: public class TypedRegistry { // ... public TypedRegistry() { // ... } } So how shall I define the type