CAMEL : CXF : SocketTimeoutException: Read timed out

2016-02-23 Thread HARINATHA REDDY BOLLAPU
Hi guys, I'm facing issue to handle SocketTimeoutException, to setup receving time out i'm using following http-conf configuration. This approach is not working. The frontend_address is like "http://service.test"; i mention in my WSDL. as well i'm not able to catch exception. I ho

Re: Quartz 2 Consumer with cron expression and avoiding some range of date

2016-02-23 Thread Michele
Hi Claus, thanks for your reply. In the meantime of jira ticket, can I extend QuartzComponent and QuartzEndpoint(where the Trigger is initialized) to resolve my requirement? Or can you provide me other suggestions? Thanks in advance Greeting Michele -- View this message in context: http://

Re: OsgiServiceRegistry caching service references, why?

2016-02-23 Thread Tim Jones
Quinn, I have sent an email to you with a link to Dropbox with the necessary files -- View this message in context: http://camel.465427.n5.nabble.com/OsgiServiceRegistry-caching-service-references-why-tp5777410p5778142.html Sent from the Camel - Users mailing list archive at Nabble.com.

swagger operationid parameter

2016-02-23 Thread mstittle
Trying to set the operationId on the io.swagger.models.Operation class associated with a REST DSL route. looking at the source code I don't see that it is set anywhere. The operationid seems to be defaulting to the path and since we have a version number in the path like v.1.0.0 this is causing pr

Re: Switch to route in case original route fails

2016-02-23 Thread mnl
I checked the load balancer documentation for apache. It looks pretty good for my use case. However I have few queries for which I couldn't find answers in the documentation: 1. In my understanding, for apache to failover and use other routes, all the routes should be active. Am I correct? or is i

Re: CDI Injection support

2016-02-23 Thread John D. Ament
Hi Antonin, Looks like you pushed up already what I was working on (when I found this issue): https://issues.apache.org/jira/browse/CAMEL-9630 I'll move that over to you. Thanks! John On Tue, Feb 23, 2016 at 9:00 AM Antonin Stefanutti wrote: > Hi John, > > For #1, I’ve just pushed [1] to impr

Re: OsgiServiceRegistry caching service references, why?

2016-02-23 Thread Quinn Stevenson
Tim - I can’t seem to get the patch to create the projects correctly. Could you put a zip or something out there? > On Feb 23, 2016, at 8:32 AM, Quinn Stevenson > wrote: > > Thank You Tim - I’ll take a look. > > No - the sample I put together is using camel-scr. When a @Reference > injec

Re: Issue in xml to csv conversion

2016-02-23 Thread deepaktaker
Thanks for your reply yogesh, I tried it but doesn't work. On 23 Feb 2016 5:58 p.m., "yogu13 [via Camel]" < ml-node+s465427n5778125...@n5.nabble.com> wrote: > Hello, > > Try setting the allowMissingColumnNames=true > > Regards, > -Yogesh > > -- > If you reply to this em

Re: camel rest route

