Re: [UPDATE] Karaf WebConsole has issues with Karaf 4.4.4

2023-10-18 Thread Jakub Herkel
Hello, Could you also update bouncycastle to version 1.76 for Karaf 4.4.5? with best regards Jakub Herkel On Wed, Oct 18, 2023 at 9:36 AM Grzegorz Grzybek wrote: > > Hello > > A little updated - because of CVE-2023-44487 (HTTP/2 rapid reset attack) I > was waiting for upda

Re: Service PID for a JSON configuration

2023-07-30 Thread Jakub Herkel
I created https://issues.apache.org/jira/browse/KARAF-7736 best regards jakub On Thu, Jun 15, 2023 at 5:10 PM Jean-Baptiste Onofré wrote: > > Good point. Can you please create a Jira, I will improve this part ? > > Thanks, > Regards > JB > > On Wed, Jun 14, 2023 at 7:2

Re: Service PID for a JSON configuration

2023-06-14 Thread Jakub Herkel
; Regards > JB > > On Tue, Jun 13, 2023 at 8:45 PM Jakub Herkel wrote: > > > > Hello, > > > > I tried to use a json configuration with Karaf 4.4.3. For example I > > created a test.cfg.json: > > { > > "test1":"testString&quo

Service PID for a JSON configuration

2023-06-13 Thread Jakub Herkel
Hello, I tried to use a json configuration with Karaf 4.4.3. For example I created a test.cfg.json: { "test1":"testString", "test2":false } I can see that Karaf read this config viac config:list Pid:test.cfg BundleLocation: ? Properties: felix.fileinstall.filename =

Re: Problems with logging to karaf.log from liquibase >3

2022-06-08 Thread Jakub Herkel
your problem with loading XSD files is probably this issue https://github.com/liquibase/liquibase/issues/2817. I solved it temporary with set liquibase.secureParsing to false. Jakub On Tue, Jun 7, 2022 at 9:14 PM Steinar Bang wrote: > > > Steinar Bang : > > Jean-Baptiste Onofré : > >

Javax Activation and Karaf 4.3.6

2022-04-12 Thread Jakub Herkel
Hi, During testing I found out some problems with sending emails with Karaf 4.3.6 As far as I know version 4.3.3 is working. So I tried 4.3.4 and unfortunately this one it not working either. When I tried to send email I could see this exception: javax.mail.MessagingException: IOException while

Re: Problems with logging to karaf.log from liquibase >3

2022-03-10 Thread Jakub Herkel
I prepared some fixes for liquibase 3.7 but there was an another osgi related error. So maybe you can check liquibase 4.8.1 when it is released Jakub On Thu, Mar 10, 2022 at 6:23 AM Jean-Baptiste Onofré wrote: > > Hi Steinar, > > I'm sorry, I never tried liquidbase in Karaf. > > JUL is

Re: Log4j2 xml configuration with Karaf 4.3.5

2021-12-27 Thread Jakub Herkel
Hi, Thanks for your help, now it works best regards Jakub On Thu, Dec 23, 2021 at 8:06 PM JB Onofré wrote: > > Hi > > That’s normal : log:* commands only work with default log4j properties style. > > Regards > JB > > > Le 23 déc. 2021 à 20:05, Jakub Herkel a écr

Log4j2 xml configuration with Karaf 4.3.5

2021-12-23 Thread Jakub Herkel
I tried to setup log4j2 via xml configuration but when I tried "display" command I could see this exception: org.apache.karaf.shell.impl.console.osgi.LoggingCommandSessionListener/org.apache.karaf.shell.impl.console.osgi.LoggingCommandSessionListener [DEBUG] Executing command: 'display'

Re: GraalJS with Karaf 4.3

2021-12-15 Thread Jakub Herkel
Maybe you can try mozilla rhino. Jakub On Wed, Dec 15, 2021, 09:39 Jérémie wrote: > Hello, > > I am upgrading an application to jdk17, with Karaf 4.3. This application > was using camunda and nashorn to execute js, but this lib has been removed > on jdk17. > > I am looking for an example of

Re: Error message Deployment aborted due to loop

2021-04-11 Thread Jakub Herkel
> two inner features, one feature is a transitive dependency of the other. > > Can you share your feature ? > > Thanks, > Regards > JB > > > Le 10 avr. 2021 à 20:53, Jakub Herkel a écrit : > > > > Hi, > > > > When tracing some issues wi

Error message Deployment aborted due to loop

2021-04-10 Thread Jakub Herkel
Hi, When tracing some issues with refreshing of bundles during feature:install I have checked it with command: feature:install -v -t. I was able to fix refreshing (there were some optional imports) but I can see this error : Error executing command: Deployment aborted due to loop in missing

Confusing bundle status

2021-03-27 Thread Jakub Herkel
Hi, I tried karaf 4.3.0 and I have simple bundle (for testing) that contains one declarative service that throws a runtime exception from its init method (via @Activate annotations). When I tried to start this bundle I could see different outputs for state from different commands : 1) list

