How do you allow multiple file uploads on an internal windows-authentication intranet? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T15:34:46Zhttp://stackoverflow.com/feeds/question/50315http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr2How do you allow multiple file uploads on an internal windows-authentication intranet?EndangeredMassa2008-09-08T18:06:45Z2009-02-02T19:41:19Z
<p>I have a couple of solutions, but none of them work perfectly.</p>
<p><strong>Platform</strong></p>
<ol>
<li>ASP.NET / VB.NET / .NET 2.0</li>
<li>IIS 6</li>
<li>IE6 (primarily), with some IE7; Firefox not necessary, but useful</li>
</ol>
<p><em>Allowed 3rd Party Options</em></p>
<ol>
<li>Flash</li>
<li>ActiveX (would like to avoid)</li>
<li>Java (would like to avoid)</li>
</ol>
<p><strong>Current Attempts</strong></p>
<p><em>Gmail Style</em>: You can use javascript to add new Upload elements (input type='file'), then upload them all at once with the click of a button. This works, but still requires a lot of clicks. (I was able to use an invisible ActiveX control to detect things like File Size, which would be useful.)</p>
<p><em>Flash Uploader</em>: I discovered a couple of Flash Upload controls that use a 1x1 flash file to act as the uploader, callable by javascript. (One such control is <a href="http://digitarald.de/project/fancyupload/" rel="nofollow">FancyUpload</a>, another is <a href="http://www.sitepen.com/blog/2008/09/02/the-dojo-toolkit-multi-file-uploader/" rel="nofollow">Dojo's Multiple File Uploader</a>, yet another is one by <a href="http://www.codeproject.com/KB/aspnet/FlashUpload.aspx" rel="nofollow">darick_c at CodeProject</a>.) These excited me, but I quickly ran into two issues:</p>
<ol>
<li>Flash 10 will break the functionality that is used to call the multiple file upload dialogue box. The workaround is to use a transparent flash frame, or just use a flash button to call the dialogue box. That's not a huge deal. </li>
<li>The integrated windows authentication used on our intranet is not used when the Flash file attempts to upload the files, prompting the user for credentials. The workaround for this is to use cookieless sessions, which would be a nightmare for our project due to several other reasons.</li>
</ol>
<p><em>Java Uploader</em>: I noticed several Java-based multiple-file uploaders, but most of the appear to cost money. If I found one that worked really well, I could arrange to purchase it. I'd just rather not. I also don't like the look of most of them. I liked FancyUpload because it interacted with html/javascript so that I could easily style and manage it any way I want. </p>
<p><em>ActiveX Uploader</em>: I found <a href="http://support.persits.com/xupload/demo1.asp" rel="nofollow">an ActiveX solution</a> as well. It appears that ActiveX will work. I would just write my own instead of buying that one. This will be my last resort, I think.</p>
<p><strong>Resolution</strong></p>
<p>I would love to be able to use something like FancyUpload. If I can just get by the credentials prompt some way, it would be perfect. But, from my research, it appears that the only real workaround is cookieless sessions, which I just can't do. </p>
<p>So, the question is: Is there a way to resolve the issues presented above OR is there a different solution that I have not listed which accomplishes the same goal?</p>
http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr/50657#506571Answer by Bermo for How do you allow multiple file uploads on an internal windows-authentication intranet?Bermo2008-09-08T20:54:06Z2008-09-08T20:54:06Z<p>You could try <a href="http://www.swfupload.org/" rel="nofollow">SWFUpload</a> as well - it would fit in your Flash Uploader "category".</p>
http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr/63746#637460Answer by EndangeredMassa for How do you allow multiple file uploads on an internal windows-authentication intranet?EndangeredMassa2008-09-15T15:08:15Z2008-09-15T15:08:15Z<p>It looks like ActiveX could work, but I can't get the .NET examples to work. Any further thoughts would be appreciated.</p>
http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr/70461#704610Answer by anirudhsasikumar for How do you allow multiple file uploads on an internal windows-authentication intranet?anirudhsasikumar2008-09-16T08:49:57Z2008-09-16T08:49:57Z<p>In Internet Explorer, FileReference.upload (flash upload) <em>will</em> send cookies along as well.</p>
<p>This behavior breaks only when running in other browsers.</p>
http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr/70521#705211Answer by davidinbcn for How do you allow multiple file uploads on an internal windows-authentication intranet?davidinbcn2008-09-16T08:58:25Z2008-09-16T08:58:25Z<p>I don't think there is any work around for the integrated windows authentication. What you could possibly do is save the files to a generic unprotected folder and, in the case of swfupload, use a handler to move the file when its fully uploaded</p>
http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr/240321#2403210Answer by EndangeredMassa for How do you allow multiple file uploads on an internal windows-authentication intranet?EndangeredMassa2008-10-27T15:35:07Z2008-10-27T19:01:39Z<p><a href="http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-in#70521">@davidinbcn.myopenid.co</a>: That's basically how I solved this issue. But, in an effort to provide a more detailed answer, I'm posting my solution here.</p>
<p><strong>The Solution!</strong></p>
<p>Create two web applications, or websites, or whatever.</p>
<p><strong>Application A</strong> is a simple web application. The purpose of this application is to receive file uploads and save them to the proper place. Set this up as an anonymous access allowed. Then make a single ASPX page that accepts posted files and saves them to a given location. (I'm doing this on an intranet. Internet sites may be exposing themselves to security issues by doing this. Take extra precautions if that is the case.) The code behind for this page would look something like this:</p>
<pre><code>Dim uploads As HttpFileCollection = HttpContext.Current.Request.Files
If uploads.Count > 0 Then
UploadFiles(uploads)
Else
result = "error"
err = "File Not Uploaded"
End If
</code></pre>
<p><strong>Application B</strong> is your primary site that will allow file uploads. Set this up as an authenticated web application that does not allow anonymous access. Then, place the <a href="http://digitarald.de/journal/54706744/fancyupload-for-flash-10/#comments" rel="nofollow">FancyUpload</a> (or similar solution) on a page on this site. Configure it to post its files to Application A's upload ASPX page.</p>
http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr/425173#4251730Answer by jack for How do you allow multiple file uploads on an internal windows-authentication intranet?jack2009-01-08T17:33:45Z2009-01-08T17:33:45Z<p>Our company use ajaxuploader.com which support this feature.</p>
http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr/504582#5045820Answer by jdjdjd for How do you allow multiple file uploads on an internal windows-authentication intranet?jdjdjd2009-02-02T19:41:19Z2009-02-02T19:41:19Z<p>EM - I am trying to do the same as you were - except I'm using swfupload. I am having a problem - Request.Files is empty when I get to the Anonymous Access page which is going to move the file. </p>
<p>Did you run into that? Maybe I need to add something to the web.config. Or when you allowed Anon Access, did you disable Windows Auth?</p>
<p>Thanks</p>