Re: Instagram Component ?

2016-04-03 Thread Christian Müller
Good idea. And don't forget to file a JIRA first: https://issues.apache.org/jira/browse/CAMEL Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.co

Re: Camel Design Patterns ebook

2016-04-03 Thread Christian Müller
Well done! Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 On Fri, Apr 1, 2016 at 3:58 PM, Bilgin Ibryam w

Re: statement.maxRows not working as expected camel jdbc

2016-01-09 Thread Christian Müller
Greg and Claus was faster to fix it than me. :-) You can try the fix with the latest 2.17-SNAPSHOT, 2.16.2-SNAPSHOT or 2.15.6-SNAPSHOT. Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incu

Re: statement.maxRows not working as expected camel jdbc

2016-01-06 Thread Christian Müller
Hi Felix, I have a unit test which confirms your finding. Could you please open an JIRA and post the ticket number here. I will have a closer look during the next days. As workaround, you could also set the limit in the SQL query. Something like: select * from TBL_DATA_AC LIMIT 2 Best, Christian

Re: [ANNOUNCEMENT] Apache Camel 2.14.4 Released

2015-11-12 Thread Christian Müller
Great! On Wed, Nov 11, 2015 at 11:55 PM, Gregor Zurowski wrote: > The Apache Camel community announces the immediate availability of the > new patch release Apache Camel 2.14.4. This release contains 18 fixes > applied in the past few weeks by the community on the Camel 2.14.x > maintenance bran

Re: rabbitMQ message forwarding from one queue to another

2015-09-21 Thread Christian Müller
And there is no log entry? Best, Christian Am 20.09.2015 09:15 schrieb "prajath" : > Hi Christian, > message is not publishing from queue 'inbox' to 'outbox' > > 1.timer publish current date to queue 'inbox'- this part working > 2.from 'inbox' to 'outbox' - this is not working > > > > > Thanks, >

Re: how to get loginConfig into standalone camel salesforce component

