How to trace filtered Messages

2010-08-10 Thread Achim Nierbeck
Hi, I was wondering if there is a easy way of tracing which messages didn't make it through the filter. In the release notes of the 2.0.0 Camel version (I'm currently using 2.4.0) there is following sentence: "Message Filter EIP marks Exchanges as filtered" Somehow this doesn't seem to work wi

AW: How to trace filtered Messages

2010-08-10 Thread Achim Nierbeck
endet: Dienstag, 10. August 2010 14:38 An: users@camel.apache.org Betreff: Re: How to trace filtered Messages On Tue, Aug 10, 2010 at 2:15 PM, Achim Nierbeck wrote: > Hi, > > I was wondering if there is a easy way of tracing which messages didn't make > it through the filter. > In

Re: CXF : Camel 2.12.2 : Karaf 3.0.0 : Soap-Timeout

2014-01-08 Thread Achim Nierbeck
I'm not sure this is a "bug" in PaxWeb, it might be in Jetty, but I think I've seen this once with a Karaf 2.x version. But I can't remember how I solved it. Something from the back of my head tells me it's something in the webservice. Somehting more like the payload might be to big ... regards, A

Re: Re: Re: Camel with Karaf

2014-03-27 Thread Achim Nierbeck
Hi, hotdeployment and updateing of bundles containing routes in general need to be handled with care ;) The camel-core bundle usually takes care of managing the routes available within all other bundles, if you update another bundle, the old route is still referenced from the core bundle and theref

Re: camel jpa blueprint unit test

2015-02-15 Thread Achim Nierbeck
Hi, the CamelBlueprintTestSupport does internally use the tinySR as OSGi service registry mock. With that setup it's not possible to have a running JPA test. This is because the aries blueprint JPA bundles expect certain environment parameters which aren't just full filled. That's the reason I wro

Re: camel jpa blueprint unit test

2015-02-16 Thread Achim Nierbeck
> Is it possible to imagine to have such an improvement in the mocked service > registry ? > I think it would be nice if we can unit test our jpa stuff (like with > spring) without having to run a complete karaf container for each test. > > Arnaud > > 2015-02-15 18:27 GMT+01:0

Re: Error when executing: install -s mvn:com.packt/sample

2015-03-10 Thread Achim Nierbeck
Hi Christian, I just verified if there is an issue with the sample, which isn't. Did you follow the instructions in the book, also did you make sure the Karaf is in a "Vanilla" state? For recipe2 of chapter2 to work you need to have camel installed: feature:repo-add mvn:org.apache.camel.karaf/ap

Re: Error when executing: install -s mvn:com.packt/sample

2015-03-11 Thread Achim Nierbeck
Revision.java:165) > at > org.apache.felix.framework.cache.JarRevision.(JarRevision.java:77) > at > org.apache.felix.framework.cache.BundleArchive.createRevisionFromLocation(BundleArchive.java:878) > at > org.apache.felix.framework.cache.BundleArchive.rev

Re: Error when executing: install -s mvn:com.packt/sample

2015-03-11 Thread Achim Nierbeck
; Docuteam GmbH > Langacker 16 > Postfach > CH-5405 Baden-Dättwil > +41 (0)56 470 03 37 > c.eugs...@docuteam.ch > > > > > > > Am 11.03.2015 um 08:07 schrieb Achim Nierbeck : > > > > Hi Christian, > > > > this is rather strange. Are you still building

Re: Error when executing: install -s mvn:com.packt/sample

2015-03-11 Thread Achim Nierbeck
Hi Christian, awesome :-) regards, Achim 2015-03-11 17:55 GMT+01:00 Christian Eugster : > Now everything seems to work. Thank you all! > > Christian > > Christian Eugster > Docuteam GmbH > Langacker 16 > Postfach > CH-5405 Baden-Dättwil > +41 (0)56 470 03 37 > c.eugs...@docuteam.ch > > > > > >

Re: A lot of spam

2017-08-22 Thread Achim Nierbeck
actually the mailinglists are maintained by Apache, and nabble is only a gimmick on top of mailinglists. If you have issues, file those in the Jira of Apache. If you don't want to join a certain mailinglist use https://lists.apache.org/ to follow that mailinglist. regards, Achim 2017-08-22 10:37

