Re: Camel Email Component Missing Attachments

2013-02-07 Thread Claus Ibsen
love contributions http://camel.apache.org/contributing.html > > kind regards, > Christoph > > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-Email-Component-Missing-Attachments-tp3386382p5727102.html > Sent from the Camel Deve

Re: svn commit: r1443858 - in /camel/trunk/camel-core/src: main/java/org/apache/camel/component/bean/BeanInfo.java test/java/org/apache/camel/component/bean/CamelSimpleExpressionPerfTestRunner.java

2013-02-08 Thread Claus Ibsen
}); > + > +ctx.start(); > + > +Map body = new HashMap(); > +body.put("p", "q"); > + > +ProducerTemplate template = ctx.createProducerTemplate(); > +// Initial one, it's a dry start, we don't care about this one. > +template.sendBody("direct:start", body); > + > +// Measure the duration of the executions in nanoseconds > +long totalNsDuration = 0; > +for (int i = 0; i < TEST_EXECUTION_COUNT; i++) { > +long tick = System.nanoTime(); > +template.sendBody("direct:start", body); > +totalNsDuration += System.nanoTime() - tick; > +} > + > +// Return the average duration in milliseconds > +return totalNsDuration / TEST_EXECUTION_COUNT / 1000 / 1000; > +} > +} > > -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [camel-extra] 2.10.1 release

2013-02-08 Thread Claus Ibsen
a/issues/detail?id=30 > > -- > Henryk Konsek > http://henryk-konsek.blogspot.com -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [DISCUSS] Camel 2.10.4 and 2.9.6 releases

2013-02-08 Thread Claus Ibsen
0 issues fixed, I think > we should get 2.9.6 out the door as well, so I'm planning to release it this > week as well. > > Is there anything you're working on that should make it into 2.10.4 and > 2.9.6? Please shout now. > > Cheers, > Hadrian -- Claus Ibsen ---

Re: [DISCUSS] Camel 2.10.4 and 2.9.6 releases

2013-02-09 Thread Claus Ibsen
6.6-features.xml > > > > On 02/08/2013 07:56 AM, Hadrian Zbarcea wrote: >> >> Tests are failing for me in full builds. I am working on it and will >> release asap. >> >> Cheers, >> Hadrian >> >> On 02/08/2013 04:21 AM, Claus Ibsen wrote: &g

Re: svn commit: r1444236 - /camel/branches/camel-2.10.x/components/camel-msv/pom.xml

2013-02-09 Thread Claus Ibsen
,7 +61,7 @@ > >com.sun.msv.datatype.xsd > xsdlib > - 20060615 > + 2013.2 > > > > > -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: LDAP component / ICLA received

2013-02-10 Thread Claus Ibsen
t; Rqoy/5jGb/VPNAY+tJ6xc0t1DfKBol4rZWyoBK42O8lzgYxYjdvr139dL2xlnuj6 > fC/lTTUkPSYhxSKLVl61/wwXOE0ZbgA4dwToPMwzrPl45Eh2Bt0x6CrIFbPB5JH5 > tIK/Jjfe9M+A5vq6UPO8wvlMKBbsttlzTYpblkc+5X+1P9zYquuzwcAuq8nTyzU= > =CGfb > -END PGP SIGNATURE- -- Claus Ibsen - Red Hat, Inc. FuseSou

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-02-11 Thread Claus Ibsen
to relax the checkstyle rule >> > about this, let's say 350 lines instead of 200. Then this would >> > already fix this last violation automatically. The other option would >> > be to split that method into 2 or 3 sub-methods but looking at the >> > logic

Re: Regarding traceExceptions in Tracer

2013-02-11 Thread Claus Ibsen
; exchange.setException(e); > } > > This could be rectified by calling the traceExchange(exchange) method in the > finally block. Please do let us know if we are correct. > > Thanks and Regards, > Bhavani > > > > -- > View this message in context: &

Re: About 4 method signatures by the ClassResolver API

2013-02-12 Thread Claus Ibsen
://camel.465427.n5.nabble.com/About-4-method-signatures-by-the-ClassResolver-API-tp5727207.html > Sent from the Camel Development mailing list archive at Nabble.com. You may ask for an implementation of a class, and expect it to return back its interface. And hence why these methods can make

Re: Support for zip (de)compression

