Neil Bartlett wrote > Roland, what email software are you using?? It looks like large > segments of your messages are completely missing. This was probably > the reason for much of our confusion. > > Anyway, I'm glad you got your problem fixed, although it's still a > mystery what the problem was and how you fixed it. > > Regards, > Neil
Hello Neil, The Problem was that i started several other Bundles from my systembundle activator start method. The system bundle must have completed the startup process before any other bundles. So the order of the start-up process was not correct. In my case the state of my systembundle was "STARTING". The required packages had not been exported yet. So i got a "unresolved constraints"-error in a other bundle. The systembundle has to be in state "ACTIVE" to resolve constraints properly. If i start bundles in my systembundle activator start method i have to take care that the constraints are resolved later by importing dependencies dynamically or i transfer the startup-sourcecode from my systembundles activater start method to anywhere else than in the systembundle activator start method. The latter I did to solve the problem. Regards, Roland -- View this message in context: http://apache-felix.18485.x6.nabble.com/Package-constraints-are-not-resolved-during-Framework-startup-Unresolved-constraint-in-bundle-tp5003141p5003215.html Sent from the Apache Felix - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

