I am having this weird issue while working with AWS S3. I am working on application by which I can store the images to AWS bucket. Using Multer as middleware and S3FS library to connect and upload to AWS.
But the following error pops up when I try uploading the content.
“MalformedXML: The XML you provided was not well-formed or did not validate against our publis hed schema”
Index.js
JavaScript
x
41
41
1
var express = require('express');
2
var router = express();
3
var multer = require('multer');
4
var fs = require('fs');
5
var S3FS = require('s3fs');
6
var upload = multer({
7
dest: 'uploads'
8
})
9
var S3fsImpl = new S3FS('bucket-name', {
10
region: 'us-east-1',
11
accessKeyId: 'XXXXXXXXXXXX',
12
secretAccessKey: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
13
});
14
15
/* GET home page. */
16
router.get('/', function (req, res, next) {
17
res.render('profile', {
18
title: 'Express'
19
});
20
});
21
22
router.post('/testupload', upload.single('file'), function (req, res) {
23
var file = req.file;
24
console.log(file);
25
26
var path = req.file.path;
27
var stream = fs.createReadStream(path);
28
console.log(stream);
29
30
S3fsImpl.writeFile(file.name, stream).then(function () {
31
fs.unlink(file.path, function (err) {
32
if (err) {
33
console.log(err);
34
}
35
});
36
res.redirect('/profile');
37
})
38
});
39
40
module.exports = router;
41
EDIT Output:
JavaScript
1
47
47
1
{ fieldname: 'file',
2
originalname: '441_1.docx',
3
encoding: '7bit',
4
mimetype: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
5
destination: 'uploads',
6
filename: '662dcbe544804e4f50dfef1f52b40d22',
7
path: 'uploads\662dcbe544804e4f50dfef1f52b40d22',
8
size: 13938 }
9
ReadStream {
10
_readableState:
11
ReadableState {
12
objectMode: false,
13
highWaterMark: 65536,
14
buffer: BufferList { head: null, tail: null, length: 0 },
15
length: 0,
16
pipes: null,
17
pipesCount: 0,
18
flowing: null,
19
ended: false,
20
endEmitted: false,
21
reading: false,
22
sync: true,
23
needReadable: false,
24
emittedReadable: false,
25
readableListening: false,
26
resumeScheduled: false,
27
defaultEncoding: 'utf8',
28
ranOut: false,
29
awaitDrain: 0,
30
readingMore: false,
31
decoder: null,
32
encoding: null },
33
readable: true,
34
domain: null,
35
_events: { end: [Function] },
36
_eventsCount: 1,
37
_maxListeners: undefined,
38
path: 'uploads\662dcbe544804e4f50dfef1f52b40d22',
39
fd: null,
40
flags: 'r',
41
mode: 438,
42
start: undefined,
43
end: undefined,
44
autoClose: true,
45
pos: undefined,
46
bytesRead: 0 }
47
Package.json
JavaScript
1
29
29
1
{
2
"name": "aws-s3-images",
3
"version": "1.0.0",
4
"private": true,
5
"scripts": {
6
"start": "node ./bin/www"
7
},
8
"dependencies": {
9
"body-parser": "~1.17.1",
10
"connect-multiparty": "^2.0.0",
11
"cookie-parser": "~1.4.3",
12
"debug": "~2.6.3",
13
"express": "~4.15.2",
14
"hbs": "~4.0.1",
15
"morgan": "~1.8.1",
16
"multer": "^1.3.0",
17
"s3fs": "^2.5.0",
18
"serve-favicon": "~2.4.2"
19
},
20
"description": "AWS S3 uploading images",
21
"main": "app.js",
22
"devDependencies": {},
23
"keywords": [
24
"javascript"
25
],
26
"author": "reeversedev",
27
"license": "MIT"
28
}
29
Advertisement
Answer
This code should work for you. You need to remember that: 1) use unique bucket name 2) under your file object use ‘originalname’ instead of ‘name’ <– this property does not exist
JavaScript
1
26
26
1
app.post('/testupload', function(req, res){
2
3
4
var file = req.files[0];
5
6
console.log(file.path);
7
console.log(file.name);
8
9
console.log('FIRST TEST: ' + JSON.stringify(file));
10
11
var stream = fs.createReadStream(file.path);
12
13
S3fsImpl.writeFile(file.originalname, stream).then(function ()
14
{
15
console.log('File has been sent - OK');
16
},
17
function(reason)
18
{
19
throw reason;
20
}
21
);
22
23
res.redirect('/index');
24
25
});
26