Re: Basic authentication of WAB using Jaas in Karaf

2020-05-18 Thread Achim Nierbeck
Hi, I already also answered Gerald in another mail. I'm not quite sure but what might be an issue, is that the default http-context used in his application isn't bound to the underlying security realm. Therefore it's quite a possibility that there needs to be a configuration done in his own applic

Re: camel-osgi bundle

2013-04-22 Thread Achim Nierbeck
Hi, you'll need to switch to camel-blueprint, that'll work better for you. regards, Achim 2013/4/22 Andreas Gies > Hello, > > Is the camel-osgi bundle deprecated ? - The latest version I can find is > 2.3.0. > I was trying to create a Camel Context in Java with the > OsgiDefaultCamelContext(b

Re: prevent CamelContext from shutting down in blueprint

2013-05-23 Thread Achim Nierbeck
Maybe turning on debug level in the logging will give you a better reason why the camel context is destroyed right after startup. This usually happens if you have something wrong in your route ... regards, Achim 2013/5/23 Ioan Eugen Stan > Hello, > > I'm using Camel 2.11.0 under Karaf 2.3.1. I'

Re: CamelOne

2013-05-27 Thread Achim Nierbeck
While talking about it, how about a Camel One in Europe :D Cheers, Achim 2013/5/28 Claus Ibsen > I will be at the reception as well on the 9th. > I fly in on the 8th in the evening. > > > On Tue, May 28, 2013 at 7:03 AM, Robert Davies > wrote: > > Looking forward to CamelOne - I will be ther

Re: Sharing spring services with blueprint

2013-06-12 Thread Achim Nierbeck
Hi, yes it is possible, did you declare your beans to be services? You'll need to install the spring-dm features as well. Regards, Achim 2013/6/11 ramesh.rajendran > I have a spring context which exports the osgi service defined under > /META-INF/spring/spring-dao.xml like thisThe question is

Re: Need original message at the end of the route

2013-06-18 Thread Achim Nierbeck
Hi, might consider to store it right in the beginning either to a temp file system or into a database which you could consume on a second route, or with a 6th processor. regards, Achim 2013/6/18 sarfaraj > I have camel route. In that, I need to have original message which I > received/consume

Re: camel blueprint - unit tests

2013-09-10 Thread Achim Nierbeck
wow, now that is something I call a rant :D anyhow, you're only telling half the truth ;) yes developing osgi might be cumbersome but to be hones EJB is the same PITA and I really hated working with JBoss and maven when I needed to work with EJBs, the turnaround cycles where awful and to me much b

ProducerTemplate without using Spring

2013-09-11 Thread Achim Nierbeck
Hi there, I have a interesting setup right now using the ProducerTemplate. I found the following: http://camel.apache.org/why-does-camel-use-too-many-threads-with-producertemplate.html on how to add a global usable ProducerTemplate as your not supposed to recreate the Producer template within eve

Re: ProducerTemplate without using Spring

2013-09-16 Thread Achim Nierbeck
issue which I did describe at [1]. Thanks and regards, Achim [1] - https://issues.apache.org/jira/browse/CAMEL-6695 2013/9/11 Achim Nierbeck > Hi there, > > I have a interesting setup right now using the ProducerTemplate. > > I found the following: > > http://camel.apache.o

Re: help me for use camel-cxf

2013-09-23 Thread Achim Nierbeck
hi, take a look on one of my samples, I'm using CXF also for consuming, at [1]. regards, Achim [1] - https://github.com/inovex/camel-cloud-integartion-jax2013/tree/master/cxf-consumer 2013/9/24 klark_pang > Hi, I try to call an external web service using camel-cxf, And processing > returns r

Re: Polling consumer: how to recognize an empty directory

2012-08-03 Thread Achim Nierbeck
Hi Hilde, there is this flag "sendEmptyMessageWhenIdle" to set on the file endpoint. This way you can tell wether the route is idling and therefore are able to stop. regards, Achim 2012/8/3 Hilde : > Hello folks! > > We create a polling consumer route via a dynamic router. When the transfer > is

Re: Best practise for deploying my app with Karaf

2012-10-23 Thread Achim Nierbeck
Another option, the one I would prefer, create your own distribution. It's pretty straight forward, create a features.xml of your bundles and the ones needed. Now create another project using this features xml and the features-maven-plugin with the add-features-to-repo goal. Now you are able to ass

FTP download of bigger files gives me OOM

2012-10-25 Thread Achim Nierbeck
Hi, using Camel 2.10.2 I have a ftp endpoint that downloads a couple of files from a remote FTP server. There are different files located on this server, some of them are about 700 MB size. Now every time I start the route for downloading it gives me a OOM when trying to download this file. The ro

Re: FTP download of bigger files gives me OOM

2012-10-25 Thread Achim Nierbeck
); > } > > > > On Thu, Oct 25, 2012 at 4:51 PM, Achim Nierbeck > wrote: >> Hi, >> >> using Camel 2.10.2 >> I have a ftp endpoint that downloads a couple of files from a remote >> FTP server. >> There are different files located on this se

