Hi, Is it possible to use a ManagedServiceFactory to create instances of a service that would contain a Message Driven Bean?
Our system needs to dynamically create services, and each service needs to subscribe to a Topic to get processing information. The MSF pattern seems to be the best way to create the services (which all need to be distinct instances), but I'm not sure how it would work with an annotated MDB class in the service's bundle. One solution would be to have a single MDB that implements BundleListener so it knows what services have been created, then can forward the messages to the bundles, but I would prefer to have the services subscribe to the Topic. Thanks, larry

