Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have AWSSDK dll which is working perfectly for Amazon Cloud but i want to operate Eucalyptus Cloud. I try the following code for it but i am not able to identify what mistake is in the code.

Amazon.S3.AmazonS3Config S3Config = new Amazon.S3.AmazonS3Config()
{
    PrivateServiceURL = "https://192.168.0.xxx:8773/services/Walrus",
    CommunicationProtocol = Amazon.S3.Model.Protocol.HTTPS,
};

Amazon.S3.AmazonS3Client s3Client = new Amazon.S3.AmazonS3Client("xxxxx", "xxxxx", S3Config);
Amazon.S3.Model.DeleteBucketRequest requests = new Amazon.S3.Model.DeleteBucketRequest();
requests.WithBucketName("buk1");
s3Client.DeleteBucket(requests);
Amazon.S3.Model.DeleteBucketResponse res = new Amazon.S3.Model.DeleteBucketResponse();
share|improve this question
Have you checked following: 1. Can you try using HTTP instead of HTTPS and see if there is any success? 2. What version of Eucalyptus is this against ? 3. What is the version of the AWS .NET SDK ? 4. What is the error ? Can we look at doing a more verbose output and print the whole stack trace ? – Deependra Shekhawat Mar 22 at 4:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.