Re: FTP download of bigger files gives me OOM

2012-10-26 Thread Achim Nierbeck
exchange); >> } else { >> // store file content directory as stream on the body >> return retrieveFileToStreamInBody(name, exchange); >> } >> >> >> >> On Thu, Oct 25, 2012 at 4:51 PM, Achim Nierbeck >> wrote

Re: VM Queues Disconnected after Karaf Bundle Update

2013-02-08 Thread Achim Nierbeck
Hi, The routes in your bundles are all managed by the camel-core bundle. Since you updated one of it the "old" reference still exists for the core bundle. So after updating a bundle containing routes you also need to refresh the core bundle. Another way to work around this, or better something th

Re: VM Queues Disconnected after Karaf Bundle Update

2013-02-10 Thread Achim Nierbeck
ot; (like we say here in Spain :D). > > I remember a thread sometime ago about creating a component to link any two > routes across bundles via OSGi services, but don't know what happened with > the idea thereafter. > > Regards, > Raúl. > On 8 Feb 2013 21:02, "Achim Nie

Re: Packaging camel project (under Karaf)

2013-02-27 Thread Achim Nierbeck
Hi, you probably should try to build your own features file and use it in conjunction with the maven-karaf-features plugin to create your own pre-packaged Karaf distribution. Unfortunately since our change to svn-pub-sub the documentation disappeared I would have given you some direct links to the

Re: Service architecture

2011-03-29 Thread Achim Nierbeck
Hi, just my 0.02$ on a container/runtime. My best experience as runtime for Camel is to use Karaf. If you need more out of the box components like ActiveMQ and so forth you might also consider to use Servicemix. regards, Achim 2011/3/29 John McDonald : > I was hoping people with more insight int

Re: Service architecture

2011-03-29 Thread Achim Nierbeck
Hi Gonzalo, Makes sense, besides one point, why do you expect you need multiple Karaf instances? Regarding Camel or Spring there is no need to deploy those in extra Servers, because you only got one CamelContext/SpringContext per bundle. Therefore I'm sure you can use one Karaf instance with all y

Re: Service architecture

2011-03-29 Thread Achim Nierbeck
gt; for fail-over. Just configure it through the ActiveMQ... > > Mike > > > 2011/3/29 Achim Nierbeck > >> Hi Gonzalo, >> >> Makes sense, besides one point, why do you expect you need multiple >> Karaf instances? >> Regarding Camel or Spring there is n

Re: Service architecture

2011-03-29 Thread Achim Nierbeck
Hi Gonzalo, regarding NRM, sorry no documentation besides the one provided by ServiceMix :) Regarding multiple instances of Karaf, you can administer those via shell commands and start / stop them through your first instance. regards, Achim 2011/3/29 gonzalo diethelm : >> Makes sense, besides

Re: Service architecture

2011-03-29 Thread Achim Nierbeck
fferent > machines. But IMHO, it's better to have failover between 2 instances on the > same machine than no fail over at all... > > 2011/3/29 Achim Nierbeck > >> Hi Mike, >> >> but this only makes sense when you use multiple instances on different >> mach

Re: Problem designing a camel route for an OSGi system.

2011-05-04 Thread Achim Nierbeck
> - > Ben O'Day > IT Consultant -http://benoday.blogspot.com > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Problem-designing-a-camel-route-for-an-OSGi-system-tp4363426p4371567.html > Sent from the Camel - Users mailing list archive at Nabble.com

