I have 3 services, one of which is depended on other two services. How do I
specify the service dependency in blueprint.xml. For one service I have done
like below and is working. 

<reference id="db1" interface="javax.sql.DataSource"
filter="(osgi.jndi.service.name=jdbc/db1)" />
<reference id="db2" interface="javax.sql.DataSource"
filter="(osgi.jndi.service.name=jdbc/db2)" />

<service id="app1" interface="com.foo.App1" ref="App1Impl1"
depends-on="db1">
</service>

How do I mention both db1 and db2 as dependecies for app1

regards
Vinu



--
View this message in context: 
http://karaf.922171.n3.nabble.com/Blueprint-Specifying-service-dependencies-to-multiple-services-tp4032540.html
Sent from the Karaf - User mailing list archive at Nabble.com.

Reply via email to