Re: Problems finding javax.activation.DataSource in karaf

2020-09-28 Thread Jakub Herkel
I can see the same problem with Java 11, but this issue is presented also with servicemix 7.0.1 and java 1.8. On Sun, Sep 27, 2020 at 7:15 PM Steinar Bang wrote: > > Steinar Bang : > > Jean-Baptiste Onofre : > > >> Hopefully, 3.10.2 will be released soon ;) > > > It was actually

Re: Problems finding javax.activation.DataSource in karaf

2020-07-28 Thread Jakub Herkel
Probably you have the same problem as me, see https://github.com/liquibase/liquibase/issues/1254 Jakub On Sun, Jul 26, 2020 at 2:07 PM Steinar Bang wrote: > Hm... I built liquibase-core 3.10.2-local-SNAPSHOT locally and tried it > out with my karaf feature, with the expectation of getting the

Re: karaf 4.3.0 RC1 and pax-jetty-http2

2020-04-19 Thread Jakub Herkel
: > Hi, > > Is it at runtime or when you build a custom distribution ? > > Unknown mvn protocol means that pax-url-aether is not there probably > (maybe due to a refresh). > > Let me try to reproduce. > > Regards > JB > > Le 19 avr. 2020 à 11:47, Jakub Herkel

karaf 4.3.0 RC1 and pax-jetty-http2

2020-04-19 Thread Jakub Herkel
I have tried karaf 4.3.0 RC1 (OpenJDK 64-Bit Server VM version 11.0.6+10) with pax-jetty-http2 feature and there is something wrong when it is used together with a configFile. After some investigation I have found a very simple feature.xml for reproducing of problem:

Re: Problem with Karaf 4.3.0 RC1 and Hibernate 5.4.13

2020-04-07 Thread Jakub Herkel
deployment and tests. On Mon, Apr 6, 2020 at 9:53 AM Jean-Baptiste Onofre wrote: > Yes, I saw the Jira thanks. > > You are migrating from SMX 7.0.1 to "pure" Karaf ? > > Regards > JB > > Le 6 avr. 2020 à 09:45, Jakub Herkel a écrit : > > I haven't tr

Re: Problem with Karaf 4.3.0 RC1 and Hibernate 5.4.13

2020-04-06 Thread Jakub Herkel
propose a fix at Hibernate. > > Regards > JB > > Le 5 avr. 2020 à 19:21, Jakub Herkel a écrit : > > I have tried Karaf 4.3.0 RC1 with the latest hibernate 5.4.13 but I have > got this exception : > > java.lang.NoClassDefFoundEr

Problem with Karaf 4.3.0 RC1 and Hibernate 5.4.13

2020-04-05 Thread Jakub Herkel
I have tried Karaf 4.3.0 RC1 with the latest hibernate 5.4.13 but I have got this exception : java.lang.NoClassDefFoundError: org/ops4j/pax/logging/spi/support/FormattingTriple at org.ops4j.pax.logging.spi.support.DefaultServiceLog.error(DefaultServiceLog.java:409) at

Re: Help with an exception during custom server startup

2019-01-13 Thread Jakub Herkel
nd the framework > > feature. > > > > Regards > > JB > > > > On 13/01/2019 19:48, Jakub Herkel wrote: > >> I have tried to update my pom (see updated pom.xml) but I could still > >> see the same exception. > >> > >> jakub >

Re: Help with an exception during custom server startup

2019-01-13 Thread Jakub Herkel
q-blueprint > activemq-broker-noweb > > > > > Regards > JB > > On 13/01/2019 17:56, Jakub Herkel wrote: > > I have tried to create a custom karaf distribution but I ha

Help with an exception during custom server startup

2019-01-13 Thread Jakub Herkel
I have tried to create a custom karaf distribution but I have had a problem with an exception during startup. org.apache.karaf.features.core[org.apache.karaf.features.internal.servi ce.FeaturesServiceImpl] : Unknown protocol: mvn java.net.MalformedURLException: Unknown protocol: mvn at

Re: Karaf branding

2010-07-27 Thread Jakub Herkel
:25 +0200 Try to put your branding.jar file in the lib directory, Karaf will take it at startup. Regards JB On 07/27/2010 11:03 AM, Jakub Herkel wrote: Hi, I have Karaf 2.0.0 embedded in my server, lib directory contains these jars : karaf-client.jar karaf-jaas-boot.jar karaf.jar best