2015-09-21 Thread Christian Müller
Did you checked the tests for this component? Best, Christian Am 21.09.2015 07:27 schrieb "rpcat" : > My standalone camel instance needs a salesforce component. It has: > > public class Driver > { > private Main main; > static final Logger log = LoggerFactory.getLogger(Driver.clas

Re: smpp connection info

2015-09-21 Thread Christian Müller
This is not possible. The underlying jsmpp library doesn't support a feature like that. Best, Christian Am 21.09.2015 12:22 schrieb "Bova Fabrizio" : > Hi > I am trying some performance test on camel.version 2.15.3 running on > apache-karaf-3.0.4 I have this route: > > xmlns=

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

2015-09-21 Thread Christian Müller
But than it's an integration test (or something similar) and not an unit test... Best, Christian Am 21.09.2015 16:45 schrieb "ywang9009" : > Christian, thanks for the reply. Yes I was talking about inter-bundle > dependency. One example is like this: I have some common code which lives > in > ano

Re: rabbitMQ message forwarding from one queue to another

2015-09-19 Thread Christian Müller
Facing which problem? Best, Christian Am 18.09.2015 13:20 schrieb "prajath" : > Hi All, > could you please help me to resolve the problem I am facing when forwarding > message from one queue to another , please see the spring xml. > thanks in advance > prajath > http://camel.apache.org/schema/spr

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

2015-09-19 Thread Christian Müller
If you are talking about inter-bundle dependencies, than it's not an unit test, right. What kind of issues do you face (details please). Best, Christian Am 18.09.2015 16:13 schrieb "ywang9009" : > This is one of the 2 shortcoming I discovered with Fuse/Karaf > > I have been using Fuse for only 1

Re: Getting JMSConsumer to look for messages every N seconds

2015-09-14 Thread Christian Müller
Or use the timer component to send a message each 10 seconds to a processor. This processor could use a consumer template to poll the queue in a loop and send the message to another camel route with a producer template (using the direct component ). The consumer template also has a timeout paramete

Re: kyro data format in camel

2015-09-13 Thread Christian Müller
Implement something more than what? You only shared the Spring bean definition with us, nothing else. Best, Christian Am 31.08.2015 10:21 schrieb "Felix Thomas" : > hello, > > I have used kyroformat for marshalling using a bean as below . > > > > > > I get the below message in the lo

Re: Transactions without External Transaction Manager

2015-09-11 Thread Christian Müller
Yes. Best, Christian Am 10.09.2015 15:53 schrieb "Rick Poleshuck" : > My use is case is to read from a JMS queue and update two different jdbc > tables with the same datasource. On failure of either update, both database > actions should be rolled back and the message should be sent to a jms > de

Re: Dynamic DataSource

2015-09-11 Thread Christian Müller
Is the dataSource configured in your context? Best, Christian Am 10.09.2015 13:56 schrieb "arnaud" : > Hello, > > Id'like to use a dynamic datasource with the camel-sql component but it's > not woking as I expected: > After a search on the forum, I have found a topic "Dynamic DataSource for > SQL

Re: Load Bean Definitions from XML in Camel

2015-08-24 Thread Christian Müller
I didn't got the question... You can create a Camel route from (Spring) XML or you can use Java Code, e.g. implementing a RouteBuilder. Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache In

Re: how to route pojo in camel

2015-08-24 Thread Christian Müller
Something like this: from("timer:...") .to("sql:...") .split(...) .convertBodyTo(...) .to("cxf:...") .to("ftp:...") .end(); Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apa

Re: Apache Camel XA transaction

2015-08-24 Thread Christian Müller
Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 On Mon, Aug 24, 2015 at 10:49 PM, Christian Müller < christian.muel...@gmail.com> wrote: > Have a look here: > > https://github.com/muellerc/camel-in-transaction/blob/master/src/test/java/org/

Re: Apache Camel XA transaction

2015-08-24 Thread Christian Müller
Have a look here: https://github.com/muellerc/camel-in-transaction/blob/master/src/test/java/org/apache/cmueller/camel/samples/camelone/tx/JmsAndJdbcCompensationTransactionSampleTest.java Hope this helps, Christian - Software Integration Specialist Apache Member V.P. Apache Came

Re: action at the end of the split

2015-08-15 Thread Christian Müller
> Von meinem iPhone gesendet > > > > > > > > > Am 10.08.2015 um 21:49 schrieb Wilson MacGyver < > wmacgy...@gmail.com > > >: > > > > > > > > > > I'm sorry my message isn't clear. I've read the

Re: Camel CXF cannot be loaded to Karaf 4.0.0

2015-08-11 Thread Christian Müller
Thanks for the detailed explanation! Best, Christian Am 11.08.2015 14:51 schrieb "Daniel Kulp" : > > The problem is that CXF the 3.0.x features file (which is pulled in via > Camel 2.15.2) doesn’t support Karaf 4. CXF only supports Karaf 4 starting > with CXF 3.1. > > Thus, when the Karaf resol

Re: action at the end of the split

2015-08-10 Thread Christian Müller
t > block. So I have no way of sending that to a SMTP route. > > On Mon, Aug 10, 2015 at 4:15 PM Christian Müller < > christian.muel...@gmail.com> wrote: > > > Sure, that's how stream works. We do not load the entire payload into > > memory. > > Why don&

Re: How to validate json schema by using camel avro

2015-08-10 Thread Christian Müller
Apache Camel Avro doesn't provide a validation option/feature. You have to check how Avro handle it. Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.link

Re: action at the end of the split

2015-08-10 Thread Christian Müller
, 2015 at 10:15 PM, Christian Müller < christian.muel...@gmail.com> wrote: > Sure, that's how stream works. We do not load the entire payload into > memory. > Why don't you use the property CamelSplitIndex? In this case, the output > will be > > [Test worker] INFO rou

Re: action at the end of the split

2015-08-10 Thread Christian Müller
e1 - should only happen once > > > given the input of 3 lines. CamelSplitSize is only set at the end of the > split. so only the 3rd time has the 3 displayed which is correct. > > however notice it says Processed updates, because the property is only > set within the split.

Re: How many JMS transactions within a route?

2015-08-10 Thread Christian Müller
You can read more about the supported cache options here [1], but CACHE_CONSUMER is the best option in your case. XA is not needed, because you only interact with one resource/broker. I'm not sure whether we have to have two JMS sessions here. May be an JMS expert can answer this question... [1] h

Re: Camel CXF cannot be loaded to Karaf 4.0.0

2015-08-10 Thread Christian Müller
Apache Camel 2.15.2 was build and tested with CXF 3.0.4 [1] - and not 3.1.1. Any reason why you have to use CXF 3.1.1? Camel 2.16.0 will use CXF 3.1.2 (or later) [2]. [1] https://git-wip-us.apache.org/repos/asf?p=camel.git;a=blob;f=parent/pom.xml;h=f2b12514025554cdca72f32f3c78df32cf890526;hb=f27c

Re: Parsing a XML in DSL

2015-08-09 Thread Christian Müller
You should use Saxon for many reasons... I suggest adding the camel-saxon dependency and use: /CamelData/Provider/text() Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Mem

Re: Issue with SetHeader / Xpath

2015-08-09 Thread Christian Müller
I suggest adding the camel-saxon dependency and use: ... Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 O

Re: Choice with xpath

2015-08-09 Thread Christian Müller
I suggest adding the camel-saxon dependency and use: ... Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 O

Re: SFTP - Twice as many retries as specified in maximumReconnectAttempts

2015-08-09 Thread Christian Müller
https://issues.apache.org/jira/browse/CAMEL-8639 will be fixed with Camel 2.16.0 and 2.15.3. This means you should use these SNAPSHOT versions, not 2.14.4-SNAPSHOT... Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Ap

Re: Camel XPath....Parsing a part of message Body...

2015-08-09 Thread Christian Müller
I suggest adding the camel-saxon dependency and use: /CamelData/Provider/text() Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christia

Re: action at the end of the split

2015-08-09 Thread Christian Müller
What do you mean with "is out of scope"? You can use the message header to get this information. Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin

Re: How many JMS transactions within a route?

2015-08-09 Thread Christian Müller
Why want you use XA when you are talking to only one resource? Camel creates one transaction per transacted route and consumer (as every consumer is using its own thread). What do you expect instead? Best, Christian - Software Integration Specialist Apache Member V.P. Apache Cam

Re: Skip duplicate records from CSV when loading to database

2015-08-09 Thread Christian Müller
Why is the MessageIdempotent repository not working for you? http://camel.apache.org/idempotent-consumer.html Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https:/

Re: camel+jms+TLS

2015-08-04 Thread Christian Müller
Which version of Camel do you use, how do you configured it, how does your route look like? What do you mean with "everything is fine"? What do you mean with "messages are consumed by camel, but I cant see anything in the queue"? You have to put more effort in describing your problem, if you reall

Re: Some Stupid Questions

2015-08-04 Thread Christian Müller
It will create a new instance for each call to the registry. But if you inject this bean to another bean (which has the singleton scope), than there is only one instance of this bean. A workaround could be to call the registry by yourself to get a fresh copy of this bean. The solution is to make yo

Re: camel-s3 route : recursive=true doesn't work

2015-08-04 Thread Christian Müller
No. Please check: http://camel.apache.org/aws-s3.html Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 On Tu

Re: Need help in running camel in raspberry pi

2015-07-17 Thread Christian Müller
The bundle "org.eclipse.kura.example.camel_osgi" imports the following packages: Import-Package: org.apache.camel;version="2.15.2", org.apache.camel.builder;version="2.15.2", org.apache.camel.core.osgi;version="2.15.2", org.osgi.framework;version="1.7.0", org.slf4j;version="1.6.4" But the bun

Re: Need help in running camel in raspberry pi

2015-07-07 Thread Christian Müller
Hi Parul, please use the users mailing list for such kind of questions. Can you share your MANIFEST.MF file with us? Or the complete project? Maybe your OSGI metadata are not correct... Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache

Call for Papers of ApacheCON EU 2015 - Budapest (Hungary)

2015-05-31 Thread Christian Müller
Dear committer. We are pleased to announce that "Call for Papers" of "ApacheCON: Core" is now open, please submit your presentation proposal(s) before July 1. See Linux Foundation announcement: http://events.linuxfoundation.org/events/apachecon-core-europe Linux Foundation, that produces and are

Re: Camel XQuery 3.0

2015-05-28 Thread Christian Müller
Feel free to raise a JIRA and request the upgrade to Saxon 9.6. Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551

Re: Camel with Tomcat (with or without Spring) doesn't release memory after Stop Restart or Redeployment

2015-05-28 Thread Christian Müller
Can you provide a heap dump so that we can have a look which classes are not unloaded!? Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/

Re: Camel 2.15.2 set up issue

2015-05-28 Thread Christian Müller
You configured "repo.maven.apache.*" as non proxy host. This means the proxy is not used for this host... Can you remove this entry?! Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incub

Re: Unmarshal not working

2015-05-17 Thread Christian Müller
What do you mean with "my real webservice doesnt support PAYLOAD format"? I don't understand it. Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin

Re: Proxying with Payload Format

2015-05-07 Thread Christian Müller
Something like this: https://github.com/muellerc/esbperformance/blob/master/karaf/proxy/src/main/resources/OSGI-INF/blueprint/bundle-context.xml Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer A

Re: Unmarshal not working

2015-05-07 Thread Christian Müller
Please check the available data formats in the CXF component. Best, Christian Am 07.05.2015 10:00 schrieb "jainmcs03" : > > Hi Team, > > JAXB can only unmarshall an XML if the soap envelope has already been > removed. However, the SOAP response I'm trying to unmarshall has its > namespace declara

Re: CSV and SQL Component for Batch Processing

2015-04-30 Thread Christian Müller
Add a processor in between and remove the entries you don't need. Best, Christian Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mu

Re: Issue while installing feature using features:install

2015-04-20 Thread Christian Müller
You should ask this question on the JBoss Fuse mailing list. Best, Christian Am 20.04.2015 13:10 schrieb "Vanshul.Chawla" : > Hello, > > I get an error when I try to install any feature: > > JBossFuse:admin@root> features:install fuse-oms-financial-feed-features > Error executing command: > sun.s

Apache Camel @Netflix

2015-04-14 Thread Christian Müller
Also Netflix is using Apache Camel in its payment processing engine [1]. [1] https://www.youtube.com/watch?v=k_ckJ7QgLW0#t=515 Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PM

Re: Camel transacted route from JMS to JDBC

2015-04-09 Thread Christian Müller
Your configuration is not correct. Have a look at https://github.com/muellerc/camel-in-transaction Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linked

Re: Camel Property - UTF 8 issues

2015-03-17 Thread Christian Müller
We don't have a class DefaultPropertyPlaceholder in Camel... If you have fixed the issue, it would be good if you can raise a JIRA and apply your patch. I propose to add an "encoding" option to the PropertiesComponent. Than we can populate the Properties class in DefaultPropertiesResolver with a R

Re: [SQL COMPONENTE] CamelSqlGeneratedKeyRows has a bug?

2014-12-30 Thread Christian Müller
Which Camel version do you use? Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 On Mon, Dec 29, 2014 at 12

Re: [SQL COMPONENT] mysql transaction

2014-12-30 Thread Christian Müller
Have a look at [1]. from("direct:start") .transacted("PROPAGATION_REQUIRED") .to("sql:INSERT ...") .to("sql:INSERT ..."); [1] https://github.com/muellerc/camel-in-transaction/blob/master/src/test/java/org/apache/cmueller/camel/samples/camelone/jdbc/JdbcTransactionSampleTest.java Best

ApacheCon NA 2015 :: Austin, TX :: April 13 - 16, 2015

2014-12-12 Thread Christian Müller
Safe the date http://events.linuxfoundation.org/events/apachecon-north-america Best, Christian

Re: executing PL/SQL script

2014-11-09 Thread Christian Müller
And have a look at the Camel MyBatis/IBatis component. Best, Christian Am 07.11.2014 18:03 schrieb "Preben.Asmussen" : > Hi M > > You can always uses a regular java bean for executing custom logic. See > Bean binding > > The custom bean could execute yo

Re: [ANNOUNCE] Apache Camel 2.13.3 Released

2014-11-09 Thread Christian Müller
Thanks for reporting James! There was a typo in the title which I have fixed now. The link should work in a few hours, after the WIKI page [1] is exported. [1] https://cwiki.apache.org/confluence/display/CAMEL/Camel+2.13.3+Release Best, Christian - Software Integration Speciali

Re: Camel 2.15-SNAPSHOT dependency missing sources in repo

2014-11-04 Thread Christian Müller
Maybe because the build failed because the source artifact was published. Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-muel

Re: Camel - JDBC

2014-11-04 Thread Christian Müller
http://camel.apache.org/running-camel-standalone-and-have-it-keep-running.html Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian

Re: Camel 2.14 breaks our test

2014-11-03 Thread Christian Müller
Can you provide a test case which is showing the regression? Best, Christian On Fri, Oct 31, 2014 at 4:06 PM, James Green wrote: > We just upgraded from 2.13.2 to 2.14.0 and our test now hangs using the > producerTemplate to send to an ActiveMQ (5.10.0) endpoint. > > The route accepts the mess

[RESULT][VOTE] Release Apache Camel 2.13.3

2014-10-31 Thread Christian Müller
PM, Christian Müller < christian.muel...@gmail.com> wrote: > This is a vote to release Apache Camel 2.13.3, a patch release coming with > about 103 issues fixed. > > Release notes: > > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&a

Re: Adding jaas authentication to a cxf endpoint in karaf

2014-10-31 Thread Christian Müller
The keystore configuration is only needed for HTTPS. You can use BASIC AUTH without HTTPS. If you want to leverage on the OSGI HTTP service (it looks so, because you are using address="/externalWarehouse"), you have to configure BASIC AUTH in your jetty.xml like:

Re: SMPP component and problem with valid period (relative) and data message

2014-10-31 Thread Christian Müller
For your first question, have a look at [1]. This is how we pass the value to the jsmpp library. [1] https://git-wip-us.apache.org/repos/asf?p=camel.git;a=blob;f=components/camel-smpp/src/main/java/org/apache/camel/component/smpp/SmppSubmitSmCommand.java;h=ac5f4f1e8531f8603509a9f72eb67283ae10e8ac;

Re: How to pick multiple file in same route

2014-10-29 Thread Christian Müller
http://camel.apache.org/aggregator2.html Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 On Wed, Oct 29, 2

Re: [VOTE] Release Apache Camel 2.13.3

2014-10-28 Thread Christian Müller
/CAMEL-7979 Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 On Tue, Oct 28, 2014 at 7:54 PM, Christian

[VOTE] Release Apache Camel 2.13.3

2014-10-28 Thread Christian Müller
This is a vote to release Apache Camel 2.13.3, a patch release coming with about 103 issues fixed. Release notes: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&version=12327165

[RESULT][VOTE] Release Apache Camel 2.12.5 - second try

2014-10-27 Thread Christian Müller
, 2014 at 5:17 PM, Christian Müller < christian.muel...@gmail.com> wrote: > This is a vote to release Apache Camel 2.12.5, a patch release coming with > about 74 issues fixed. > > Release notes: > > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&

Re: [VOTE] Release Apache Camel 2.12.5 - second try

2014-10-25 Thread Christian Müller
quot; before. Will add it to the known issue section... Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/64

[VOTE] Release Apache Camel 2.12.5 - second try

2014-10-24 Thread Christian Müller
This is a vote to release Apache Camel 2.12.5, a patch release coming with about 74 issues fixed. Release notes: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&version=12327166 Staging repo: https://repository.apache.org/content/repositories/orgapachecamel-1020 Tarball

[CANCEL][VOTE] Release Apache Camel 2.12.5

2014-10-24 Thread Christian Müller
ember V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member On Thu, Oct 23, 2014 at 7:14 AM, Christian Müller < christian.muel...@gmail.com> wrote: > This is a vote to release Apache Camel 2.12.5, a patch release coming with > abou

[CANCEL][VOTE] Release Apache Camel 2.12.5

2014-10-23 Thread Christian Müller
This release candidate doesn't contain the Camel distro and Camel source distro. I think this happened because I had to re-stage the release after one reported signate failure in Nexus. Will redo the release upload... Best, Christian On Thu, Oct 23, 2014 at 7:14 AM, Christian M

[VOTE] Release Apache Camel 2.12.5

2014-10-22 Thread Christian Müller
This is a vote to release Apache Camel 2.12.5, a patch release coming with about 74 issues fixed. Release notes: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&version=12327166 Staging repo: https://repository.apache.org/content/repositories/orgapachecamel-1017 Tarball

Re: Camel Endpoint / Consumer startup

2014-10-18 Thread Christian Müller
You can find the latest SNAPSHOT versions at http://repository.apache.org/content/groups/snapshots/org/apache/camel/. They will be published after a successful Jenkins build, otherwise not... Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apa

Re: custom converter to string (json, xml, csv)

2014-10-17 Thread Christian Müller
You are looking for different data formats, not for different type converters. Best, Christian Am 17.10.2014 20:50 schrieb "Mark Webb" : > I have a custom object that I will be passing through Camel routes and > there may be times where I want to convert the object to different formats, > which m

Re: XSLT Thread Safety Issue

2014-10-14 Thread Christian Müller
Hello Sam! I don't have so much experience with XSLT, but maybe my suggestions are nevertheless helpful: - if possible, use the Saxon transformer factory as described here [1]. The JDK build in is slow, buggy, ... - if possible, use the Saxon XPath factory as described here [2]. It's much faster t

Re: Using a custom SessionStateListener with SMPP

2014-10-14 Thread Christian Müller
Hi Andrew! Did you checked http://camel.apache.org/smpp.html? You can use it e.g. like: smpp://smppclient@localhost:2775?password=password&sessionStateListener=myS essionStateListener Where "mySessionStateListener" is the bean name in the registry. Best, Christian On Wed, Oct 8, 2014 at 7:21

Re: FIS Connectivity usingApache Camel

2014-09-30 Thread Christian Müller
We are using the camel-netty component for a similar requirement (cobal copybook send to a mainframe system). You have to implement your own encoder/decoder. Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Came

Re: Handling error per endpoint

2014-09-29 Thread Christian Müller
Why will onException per route not work for you? Best, Christian Am 29.09.2014 15:04 schrieb "Aryan" : > Hi All, > > We have a camel route and we want to handle exceptions per endpoint. For > example, if the exception is thrown from processor A, we want A number of > retries, if thrown from proce

Re: Camel-XmlJson dataformat and ASLV2

2014-09-25 Thread Christian Müller
an use some third party licensed code > as dependencies (only) in our ASLV2 projects without breaking the rules? > Should I fill a Jira in the Legal commity space? > > Best too! > Charlie > > 2014-09-23 22:22 GMT+02:00 Christian Müller : > > > Thanks for reporting Charlie

Re: Camel-XmlJson dataformat and ASLV2

2014-09-23 Thread Christian Müller
Thanks for reporting Charlie! This is not indeed not complaint with the Apache rules. We will fix this soon. Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://w

Re: 502 Timeout

2014-09-16 Thread Christian Müller
http://camel.apache.org/jetty.html Did you tried the option httpClient.timeout=18? Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/

Re: How to run a camel aplication with a cxf web service outside of osgi container

2014-09-16 Thread Christian Müller
Did you checked our examples? For example the camel-example-cxf at [1]... [1] https://git-wip-us.apache.org/repos/asf?p=camel.git;a=tree;f=examples/camel-example-cxf;h=499a63ad4d9df483f503e50a4131aedc822d40eb;hb=HEAD Best, Christian - Software Integration Specialist Apache Memb

Re: apache repository down?

2014-08-25 Thread Christian Müller
You can check the status here: http://status.apache.org/ There was some failures by accessing the Nexus repository manager... Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC

Re: Problems with the Wire Tap Pattern

2014-08-18 Thread Christian Müller
Can you share the Processor's with us? And which version do you use? Best, Christian Am 19.08.2014 00:30 schrieb "Luis Augusto C. Sauerbronn" : > Good afternoon, > > I am trying to apply the Wire Tap pattern to an existing (and working) > route but it seems not to work as I was expecting. > The o

Re: Cannot shutdown CamelContext even call CamelContext.stop/ServiceHelper in another thread

2014-08-17 Thread Christian Müller
It's a really old version and we improved this in the more recent versions. Any chance to upgrade? Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linked

Re: Question: camel-sql out of memory error

2014-08-14 Thread Christian Müller
> > > On Wed, Aug 13, 2014 at 2:07 PM, Christian Müller > wrote: > > At present, we do not limit the fetch size on the JDBC driver level which > > will fix this issue (e.g. > > preparedStatement.setFetchSize(getMaxMessagesPerPoll())). > > The drawback is, we

Re: Camel Mybatis 2.13.1 multiple statementTypes in a batch or Transaction?

2014-08-13 Thread Christian Müller
Use a transacted client as described here [1] and chain your database operations along within one transaction. If everything went fine, Camel will commit the transaction, otherwise Camel will rollback the transaction. [1] http://camel.apache.org/transactional-client.html Best, Christian

Re: Question: camel-sql out of memory error

2014-08-13 Thread Christian Müller
At present, we do not limit the fetch size on the JDBC driver level which will fix this issue (e.g. preparedStatement.setFetchSize(getMaxMessagesPerPoll())). The drawback is, we don't know how many rows are in the database which will match our query. We only can assume if fetchSize is equal to maxM

Re: Multiple JMS producer with IBMMQ

2014-08-05 Thread Christian Müller
your reply. > > Will concurrentConsumer option work for producer also? I will give a try > to this. > > Regards, > Shadab > > > -Original Message- > From: Christian Müller [mailto:christian.muel...@gmail.com] > Sent: Tuesday, August 05, 2014 1:40 AM > To: us

Re: Multiple JMS producer with IBMMQ

2014-08-04 Thread Christian Müller
Is the concurrentConsumer option not working for you? Best, Christian Am 04.08.2014 18:02 schrieb "Ali, Mohammad" : > Hi, > > I am using camel-2.9.0. JMS producer component with IBMMQ performance is > very slow, I want to create multiple JMS producer to send message to IBM > queue something like

Re: Camel ActiveMQ performance

2014-08-03 Thread Christian Müller
Have a look at [1]. This is the code I used last year for ApacheCon 2013... There are more JMS/SJMS tests in this project. You can find the presentation at [2]. [1] https://github.com/muellerc/apachecon-na-2013/blob/master/jms-component/src/test/java/org/apache/cmueller/camel/apachecon/na2013/JmsM

Re: Load Testing Camel Routes

2014-07-29 Thread Christian Müller
Hi Matt! We are using httpcore-ab [1] to load test our web services. Unfortunately, you cannot change the payload for each test, but it works well for us. [1] http://search.maven.org/#artifactdetails|org.apache.httpcomponents|httpcore-ab|4.3.2|jar Best, Christian - Software Int

Re: How to retrieve Sqs message attributes

2014-07-21 Thread Christian Müller
What did you tried? Best, Christian Am 21.07.2014 08:07 schrieb "david.yuan" : > Hi all, > I created a consumer to poll messages via aws sqs. I can retrieve message > body but can not get message attributes. > > any suggestions? > Thanks in advance > > > > -- > View this message in context: > htt

Re: JDBC based idempotent repository problem

2014-07-09 Thread Christian Müller
Done. Should be online in a few minutes. Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 On Tue, Jul 8, 2

Re: How to call a bean after all files has been processed?

2014-07-05 Thread Christian Müller
This is the intended behavior. To achieve the behavior you want, I propose the followings: - use the file consumers Exchange property "CamelBatchComplete" [1] to know which file is the last one - use an Aggregator [2] with a custom completion Predicate before you are calling your "teaserService"

Re: CamelTestSupport doesn't run @Test method

2014-07-03 Thread Christian Müller
Can you share the test class with us? Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 On Thu, Jul 3, 2014

Re: doTry problem

2014-07-01 Thread Christian Müller
Can you try 2.13.1? Best, Christian Am 01.07.2014 21:25 schrieb "angryzes" : > Hello, > > I am facing a strange problem when I am trying to execute doTry doCatch > blocks on exception like this: > > onException(Exception.class) > .doTry() > .to(ROUTE_ID) >

Re: Camel-hbase : problem with qualifier "id"

2014-06-27 Thread Christian Müller
Apache Incubator PMC Member https://www.linkedin.com/pub/christian-mueller/11/551/642 On Fri, Jun 27, 2014 at 12:44 PM, Christian Müller < christian.muel...@gmail.com> wrote: > The "issue" in your route is: > setHeader("CamelHBaseQualifier", simple("id&

Re: Camel-hbase : problem with qualifier "id"

2014-06-27 Thread Christian Müller
The "issue" in your route is: setHeader("CamelHBaseQualifier", simple("id", String.class)) try: setHeader("CamelHBaseQualifier", constant("id", String.class)) because: simple("id", String.class) is evaluated to the input message id as described at [1]. [1] http://camel.apache.org/simple.html Be

Re: Camel-hbase : problem with qualifier "id"

2014-06-26 Thread Christian Müller
I can confirm this issue. I have raised a JIRA [1] and work on a fix. [1] https://issues.apache.org/jira/browse/CAMEL-7547 Best, Christian - Software Integration Specialist Apache Member V.P. Apache Camel | Apache Camel PMC Member | Apache Camel committer Apache Incubator PMC Me

  1   2   3   4   5   6   7   8   9   10   >