Re: Camel web concole on osgi

2011-05-06 Thread Achim Nierbeck
Hi Madhav, https://issues.apache.org/jira/browse/CAMEL-3519 is still open. So I'm not sure if there has been some progress or not. At least I didn't do any research lately. regards, Achim > Hi, > > We have recently looked at camel web console and would like to integrate the > same with equinox.

Re: Thoughts about Karaf profiles / releases / growing number of dependencies (Re: AW: AW: Problem when starting camel-cxf in karaf)

2011-05-17 Thread Achim Nierbeck
Well, you should rather blame it on the Java Runtime then on OSGi since these packages that did give you such a problem are provided by the Sun/Oracle Java Runtime and my not be by a IBM or other. So this is just the basic it's already in the JDK/JRE thing just like which version of JAXB is include

Re: custom condition check frequently

2011-06-02 Thread Achim Nierbeck
I suggest you take a look at the jpa component. With that and a corresponding Entity object this can be achieved. If you want to check for certain values to be set of the entity you can define a named query on it. Am 02.06.2011 19:03, schrieb fachhoch: I want to check a table data in my databa

CXF Client in a threaded route

2011-07-29 Thread Achim Nierbeck
wrong here? Regards -- *Achim Nierbeck* Apache Karaf <http://karaf.apache.org/> Committer & PMC OPS4J Pax Web <http://wiki.ops4j.org/display/paxweb/Pax+Web/> Committer & Project Lead blog <http://notizblog.nierbeck.de/>

Re: CXF Client in a threaded route

2011-07-29 Thread Achim Nierbeck
FYI, no problem anymore just didn't see the needed config param camel:recipientList needs to be configured to run threaded cxf:bean:productionServer?address=${header.address} fixed it. thanx anyways, Achim :-) 2011/7/29 Achim Nierbeck : > Hi, > > I'm trying

Strange behavior of Camel-Bindy and windows

2011-08-05 Thread Achim Nierbeck
Hi I do have a very strange behavior with camel 2.8 and the camel-bindy module on my windows machine. My camel route is quite straight forward

Re: Strange behavior of Camel-Bindy and windows

2011-08-05 Thread Achim Nierbeck
able does take a hold on my csv file twice. >> I guess this is the problem but how can I get around it? >> >> Thanx, Achim >> >> >> -- >> >> Apache Karaf <http://karaf.apache.org/> Committer & PMC >> OPS4J Pax Web <http://wiki.ops4j.

Re: cxf rest service disappears with camel 2.8.0

2011-08-09 Thread Achim Nierbeck
> Hi there, >>>>>>>>> I have a web app which exposes a cxf rest service via >>>>>>>>> and two soap endpoints with. >>>>>>>>> >>>>>>>>> The problem is, with camel 2.7.2, everything works o

Re: cxf rest service disappears with camel 2.8.0

