Re: AWS + CAMEL + DynamoDB - Please Help

2014-03-13 Thread cdfleischmann
What do you mean? The route I was trying to use was: /*"aws-ddb://SourceItems?amazonDDBClient=#ddbClient&amazonDdbEndpoint=ap-southeast-2" + "&writeCapacity=10&readCapacity=10"*/, newSourceItem(sourceItem) You will see the table name straight after "aws-ddb://" called "SourceItems" ??? I am not s

Re: AWS SNS + Camel + "amazonSNSEndpoint" being ignored?

2014-03-11 Thread cdfleischmann
Thanks Willem, will look forward to the fix then :) -- View this message in context: http://camel.465427.n5.nabble.com/AWS-SNS-Camel-amazonSNSEndpoint-being-ignored-tp5748651p5748660.html Sent from the Camel - Users mailing list archive at Nabble.com.

AWS SNS + Camel + "amazonSNSEndpoint" being ignored?

2014-03-11 Thread cdfleischmann
Hello folks, wondering if you have come across this issue, or if there is something simple I am doing wrong. I am using the SNS Camel component, declared as: /* */ And in my routebuilder, I have created the followi

Re: AWS + CAMEL + DynamoDB - Please Help

2014-03-11 Thread cdfleischmann
Hi...So the solution I created (which seems to work), is as follows:Imports:/*import com.amazonaws.auth.ClasspathPropertiesFileCredentialsProvider;import com.amazonaws.regions.Region;import com.amazonaws.regions.Regions;import com.amazonaws.services.dynamodbv2.AmazonDynamoDBClient;import com.amazon

Re: AWS + CAMEL + DynamoDB - Please Help

2014-03-10 Thread cdfleischmann
Thanks... Yeah, I will move away from the ProducerTemplate of Camel over to the direct API calls from the DynamoDB API. Thanks for your help, was just trying to leverage Camel (framework) where possible, not move to too much code where I could. thanks muchly, Chris -- View this message in con

Re: AWS + CAMEL + DynamoDB - Please Help

2014-03-10 Thread cdfleischmann
I have tried the following...: /*exchange.getIn().setHeader(DdbConstants.KEY_SCHEMA, new KeySchemaElement().withAttributeName("id").withKeyType(KeyType.HASH));*/ Which also doesn't work. I get this error when attempting to execute the send It seems to ignore t

AWS + CAMEL + DynamoDB - Please Help

2014-03-10 Thread cdfleischmann
Hello folks, I have tried to use the AWS Camel Component for DynamoDB as discussed here:http://camel.apache.org/aws-ddb.html... I am following the snippet of code in the MOCK Services testing area, as listed here: https://github.com/apache/camel/blob/master/components/camel-aws/src/test/java/org/ap