Получение ошибки «MalformedXML» при использовании AWS-SDK-CPP - PullRequest
0 голосов
/ 06 марта 2019

Я получаю первую попытку загрузки файла в корзину s3:

#include <iostream>
#include <aws/core/Aws.h>
#include <aws/s3/S3Client.h>
#include <aws/s3/model/PutObjectRequest.h>
#include <aws/core/auth/AWSCredentialsProvider.h>

#include <iostream>
#include <fstream>
#include <sys/stat.h>

#include <curl/curl.h>

using namespace Aws::Auth;
using namespace Aws::Http;
using namespace Aws::Client;
using namespace Aws::S3;
using namespace Aws::S3::Model;
using namespace Aws::Utils;    

int main(int argc, const char * argv[]) {

    Aws::SDKOptions options;
    Aws::InitAPI(options);

    ClientConfiguration clientConfig;
    //config.region = "us-west-2";
    clientConfig.scheme = Aws::Http::Scheme::HTTPS;
    clientConfig.region = Aws::Region::US_EAST_2;
    clientConfig.connectTimeoutMs = 30000;
    clientConfig.requestTimeoutMs = 600000;
    clientConfig.enableHostPrefixInjection = true;

    static const char * ACCESS_KEY_ID = "myKey";      
    static const char * SECRET_KEY = "mySecretKey";
    static const char * ALLOCATION_TAG = "SampleAllocationTag";

    static const char * filename = "myFilename";

    std::shared_ptr<S3Client> client = Aws::MakeShared<S3Client>(
                                                                 ALLOCATION_TAG,
                                                                 AWSCredentials(Aws::String(ACCESS_KEY_ID), Aws::String(SECRET_KEY)),
                                                                                clientConfig
                                                                                );

    Aws::S3::Model::PutObjectRequest object_request;

    object_request.SetBucket("myBucketName");
    //object_request.SetKey(s3_object_name);
    const std::shared_ptr<Aws::IOStream> input_data =
    Aws::MakeShared<Aws::FStream>(ALLOCATION_TAG,
                                  filename,
                                  std::ios_base::in | std::ios_base::binary);
    object_request.SetBody(input_data);

    // Put the object
    auto put_object_outcome = client->PutObject(object_request);
    if (!put_object_outcome.IsSuccess()) {
        auto error = put_object_outcome.GetError();
        std::cout << "ERROR: " << error.GetExceptionName() << ": "
        << error.GetMessage() << std::endl;
    }

    Aws::ShutdownAPI(options);

    return 0;
}

Я получаю следующую ошибку:

ОШИБКА: MalformedXML: Невозможно выполнитьparse ExceptionName: MalformedXML Сообщение: предоставленный вами XML не был правильно сформирован или не соответствует нашей опубликованной схеме

Что это означает и как исправить?

...