Re: Camel bindy not working in Spring boot

2016-04-13 Thread cgsk
+ "accessKey={{aws.accesskey}}" + "&secretKey=RAW({{aws.secretkey}})"); Regards, CGSK -- View this message in context: http://camel.465427.n5.nabble.com/Camel-bindy-not-working-in-Sp

Re: Camel bindy not working in Spring boot

2016-04-13 Thread cgsk
Could someone help with the below issue? Below is the custom packageresolver: import java.io.IOException; import java.net.URL; import java.util.Enumeration; import org.apache.camel.impl.DefaultPackageScanClassResolver; import org.springframework.stereotype.Component; @Component public class Sprin

Camel bindy not working in Spring boot

2016-04-13 Thread cgsk
org.apache.camel.dataformat.bindy.csv.BindyCsvDataFormat.marshal(BindyCsvDataFormat.java:69) ~[camel-bindy-2.15.6.jar!/:2.15.6] at org.apache.camel.processor.MarshalProcessor.process(MarshalProcessor.java:81) ~[camel-core-2.15.6.jar!/:2.15.6] Regards, CGSK -- View this message in context: http://camel.465427.n5.nabble.com/Camel-bindy-not

Re: CXFRS component to expose Rest apis

2015-01-21 Thread cgsk
Thanks for the reply. What is the impact in running multiple rssservers interms of performance? Regards. -- View this message in context: http://camel.465427.n5.nabble.com/CXFRS-component-to-expose-Rest-apis-tp5761958p5761989.html Sent from the Camel - Users mailing list archive at Nabble.com.

CXFRS component to expose Rest apis

2015-01-20 Thread cgsk
? Thanks is advance. Regards, CGSK -- View this message in context: http://camel.465427.n5.nabble.com/CXFRS-component-to-expose-Rest-apis-tp5761958.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel 2.15.0 Release date

2015-01-07 Thread cgsk
Thanks -- View this message in context: http://camel.465427.n5.nabble.com/Camel-2-15-0-Release-date-tp5761426p5761429.html Sent from the Camel - Users mailing list archive at Nabble.com.

Camel 2.15.0 Release date

2015-01-07 Thread cgsk
Hi there, When is the Camel 2.15.0 release date? Regards, CGSK -- View this message in context: http://camel.465427.n5.nabble.com/Camel-2-15-0-Release-date-tp5761426.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: using CSV Bindy data format

2014-03-05 Thread cgsk
Hi, Thanks for the reply. I cant see the option for omitting quotes for empty values in Bindy page. I always get csv record as "some Value","","" insteadof "some value",, Could you please help. Regards, CGSK -- View this message in context: htt

using CSV Bindy data format

2014-03-03 Thread cgsk
Hi there, I am using bindy component for converting Java Pojo to csv file. I am using @CsvRecord(separator = ",", quote = "\""). But I want to omit quotes for empty fields. Is there a way to do this in Bindy component? Thanks in advance. -- View this message in context: http://camel.465427.n5

Configuring CXF Rest endpoint

2014-01-28 Thread cgsk
param}"); When I hit the url in Rest client I am seeing the service route getting invoked. But is there a way to get the exchange reference in my service class? Regards, CGSK -- View this message in context: http://camel.465427.n5.nabble.com/Configuring-CXF-Rest-endpoint-tp5746550.ht

Camel Jetty Rest endpoints

2014-01-07 Thread cgsk
Hi There, Is it possible to expose a Jetty endpoint like a rest endpoint below with dynamic http path. http://localhost:8001/rest/oderservice/${orderId}/{en} Regards, cgsk -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Jetty-Rest-endpoints-tp5745690.html Sent from

Re: Bindy unmarshalling issues

2013-11-28 Thread cgsk
Thanks for the reply. CR is within the double quotes, so not considered as field value instead of new line and the csv file opens correctly in Excel. -- View this message in context: http://camel.465427.n5.nabble.com/Re-Bindy-unmarshalling-issues-tp5744012p5744015.html Sent from the Camel -

Re: Bindy unmarshalling issues

2013-11-28 Thread cgsk
Hi There, I am using Bindy for marshalling/unmarshalling to & from a csv file. One of the data value has carriage return. I am using separator = "," ,quote="\"". While marshalling to csv file, it works properly. So if i open the csv file in Excel, the data shows in with carriage return. But unmars

Re: Null exclusion in Jackson not working

2013-09-23 Thread cgsk
Yes it works in newer version of camel. Thanks. -- View this message in context: http://camel.465427.n5.nabble.com/Null-exclusion-in-Jackson-not-working-tp5740065p5740074.html Sent from the Camel - Users mailing list archive at Nabble.com.

Null exclusion in Jackson not working

