This is a migrated thread and some comments may be shown as answers.

RadUploadAjax callback error : Source url returned error : 12002

3 Answers 100 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Nirmala
Top achievements
Rank 1
Nirmala asked on 07 Feb 2013, 08:58 PM
Hi,

  I have a RadProgressManager and RadProgressArea on my ASPX Page which opens in a RadWindow.
<telerik:RadProgressManager id="Radprogressmanager1" runat="server" RegisterForSubmit="false" />            
                    <telerik:RadProgressArea id="RadProgressArea1" runat="server" /> 

We try to copy data from one table to another table when that copy is occuring the Progressmanager kicks in ans shows how much percent of copying is done. 

After the copying is started it, progress bar is getting stuck in certain point and giving the attached error message.
 RadUploadAjax callback error : Source url returned error : 12002.

I don't know why it is behaving like this.

I registered it correctly in web.config. Don't what is triggering this issue.

Any help would be appreciated.

Thanks,
Nirmala Kalakonda


 
  


3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 08 Feb 2013, 12:31 PM
Hi Nirmala

Error 12002 is a HTTP time out error.
 I suggest that you consider increasing the exectutionTimeout limit that ASP.NET uses to determine whether a request has timed out or not.
Try increasing the execution timeout in  web.config

<configuration>
  .. ... ... ........ ....
 <system.web>
    <httpRuntime  executionTimeout="3600"/>
  .. ... ... ........ ....
  </system.web>
</configuration>

Thanks
Shinu
0
Nirmala
Top achievements
Rank 1
answered on 08 Feb 2013, 05:08 PM
Yes , i did increase the execution time . But, it didn't help either.

Thanks,
Nirmala Kalakonda 
0
Suthish
Top achievements
Rank 2
answered on 21 Feb 2013, 11:50 AM
try..
<httpRuntime maxRequestLength="204800" executionTimeout="3600" requestLengthDiskThreshold="204800"  />
Tags
AsyncUpload
Asked by
Nirmala
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Nirmala
Top achievements
Rank 1
Suthish
Top achievements
Rank 2
Share this question
or