Karaf is an enterprise grade OSGi runtime/container, with configurable framework implementation (Equinox, Felix). Originally the platform "kernel" for FuseSource ESB/ServiceMix it was added as an Apache top level project.
0
votes
1answer
30 views
Unable to auto-deploy bundle to Karaf
I am developing an OSGI-based application, which deploys to Karaf container. Karaf has an auto-deployment feature, whereby copying a bundle to its karaf/deploy directory should automatically deploy ...
0
votes
1answer
30 views
How to make JOGL OSGI bundles with native libraries loaded correctly?
I've been trying for days: http://forum.jogamp.org/JOGL-with-OSGi-td3773888.html#a4029139
This library has native dependencies embedded in jars.
...
0
votes
1answer
40 views
Using Camel-hdfs in a karaf bundle
I am trying to implement an camel route to send files in a HDFS server with an OSGI bundle, using java language with no blue print, but i can't make it work due tu hdfs scheme not being found while ...
1
vote
2answers
52 views
How to build desktop applications with Apache Karaf/OSGi?
Well im into building OSGi application for a while, but i can't really find some tutorials which show the way to build Desktop Application ( in any languages ) with OSGi/Karaf.
I want to use karaf ...
0
votes
3answers
78 views
How Apache Karaf sorts bundles to install and start?
I have defined four bundles:
bundle 1 : export package x version 1
bundle 2 : import package x ver [1,2] and export package y;y uses x
bundle 3 : export package x version 2
bundle 4 : import ...
0
votes
1answer
60 views
osgi blueprint how to read resource file in bundle
I use osgi and blueprint, i search how to read file in my bundle?
Such as :
mybundle
file.json
OSGI-INF/blueprint/blueprint.xml
WEB-INF
*
I want read file.json in myservice.
0
votes
1answer
53 views
ActiveMQ with Apache Karaf 2.3.1
I have ActiveMQ 5.8.0 and Karaf 2.3.1 running separately.
What I did in Karaf was: (have all other: spring, cxf, camel already installed)
features:addUrl ...
1
vote
2answers
88 views
How to troubleshoot java.lang.NoSuchMethodError?
I know that a java.lang.NoSuchMethodError means that the version of a class used for compiling is different from the version used at runtime. Usually, when I see this issue, I start the app.server in ...
0
votes
0answers
38 views
Can the feature repository in Apache Karaf 3.0.0.RC1 be refreshed?
I am currently trying Apache Karaf 3.0.0.RC1 and have noticed that the features:refreshurl command is no longer available.
In order to update the changes I make to my features.xml file I have to add ...
0
votes
2answers
59 views
Servlets in karaf/servicemix
I get the following error when I deploy a simple .war file in karaf/servicemix. Kindly let me know if I'm missing something.
ERROR:
java.lang.ClassNotFoundException: app.web.servlet.ConnectServlet ...
0
votes
2answers
28 views
List bundle ID's only on servicemix
I'm using ServiceMix and I was trying to list some bundles and retrieve only there bundle ID.
I'm trying to do the following:
osgi:list | grep -i | awk xxx
I tried to use awk but that's not ...
0
votes
1answer
47 views
Change hawtio port on Karaf
I have installed hawtio in the couple of my Apache Karaf 2.2.7 instances by executing commands:
features:addurl mvn:io.hawt/hawtio-karaf/1.0/xml/features
features:install hawtio
The problem is that ...
0
votes
0answers
12 views
karaf, too many tcp connections when karaf bundles is startup in windows environment
when startup karaf which has some bundles,
in windows environment, through "netstat -aon | findstr 127" command,
I find many tcp connections:
TCP 127.0.0.1:54467 127.0.0.1:54468 ...
1
vote
1answer
90 views
Does Apache Karaf handle hot deployments of any JAR or WAR?
I am trying to see if I can refactor the architecture of a project I inherited, and am interested in Apache Karaf as a possible solution.
Currently, we build an executable JAR for every single ...
0
votes
2answers
50 views
In Karaf, is there any way to control the order in which kar files load? Regarding cross-kar file dependencies
It appears in karaf, that if kar file A has a feature that depends on a feature in kar file B, and kar file A loads before B, the install of the features in kar file A will fail, saying there is an ...
1
vote
2answers
93 views
karaf osgi getServiceReference returns null
Does anyone have any experience with getServiceReference returning null for what seems like no reason?
The following bundle registers the service, and then proceeds to confirm that it's registered ...
0
votes
1answer
177 views
Integrating Spring Security with CXF OSGI bundle running in Karaf
The application I am working with has a Web Application Bundle with JavaScript-based client, which issues REST calls to a CXF-based bundle. The latter uses blueprint to hook up with services exposed ...
0
votes
1answer
52 views
Pax Exam tests fail occasionally
I am testing CXF REST services in Karaf using Pax Exam. The tests almost always run without a hitch on my machine. When run in Jenkins (under Maven build) they typically fail. The failures seem random ...
0
votes
1answer
165 views
Apache OSGI Karaf's features-maven-plugin:create-kar is failing on a features.xml bundle using the PAX wrap/bnd syntax
The problematic line is the first bundle in this features snippet
<feature name="stuff-common-security">
...
0
votes
1answer
261 views
Aries Blueprint in Karaf - Can a blueprint reference an external properties file
I am using an ectivemq blueprint to setup a JMS Connection Pool. I also use Camel to service some functionality. I use the org.apache.camel.spring.spi.BridgePropertyPlaceholderConfigurer to allow ...
1
vote
2answers
211 views
How to create the JPA OSGI bundle
I want to create the OSGI persistence service bundle with JPA 2.0. I am using OpenJpa as a persistence provider.
I tried a sample OSGI bundle with JPA support and I faced the problem when my client ...
0
votes
0answers
85 views
What is the format of the bundle properties for karaf's features-maven-plugin generate-features-xml goal
To list a bunch of bundles you want included in a generated features.xml, the docs say:
bundles File A properties file that contains a list of bundles that will be used to generate the ...
1
vote
0answers
51 views
How to get a generated karaf kar file to be included with a maven assembly?
Trying to get the maven assembly plugin to include my kar file.
This below works fine with "war" or "jar", but not with "kar".
<dependencySets>
<dependencySet>
...
5
votes
1answer
143 views
Spring Jdbc declarative transaction management within karaf
I have project module, which is getting built as a osgi bundle (spring-dm).
Bundles are getting deployed in karaf container.
I have database interaction classees, which are developed using ...
1
vote
0answers
75 views
Blueprint CXF serviceFactories: Need an instance per request
I am using Apache Karaf, CXF, and Aries Blueprint.
I have a bundle which defines a number of JAX-RS services. By default, CXF will make these services singletons, but this will not work for me. I ...
0
votes
1answer
114 views
How to change PaxExam port
I have a successfully running suite of integration tests using PaxExam. I run the tests using Maven. The purpose of the tests is to test REST web services implemented through Apache CXF running in ...
0
votes
1answer
258 views
OSGI Integration testing, Pax Exam probe executing tests before container bundles start
I'm currently trying to write an OSGI integration tests using PAX-EXAM+KARAF and faced a problem that pax exam trying to execute test methods before dependent bundles are actually started/initialized ...
1
vote
1answer
65 views
What is the proper Maven repository for Apache Karaf 2.2.10?
I'm upgrading my build from Karaf 2.2.2 to 2.2.10 and have a problem finding one artifact:
Can't resolve bundle org.apache.karaf:org.apache.karaf.management:jar:2.2.10:
Failure to find ...
0
votes
1answer
202 views
Need help using Karaf's features-maven-plugin maven plugin… osgi
My goal is to create a features.xml for my multi-module maven project and gather all the required jars needed for the various features. I need to resolve the bundle jars via file: rather than mvn:
I ...
0
votes
0answers
109 views
obtain a working Apache Karaf instance into JBoss AS 7.1
I want to have an Apache Karaf runtime working inside JBoss Application Server 7.1. Theoretically it works, but following these steps, it fails finding some dependencies and the console is not full ...
1
vote
2answers
93 views
OSGi - Is it possible to override a bundle's import package version using a fragment?
I have a bundle (jersey-server) that imports a package (org.objectweb.asm) with a resolution of optional and no version specified:
org.objectweb.asm;resolution:=optional
Currently, our application ...
0
votes
0answers
18 views
obtain Apache Karaf console working on JBoss AS 7.1
I want to obtain a working Apache Karaf console (accessible by SSH) on my JBoss Application Server 7.1 instance. I have read something about it in this JBoss Community Issue, but the solution ...
1
vote
1answer
57 views
Real Introduction to Apache Karaf
We are looking to use Karaf, but their introduction/quick start (main Karaf website) has almost nothing to say about deploying apps to the container - I know, amazing yet true. Anyone know of a useful ...
1
vote
1answer
134 views
Karaf container, Rest WS and Spring security
I'm trying to applied security (Basic Authentication e.g.) to my Rest-WS.
Those WS are published through DOSGi in a Karaf container.
<!--
Register VCPENetworkManager as OSGi Service
--> ...
0
votes
1answer
155 views
Pax Exam 2.6.0 + Karaf 2.3.0 - Debugging in Eclipse fails - NotBoundException
I have been using Pax Exam 2.6.0 for running integration tests on Apache Karaf 2.3.0 via the Karaf Exam Container.
Everything works as expected, except for local debugging (not remote) of an ...
1
vote
0answers
37 views
Complete thread dumps in Karaf
When I use dev:create-dump, the thread stacks in the dump are incomplete. Is it possible to configure Karaf to:
dump full stacks?
detect deadlocks?
1
vote
2answers
37 views
Pax-logging: specifying which timezone to use for logs
In my org.ops4j.pax.logging.cfg file, I've set:
log4j.appender.mylogger.layout=org.apache.log4j.PatternLayout
log4j.appender.mylogger.layout.ConversionPattern=%d{yyyy-MM-dd hh:mm:ss z} | %-5.5p | ...
1
vote
1answer
91 views
Apache karaf - How to log:display a 'lot' of information?
Working with karaf 2.2.9 on linux ubuntu servers, I have a karaf command which launches a some code. This generates some detailed functionnal log in the karaf.log
This command is executed regularly ...
0
votes
0answers
160 views
how correctly produce json by RESTFUL web service on karaf?
I'm using Apache Karaf and CXf and JSON, I implement a restful web service as the following:
RestFul Method:
@GET
@Path("/user")
@Produces(MediaType.APPLICATION_JSON)
public User handleGeUser() ...
1
vote
2answers
183 views
Karaf OSGI Aries Blueprint ClassCastException: Impl cannot be cast to Interface
Karaf v2.3.0, org.apache.aries.blueprint.core:1.0.1, throws ClassCastException when an interface method is called on service imported from another bundle. The interface method is defined on the ...
0
votes
0answers
132 views
Run multiple Play applications in one VM
Whenever I run "play run" command, a new JVM is launched which has NettyServer running the play application on default port 9000.
But is any of the below things possible in play 2.0.4?
Run one ...
0
votes
1answer
21 views
the karaf log doesn't display the date
The karaf log doesn't display the date(day month year), it just display the time, is there any configuration should take place to display both the date and the time in karaf log.
1
vote
2answers
216 views
How do you deploy a war at startup in apache-karaf
I have created a war file that I deploy in karaf by running the osgi:install command like
osgi:install -s file:/system/com/mywebapp/1.0.0/mywebapp-1.0.0.war
How can I configure karaf so that this ...
0
votes
1answer
435 views
Logging camel exceptions and sending to the dead letter channel
I have a Camel route, running within Karaf, for which I've added a Dead Letter Channel. This is to handle cases where the route fails and I want to keep the problem message and log the cause. I ...
3
votes
2answers
694 views
OSGI service JPA PersistenceContext not injected
I have a core library that has an interface that I want to expose as an OSGI service in Fuse ESB (Apache ServiceMix and Karaf). The goal is to allow other bundles to use it. The service uses JPA ...
8
votes
1answer
290 views
Does OSGI JNDI allow coexistence with JNDI calls from non-OSGI code?
Chapter 126 of the OSGI Enterprise Release 5 specification mentions compatibility:
"Support the traditional JNDI programming model used by Java SE and Java EE clients."
and use of OSGI-unaware ...
0
votes
1answer
109 views
using camel-stream in karaf
I'm running a stock example route in karaf. I know it's working because when I change stream:out to log:test, I can see the messages in the log every 5 seconds. However, I don't seem to get anything ...
0
votes
3answers
140 views
Camel - unmarshal().serialization() - ClassNotFoundException
I'm trying to unmarshal with serialization method a bean that is not the current bundle but in a commons components bundle.
I get the following error when camel tries to unmarshal my bean :
...
1
vote
2answers
447 views
XML Parser Class loading issues in Karaf
I have an OSGi bundle that does some LDAP operations. It uses Apache Shared Directory to do these operations. I'm using Maven Bundle Plugin to build my bundle. For lack of time and resources, I have ...
0
votes
1answer
153 views
How to configure OpenJPA logging with Pax Logging?
How can I configure OpenJPA in to use Pax Logging in Karaf? According to several threads I found (e.g. log4j error with pax-logging), it seems that setting
<property name="openjpa.Log" ...
