Re: Using camel without spring

2014-12-13 Thread yogu13
Hello Claus! Any specific reason for CDI suggestion instead of guice with respect to camel ? Regards, -Yogesh -- View this message in context: http://camel.465427.n5.nabble.com/Using-camel-without-spring-tp5760251p5760656.html Sent from the Camel - Users mailing list archive at Nabble.com.

configuring Camel with XML DSL and Guice in tomcat

2014-12-13 Thread yogu13
Here is my understanding of things that needs to be done if Guice - Camel and XML DSL have to work together 1. create a ServletContextListener which would do the following a. extracts Routes from the XML b. create a JNDI Registry instance (GuiceyFruit implementation) c.

Re: Can't find the BindingOperationInfo with operation name {urn:...}login.

2014-12-13 Thread Willem Jiang
Hi, It looks like you setup a wrong service class attribute, it should be “com.netsuite.webservices.platform_2014_2.NetSuitePortType” instead of  “com.netsuite.webservices.platform_2014_2.NetSuiteService” -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog:

Re: EventNotifierSupport - Endpoint ID accessible ?

2014-12-13 Thread Willem Jiang
The id attribute is define in OptionalIdentifiedDefinition which can be unmarshaled from xml. But it’s not defined in endpoint, so you cannot access it from endpoint. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English) http://jnn.iteye.com

Re: AWS-DDB

2014-12-13 Thread Willem Jiang
What’s kind of test mode do you use? The exception message  is The security token included in the request is invalid”, can you double check if your security token is set rightly? -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (English)

Re: Throttling based on content in camel

2014-12-13 Thread Willem Jiang
+1 to create a new ThrottlingContentBasedRoutePolicy, and we can do some refactoring to let ThrottlingContentBasedRoutePolicy and  ThrottlingInflightRoutePolicy share some common logic in a super class. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog:

Re: AWS-DDB

2014-12-13 Thread Scott Gentry
The documentation surrounding dynamo local claims that the keys do not matter in the usage notes section: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tools.DynamoDBLocal.html On Dec 13, 2014 9:40 AM, Willem Jiang willem.ji...@gmail.com wrote: What’s kind of test mode do you

Unexpected behaviour of splitter using stopOnException

2014-12-13 Thread Seiji Sogabe
Hi, I have a simple camel route: route from uri=dataset:dataSet?produceDelay=1000 / split stopOnException=true simplebody/simple log message=${body} / stop /... (*) log message=do something /