KendoUpload と WFC サービスを使用して、ファイルを正常にアップロードできます。問題は、HttpMultipartParser を使用してストリームを解析しようとすると、次のステートメントが null を返すことです。
byte[] content = parser.FileContents;
ファイルの実際の内容は、次のステートメントによって取得されます。
HttpUtility.UrlDecode(parser.Parameters["files"]) which returns:
"ilename=\"Test1.txt\"\r\nContent-Type: text/plain\r\n\r\nSome text END"
私が知りたいのですが:
- parser.FileContents が null に設定されているのはなぜですか?
- parser.Parameters["files"] がメタデータを埋め込むのはなぜですか? テスト ファイルの内容が単に「テキスト END」と表示されることを期待していました。
コードは次のとおりです。
HTML:
<form id="formAttachments" method="post">
<input class="upload" name="files" type="file" data-role="upload" data-bind="kendoUpload" />
</form>
JavaScript:
var upload = $(".upload").kendoUpload({
async: {
saveUrl: 'UploadFormAttachment',
autoUpload: false
},
multiple: true,
showFileList: true,
upload: onFormAttachmentUpload,
});
self.onFormAttachmentUpload = function (e) {
var attachment = $.grep(self.formAttachments(), function (a) {
return a.uid == e.files[0].uid;
})
var importId = self.importId;
var formId = fm.currentFormDef.id;
var fileName = e.files[0].name;
var title = attachment[0].title;
var description = attachment[0].description;
e.data = {
importId: importId,
formId: formId,
fileName: fileName,
title: title,
description: description
};
};
WCF サービス
public UploadResponse UploadFormAttachment(Stream uploadRequest)
{
try
{
using (MemoryStream stream = new MemoryStream())
{
uploadRequest.CopyTo(stream);
stream.Position = 0;
HttpMultipartParser parser = new HttpMultipartParser(stream, "content");
if (parser.Success)
{
string importId = HttpUtility.UrlDecode(parser.Parameters["importid"]);
int formId = Convert.ToInt32(HttpUtility.UrlDecode(parser.Parameters["formid"]));
string fileName = HttpUtility.UrlDecode(parser.Parameters["filename"]);
string title = HttpUtility.UrlDecode(parser.Parameters["title"]);
string description = HttpUtility.UrlDecode(parser.Parameters["description"]);
byte[] content = parser.FileContents;
// parser.FileContents is null!!!
// HttpUtility.UrlDecode(parser.Parameters["files"]) return content and embedded meta-data (how to get raw data only?)
}
}
}
}