2011-08-09 Thread Achim Nierbeck
excuse my latest mail, hit the wrong button :( 2011/8/9, Achim Nierbeck : > 2011/8/9, Mirko Caserta : >> Hi Willem, >> yes, I'm using the CXF servlet transport. >> >> Here is my web.xml: http://pastie.org/2343749 >> >> Thanks, Mirko. >> >>

Re: File contents -> socket; socket -> pipeline; fails

2011-08-11 Thread Achim Nierbeck
rs mailing list archive at Nabble.com. -- -- *Achim Nierbeck* Apache Karaf<http://karaf.apache.org/> Committer& PMC OPS4J Pax Web<http://wiki.ops4j.org/display/paxweb/Pax+Web/>Committer& Project Lead blog<http://notizblog.nierbeck.de/>

Re: Karaf 2.2.3 and Camel 2.8.0

2011-09-03 Thread Achim Nierbeck
g.springframework.core [43.0] -- View this message in context: http://camel.465427.n5.nabble.com/Karaf-2-2-3-and-Camel-2-8-0-tp4763828p4763828.html Sent from the Camel - Users mailing list archive at Nabble.com. -- -- *Achim Nierbeck* Apache Karaf<http://karaf.apache.org/> Comm

Recursive Calls and CXF

2011-09-13 Thread Achim Nierbeck
Hi, I'm using Camel 2.8 in conjunction with camel-cxf. Now I have the following scenario. I have 2 specialized .NET services which do server me the following two services - doSomeSpecialHandling -- this is a rather lengthy process running which returns right after start and keeps on processing

Re: Recursive Calls and CXF

2011-09-14 Thread Achim Nierbeck
proved to support a "do while" style as > well. I have a vague memory of a JIRA ticket about this. > Then you should be able to specify a predicate instead of the fixed number. > > > > On Tue, Sep 13, 2011 at 10:57 AM, Achim Nierbeck > wrote: >> Hi, >> >

recipientList inside SEDA route with CXF

2011-09-29 Thread Achim Nierbeck
"Production"-Route is done. Since there are multiple hosts available we want to do parallel processing. Any hints are welcome, Achim -- -- *Achim Nierbeck* Apache Karaf <http://karaf.apache.org/> Committer & PMC OPS4J Pax Web <http://wiki.ops4j.org/display/paxweb/Pax+Web/> Committer & Project Lead blog <http://notizblog.nierbeck.de/>

Re: recipientList inside SEDA route with CXF

2011-09-29 Thread Achim Nierbeck
, are there any ways of not "remembering" which call did go to which Host? Thanks again, Achim 2011/9/29 Achim Nierbeck : > Hi > > using Camel 2.8.0 I'm having the following scenario. > I'm using the CXF for connecting to a couple .NET Webservices. > >      

Re: recipientList inside SEDA route with CXF

2011-09-29 Thread Achim Nierbeck
eader changes I don't know how to get around this. Any ideas? Thanks in advance, Achim 2011/9/29 Achim Nierbeck : > Ok, > > some more worrying details. > > Right now I have two Remote Hosts > After a successful run on Host A a second run is done (not parallel > but sequentia

Re: recipientList inside SEDA route with CXF

2011-09-30 Thread Achim Nierbeck
pientListProcessor class does store the >> endpoints depending on the uri as key. >> Now since only my header changes I don't know how to get around this. >> Any ideas? >> >> Thanks in advance, Achim >> >> 2011/9/29 Achim Nierbeck : >> > Ok,

Re: recipientList inside SEDA route with CXF

2011-10-07 Thread Achim Nierbeck
third call to a service on Host A ends up on endpoint B somehow the Cache returns endpoint B for requesting EndpointKey made up of URI for Host A. Any help is welcome since this now is turning into a Major bug for me :( Thanx, Achim 2011/9/30 Achim Nierbeck > The suggested workaround by

Re: recipientList inside SEDA route with CXF

2011-10-10 Thread Achim Nierbeck
endpoint cache. Thanx for you help, Achim 2011/10/10 Willem Jiang > Hi Achim, > > Did you have a chance to try to set the request context header of address ? > You can override the endpoint address by using it. > > > On Fri Oct 7 21:07:14 2011, Achim Nierbeck wrote: > >&g

Re: recipientList inside SEDA route with CXF

2011-10-10 Thread Achim Nierbeck
eader of address ? > You can override the endpoint address by using it. > > > On Fri Oct 7 21:07:14 2011, Achim Nierbeck wrote: > >> Ok, this only solved half of my problem or better it postponed it. >> >> Now I do have the following scenario: >> >> >&

Re: Issue with recipientList and cxf in 2.8.0?

2011-10-12 Thread Achim Nierbeck
sage in context: > http://camel.465427.n5.nabble.com/Issue-with-recipientList-and-cxf-in-2-8-0-tp4896788p4896788.html > Sent from the Camel - Users mailing list archive at Nabble.com. > -- -- *Achim Nierbeck* Apache Karaf <http://karaf.apache.org/> Committer & PMC OPS4J Pax Web <http://wiki.ops4j.org/display/paxweb/Pax+Web/> Committer & Project Lead blog <http://notizblog.nierbeck.de/>

Re: Issue with recipientList and cxf in 2.8.0?

2011-10-13 Thread Achim Nierbeck
w this message in context: > http://camel.465427.n5.nabble.com/Issue-with-recipientList-and-cxf-in-2-8-0-tp4896788p4897609.html > Sent from the Camel - Users mailing list archive at Nabble.com. > -- -- *Achim Nierbeck* Apache Karaf <http://karaf.apache.org/> Committer & PMC

Re: Issue with recipientList and cxf in 2.8.0?

2011-10-17 Thread Achim Nierbeck
ipientList-and-cxf-in-2-8-0-tp4896788p4896788.html > > Sent from the Camel - Users mailing list archive at Nabble.com. > > > > > > -- > Claus Ibsen > - > FuseSource > Email: cib...@fusesource.com > Web: http://fusesource.c

Concurrent SEDA Route with CXF Client

2011-11-08 Thread Achim Nierbeck
Hi all, Using Camel 2.8.1 with CXF 2.4.0 I have a strange behaviour/issue with consuming Webservices with a cxf client. My Route has a configured CXF Endpoint http://tempuri.org/"; xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays"; xmlns:i="http://www.w3.org/2001/XMLSchema-ins

Re: Concurrent SEDA Route with CXF Client

2011-11-08 Thread Achim Nierbeck
clients seem to share the connections even though the calls are within concurrent consumers. Does it make sense, could this be my problem? And if so, how do I get around it? Thanx again, Achim 2011/11/8 Achim Nierbeck > Hi all, > > Using Camel 2.8.1 with CXF 2.4.0 > I have a stran

Re: Type Converters Load

2011-11-14 Thread Achim Nierbeck
; Going by the above times, it's really far behind from what we are looking. > We are looking at reading file with 2k records in 1 millisecond. > > Please advise. > > Thanks & regards, > Ebe > > > -- > View this message in context: > http://camel.465427.n5

Re: Misleading jmx statistics on jpa component

2011-11-15 Thread Achim Nierbeck
essage failed as well > 8) There is no good messages to commit > 9) A WARN is logged about the failure of processing the 1th message > ... and it will repeat itself. > > > > > > -- > Claus Ibsen > - > FuseSource > Email: cib...@fusesource.com

Re: Camel: How to make camel stop processing some messages without stopping the route.

2011-11-15 Thread Achim Nierbeck
tion or other use of, or > taking of any action in reliance upon, this information by persons or > entities other than the intended recipient is prohibited. If you received > this in error, please contact the sender and delete the material from any > computer.*** > -- *Achim Ni

Re: Misleading jmx statistics on jpa component

2011-11-15 Thread Achim Nierbeck
Claus, cool thanx :) regards, Achim 2011/11/15 Claus Ibsen > On Tue, Nov 15, 2011 at 11:05 AM, Claus Ibsen > wrote: > > On Tue, Nov 15, 2011 at 11:02 AM, Achim Nierbeck > > wrote: > >> Hi Clause, > >> > >> even though I'm fully with you that

Re: convert Exchange Headers to JPA Entity

2011-12-15 Thread Achim Nierbeck
I suggest writing a bean that does it. Taking the Headers with the @Headers annotation and returning your entity object which can be persisted by the jpa component. regards, Achim 2011/12/15 ebinsingh > Hi All, > > I am trying to convert the certain (not all) Headers values available in > Excha

Re: convert Exchange Headers to JPA Entity

2011-12-15 Thread Achim Nierbeck
Entity @Table(name="MarsTrace") public class MarsTracerEntity implements Serializable{ The intercept config in the Camel Context. -- View this message in context: http://camel.465427.n5.nabble.com/convert-Exchange-Headers-to-JPA-Entity-tp5077846p5

Re: Does Camel supports dynamic routing by getting the routing info from database

2012-03-05 Thread Achim Nierbeck
Hi, so you have a specialized route in your database you could start with a jpa endpoint polling on this route, after you retrieved your "customized" route via jpa you need a bean that acts as a RouteBuilder where you interpret your "customized" route and start this route. This roue builder Either

Re: diagram generator

2012-04-11 Thread Achim Nierbeck
Hi Romain, I just tried it on a more "complex" project. Unfortunately it didn't work. Though it seems to me it might be just a issue of either the project type, it's a war right now. Or it is because the bean defined inside the configured camel-context.xml references a class of the same project.

Re: diagram generator

2012-04-11 Thread Achim Nierbeck
Hi Romain, it's a class not found exception. The class in question is contained in the same project as the xml file and is used by the -tag. regards, Achim 2012/4/11 Romain Manni-Bucau : > Hi, > > without more info that's hard to help, which error do you have? > > - Rom

Re: diagram generator

2012-04-11 Thread Achim Nierbeck
Manni-Bucau : > is it a class in the war or in a dependency? > > if it is in the war did you call compile phase before the generation? > > more generally dependencies needs to be added to the plugin too. > > - Romain > > > 2012/4/11 Achim Nierbeck > >> Hi Ro

Re: diagram generator

2012-04-11 Thread Achim Nierbeck
yep, can be found here: - https://github.com/ANierbeck/test-diagram regards, Achim 2012/4/11 Romain Manni-Bucau : > can you provide a sample to reproduce it? > > - Romain > > > 2012/4/11 Achim Nierbeck > >> Hi, >> >> it's a class of the project/war

Re: diagram generator

2012-04-11 Thread Achim Nierbeck
> >> can you have a try with an up-to-date version of the plugin please? >> >> - Romain >> >> >> 2012/4/11 Achim Nierbeck >> >>> yep, >>> >>> can be found here: >>> - https://github.com/ANierbeck/test-diagram >&g

Re: diagram generator

2012-04-11 Thread Achim Nierbeck
; than you for the report :) > > - Romain > > > 2012/4/11 Achim Nierbeck > >> ok, just pulled again, now it works also for me on my sample :) >> thanx a lot >> >> 2012/4/11 Romain Manni-Bucau : >> > with the trunk and your settings (in particular th

Re: diagram generator

2012-04-12 Thread Achim Nierbeck
in place but those aren't replaced, for example in a unit test. I really appreciate your help here thanks. regards, Achim 2012/4/11 Romain Manni-Bucau : > hmm, > > which error this time? > > - Romain > > > 2012/4/11 Achim Nierbeck > >> Ok, >> >

Re: diagram generator

2012-04-12 Thread Achim Nierbeck
y working around this, just wanted to let you know :) regards, Achim 2012/4/12 Romain Manni-Bucau : > you specified the xml file from src/, maybe try specifying the one in > target/classes > > - Romain > > > 2012/4/12 Achim Nierbeck > >> :) >> >> this time it