2013-02-12 Thread Claus Ibsen
haling (instead of "file"). > > Updated version of the patch will be highly appreciated :) . > Yeah well spotted Henryk. I like your suggestions. > Best regards. > > -- > Henryk Konsek > http://henryk-konsek.blogspot.com -- Claus Ibsen - Red H

Re: Why do we allow executing service shutdown logic twice (or more times)?

2013-02-12 Thread Claus Ibsen
ipalani* > Apache Camel Committer > Enterprise Architect, Program Manager, Open Source Integration specialist > http://about.me/raulkripalani | http://www.linkedin.com/in/raulkripalani > http://blog.raulkr.net | twitter: @raulvk <http://twitter.com/raulvk> -- Claus Ibsen -

Re: svn commit: r1445263 - in /camel/trunk/camel-core/src: main/java/org/apache/camel/support/ServiceSupport.java test/java/org/apache/camel/component/vm/VmMultipleContextsStartStopTest.java

2013-02-13 Thread Claus Ibsen
text */ > +c2.stop(); > +c2.start(); > + > +/* Send a message again and assert that it's received */ > +template.requestBody("direct:test", "Hello world!"); > +mock.assertIsSatisfied(); > + > +} > + > +@Override > +protected RouteBuilder createRouteBuilder() throws Exception { > +return new RouteBuilder() { > +@Override > +public void configure() throws Exception { > + > +} > +}; > +} > +} > \ No newline at end of file > > -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [DISCUSS] Camel 2.10.4 and 2.9.6 releases

2013-02-15 Thread Claus Ibsen
the cxf features, use the camel ones). That's what I am ready to do, but >> I'll wait for Dan's comment first. >> >> Cheers, >> Hadrian >> >> >> On 02/09/2013 03:02 AM, Claus Ibsen wrote: >>> >>> On Sat, Feb 9, 2013 at 4:47

Re: [DISCUSS CAMEL 3.0] weekly IRC chat at 02/12/2013 7:00PM - 8:00PM CET

2013-02-16 Thread Claus Ibsen
t;> >> import static org.apache.camel.dataformat.XStreamDslBuilder.*; >> ... >> from(...).marshal(xstream).setXStream(...).to(...); >> >> >> In general static imports would be our friends here :) .I need to >> think about it and then I'll co

Re: Support for zip (de)compression

2013-02-16 Thread Claus Ibsen
op you and just dig in and help with other stuff that interrest you. We should though add a note to this new data format at the 2.11 release notes page. > -- > Henryk Konsek > http://henryk-konsek.blogspot.com -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of R

Re: New camel not working

2013-02-18 Thread Claus Ibsen
q://queue:jms.fromDatabase_queue?concurrentConsumers=1" /> > >uri="file://?fileName=//home//camel//smppgate-2.0.1//data//messages//message_send.txt" > /> > > > > Thank you, and sorry for my english > > > > > -- > View th

Re: [DISCUSS] Camel 3.0 - Core of the routing engine

2013-02-19 Thread Claus Ibsen
point, but before >> going to further length, I want to gauge if my concern is shared. >> >> What do you think? >> >> Raúl. >> > > > -- > Christian Schneider > http://www.liquid-reality.de > > Open Source Architect > http://www.talend.com > -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-02-19 Thread Claus Ibsen
the anticipated 2.11 release out of the door. http://camel.apache.org/2012/07/04/apache-camel-2100-released.html -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com

Re: [DISCUSS] Camel 3.0 - Core of the routing engine

2013-02-19 Thread Claus Ibsen
le to understand how to use Camel and its routes / components. > Christian > > On 19.02.2013 10:31, Claus Ibsen wrote: >> >> Its been on the Camel 3.0 roadmap for a long time >> >> Though its heading caption may have been chosen a better wording than >> - More flexible r

Re: [Camel 3 discussion] Components releases

2013-02-19 Thread Claus Ibsen
t do you think? > > Best regards. > > [1] > http://camel.465427.n5.nabble.com/DISCUSS-CAMEL-3-0-weekly-IRC-chat-at-02-12-2013-7-00PM-8-00PM-CET-td5727462.html > [2] > http://www.sonatype.com/books/mvnref-book/reference/pom-relationships-sect-pom-syntax.html > [3] > http:/

Re: [Camel 3 discussion] Components releases

2013-02-21 Thread Claus Ibsen
we do not miss out on things, and the end users do not get confused what is being released next, and what JAR fits together with what etc. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog:

