-
Notifications
You must be signed in to change notification settings - Fork 863
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PutObjectTaggingRequest: XML malformed error on Dell ECS #2116
Comments
While, PutObjectTagging does specify the below syntax for request, looks like the use of
Tried using Fiddler, and see the below request sent to AWS service:
Java SDK does add
Even though S3 service does not complain and customer is using 3rd party service, we should be complaint with the API specification.
|
Looks like almost all S3 bucket |
@Tobias-08 This has been fixed in latest version of Thanks, |
|
Discussed in #2114
Originally posted by Tobias-08 September 20, 2022
Hi,
we are using Amazon S3 SDK (.NET) with Dell ECS. When sending a
PutObjectTaggingRequest
Dell ECS responds with a "xml malformed" error. I debugged this issue and learned that it is caused by a missingxmlns
-attribute (xmlns="http://s3.amazonaws.com/doc/2006-03-01/"
) in thetagging
-element. When I added thexmlns
-attribute (manually in Fiddler) the request succeeded.My question: Is it possible to inject the
xmlns
-attribute with means of the Amazon SDK (are there extensions points?)?Thanks!
Tobias
The text was updated successfully, but these errors were encountered: