Re: CamelSmppError=034,CamelSmppStatus=UNDELIV

2016-10-01 Thread raju jwala
Moreover, I am not getting help from any one. You are the only hope for me. Thanks On Sun, Oct 2, 2016 at 9:53 AM, raju jwala wrote: > Hi Team, > > I am facing issue in my application. > > My Application is using SMPP protocal and SMSC as gateway. > > I am getting

CamelSmppError=034,CamelSmppStatus=UNDELIV

2016-10-01 Thread raju jwala
Hi Team, I am facing issue in my application. My Application is using SMPP protocal and SMSC as gateway. I am getting CamelSmppError=034,CamelSmppStatus=UNDELIV on logs. The message is not delivered properly. Please tell me in which situation this errors will come and how to resolve this

Re: Limit Concurrent Access

2016-10-01 Thread Debraj Manna
Thanks Brad for replying. In our use case we are doing lot of crunching, DB and external REST service calls? There is a limit on external REST service calls we can make. I can restrict the call to external services using a thread pool. But I was thinking if it is possible to limit when receiving

Re: Limit Concurrent Access

2016-10-01 Thread Brad Johnson
The first question I'd have is "are you sure you have a problem with the number of incoming requests?" One of the biggest problems I find in the field is premature optimization. If you have a fairly good characterization of the problem, the number of requests anticipated, the length of time to

Re: Splitting a Body and losting old informations

2016-10-01 Thread Brad Johnson
This a rather nebulous question. Can you post the routes you are using? I suspect you are not setting the append flag on the file writer. But without seeing the code you are using it is impossible to tell. fileExists=append Look up the specifics on the syntax here:

Re: In which way to provide http:component Exchange.HTTP_QUERY

2016-10-01 Thread Ranx
Do you have any more specifics like code? Sometimes folks know the answer but it makes it easier if it is in context. -- View this message in context: http://camel.465427.n5.nabble.com/In-which-way-to-provide-http-component-Exchange-HTTP-QUERY-tp5788106p5788283.html Sent from the Camel -

Re: XSLT URI with network share

2016-10-01 Thread Vitalii Tymchyshyn
You may need to change '\' to '/' proprly encode windows path as URI. This may require to use a lot of /, e.g. file:, but I dont remember exact number. Best regards, Vitalii Tymchyshyn Пт, 30 вер. 2016 17:02 користувач David Hoffer пише: > I have a Camel xslt uri

Limit Concurrent Access

2016-10-01 Thread Debraj Manna
Hi I have seen Throttler in camel. Is there anything available in camel that restricts the number of concurrent accesses something like this as mentioned here

Re: Set camel route based on timer or a count variable

2016-10-01 Thread Steve Huston
You can use quartz2 or timer in camel, but I’m not sure how to incorporate the reset on count. -Steve > On Sep 30, 2016, at 3:39 PM, Vik wrote: > > I want to invoke another camel route based on a counter value or after > certain time has passed whichever happens

Set camel route based on timer or a count variable

2016-10-01 Thread Vik
I want to invoke another camel route based on a counter value or after certain time has passed whichever happens first. For example, if count has reached N before timer is invoked, I want to reset the timer and invoke the route. Similarly, if timer is invoked, reset the count and invoke the route.

Splitting a Body and losting old informations

2016-10-01 Thread retatu
I am have problems in an application... when I split the XML in 4 parts then I want to get them all together in another XML, but it overwrites and only the last one stand -- View this message in context: