Hi Richard, I tried on 2.3.3 and 3.0.0 and it It worked fine. Does your xml file looks like that ? :
<?xml version="1.0" encoding="UTF-8"?> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"> <bean id="BasedataSourceName" class="oracle.jdbc.pool.OracleDataSource"> <property name="URL" value="jdbc:oracle:thin:@adresse:port:DB_NAME" /> <property name="user" value="username" /> <property name="password" value="userpassword" /> </bean> <service interface="javax.sql.DataSource" ref="BasedataSourceName"> <service-properties> <entry key="osgi.jndi.service.name" value="jdbc/DB_NAME"/> </service-properties> </service> </blueprint> Christophe. -- View this message in context: http://karaf.922171.n3.nabble.com/Blueprint-deployer-doesn-t-expose-OSGi-service-properties-tp4031493p4031522.html Sent from the Karaf - User mailing list archive at Nabble.com.
