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

Returned an Error:NOt Found,Check radupload's buffersize property remarke!

10 Answers 158 Views
Upload
This is a migrated thread and some comments may be shown as answers.
xing
Top achievements
Rank 1
xing asked on 10 Jun 2011, 02:55 AM

My God

 I found a program error
"Returned an Error:NOt Found,Check  radupload's buffersize property remarke!", 
I tried to change the path, still not.

 

10 Answers, 1 is accepted

Sort by
0
Tina Stancheva
Telerik team
answered on 15 Jun 2011, 09:44 AM
Hi xing,

Can you please give us more information on the issue that you experienced? In what scenario do you use the RadUpload control? In what environment the issue can be reproduced? Can you send us a sample project reproducing it so that we can investigate it?

Any additional info that you can give us will help us identify the cause and provide you with a solution.

Also in certain scenarios our clients had issues with finding the UploadHandler and setting the handler's url like so:

string sBaseUrl = Application.Current.Host.Source.ToString().ToLower();
int iIndexOfClientBin = sBaseUrl.IndexOf("/clientbin");
sBaseUrl = sBaseUrl.Substring(0, iIndexOfClientBin);
radUpload.UploadServiceUrl = sBaseUrl + "/SampleUploadHandler.ashx";


helped in their case. I am not sure what is your case, but you can definitely give it a try.

Best wishes,
Tina Stancheva
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Minni
Top achievements
Rank 1
answered on 04 Nov 2011, 08:22 AM
I am also facing issue using RadUpload control. I am planning to buy this but need to make it working with the trail version first. Then only we can buy this. Please help me resolve the attached error. I am using Sharepoint 2010 to deploy this in silverlight webpart. Also, i need to know whether this control will support files of 10GB size or not. I can use Sharepoint RBS filesystem as backend. Would appreciate if you can respond ASAP.
0
Tina Stancheva
Telerik team
answered on 04 Nov 2011, 09:30 AM
Hi Minni,

Your snapshot indicates that you're using the RadUpload control in a SharePoint enviroment. In this case you need to keep in mind that the RadUploadHandler handles the upload requests properly in a SharePoint enviroment on condition that:

1. In the UploadHandler.ashx file definition, you need to indicate the full assembly name of the assembly that contains the class that will handle the upload requests. For example if the UploadHandler class should handle the requests and it is in the UploadProject assembly, the following line has to be included in the UploadHandler.ashx file definition:

<%@ WebHandler Language="C#" Class="UploadProject.UploadHandler, UploadProject, Version=1.0.0.0, Culture=neutral, PublicKeyToken=3173a0160b767e01" %>

 2. Include the Telerik.Windows.RadUploadHandler.dll into the SharePoint project Package - To ensure that the Telerik.Windows.RadUploadHandler.dll is included in your WSP you have to open the Package Configuration - just open the "Package" node in your SharePoint project and then double click the given entry. Scroll down to the end of the screen and open the Manifest. Make sure it contains the following line:

<Assembly Location="Telerik.Windows.RadUploadHandler.dll" DeploymentTarget="GlobalAssemblyCache"/>

If it doesn't, that means that the Telerik.Windows.RadUploadHandler.dll isn't included in the Package. In order to include it you need to open the Advanced mode. Then use the Add button to Add Existing Assembly and select the Telerik.Windows.RadUploadHandler.dll.

You can examine this forum thread as it will give you further information and you can also download a sample solution demonstrating how to use the RadUpload control in a SharePoint enviroment.

I hope the information will help you. If we can assist you in any other way, please let us know.

Best wishes,
Tina Stancheva
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Minni
Top achievements
Rank 1
answered on 05 Nov 2011, 07:27 PM
Hi Tina, Thanks for your quick reply, really appreciate this. I'll try your suggested solution on monday and will update you. In the meantime, can you please respond to the following query(i asked in prev post also):- Will radupload control support files upto 10gb size? I'll be using radupload in sharepoint silverlight webpart and will use sharepoint RBS(remote blob storage). Thanks, Minni
0
Minni
Top achievements
Rank 1
answered on 07 Nov 2011, 08:24 AM
Tina,
thanks a lot for your suggestion, it worked. I am still waiting for your reply on my previous post:
Can you please respond to the following query(i asked in prev post also):- Will radupload control support files upto 10gb size? I'll be using radupload in sharepoint silverlight webpart and will use sharepoint RBS(remote blob storage).

Thanks,
Minni
0
Tina Stancheva
Telerik team
answered on 07 Nov 2011, 09:35 AM
Hi Minni,

I am sorry for missing your last question. Basically you can control the maximum file size that the RadUpload control can upload through the MaxFileSize and MaxUploadSize properties as by default their value is set to long.MaxValue (read more).

However, even if the RadUpload configuration allows large files upload, you might have to increase the maximum request length in the web.config file to better fit your requirements:
<configuration>
    <system.web>
        <httpRuntime maxRequestLength="32768" />
    </system.web>
</configuration>

I hope this information will help you. Let me know if I can further assist you.

Greetings,
Tina Stancheva
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Minni
Top achievements
Rank 1
answered on 07 Nov 2011, 11:40 AM
Ok. Can you please help me in knowing the price related information. I just need RadUpload control so which licence i need to buy and how much is the cost? My application is intranet application.
0
Donna
Telerik team
answered on 07 Nov 2011, 02:41 PM
Hi Minni,

We offer  our UI controls in packages because all of the individual controls share common frameworks/resources in their respective product suite (RadControls for Silverlight in your case). That is one of the key reasons why separation is not possible and we package all 50+ controls together.

We have two types of licenses for the Silverlight suite and the prices are as follows:

- Developer license without subscription - $799/developer. This license comes with free minor product updates and Standard Level Support (48h guaranteed response time, Mon-Fri) for 1 year, and does not offer source code.

- Developer License with Subscription and Priority Support - $999/developer. With the subscription license you  will be entitled to receive all version updates (major and minor) for the Software for a period of 1 year. As part of this license you’ll be also entitled to a Priority Level Support (24h guaranteed response time, Mon-Fri). And last, but not least the subscription license grants you access to the full C# and JavaScript source code.

I hope this clears things up. Please let me know if you have any additional questions.

Regards,

Donna
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Paul
Top achievements
Rank 1
answered on 19 Mar 2012, 07:13 PM
What if I'm using something other than the RadUploadhandler?  I have something that is catching the event and uploading directly to SharePoint 2010 (K2 SmartObject).  I still see the little yellow Icon but all my files are uploaded successfully.  Hence, I don't have an upload service url.  Is there a way to suppress this error message and or icon?
0
Tina Stancheva
Telerik team
answered on 22 Mar 2012, 01:22 PM
Hi Paul,

The RadUpload control is designed to work with the RadUploadHandler as all upload requests from the RadUpload control should be handled by the RadUploadHandler. You can hide the yellow icon by modifying the RadUpload ControlTemplate. But still the visual states of the control are related to the upload session state which depends on the RadUploadHandler logic.

This is why in your case it might be better to create a sample upload control instead. However if you've set up the RadUplaod control to fit your requirements and you only need to remove the yellow icon, then you can modify the template of the control as is demonstrated in the attached sample.

Let me know if it helps or if we can further assist you.

Kind regards,
Tina Stancheva
the Telerik team
Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license! Book your seat now >>
Tags
Upload
Asked by
xing
Top achievements
Rank 1
Answers by
Tina Stancheva
Telerik team
Minni
Top achievements
Rank 1
Donna
Telerik team
Paul
Top achievements
Rank 1
Share this question
or