Re: [DISCUSS] Scala components in ASF Camel

2013-02-22 Thread Claus Ibsen
his work for a few Scala components. I do not mind hosting and supporting Scala components at ASF if these components is natural Scala libraries and frameworks. For example a camel-play component to integrate with the Scala Play Framework etc. > [1] http://camel.apache.org/contributing.html &g

Re: [DISCUSS] Scala components in ASF Camel

2013-02-22 Thread Claus Ibsen
patability Scala has. eg the Scala 2.9 vs 2.10 debacle. I think for Scala based components we cannot dual support both Scala 2.9 and 2.10 binary releases. And therefore they would be Scala 2.10 based for now. > > -- > *Ioannis Canellos* > * > > ** > Blog: http://iocanel.

Re: [DISCUSS] - Camel 2.10.4 release

2013-02-25 Thread Claus Ibsen
Camel-2-10-4-td5728018.html > Thanks. > GangLiu -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [VOTE] Release Apache Camel 2.10.4

2013-02-25 Thread Claus Ibsen
s://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&version=12323558 > > > -- > Hadrian Zbarcea > Principal Software Architect > Talend, Inc > http://coders.talend.com/ > http://camelbot.blogspot.com/ -- Claus Ibsen - Red Hat, Inc. Fuse

Re: 3.0 Ideas

2013-02-27 Thread Claus Ibsen
e spring eventually but >> > that could be a pain. Either way I can create the JIRA. >> > >> > > >> > > Best regards. >> > > >> > > -- >> > > Henryk Konsek >> > > http://henryk-konsek.blogspot.com >> > >

Re: aggregator - force completion with header...

2013-03-01 Thread Claus Ibsen
current message instead of skipping it... > > any thoughts on this? > > > > > - > Ben O'Day > IT Consultant -http://consulting-notes.com > > -- > View this message in context: > http://camel.465427.n5.nabble.com/aggregator-force-completion-with-header-tp57

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-04 Thread Claus Ibsen
they are about. Also it would be great if there is a new SMX bundle release, as some of the new Camel components require these new bundles to work in OSGi. Jean how does these releases is on vacation this week. Maybe we can get someone else from SMX team to cut and release the bundles? -- Claus

Re: svn commit: r1452689 - /camel/trunk/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/FallbackTypeConverter.java

2013-03-05 Thread Claus Ibsen
unmarshal > the message, due to {}", ex); > +} > } > } > InputStream inputStream = > parentTypeConverter.convertTo(InputStream.class, exchange, value); > > -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [VOTE] Release Apache Camel 2.9.6

2013-03-06 Thread Claus Ibsen
s.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&version=12323592 > > -- > Hadrian Zbarcea > Principal Software Architect > Talend, Inc > http://coders.talend.com/ > http://camelbot.blogspot.com/ -- Claus Ibsen - Red Hat, Inc. FuseSource is

Re: svn commit: r1453733 - in /camel/branches/camel-2.10.x: ./ camel-core/src/main/java/org/apache/camel/impl/CompositeRegistry.java camel-core/src/test/java/org/apache/camel/impl/CompositeRegistryTes

