Ok, I found the problem. camel-jclouds is checking inf the parameter
CamelJcloudsOperation is 'CamelJcloudsGet', not 'GET', same for the
uri-operation. So it should have been


from("direct:start")
    .to("jclouds:blobstore:aws-s3" +
        "?operation=CamelJcloudsGet" +
        "&container=mycontainer" +
        "&blobName=myblob"); 

or 

from("direct:start)
    .setHeader(CamelJcloudsOperation, constant("CamelJcloudsGet"))
    .to("jclouds:blobstore:aws-s3" +
        "?container=mycontainer" +
        "&blobName=myblob"); 

So i guess there is an error in the component description at
http://camel.apache.org/jclouds.html. Is there a way to inform the website
admin?

Best regards
Chris



--
View this message in context: 
http://camel.465427.n5.nabble.com/camel-jclouds-parameter-operation-ignored-tp5750789p5750791.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to