JQuery uploadify无法在asp.net MVC3应用程序中使用https抛出错误2038

时间:2011-11-02 18:38:18

标签: asp.net-mvc-3 jquery-plugins https uploadify adfs

我构建了一个新的MVC3应用程序并在其中使用了Uploadify插件。它很棒。以下是我的代码:

 $("#fileuploader").fileUpload({
        'uploader': '@Url.Content("~/Scripts/Uploader.swf")',
        'buttonText': 'Browse',
        'cancelImg': '@Url.Content("~/Images/cancel.png")',
        'script': 'Home/Upload',
        'fileDesc': '*.jpg;*.jpeg;*.gif;*.png;*.eml;*.msg;*.doc;*.docx;*.pdf;*.txt;*.xps;*.zip;*.ppt;*.pptx;*.pages;*.numbers;*.url;*.xls;*.xlsx;',
        'fileExt': '*.jpg;*.jpeg;*.gif;*.png;*.eml;*.msg;*.doc;*.docx;*.pdf;*.txt;*.xps;*.zip;*.ppt;*.pptx;*.pages;*.numbers;*.url;*.xls;*.xlsx;',
        'multi': false,
        'auto': true,
        'sizeLimit': 102400,
        'onError': function (event, ID, fileObj, errorObj) {
            alert(errorObj.info);
            alert(errorObj.text);
            alert(errorObj.status);
            if (errorObj.type == "File Size") {
                alert(errorObj.type + ' Limit: ' + Math.round(errorObj.sizeLimit / 1024) + 'KB');
            }
        }
    });

以下是上传文件的方法。

 public string Upload(HttpPostedFileBase fileData)
        {
            //var fileName = this.Server.MapPath("~/uploads/" + System.IO.Path.GetFileName(fileData.FileName));
            var fileName = "C:/temp/" + System.IO.Path.GetFileName(fileData.FileName);
            fileData.SaveAs(fileName);

            return "ok";
        }

然而,当我在另一个使用ADFS联合并使用https的MVC3应用程序中使用相同的代码时,它总是抛出错误2038.有谁知道我为什么会收到此错误。我检查了每个配置设置。这是安全问题吗?任何有关这方面的帮助将非常感谢。谢谢!

1 个答案:

答案 0 :(得分:0)

这似乎是自签名证书的问题,请看:Uploadify error #2038