2013-09-23 Thread cgsk
Hi there, Iam using Jackson library for converting a POJO to json format. I want to exclude null valued fields in the json output. I am using @JsonSerialize(include=JsonSerialize.Inclusion.NON_NULL) and camel version 2.8.2. But the null fields are not skipped. Please suggest. Regards, CGSK

Dynamic log level in Java DSL

2013-04-20 Thread cgsk
Hi there, Is there a way to dynamically change the log level to DEBUG based on an incoming header parameter. For example, .to(log:output?level=INFO&showHeaders=true) where level=INFO has to be decided based on an incoming boolean value. This will be really helpful in transactional based logging

Re: HTTP Basic Authentication

2013-03-22 Thread cgsk
Thanks for the reply. The problem got resolved after adding httpClient.authenticationPreemptive=true -- View this message in context: http://camel.465427.n5.nabble.com/HTTP-Basic-Authentication-tp5729500p5729680.html Sent from the Camel - Users mailing list archive at Nabble.com.

JMS Dead Letter channel discards JMS custom headers

2013-02-28 Thread cgsk
) .redeliveryDelay(redeliveryDelay)); I tried using preserveQos=true, but still the same issue. Regards, CGSK -- View this message in context: http://camel.465427.n5.nabble.com/JMS-Dead-Letter-channel-discards-JMS-custom-headers-tp5728293.html Sent from the Camel - Users mailing list archive at Nabble.com.

HTTP timeout

2013-02-15 Thread cgsk
Hi there, I am using camel http component for calling external webservice. For timeout I am setting httpClient.soTimeout=1 as a query parameter in the service url. But httpclient debug logs shows retries 3 times with a timeout of 20 secs (when unable establish connection to the host). So even

Camel HTTP component timeout issue

2013-02-13 Thread cgsk
a better way to disable retry through camel config. Please advise. Regards, CGSK -- View this message in context: http://camel.465427.n5.nabble.com/Camel-HTTP-component-timeout-issue-tp5727542.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Using WebServiceMessageCallback in spring-ws producer

2012-11-01 Thread cgsk
Hello There, Could any help with using WebServiceMessageCallback in spring-ws producer, as I am trying to set dynamic http headers based on the incoming request messages. Regards, CGSK -- View this message in context: http://camel.465427.n5.nabble.com/Re-Using-WebServiceMessageCallback-in

Re: Jetty Consumer maxThreads

2012-10-31 Thread cgsk
Thanks for your reply. My route looks something like this: from("jetty:http://localhost:8001/path/";) .to(ExchangePattern.InOut,"http://external servlet url"+"?*bridgeEndpoint=true*&authMethod=Basic" +"&throwExceptionOnFailure=false&authUsername="+authUsername+"&authPasswo

Jetty Consumer maxThreads

2012-10-29 Thread cgsk
consumer url but didnt worked. In the camel document it says 'Camel 2.5 Consumer only'. What is the equivalent option while using camel 2.8.2. I also tried threads(10) for async routing, but that is also not working. Any help is much appreciated. Regards, CGSK -- View this message

Setting timeout for CXFRS endpoint

2012-09-27 Thread cgsk
Hi There, Could anyone help me to set up timout period while calling webservice using CXFRS? Regards, CGSK -- View this message in context: http://camel.465427.n5.nabble.com/Setting-timeout-for-CXFRS-endpoint-tp5720111.html Sent from the Camel - Users mailing list archive at Nabble.com.

Adding custom soap header in camel spring-ws

2012-09-19 Thread cgsk
Hi there, Is there a way to add custom header to Soap message as below. I am using Camel-SpringWS. where CustomerObject being a java object generated using cxf-codegen-plugin Regards, Karthik -- View this message in context: http://camel.465427.n5.nabble.com/Adding-cus

DSL trim on body of type string

2012-08-01 Thread cgsk
Hi There, I need to do trim() on the body of type String in the DSL. Is there any staright way out in camel by using transform/convertor/regex? I dont prefer writing something some processor or custom convertor. Apologies if it sounds stupid. Thanks, CGSK -- View this message in context

Re: CXFRS producer removing JMS headers

2012-03-23 Thread cgsk
Thanks for the patch. -- View this message in context: http://camel.465427.n5.nabble.com/CXFRS-producer-removing-JMS-headers-tp5568925p5590157.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: CXFRS producer removing JMS headers

2012-03-18 Thread cgsk
Thanks for the response. But when I use spring-ws the header params are retained. why this behaviour is differing in cxfrs? -- View this message in context: http://camel.465427.n5.nabble.com/CXFRS-producer-removing-JMS-headers-tp5568925p5574037.html Sent from the Camel - Users mailing list arch

CXFRS producer removing JMS headers

2012-03-15 Thread cgsk
Hello there, I am new to Camel. I am consuming a service request from a JMS queue and calling an external REST service using CXFRS and processing the response. But however, the JMSHeaders/custom headers which was in the message when consuming from request queue is getting removed after calling the