2016-02-23 Thread zappee
Hi, Thx for the reply. Now I am facing with another strange behavior. I want to fill in my user object with random generated data, like this: @Override public void configure() throws Exception { User user = new User(); user.setFirstName(*Generator.randomFirstName()*); user.setLast

Re: OsgiServiceRegistry caching service references, why?

2016-02-23 Thread Quinn Stevenson
Thank You Tim - I’ll take a look. No - the sample I put together is using camel-scr. When a @Reference injected service goes away, the camel context is stopped. When it comes back, the context is restarted - so I’m not seeing any caching. It’s part of a much larger sample I was working on - I

Re: CDI Injection support

2016-02-23 Thread Antonin Stefanutti
Hi John, For #1, I’ve just pushed [1] to improve the support for programmatic lookup of Camel resources. For #2, I’ve opened issue OWB-1122 [2] in OpenWebBeans JIRA. At that occasion, I've refactored a bit the qualifier literals for @ContextName and @Uri in order to match the style of those th

Question about using maximumRedeliveries as part of redeliveryPolicyProfile

2016-02-23 Thread Venugopal Iyengar
I have the following syntax that I am using to restrict number of redeliveries in ase of an exception. For some reason it is ignoring this parameter, however redeliveryDelay seems to be working. Here is the snippet of the configuration that I am using http://camel.apache.org/schema/spring";>

Re: Camel Header

2016-02-23 Thread John D. Ament
No, I mean the the storage mechanism behind it. Exchanges (and their messages) are in memory models. When a message is delivered to an endpoint, the endpoint figures out what to do with it. That delivery is essentially your storage mechanism. You might be delivering data to a mysql table, or a

Re: Issue in xml to csv conversion

2016-02-23 Thread yogu13
Hello, Try setting the allowMissingColumnNames=true Regards, -Yogesh -- View this message in context: http://camel.465427.n5.nabble.com/Issue-in-xml-to-csv-conversion-tp5778103p5778125.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Issue in xml to csv conversion

2016-02-23 Thread yogu13
Hi, Are you using any camel component for converstion or is it a custom code ? Regards, -Yogesh -- View this message in context: http://camel.465427.n5.nabble.com/Issue-in-xml-to-csv-conversion-tp5778103p5778106.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Unable to handle CXFRS exception using onException

2016-02-23 Thread Sergey Beryozkin
Hi The escaped exception can indeed be handled by CXF fault interceptors, but also by JAX-RS ExceptionMapper, and on the client side, by ResponseExceptionMapper. I'm not sure why onException is not triggered (you said below that it actually goes into onException but the subject implies other

Re: Issue in xml to csv conversion

2016-02-23 Thread deepaktaker
Hi Yogesh, I use CsvDataFormat class which has this method named marshal which does the conversion for me. Regards, Deepak On Tue, Feb 23, 2016 at 3:43 PM, yogu13 [via Camel] < ml-node+s465427n577810...@n5.nabble.com> wrote: > Hi, > > Are you using any camel component for con

Re: Message processed in wrong order

2016-02-23 Thread marco-dak
I'm not sure how I can check the acutal order of messages in the queue. But I stopped the consumer route and browsed the queue: the IDs of messages are in the correct order: - ID:P00278-57104-1456219720102-1:1:1:1:1133 -> 566 - ID:P00278-57104-1456219720102-1:1:1:1:1134 -> 566a but the order I ca

Unable to handle CXFRS exception using onException

2016-02-23 Thread M.Ismail
Hi, I'm using Camel 2.12.0 in OSGI container. I am using cxfrs as a consumer but I can't handle javax.xml.stream.XMLStreamException which is thrown by cxfrs in case failure to parse the request. If I throw the exception XMLStreamException it goes to onException though. I read that cxf can use

Issue in xml to csv conversion

2016-02-23 Thread deepaktaker
Hi All, I use camel for converting my xml file to csv. I was using camel version 2.14.2, and i updated it to 2.16.2. now my conversion is not working as expected. In camel version 2.14.2 here's what my input and output looked like Input: id1 n

Re: Hawt.io example

2016-02-23 Thread Sashika
Thanks Claus. On Tue, Feb 23, 2016 at 1:28 PM, Claus Ibsen < claus.ib...@gmail.com > wrote: Hi You should use the hawtio community http://hawt.io/community/ index.html Such as the google forum, or the irc chat room. Mind that hawtio can access any information from Java if its available as JMX,

Re: Message processed in wrong order

2016-02-23 Thread souciance
I assume you checked that the messages were also put in the right order.? and also if you stop the consumer route, how do the messages look on the queue? Is 671a ahead of 671? I understand that for yoru project processing in order is important but just from experience, requirements based on order

Message processed in wrong order

2016-02-23 Thread marco-dak
Hi, I encounter an issue with Camel (2.13) and ActiveMQ (5.11.1) on JBoss EAP (6.1) where messages are processed in wrong order. It only occurs if there are a lot of messages send to a single queue. I can reproduce it with a very simple example: 1000

Re: Hawt.io example

2016-02-23 Thread Claus Ibsen
Hi You should use the hawtio community http://hawt.io/community/index.html Such as the google forum, or the irc chat room. Mind that hawtio can access any information from Java if its available as JMX, so just JMX enable the information you want to see in hawtio. And there is some hawtio plugin