Re: karaf and tibco ems

2011-12-02 Thread Andreas Kuhtz
Hi Surya, I think I had a similar problem some weeks before (regarding your error message and not more information ...) and I had to add some packages to etc/jre.properties: I think I added some of the packages listed below, but for your problem I guess others are needed. It could be that you nee

Re: pax-wicket for wicket 6.0

2012-09-26 Thread Andreas Kuhtz
What's the reason that all wicket classes are included in the org.ops4j.pax.wicket.service-2.0.0-SNAPSHOT.jar ? I thought the wicket-6 bundles are already OSGi-ready? ... If they were not included you could support a range for the wicket version that would allow to use newer versions without having

Re: [ANN] Apache Karaf 3.0.1 Released!

2014-06-02 Thread Andreas Kuhtz
Hi, I had the same problem and got it working by changing this property (removed 'external' repos) in /etc/org.ops4.pax.url.mvn.cfg: org.ops4j.pax.url.mvn.repositories= \ file:${karaf.home}/${karaf.default.repository}@id=system.repository, \ file:${karaf.data}/kar@id=kar.repository@multi

Re: Deploying a maven-built SNAPSHOT bundle

2014-07-23 Thread Andreas Kuhtz
Could you try to change the version of the feature and the bundle from 0.0.1-SNAPSHOT to 1.0-SNAPSHOT and see if this changes anything? (It works in my projects with 1.0-SNAPSHOT ) 2014-07-23 12:25 GMT+02:00 rsteppac : > Could someone please direct me to a resource that explains how to deplo

Re: Deploying a maven-built SNAPSHOT bundle

2014-07-23 Thread Andreas Kuhtz
Could you check the MANIFEST.MF of the bundle? The Bundle-Version should be 1.0.0.SNAPSHOT. If it contains 1.0-SNAPSHOT make sure the packaging in the pom.xml is bundle and not jar (and configure the maven-bundle-plugin). 2014-07-23 14:19 GMT+02:00 rsteppac : > Nope, the result is the same: > >

Re: Disabling local repository creation on Karaf 3?

2014-07-24 Thread Andreas Kuhtz
Hi, Check the steps provided here: http://karaf.922171.n3.nabble.com/Karaf-ignores-Bundles-in-KARAF-HOME-system-tp4034337p4034342.html 2014-07-24 16:45 GMT+02:00 thully : > We have a project (Cytoscape) that uses a custom distribution of Karaf > (currently 2.2.11) to manage OSGi/dependencies. We

system.properties does not support ${includes}

2014-09-24 Thread Andreas Kuhtz
Hello, Is there any reason why system.properties does not support ${includes} to include some other custom-system.properties like config.properties does? It would be very helpful for creating a custom distribution with additional system.properties. Regards, Andreas

Re: Pax exam Test does not run in Karaf container

2015-03-12 Thread Andreas Kuhtz
Hi, You should change the version of karaf to 3.0.3 here: MavenArtifactUrlReference karafUrl = maven() .groupId("org.apache.karaf").artifactId("apache-karaf") .version("3.0.0").type("tar.gz"); 2015-03-12 20:51 GMT+01:00 Christian Eugster : > So I have one test method annotated with @Test. In p

Re: Using two features in one feature while requiring some version constraints

2015-03-18 Thread Andreas Kuhtz
Hi, I think I had the same issue a time ago and I've created https://issues.apache.org/jira/browse/KARAF-3053 ... Hope this helps. Regards, Andreas 2015-03-18 11:08 GMT+01:00 Aki Yoshida : > Hi, > I think there is something strange and need to place my question again. > > I created a small te

Re: karaf 4.0.0.M2 testing with testng leads to an error

2015-03-31 Thread Andreas Kuhtz
Hi, I've TestNG with pax-exam running with karaf-3.0.3. The main difference is that I use org.ops4j.pax.exam pax-exam-container-native ${version.pax-exam} test instead of pax-exam-container-karaf . I'll try to prepare a sample on

