Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1930
igUpload in deployment working only on IE
posted

Hi

I created an sample and very small application only for uploading file using igUpload. I deployed it on IIS(both my and server) it works fine on IE9 but not on Chrome and FireFox.

In debugging (on VS2010) work fine (tried with IE9).

I attached image of my webconfig and and image with request made by application in IE9 and Chrome.

It call correctly the IgUploadStatusHandler.ashx, but there is another call made on ' ig_fua... '  that return 404 error.

https://www.dropbox.com/s/kuzz2k18j5eqrc3/web.config.png

https://www.dropbox.com/s/ppsx3nbjqx3ov52/IE.png

https://www.dropbox.com/s/vamsqcwyiv69188/chrome.png

This is my index code:

//

$(function () {
$("#igUpload1").bind({ iguploadonerror: function (e, args) {
$("#error-message").html(args.errorMessage + "\n" + args.errorCode + "\n" + args.errorType + "\n" + args.serverMessage).stop(true, true);
}
});
});
// ]]>


@( Html.Infragistics().Upload()
.ID("igUpload1")
.AutoStartUpload(false)
.ProgressUrl("Upload/IGUploadStatusHandler.ashx")
.Mode(UploadMode.Single)
.Render()

)