Re: Relative URL for XSL in XSLT component

2015-06-10 Thread Ujeen
Hi, guys bringing this thread back to live I faced a case when relative path like this: ../../test/xslt doesn't work Here is what I do ../../test/xslt/EQM98_30032015 xslt:file:${header.xslt-local-url} I get error like this: 11:05:34,747 MSK ERROR DefaultErrorHandler - Failed deli

Re: CSV dateformat bug? Attribute 'AutogenColumns' is not allowed to appear in element 'camel:csv'

2012-03-18 Thread Ujeen
Thank you, Babak! This is great improvement I'll give it a try! (in meanwhile I did some "dirty hack" in the CsvDataFormat class which solves my particular problem and put it locally into my classpath as workaround) -- View this message in context: http://camel.465427.n5.nabble.com/CSV-dateform

Re: CSV dateformat bug? Attribute 'AutogenColumns' is not allowed to appear in element 'camel:csv'

2012-03-16 Thread Ujeen
Thank you very much for this hint. Yeah I figured that out. And therefore it looks like reporting above is pointless as it doesn't make sense to bring the autogenColumns flag into the xml because there is no way to set all the fields inside the tag -- View this message in context: http://came

Re: CSV dateformat bug? Attribute 'AutogenColumns' is not allowed to appear in element 'camel:csv'

2012-03-16 Thread Ujeen
Ok, it looks like I managed to fix it (this flag works when marshalling only) I changed the org.apache.camel.dataformat.csv.CsvDataFormat. 1. Removed the if(autogenColumns) condition in the doMarhshalRecord. So now it looks like this: private void doMarshalRecord(Exchange exchange, Map row, Writer

Re: CSV dateformat bug? Attribute 'AutogenColumns' is not allowed to appear in element 'camel:csv'

2012-03-16 Thread Ujeen
Thank you, but you know it looks like the entire autogenColumns feature doesn't work. At least it doesn't work for me (the 2.9.0-RC1 version) I change the scheme so the org.apache.camel.dataformat.csv.CsvDataFormat accepts it but if I set autogenColumns flag to false it stops generating everything

CSV dateformat bug? Attribute 'AutogenColumns' is not allowed to appear in element 'camel:csv'

2012-03-15 Thread Ujeen
Hi colleagues, I'm trying to use csv marshalling and faced the following issue cvc-complex-type.3.2.2: Attribute 'AutogenColumns' is not allowed to appear in element 'csv' This happens when I try to switch off the autogen columns feature: It looks like the issue is nested in the http://camel.apa

Re: The SFTP component: the keyboard-interactive auth method support

2011-10-03 Thread Ujeen
Hi The file has been replaced with the new one with no compression fix inside. It now contains only the small keyboard-interactive method fix. So the license is not an issue anymore. -- View this message in context: http://camel.465427.n5.nabble.com/The-SFTP-component-the-keyboard-interactive-a

Re: The SFTP component: the keyboard-interactive auth method support

2011-10-01 Thread Ujeen
Thanks, team. As Claus mentioned in the jira comments - the code doesn't use the zlib lib directly and one can choose any compression lib while working with the SFTP component. Although I checked it only with zlib. -- View this message in context: http://camel.465427.n5.nabble.com/The-SFTP-compo

Re: The SFTP component: the keyboard-interactive auth method support

2011-09-30 Thread Ujeen
Ok, that's clear. Then we need to forget about compressing for a while unless somebody creates something following Apache license. -- View this message in context: http://camel.465427.n5.nabble.com/The-SFTP-component-the-keyboard-interactive-auth-method-support-tp4853523p4857904.html Sent from

Re: The SFTP component: the keyboard-interactive auth method support

2011-09-30 Thread Ujeen
It's done: https://issues.apache.org/jira/browse/CAMEL-4506 Have a good weekend! -- View this message in context: http://camel.465427.n5.nabble.com/The-SFTP-component-the-keyboard-interactive-auth-method-support-tp4853523p4857509.html Sent from the Camel - Users mailing list archive at Nabble.co

The SFTP component: the keyboard-interactive auth method support

2011-09-29 Thread Ujeen
Hi Camel gurus. I've got some small improvement for the SFTP component which probably might be handy. It appeared that our sftp share we get files from doesn't support the ssh password auth method and we're not allowed to put the public key to there. So the only ssh auth method we can use is the

Re: Problems with jetty component and posts with more then one value for a field.

2011-09-29 Thread Ujeen
Hi the camel masters, Just wanted to clarify the CAMEL-4211 fix works not only for http related URIs? I created my own endpoint extending the DefaultEndpoint and passed this uri="feed:trades?params=param1¶ms=param2" to it. In the endpoint itself I put the private Collection params; and th