Re: diagram generator

2012-04-12 Thread Achim Nierbeck
will give it a try ... regards, Achim 2012/4/12 Romain Manni-Bucau : > this means you xml file was not filtered in target? well a workaround can > be to give system proeprties to the maven command line i think > > - Romain > > > 2012/4/12 Achim Nierbeck > >>

Re: Adding Dependencies in pom.xml

2012-06-13 Thread Achim Nierbeck
well, it's not really camel related, but do you have a maven artefact for the oracle driver, cause there is no official released oracle driver available on maven repositories (AFAIK) regards, Achim 2012/6/13 Subhanjan : > > > > I am creating a project which will have database at its back end. For

Re: Problem with camel-cxf when Jolokia is installed

2015-07-22 Thread Achim Nierbeck
Hi Ed, if you use Karaf4 and/or Pax-Web 4.x you'll get Jetty 9 for free :-) regards, Achim 2015-07-22 17:24 GMT+02:00 Ed Welch : > > configuring CXF to be synchronous definitely removes the stack trace, so > it does appear to be an async issue with Jetty. > > I sent a message to their list and

Re: Unit testing Fuse (Karaf) with camel implemented in blueprint (shortcoming 1)

2015-09-21 Thread Achim Nierbeck
Hi, quite some time ago I wrote a blog about how to test with Pax-Exam [1]. Might be of interest for you. regards, Achim [1] - http://notizblog.nierbeck.de/2013/08/testing-camel-jpa-routes-with-pax-exam-and-karaf/ 2015-09-21 16:44 GMT+02:00 ywang9009 : > Christian, thanks for the reply. Yes I

Re: Unit testing Fuse (Karaf) with camel implemented in blueprint (shortcoming 1)

2015-09-21 Thread Achim Nierbeck
Hi, as jboss uses a karaf after all, make sure your test works with a vanilla karaf and you should be fine. regards, Achim 2015-09-21 21:01 GMT+02:00 ywang9009 : > Achim, I think I have seen this article. I tried everything I could find > from > google. I am using jboss-fuse-full-6.1.0.redhat-3