Re: karaf 4.0.0.M2 testing with testng leads to an error

2015-03-31 Thread Andreas Kuhtz
ndreas 2015-03-31 9:52 GMT+02:00 Achim Nierbeck : > cool thanks > > Achim > > 2015-03-31 9:50 GMT+02:00 Andreas Kuhtz : > >> Hi, >> I've TestNG with pax-exam running with karaf-3.0.3. >> >> The main difference is that I use >> >>

Re: karaf 4.0.0.M2 testing with testng leads to an error

2015-04-02 Thread Andreas Kuhtz
Hi, I did some more testing and added a new pax-exam-invoker-testng module to my fork of pax-exam (https://github.com/akuhtz/org.ops4j.pax.exam2.git --> branch invoker-testng) with and some changes to KarafTestContainer to use TestNG instead of JUnit but I didn't succeed and I'm even not sure if i

Re: blueprint spring error

2015-07-02 Thread Andreas Kuhtz
Hi, I think you should add the "spring-web" feature to your feature. Regards Andreas 2015-07-03 7:27 GMT+02:00 Jean-Baptiste Onofré : > It looks like you mix blueprint and spring. > > At deployment of which bundle do you have this exception ? core-product ? > Can you share the META-INF/spring a

Re: PAX CDI not bootstrapping

2015-07-30 Thread Andreas Kuhtz
Hi, Might be a problem of injecting the impl instead of the interface in FileManagerEndpoint: @OsgiService private FileManagerClientImpl fileManagerClient; .. the same in the setter. Try change to FileManagerClient and see if this helps. Regards, Andreas 2015-07-30 12:48 GMT+02:00 Tom Barber :

Re: PAX CDI not bootstrapping

2015-07-31 Thread Andreas Kuhtz
Hi, Just found this: https://bugs.eclipse.org/bugs/show_bug.cgi?id=453834 Your CDI-problem with websocket could be solved with jetty-9.3.x :-) Regards, Andreas 2015-07-30 20:00 GMT+02:00 Tom Barber : > Yeah I had one in there as well. CDI does run by there is a disconnect > between websockets

Re: system properties file (multiple ones)

2015-08-21 Thread Andreas Kuhtz
Hi JB, I had the same requirement some weeks ago and would be happy if systemoverride.properties would be available in the future. Regards, Andreas 2015-08-21 16:06 GMT+02:00 Jean-Baptiste Onofré : > Why don't you provision bin/setenv with your System properties ? > > I can add a systemoverride

Re: KAR deployment in Karaf 4.0.3 fails with varying errors

2015-11-24 Thread Andreas Kuhtz
Hi Ralf, You're mixing spring versions (3.1.4 vs 3.2.14). This might be a source for problems ... org.springframework.context/3.1.4.RELEASE org.apache.servicemix.bundles.spring-context-support/3.2.14.RELEASE_1 Regards, Andreas 2015-11-24 8:08 GMT+01:00 rsteppac : > OK, here you go. But I am

Re: Karaf-4.0.3 on Windows with spaces in path

2015-11-26 Thread Andreas Kuhtz
Hi JB, You're right! Tested with 4.0.2 and it works! Aaarrrggg, I didn't see it was reported some days ago: https://issues.apache.org/jira/browse/KARAF-4138 Is there a chance to get this fixed in 4.0.4? Best regards, Andreas 2015-11-26 10:35 GMT+01:00 Jean-Baptiste Onofré : > Hi Andreas,

Re: 4.0.3 can't find my features

2015-12-03 Thread Andreas Kuhtz
Hi Benson, I had the same issue and solved it by using the osgi version in the feature reference: 0.7.105-SNAPSHOT vs. 0.7.105.SNAPSHOT Regards, Andreas 2015-12-03 14:52 GMT+01:00 Benson Margulies : > My assembly builds that worked in 4.0.2 don't work in 4.0.3. > > The error is: > > [ERROR] Fai