Re: Dynamic XSL from Content

2013-01-17 Thread sammm
The above was working for a hard coded XSL name: META-INF/xsl/5.xsl what i need to do i dynamically generate the name of the xsl: concat('META-INF/xsl/',//phar:pharmacyInfoRequest/pharmacyId/text(),'.xsl') when i use

RE: how to set attachment headers in camel exchange?

2013-01-17 Thread cww1769
Hi, Willem: I have thought about another solution which you suggested. 1) Wrote an ISGDataHandler which extends DataHandler and holds the attachment headers. 2) Wrote an ISGCxfBinding which extends DefaultCxfBinding but it will uses ISGDataHandler to add headers. But I still have a question: How

Cannot change directory to: \

2013-01-17 Thread iyusuf
Hi, I am trying to connect to a SFTP hosted on a Linux box from a Windows 7 64 bit developer laptop. I am trying to put files (SFTP as producer) on remote sftp server. If I don't use directory path files get uploaded but if I use sub-directory I get the following error. I've tried both "stepwise=t

Re: Route-scoped errorHandler and useOriginalMessage problem

2013-01-17 Thread ncolomer
Hi Claus, Thanks for your answer. I imagine their is no way to retrieve the body as it was received by the Route that failed? If so, is their any mechanism/pattern that "spawns" a new Exchange (forcing initial message to current body)? Regards, Nicolas -- View this message in context: http:/

Re: End of Line - File component

2013-01-17 Thread Christian Müller
Why? I can also create files with only "\n" line termination on Windows. Sent from a mobile device Am 17.01.2013 20:33 schrieb "renamsavio" : > Hi there, > > I've been facing a problem about 'end of line' in text files. > I have a file component which reads some files in a directory, then I use >

End of Line - File component

2013-01-17 Thread renamsavio
Hi there, I've been facing a problem about 'end of line' in text files. I have a file component which reads some files in a directory, then I use *.split(body(String.class).tokenize("\n"))* inside the route to split line by line from each file. I want to be able to identify in which enviroment eac

Fwd:

2013-01-17 Thread Sergey Beryozkin
http://www.otticadibella.it/gkwbcm.php

Re: Camel Mina Client Using Exchange Headers to Configure

2013-01-17 Thread Christian Müller
You are welcome. Enjoy the Camel ride! Best, Christian Sent from a mobile device Am 17.01.2013 17:33 schrieb "peter.berkman" : > Christian, > that did the trick perfectly! thank you!!! > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-Mina-Client-Using-Exchang

Camel 2.10.3 ExchangeHelper.getMandatoryInBody is deprecated

2013-01-17 Thread Gershaw, Geoffrey
Hello All, Apologies for the childishly simple question. J I moved to 2.10.3 and I can't seem to locate the new javadoc on your site. Is this an oversight? Thanks Geoffrey A Gershaw === Please access the a

Re: Route-scoped errorHandler and useOriginalMessage problem

2013-01-17 Thread Claus Ibsen
On Thu, Jan 17, 2013 at 11:15 AM, ncolomer wrote: > Hi Camel community, > > I'm back with another issue, about Route-scoped errorHandler this time. > > I have several Routes that have their own errorHandler. Each of these > errorHandlers delegates Exceptions to a mutualized deadLetterChannel Route

Re: activemq testConnectionOnStartup not working

2013-01-17 Thread Claus Ibsen
Hi You are a bit sparse with details. When asking for help we like people to read this page first http://camel.apache.org/support On Thu, Jan 17, 2013 at 12:58 PM, kiranreddykasa wrote: > Hi > > activemq's testConnectionOnStartup property is not working. > > > And here is my route > > from("

Re: [CAMEL-3.0] Start moving forward

2013-01-17 Thread Hadrian Zbarcea
Christian, Thanks for taking the initiative and restarting the process for Camel 3.0. The good news imho is that we're under no pressure and we can take the time to get it right. I like your proposal of effectively splitting the camel-3.0-roadmap page into multiple pages. If I understand cor

activemq testConnectionOnStartup not working

2013-01-17 Thread kiranreddykasa
Hi activemq's testConnectionOnStartup property is not working. And here is my route from("netty:tcp://localhost:8003?textline=true&sync=true") .to(ExchangePattern.InOut, "activemq:personnel.records?testConnectionOnStartup=true");

Re: Camel-QuickFix Component issue

2013-01-17 Thread yogu13
Have created a JIRA Issues for this and details can be found @ https://issues.apache.org/jira/browse/CAMEL-5979 -- View this message in context: http://camel.465427.n5.nabble.com/Camel-QuickFix-Component-issue-tp5725622p5725683.html Sent from the Camel - Users mailing list archive at Nabble.com

Route-scoped errorHandler and useOriginalMessage problem

2013-01-17 Thread ncolomer
Hi Camel community, I'm back with another issue, about Route-scoped errorHandler this time. I have several Routes that have their own errorHandler. Each of these errorHandlers delegates Exceptions to a mutualized deadLetterChannel Route. The deadLetterChannel Route finally persists on disk the o

Re: Enhancement for Spring-Camel porperty bridge?

2013-01-17 Thread Claus Ibsen
On Thu, Jan 17, 2013 at 10:04 AM, Ralf Steppacher wrote: > Hello Claus, > > I have raised CAMEL-5978. > I will inquire if I am allowed to allocate time for providing a patch. > That would be great. We love contributions. And this also may allow you to help the project in the future, as well your

Re: Enhancement for Spring-Camel porperty bridge?

2013-01-17 Thread Ralf Steppacher
Hello Claus, I have raised CAMEL-5978. I will inquire if I am allowed to allocate time for providing a patch. Ralf -Original Message- From: Claus Ibsen Reply-to: users@camel.apache.org To: users@camel.apache.org Subject: Re: Enhancement for Spring-Camel porperty bridge? Date: Tue, 15

Re: Concat routes

2013-01-17 Thread klauss42
Hi Christian > I guess the behavior is different because the quartz component use the > inOnly MEP and the servlet component use the inOut MEP. I cannot check > this at present... > That makes sense. As documented in http://camel.apache.org/seda.html the "waitForTaskToComplete" option has as de

Re: [camel-bindy] bindy ignore bean class type

2013-01-17 Thread Claus Ibsen
Hi On Tue, Jan 15, 2013 at 8:54 AM, lb wrote: > Hi, > if you give me some hint I may start working on it (not sure to have enough > skill but I may try). > That sounds great. You may at first polish the code a bit just to get more familiar with the existing code base. The idea for the avoid pa

RE: how to set attachment headers in camel exchange?

2013-01-17 Thread cww1769
Hi,Jiang: The attachments are the related java files about this issue. The camel route is MmsEnablerSubmitRouteBuilder, it has the processor PrepareMM7SubmitRequest. In PrepareMM7SubmitRequest, we need to add attachments to exchange.getOut(). I tried to get the CXF message according to your advic