Live Support, Chat and HTML Editor
Welcome to Support forums Sign in | Join | Help Messenger
in Search

http error 1 : 12030:Unknown when uploading files

Last post 10-26-2010, 8:40 AM by MNunez. 23 replies.
Page 1 of 2 (24 items)   1 2 Next >
Sort Posts: Previous Next
  •  03-09-2010, 2:13 PM 59274

    http error 1 : 12030:Unknown when uploading files

    I'm using the MVC samples provided in the Ajax Uploader download along with Visual Studio 2010 RC, .NET Framework 4.0 RC and Silverlight 3.  I will occasionally get the following error when uploading multiple files:
     
    http error 1 : 12030:Unknown
     
    Is there a way to prevent this error or trace down the randomness of this error?  Right now this error is too random and too frequent to allow us to use Ajax Uploader in an application.
     
    Thanks,
    Matt
  •  03-09-2010, 2:59 PM 59280 in reply to 59274

    Re: http error 1 : 12030:Unknown when uploading files

    Matt,
     
    For the time being, please use CuteWebUI_AjaxUploader_OnTaskError or CuteWebUI_AjaxUploader_OnError event. We will investigate this issue and get back to you soon.

    <%
    @ Page Language="C#" %>
    <%@ Register TagPrefix="CuteWebUI" Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>
    <script type="text/javascript">
        function CuteWebUI_AjaxUploader_OnError(msg)
        {         
             alert("global error:"+msg);
             return false;
        }

        function CuteWebUI_AjaxUploader_OnTaskError(obj,msg,reason) 
        {
            alert("file error:"+obj.FileName+" , "+msg);
            return false;
        }
    </script>
    <script runat="server">
          void Uploader_FileUploaded(object sender, UploaderEventArgs args)
          {
                args.MoveTo(Server.MapPath("~/Uploads/"));
          }
    </script>
    <html>
    <head></head>
    <body>
    <form runat="server" id="theForm">
          <CuteWebUI:Uploader runat="server" ID="Uploader1" 
                InsertText="Upload File" OnFileUploaded="Uploader_FileUploaded">
          </CuteWebUI:Uploader>
    </form>
    </body>
    </html>

     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  03-10-2010, 8:05 AM 59302 in reply to 59280

    Re: http error 1 : 12030:Unknown when uploading files

    Thanks for the reply Adam.  The JS methods only expand the error message I'm getting to tell me which file is erroring out (which I already know by looking at the GUI). 
     
    I tested this with Flash 10 and wasn't seeing the same errors I'm seeing when using Silverlight 3.  I wanted to try and disable the use of Silverlight but keep the auto fall back from Flash to Iframes.  I noticed that there is a SetAdvancedOption method to disable Silverlight but this method is unavailable to the MvcUploader.  Is there a way to disable Silverlight in the MvcUploader while still keeping the auto fall back feature?
     
    Thanks,
    Matt
  •  03-11-2010, 9:39 AM 59327 in reply to 59302

    Re: http error 1 : 12030:Unknown when uploading files

    >>Is there a way to disable Silverlight in the MvcUploader while still keeping the auto fall back feature?
     
    Right now it's not available.
     
    Can you try setting UploadType to flash? 

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  03-11-2010, 9:53 AM 59330 in reply to 59327

    Re: http error 1 : 12030:Unknown when uploading files

    I was going to try that but doesn't that prevent AjaxUploader from falling back to the default IE common dialog window if Flash is not installed?
  •  03-11-2010, 10:09 AM 59331 in reply to 59330

    Re: http error 1 : 12030:Unknown when uploading files

  •  03-11-2010, 10:21 AM 59332 in reply to 59331

    Re: http error 1 : 12030:Unknown when uploading files

    Thanks for the information.
  •  03-12-2010, 10:04 AM 59355 in reply to 59332

    Re: http error 1 : 12030:Unknown when uploading files

    Has there been any progress on this error?  This seems to only happen if I've added AjaxUploader to a .NET Framework 4 project.  When I run the sample code as provided it works fine.  As soon as the code is targeted at a MVC 2 .NET Framework 4 prjoect I get these errors.
     
    Thanks,
    Matt
  •  03-15-2010, 9:24 PM 59417 in reply to 59355

    Re: http error 1 : 12030:Unknown when uploading files

    Matt,
     
    It seems that the MVC2 framework make the UploadHandler.ashx stop working.
     
    Can you make sure the UploadHandler.ashx can be executed ?
     
    Regards,
    Terry
  •  03-16-2010, 8:21 AM 59421 in reply to 59417

    Re: http error 1 : 12030:Unknown when uploading files

    I know that the UploadHandler.ashx is working because I've stepped through it and I can successfully upload files.  I just get the above error message randomly on files when I'm doing multiple files.
  •  03-17-2010, 10:13 PM 59462 in reply to 59421

    Re: http error 1 : 12030:Unknown when uploading files

    Hi,
     
    We need test on it, once we can reproduce it , we will fix it.
     
    Regards,
    Terry
     
  •  03-29-2010, 6:27 AM 59709 in reply to 59462

    Re: http error 1 : 12030:Unknown when uploading files

    Any update on this?
     
    Thanks,
    Matt
  •  04-27-2010, 7:31 AM 60444 in reply to 59709

    Re: http error 1 : 12030:Unknown when uploading files

    I see that you have tested with .NET 4 and not seen an issue.  I'm still experiencing these issues on .NET 4 RTM with Silverlight 3 or 4 and using ASP.NET MVC 2.
  •  04-27-2010, 9:47 PM 60486 in reply to 60444

    Re: http error 1 : 12030:Unknown when uploading files

    Matt,
     
    We will test the ASP.NET MVC 2.0 on the .Net4.0
     
    Regards,
    Terry
  •  04-29-2010, 5:25 PM 60552 in reply to 60486

    Re: http error 1 : 12030:Unknown when uploading files

    I am seeing the same problem with MVC 2.0, .Net 3.5 and Visual Studio 2008.
     
    I ran Sample2  and selected 7 files to upload.  Sometimes they all work, randomly one or more will fail.
     
    It appears to happen after the status bar reaches 100%
     
     
Page 1 of 2 (24 items)   1 2 Next >
View as RSS news feed in XML