2013-03-07 Thread Claus Ibsen
null) { > +return answer; > } > } > -return answer; > +if (ex != null) { > + throw ex; > +} else { > +return answer; > +} > } > > public Object lookup(String name) { > > Propchange: camel/branches/camel-2.10.x

[DISCUSS] - Rename camel-redis and camel-neo4j to include spring in their name

2013-03-09 Thread Claus Ibsen
-redis -> camel-spring-redis camel-neo4j -> camel-spring-neo4j -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-12 Thread Claus Ibsen
. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: Contribution: Component XML Digital Signature

2013-03-12 Thread Claus Ibsen
§ crypto:signxml://? > § crypto:verfyxml://? > o or shall I create a new component “cryptoxml”? > · Shall I add the classes to the package org.apache.camel.component.crypto ? > > Regards Franz -- Claus Ibsen - Red Hat, Inc.

Re: How to use predicate in when() for Body in choice()

2013-03-12 Thread Claus Ibsen
t; > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/How-to-use-predicate-in-when-for-Body-in-choice-tp5728999.html > Sent from the Camel Development mailing list archive at Nabble.com. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: Re: Contribution: Component XML Digital Signature

2013-03-13 Thread Claus Ibsen
/2000/09/xmldsig#base64 >>> >>> I have a few questions about the contribution: >>> · Schall I add the new code to the maven project with >>> org.apache.camel and >>> camel-crypto? >>> · There is already a crypto component for signing

Re: Quartz and Jdbc

2013-03-14 Thread Claus Ibsen
rce() { > MysqlDataSource datasource = new MysqlDataSource(); > datasource.setUser("uzairkamal"); > datasource.setPassword("EaDqq2Ed2YeAQV2X"); > datasource.setDatabaseName("intuira_services_db"); > datasource.setServerName(

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-14 Thread Claus Ibsen
how they go. > Best, > Christian > > P.S. Can start a build over night on my Windows 8 box (virtual > environment)... > > > On Tue, Mar 12, 2013 at 1:06 PM, Claus Ibsen wrote: > >> Hi >> >> So we are good on the OSGi front. The features file has been u

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-14 Thread Claus Ibsen
Hi Okay I fixed a few issues with the Karaf features so they all now work and the camel-itest-karaf all passes on linux and windows as well. The actual OSGi tests in camel-itest-osgi is currently being tested on my Windows XP box. -- Claus Ibsen - Red Hat, Inc. FuseSource is

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-14 Thread Claus Ibsen
On Thu, Mar 14, 2013 at 3:29 PM, Claus Ibsen wrote: > Hi > > Okay I fixed a few issues with the Karaf features so they all now work > and the camel-itest-karaf all passes on linux and windows as well. > > The actual OSGi tests in camel-itest-osgi is currently being tested on &

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-15 Thread Claus Ibsen
weekend I am scheduled for beers and family visiting. So no time for fixing this earlier. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-19 Thread Claus Ibsen
On Fri, Mar 15, 2013 at 5:26 PM, Claus Ibsen wrote: > Hi > > The ftp component has some problems for Windows users, and I am > working on fixing this. > https://issues.apache.org/jira/browse/CAMEL-6056 > > I wont be able to fix this before next week, and there is also a &

Re: insert into jdbc don't work

2013-03-20 Thread Claus Ibsen
= ""; > Class.forName("com.mysql.jdbc.Driver"); > Connection connection = DriverManager.getConnection(url, login, > pass); > PreparedStatement ps=connection.prepareStatement(s); > ps.executeUpdate(); > > } > > } > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/insert-into-jdbc-don-t-work-tp5729501.html > Sent from the Camel Development mailing list archive at Nabble.com. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-22 Thread Claus Ibsen
ing - after all 2.11 is a big release. Any thoughts? > Sent while on the move > On 19 Mar 2013 12:32, "Claus Ibsen" wrote: > >> On Fri, Mar 15, 2013 at 5:26 PM, Claus Ibsen >> wrote: >> > Hi >> > >> > The ftp component has some problems for

Re: svn commit: r1460258 - in /camel/trunk/components/camel-scala/src/main/scala/org/apache/camel/scala: RichExchange.scala dsl/SAbstractDefinition.scala dsl/builder/RouteBuilder.scala

2013-03-24 Thread Claus Ibsen
> @@ -85,7 +85,7 @@ class RouteBuilder extends Preamble with > */ >def handle[E <: Throwable](block: => Unit)(implicit manifest: Manifest[E]) > = { > stack.size match { > - case 0 => > SOnExceptionDefinition[E](builder.onException(manifest.erasure.asIns

Re: svn commit: r1460258 - in /camel/trunk/components/camel-scala/src/main/scala/org/apache/camel/scala: RichExchange.scala dsl/SAbstractDefinition.scala dsl/builder/RouteBuilder.scala

2013-03-25 Thread Claus Ibsen
w.redhat.com > Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/) > (English) > http://jnn.iteye.com (http://jnn.javaeye.com/) (Chinese) > Twitter: willemjiang > Weibo: 姜宁willem > > > > > > On Sunday, March 24, 2013 at 7:05 PM, Claus Ibsen wrote: > >&

Re: 3.0 Ideas

2013-03-25 Thread Claus Ibsen
DSL and read the links. That is a good way to find documentation. Also we have 2 FAQs about this. The other is http://camel.apache.org/how-to-avoid-sending-some-or-all-message-headers.html > -- > Henryk Konsek > http://henryk-konsek.blogspot.com -- Claus Ibsen

Re: in camel-example-cxf-proxy demo which in camel distribution, how EnrichBean.enrich method was called

2013-03-25 Thread Claus Ibsen
on is: how EnrichBean.enrich method was called and why the > parameter to enrich() is Document type? > > any reply is appriciate! > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/in-camel-example-cxf-proxy-demo-which-in-camel-distribution-how-E

Re: org.apache.camel.test.cxf.blueprint.CxfConsumerSoap12Test.testBeanDefinitionParserAndInvokeGreeter

2013-03-25 Thread Claus Ibsen
1.2 endpoint already registered on address > http://localhost:1101/CxfConsumerSoap12Test/router > at > org.apache.cxf.binding.soap.SoapBindingFactory.addListener(SoapBindingFactory.java:921) > at org.apache.cxf.endpoint.ServerImpl.start(ServerImpl.java:131) > > Best, > Christian -- Claus Ibsen

[HEADS UP] - Configuring passwords in Camel endpoints is now easier with new RAW syntax

2013-03-25 Thread Claus Ibsen
the upcoming Camel 2.11 release. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [HEADS UP] - Configuring passwords in Camel endpoints is now easier with new RAW syntax

2013-03-25 Thread Claus Ibsen
ni* > Enterprise Architect, Open Source Integration specialist, Program > Manager | Apache > Camel Committer > http://about.me/raulkripalani | http://www.linkedin.com/in/raulkripalani > http://blog.raulkr.net | twitter: @raulvk > > On Mon, Mar 25, 2013 at 4:03 PM, Claus Ibsen wro

Re: 3.0 Ideas

2013-03-25 Thread Claus Ibsen
XML DSLs. Which we auto generate the XSD schema from the source code. But sun/oracle haver never implemented that. Improving docs is always appreciated. For example at any time fell free to add FAQ entries for stuff that you feel is good knowledge for others. > -- > Henryk

Re: [HEADS UP] - Configuring passwords in Camel endpoints is now easier with new RAW syntax

2013-03-25 Thread Claus Ibsen
for uri parameters. I didn't want at first to "risk" side-effects if it was parsing the entire URI. In the future we may want to expand on this and allow the RAW anywhere in the URI. But for now people have most problems with URI parameters. -- Claus Ibsen

Re: 3.0 Ideas

2013-03-26 Thread Claus Ibsen
lani | http://www.linkedin.com/in/raulkripalani > http://blog.raulkr.net | twitter: @raulvk > > On Mon, Mar 25, 2013 at 4:43 PM, Claus Ibsen wrote: > >> On Sun, Mar 24, 2013 at 5:23 PM, Henryk Konsek wrote: >> >> We already have a removeHeaders() DSL [1] >> > &g

Re: 3.0 Ideas

2013-03-27 Thread Claus Ibsen
to links for further material, eg where the actual information is. Of course a FAQ like, can just be without further links http://camel.apache.org/can-i-use-camel-on-java-14.html But a better FAQ has references to other pages http://camel.apache.org/how-do-i-debug-my-route.html

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-27 Thread Claus Ibsen
last ticket CAMEL-6042 requires some documentation about this new functionality. I have asked Aaron to help with that. And it would be great with a better set of unit tests as well. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web:

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-27 Thread Claus Ibsen
Hi Oh yeah and CAMEL-5483 is a issue we must resolve. I think Hadrian is working on that. On Wed, Mar 27, 2013 at 2:25 PM, Claus Ibsen wrote: > Hi > > Okay we are getting there. The JIRA tracker has 3 tickets for 2.11.0. > https://issues.apache.org/jira/issues/?filter=12315472&am

Re: [HEADS-UP] Possible issue with neo4j

2013-03-27 Thread Claus Ibsen
be >>> resolved before the 2.11.0 release. >>> >>> My guts instinct says that we'll have to pull the camel-spring-neo4j >>> component out and host it maybe at camel-extra, but we'll see in the >>> coming days. >>> >>> Cheers,

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-03-28 Thread Claus Ibsen
-5698. >> >> For CAMEL-5916 the fix is almost ready. Hopefully I'll reach in time before >> we cut the release. It'll be a great improvement for the usability of >> camel-cxfrs. >> >> Regards, >> Raúl. >> >> On Wed, Mar 27,

Re: [DISCUSS] another camel 3.0 ideas

2013-04-02 Thread Claus Ibsen
; > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/DISCUSS-another-camel-3-0-ideas-tp5729737.html > Sent from the Camel Development mailing list archive at Nabble.com. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat

Re: [DISCUSS] another camel 3.0 ideas

2013-04-02 Thread Claus Ibsen
Ah sorry it was for bullet #2. This new gmail update dont have the undo send mail anymore :( On Tue, Apr 2, 2013 at 1:40 PM, Claus Ibsen wrote: > Ad 1) > This is possible today with the consumer.bridgeErrorHandler option. > > See more details at the file component

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-04-02 Thread Claus Ibsen
AM, Raul Kripalani wrote: >>> >>>> Hi, >>>> >>>> Managed to find time to commit the improvement for CAMEL-5698. >>>> >>>> For CAMEL-5916 the fix is almost ready. Hopefully I'll reach in time >>>> before &g

Multiple versions of Scala detected

2013-04-04 Thread Claus Ibsen
[WARNING] org.apache.camel:camel-scala:2.11-SNAPSHOT requires scala version: 2.10.1 [WARNING] org.scalatest:scalatest_2.10:1.9.1 requires scala version: 2.10.0 [WARNING] Multiple versions of scala libraries detected! -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-04-04 Thread Claus Ibsen
us on cutting a RC. Hadrian do you have time to work on a release next week? -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-04-05 Thread Claus Ibsen
gt; > Babak > > > Christian Mueller wrote >> +1 >> Hadrian, I could do the release too. I have free cycles starting at >> Saturday. >> >> Best, >> Christian >> >> >> On Thu, Apr 4, 2013 at 4:20 PM, Claus Ibsen < > >> cl

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-04-05 Thread Claus Ibsen
if necessary. > > Just my 2ct > Jan > -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-04-05 Thread Claus Ibsen
failing test so we can have it fixed before cutting the 2.11 release. On Fri, Apr 5, 2013 at 12:32 PM, Claus Ibsen wrote: > Just a note to us that we should remember checkin the maven archetype > for the blueprint. > There may be a problem with 2x blueprint on the classpath when using

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-04-05 Thread Claus Ibsen
we should have these 2 fixed before we can cut the RC. On Fri, Apr 5, 2013 at 4:09 PM, Claus Ibsen wrote: > Hi > > I am running a full test on Windows. > > There is a single test in camel-aws that fails. I guess its related to > not being able to delete the file. > Will dig

Re: [DISCUSS] - Moving towards Camel 2.11 release

2013-04-05 Thread Claus Ibsen
5, 2013 at 6:16 PM, Claus Ibsen wrote: > Hi > > Okay so we have 2 issues > > - a test in camel-aws fails on Windows. > - camel:run in blueprint does not work > > I will work on the latter tomorrow morning. > And then look at the failing test on Windows (it indicate a p

IDEA 12.1 cannot build Apache Camel project anymore

2013-04-07 Thread Claus Ibsen
/IDEA-104772 -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: JDBC component handling large results

2013-04-09 Thread Claus Ibsen
e-results-tp5730509p5730582.html > Sent from the Camel Development mailing list archive at Nabble.com. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com A

Re: camel-quartz 2.10.4 against quartz 2.1.7 bug?

2013-04-09 Thread Claus Ibsen
//camel.465427.n5.nabble.com/camel-quartz-2-10-4-against-quartz-2-1-7-bug-tp5730615.html > Sent from the Camel Development mailing list archive at Nabble.com. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Re: [VOTE] Release Apache Camel 2.11.0 (take 2)

2013-04-10 Thread Claus Ibsen
Apache Camel 2.11.0 >> [ ] -1 Veto the release (provide specific comments) >> Vote is open for at least 72 hours. >> >> Thanks in advance, >> Christian >> >> [1] >> https://issues.apache.org/jira/issues/?jql=project%20%3D%20CAMEL%20AND%20fixVersion%20

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-13 Thread Claus Ibsen
omments) > Vote is open for at least 72 hours. > > Thanks in advance, > Christian > > [1] > https://issues.apache.org/jira/issues/?jql=project%20%3D%20CAMEL%20AND%20fixVersion%20%3D%20%222.11.0%22 > [2] > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=1231121

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-13 Thread Claus Ibsen
t;> >> Please find the staging repo here: >> https://repository.apache.org/content/repositories/orgapachecamel-092/ >> >> The tarballs are here >> >> https://repository.apache.org/content/repositories/orgapachecamel-092/org/apache/camel/apache-cam

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-13 Thread Claus Ibsen
> >> The tarballs are here >> >> https://repository.apache.org/content/repositories/orgapachecamel-092/org/apache/camel/apache-camel/2.11.0/ >> >> Tag: >> http://svn.apache.org/repos/asf/camel/tags/camel-2.11.0/ >> >> Please review, help out with testing

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-14 Thread Claus Ibsen
>> [ ] +1 Release the binary as Apache Camel 2.11.0 >> [ ] -1 Veto the release (provide specific comments) >> Vote is open for at least 72 hours. >> >> Thanks in advance, >> Christian >> >> [1] >> https://issues.apache.org/jira/issues/?jql=projec

camel-servet - test fails on trunk

2013-04-14 Thread Claus Ibsen
0, Skipped: 0 [INFO] [INFO] BUILD FAILURE [INFO] [INFO] Total time: 17.237s [INFO] Finished at: Mon Apr 15 08:32:24 CEST 2013 [INFO] Final Memory: 20M/205M -- Claus Ibsen - Red Hat, Inc. FuseSource i

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-15 Thread Claus Ibsen
gt; Just wonder if we could disable this per default but let the stats get >> > enabled somehow through a flag, property or the likes. Then ppl can >> decide >> > on their own what's more important to them: better performance versus >> > statistics. >> >

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-15 Thread Claus Ibsen
0 >> [ ] -1 Veto the release (provide specific comments) >> Vote is open for at least 72 hours. >> >> Thanks in advance, >> Christian >> >> [1] >> https://issues.apache.org/jira/issues/?jql=project%20%3D%20CAMEL%20AND%20fixVersion%20%3D%20%222.11.0%2

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-15 Thread Claus Ibsen
ibo: 姜宁willem > > > > > > On Monday, April 15, 2013 at 3:18 PM, Claus Ibsen wrote: > >> Hi >> >> I actually think this RC has too many out of the box issues for new >> users to Camel. >> For example all the example issues. >> >> A

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-15 Thread Claus Ibsen
; > Best, > Christian > > > On Mon, Apr 15, 2013 at 3:17 PM, Claus Ibsen wrote: > >> Hi >> >> Did anyone test the maven archetypes to create new Camel projects? >> They are really valuable for new users to Camel and existing for >> creating new projects. &

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-15 Thread Claus Ibsen
Hi I tested all the maven camel archetypes on trunk. They all worked, but there was a few things to polish. Such as read me files, and a few had a maven warning about a missing plugin version. So all that has been polished and committed to trunk. On Mon, Apr 15, 2013 at 9:27 PM, Claus Ibsen

Re: Junit for CronScheduleRoutePolicy is not working

2013-04-16 Thread Claus Ibsen
dt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) > at > org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) > > Can Anyone please Help me for this? > > > > -- > View this message in context: > http://

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-16 Thread Claus Ibsen
e on the late Thursday. > > Other thoughts? > > Best, > Christian > > > On Mon, Apr 15, 2013 at 3:17 PM, Claus Ibsen wrote: > >> Hi >> >> Did anyone test the maven archetypes to create new Camel projects? >> They are really valuable for new users to Ca

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-16 Thread Claus Ibsen
Hi The camel karaf commands may have a problem. Just noticed camel:context-list didn't return any data, when I had a Camel app in karaf. On Tue, Apr 16, 2013 at 3:14 PM, Claus Ibsen wrote: > Hi > > Yeah it would be lovely to re-cut the release tomorrow. > > I will give the

Re: [VOTE] Release Apache Camel 2.11.0 (take 3)

2013-04-16 Thread Claus Ibsen
Hi Hmm seems working testing with a fresh Karaf 2.3.1 karaf@root> camel:context-list Name Status Uptime [ blueprintContext ] [ Started ] [ 2 minutes ] Also I installed a Camel spring-dm app, and it was also listed. On Tue, Apr 16, 2013 at 4:40 PM, Claus Ibsen wr

Re: [VOTE] Release Apache Camel 2.11.0 (take 4)

2013-04-18 Thread Claus Ibsen
c comments) > Vote is open for at least 72 hours. > > Thanks in advance, > Christian > > [1] > https://issues.apache.org/jira/issues/?jql=project%20%3D%20CAMEL%20AND%20fixVersion%20%3D%20%222.11.0%22 > [2] > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=

Re: [VOTE] Release Apache Camel 2.11.0 (take 4)

2013-04-18 Thread Claus Ibsen
append? On Fri, Apr 19, 2013 at 7:41 AM, Claus Ibsen wrote: > The README.txt file of the tar ball is not what we have in the > README.txt file in the root of the source code. > I guess the assembly process may pickup another file or something. > > But the README.txt in the tar ball i

Re: [VOTE] Release Apache Camel 2.11.0 (take 4)

2013-04-18 Thread Claus Ibsen
--r--@ 1 davsclaus staff 3838817 Apr 17 15:56 camel-manual-2.12-SNAPSHOT.pdf On Fri, Apr 19, 2013 at 7:44 AM, Claus Ibsen wrote: > Also noticed that the NOTICE.txt file talks about spring. But that > text may seem outdated as well, as it refers to emails when the > company was named in

Re: [VOTE] Release Apache Camel 2.11.0 (take 4)

2013-04-18 Thread Claus Ibsen
t; > [1] > https://issues.apache.org/jira/issues/?jql=project%20%3D%20CAMEL%20AND%20fixVersion%20%3D%20%222.11.0%22 > [2] > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&version=12321695 -- Claus Ibsen - Red Hat, Inc. FuseSource is now

Re: [VOTE] Release Apache Camel 2.11.0 (take 4)

2013-04-20 Thread Claus Ibsen
advance, >> Christian >> >> [1] >> https://issues.apache.org/jira/issues/?jql=project%20%3D%20CAMEL%20AND%20fixVersion%20%3D%20%222.11.0%22 >> [2] >> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&version=12321695 >> -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

Setup Camel 2.11 branch

2013-04-22 Thread Claus Ibsen
, maybe at the release guide page. -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web: http://fusesource.com Twitter: davsclaus Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen

[DISCUSS] - Last Camel 2.9.7 release and retire this branch

2013-04-22 Thread Claus Ibsen
, 2.10. and 2.9 braches, then there is a lot to maintain. So I dont think there is much activity on the 2.9 branch. Also the 2.9 branch is now 16 months actie maintained. Any thoughts? -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of Red Hat Email: cib...@redhat.com Web

Re: svn commit: r1469718 - in /camel/trunk/components/camel-http/src: main/java/org/apache/camel/component/http/HttpComponent.java test/java/org/apache/camel/component/http/HttpConnectionManagerSettin

2013-04-22 Thread Claus Ibsen
dpoint)context.getEndpoint("http://www.google.com?httpConnectionManager.maxTotalConnections=300";); > +HttpConnectionManagerParams params = > endpoint.getHttpConnectionManager().getParams(); > +assertEquals("Get the wrong parameter.", 300, > params.getM

Re: Setup Camel 2.11 branch

2013-04-22 Thread Claus Ibsen
> (English) > http://jnn.iteye.com (http://jnn.javaeye.com/) (Chinese) > Twitter: willemjiang > Weibo: 姜宁willem > > > > > > On Monday, April 22, 2013 at 3:30 PM, Claus Ibsen wrote: > >> Hi >> >> We should setup a branch for 2.11 >> ht

Re: Setup Camel 2.11 branch

2013-04-22 Thread Claus Ibsen
gt; Twitter: willemjiang > Weibo: 姜宁willem > > > > > > On Monday, April 22, 2013 at 10:46 PM, Claus Ibsen wrote: > >> Hi Willem >> >> This is great. Let us know when the svnmerge has been setup, and ready to >> use. >> >> >> On Mon, Apr 2

Re: [DISCUSS] - Last Camel 2.9.7 release and retire this branch

2013-04-24 Thread Claus Ibsen
has objections, I can start the release build > later today... > > [1] > https://issues.apache.org/jira/issues/?jql=project%20%3D%20CAMEL%20AND%20fixVersion%20%3D%20%222.9.7%22 > > Best, > Christian -- Claus Ibsen - Red Hat, Inc. FuseSource is now part of

Re: [VOTE] Release Apache Camel 2.9.7

2013-04-24 Thread Claus Ibsen
e Camel 2.9.7 > [ ] -1 Veto the release (provide specific comments) > Vote is open for at least 72 hours. > > Thanks in advance, > Christian > > [1] > https://issues.apache.org/jira/issues/?jql=project%20%3D%20CAMEL%20AND%20fixVersion%20%3D%20%222.9.7%22 -- Claus I

<    1   2   3   4   5   6   7   8   9   10   >