Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...Telerik.Web.UI.WebResource.axd - Error (Hosting provider)Telerik.Web.UI.WebResource.axd - Error (Hosting provider)
Previous
 
Next
New Post
9/19/2011 4:22 PM
 
 Jonathan still I get the same error. I replaced with a new telerik dll.
 
New Post
9/19/2011 4:31 PM
 
After looking a little more closely at the error I think Ismet Dumlupinar my have been closer.

You'll want to check a few things:
  1. What version of asp.net is the site running under (2.0,4.0)
  2. Is .net 3.5 SP1 installed
  3. Check the web.config for all the references to System.Web.Extensions
You may see under <runtime> there are some redirect bindings that are conflicting with .net 4.0 and .net 3.5

Make sure these values are consistent throughout the web.config

example:

<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <probing privatePath="bin;bin\HttpModules;bin\Providers;bin\Modules;bin\Support;" />
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="4.0.0.0" />

Sr. Software Engineer
 
New Post
9/20/2011 7:32 AM
 
Jonathan, I checked as you said and everything is fine: I noticed a difference when its like URL 1)  it works,  
url 2) it doesn't work error 404 -- do you think any right issues?

1) Working:
http://ch/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ScriptManager_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d3.5.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3a3de828f0-5e0d-4c7d-a36b-56a9773c0def%3aea597d4b%3ab25378d2

2) Not working:

http://ch/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ScriptManager_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d3.5.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3a3de828f0-5e0d-4c7d-a36b-56a9773c0def%3aea597d4b%3ab25378d2%3bTelerik.Web.UI%2c+Version%3d2011.1.519.35%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3ab7b69463-0a06-4063-8ab0-8d180e49bc39%3a16e4e7cd%3af7645509%3aed16cbdc


<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="bin;bin\HttpModules;bin\Providers;bin\Modules;bin\Support;" />
<dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
<!--Upgraded by .NET 4.0 Upgrade version 6.0.1 - Date: 9/16/2011 3:52:16 PM-->
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
</dependentAssembly>
<dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
<!--Upgraded by .NET 4.0 Upgrade version 6.0.1 - Date: 9/16/2011 3:52:16 PM-->
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" xmlns="urn:schemas-microsoft-com:asm.v1" />
</dependentAssembly>
<dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" />
<!--Upgraded by DotNetNuke.Telerik.Web version 5.5.0 - Date: 8/31/2011 3:53:22 PM-->
<!--<bindingRedirect oldVersion="2007.1.1.20-2011.4.2000.20" newVersion="2009.3.1104.35" xmlns="urn:schemas-microsoft-com:asm.v1" />-->
<!--Upgraded by DotNetNuke.Telerik.Web version 6.0.0 - Date: 8/31/2011 4:48:38 PM-->
<!--<bindingRedirect oldVersion="2008.0.0.0-2020.0.0.0" newVersion="2010.02.0713.35" xmlns="urn:schemas-microsoft-com:asm.v1" />-->
<bindingRedirect oldVersion="2008.0.0.0-2020.0.0.0" newVersion="2011.1.519.35" />
</dependentAssembly>
</assemblyBinding>
</runtime>
 
New Post
9/20/2011 9:50 AM
 
The second URL has some specific key information that it is looking for in the reference.

System.Web.Extensions
Version=3.5.0.0
PublicKeyToken=31bf3856ad364e35:en-US:3de828f0-5e0d-4c7d-a36b-56a9773c0def:ea597d4b%3ab25378d2;


Telerik.Web.UI
Version=2011.1.519.35
PublicKeyToken=121fae78165ba3d4
:en-US:b7b69463-0a06-4063-8ab0-8d180e49bc39%3a16e4e7cd:f7645509%3aed16cbdc


Re-search your config for both the System.Web.Extensions and Telerik.Web.UI references and see if the versions and the Public Key tokens match up (just the bold part) for all the references.

Sr. Software Engineer
 
New Post
9/21/2011 11:36 AM
 
I checked all the references and everything looks correct; still doesn't work.
I am planning to upgrade to 4.0 and test if it works.
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Administration ...Administration ...Telerik.Web.UI.WebResource.axd - Error (Hosting provider)Telerik.Web.UI.WebResource.axd - Error (Hosting provider)


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out