>From the list of bundles you supplied it doesn't look like you have the jpa or >transaction namespace handlers installed. Any blueprint bundles you add that >use those namespaces won't work without them. You need org.apache.aries.jpa.blueprint.aries and org.apache.aries.transaction.blueprint to be installed and started. Tim Ward ------------------- Apache Aries PMC member & Enterprise OSGi advocate Enterprise OSGi in Action (http://www.manning.com/cummins) -------------------
Date: Fri, 3 May 2013 16:24:36 +0100 From: [email protected] To: [email protected] Subject: Waiting for namespace handlers Hello everyone, I'm trying to run an example using blueprint and JPA but whenever I try to start it, I have the following error: [org.apache.aries.blueprint.container.BlueprintContainerImpl] : Running blueprint container for bundle com.mycompany.me.clientjpa in state Unknown [org.apache.aries.blueprint.container.BlueprintEventDispatcher] : Sending blueprint container event BlueprintEvent[type=CREATING] for bundle com.mycompany.me.clientjpa [org.apache.aries.blueprint.container.BlueprintContainerImpl] : Running blueprint container for bundle com.mycompany.me.clientjpa in state WaitForNamespaceHandlers [org.apache.aries.blueprint.container.BlueprintContainerImpl] : Bundle com.mycompany.me.clientjpa is waiting for namespace handlers [http://aries.apache.org/xmlns/jpa/v1.1.0] [org.apache.aries.blueprint.container.BlueprintEventDispatcher] : Sending blueprint container event BlueprintEvent[type=GRACE_PERIOD, dependencies=[(&(objectClass=org.apache.aries.blueprint.NamespaceHandler)(osgi.service.blueprint.namespace=http://aries.apache.org/xmlns/jpa/v1.1.0))]] for bundle com.mycompany.me.clientjpa It seems like blueprint container can not resolve the namespace for JPA (transaction neither) and I don't know why or how to resolve it. Here is a list of my installed bundles : ID|State |Level|Name 0|Active | 0|System Bundle (4.2.1) 2|Active | 1|geronimo-jta_1.1_spec (1.1.1) 3|Active | 1|geronimo-servlet_2.5_spec (1.2.0) 4|Active | 1|Geronimo TxManager :: Transaction (2.1.3) 7|Active | 1|Aries JPA Container API (1.0.0) 8|Active | 1|Apache Aries Proxy Bundle (1.0.0) 9|Active | 1|Apache Aries Transaction Manager (1.0.0) 10|Active | 1|Apache Aries Util (1.0.0) 11|Active | 1|Apache Felix Bundle Repository (1.6.6) 12|Active | 1|Apache Felix Gogo Command (0.12.0) 13|Active | 1|Apache Felix Gogo Runtime (0.10.0) 14|Active | 1|Apache Felix Gogo Shell (0.10.0) 15|Active | 1|Apache Felix Log Service (1.0.1) 17|Active | 1|OSGi Release 4.0.1 Services (3.1.200.v20070605) 18|Active | 1|geronimo-j2ee-connector_1.5_spec (2.0.0) 19|Active | 1|Apache Geronimo JSR-317 JPA 2.0 Spec API (1.1.0) 21|Active | 1|OpenJPA OSGi Client Bundle (2.1.0.SNAPSHOT) 22|Active | 1|Apache Derby 10.5 (10.5.3000000.802917) 23|Active | 1|Commons Collections (3.2.1) 24|Active | 1|Commons Lang (2.5.0) 25|Active | 1|Commons Pool (1.5.4) 31|Active | 1|Apache Aries Application Default local platform (1.0.0) 32|Active | 1|Apache Aries Application API (1.0.0) 34|Active | 1|Apache Aries Application Deployment Management (1.0.0) 35|Active | 1|Apache Aries Application Installer (1.0.0) 36|Active | 1|Apache Aries Application No-op Resolver (1.0.0) 37|Active | 1|Apache Felix File Install (3.1.4) 38|Active | 1|Apache Aries Application Modelling (1.0.0) 39|Active | 1|Apache Aries Application Utils (1.0.0) 42|Active | 1|Apache Aries Application Management (1.0.0) 47|Active | 1|Apache Aries Blueprint Bundle (1.1.0) 53|Active | 1|osgi.enterprise (4.2.0.201003190513) 56|Active | 1|osgi.cmpn (4.3.1.201210102024) 57|Active | 1|osgi.core (5.0.0.201203141902) 58|Active | 1|osgi (3.0.0) 59|Active | 1|OPS4J Pax Web - Extender - WAR (0.8.1) Regards, Khadija
