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

telerik ajax controls and webseal

1 Answer 91 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
suman
Top achievements
Rank 1
suman asked on 19 Nov 2013, 07:26 PM
Hi

We have an asyncUpload control ,which is not uploading the files[shows the red colored bullet point when upload button is pressed] when used with webseal.The error we are receiving is related with WebResource.axd [path is not correct] .When we are looking into viewsource othe path was actually missing one folder ...

for example,,,
the correct path from which this .axd file is geting downloaded is  compname\WebResource.axd

but  the for this  control \WebResource.axd is showing in the path..

I have read that there is some known issue with Ajax and webseal. Also found some similar kind of issue in this forum
http://www.telerik.com/community/forums/aspnet-ajax/docking/scriptresource-axd-problem.aspx


Any help please

1 Answer, 1 is accepted

Sort by
0
Hristo Valyavicharski
Telerik team
answered on 21 Nov 2013, 03:33 PM
Hi Suman,

You are seeing the red dot, because the RadAsyncUpload is looking for the handler in a wrong location. The best solution would be to configre the WebSEAL correctly. However you could define the new handler's location in RadAsyncUpload markup:

<telerik:RadAsyncUpload ID="RadAsyncUpload1" runat="server" HttpHandlerUrl="~/control/Telerik.Web.UI.WebResource.axd">
</telerik:RadAsyncUpload>

To verify that the handler is registered correctly and can be accessed try to browse it:
http://localhost:52459/contro/Telerik.Web.UI.WebResource.axd?type=rau

if everything is okay then you should see the following message: 

{ "message" : "RadAsyncUpload handler is registered successfully, however, it may not be accessed directly." }

Regards,
Hristo Valyavicharski
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
General Discussions
Asked by
suman
Top achievements
Rank 1
Answers by
Hristo Valyavicharski
Telerik team
Share this question
or