473,396 Members | 2,147 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

configuration error (website using Telerik Rad controls)

I created a 3.5 ASP.NET website using Teleriks Rad Controls.

It works fine locally, but when I deploy it to the server I get a
"Configuration Error". I am "renting" space on the server so I don't have
access to the GAC, or to install applications, etc...

Any ideas?

Here's teh error....
Server Error in '/robertnzana4/EZNetScheduler' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Could not load file or assembly 'Telerik.Charting,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=d14f3dcc8e3e8763' or one of
its dependencies. The located assembly's manifest definition does not match
the assembly reference. (Exception from HRESULT: 0x80131040)

Source Error:

Line 41: <compilation debug="true" strict="false" explicit="true">
Line 42: <assemblies>
Line 43: <add assembly="Telerik.Charting, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=D14F3DCC8E3E8763"/>
Line 44: <add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A"/>
Line 45: <add assembly="System.Windows.Forms, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

Source File: d:\hosting\member\robertnzana4\eznetscheduler\web. config
Line: 43

Assembly Load Trace: The following information can be helpful to determine
why the assembly 'Telerik.Charting, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=d14f3dcc8e3e8763' could not be loaded.

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value
[HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind
failure logging.
To turn this feature off, remove the registry value
[HKLM\Software\Microsoft\Fusion!EnableLog].

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.1433;
ASP.NET Version:2.0.50727.1433
Jun 27 '08 #1
3 4514
I would create a folder under your WebApp

\ThirdPartyControls\

And put all the telerik stuff in there.

Then reference them from \ThirdPartyControls\

When you deploy, the dlls should be in the /bin/ directory with all the
other ones.

...

That's how I do third party controls (and I use telerik for 2.0/3.0).

...

"Cirene" <ci****@nowhere.comwrote in message
news:u4**************@TK2MSFTNGP04.phx.gbl...
>I created a 3.5 ASP.NET website using Teleriks Rad Controls.

It works fine locally, but when I deploy it to the server I get a
"Configuration Error". I am "renting" space on the server so I don't have
access to the GAC, or to install applications, etc...

Any ideas?

Here's teh error....
Server Error in '/robertnzana4/EZNetScheduler' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a configuration
file required to service this request. Please review the specific error
details below and modify your configuration file appropriately.

Parser Error Message: Could not load file or assembly 'Telerik.Charting,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=d14f3dcc8e3e8763' or one
of its dependencies. The located assembly's manifest definition does not
match the assembly reference. (Exception from HRESULT: 0x80131040)

Source Error:

Line 41: <compilation debug="true" strict="false" explicit="true">
Line 42: <assemblies>
Line 43: <add assembly="Telerik.Charting, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=D14F3DCC8E3E8763"/>
Line 44: <add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A"/>
Line 45: <add assembly="System.Windows.Forms, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

Source File: d:\hosting\member\robertnzana4\eznetscheduler\web. config
Line: 43

Assembly Load Trace: The following information can be helpful to determine
why the assembly 'Telerik.Charting, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=d14f3dcc8e3e8763' could not be loaded.

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value
[HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind
failure logging.
To turn this feature off, remove the registry value
[HKLM\Software\Microsoft\Fusion!EnableLog].

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.1433;
ASP.NET Version:2.0.50727.1433


Jun 27 '08 #2
"Cirene" <ci****@nowhere.comwrote in message
news:u4**************@TK2MSFTNGP04.phx.gbl...
>I created a 3.5 ASP.NET website using Teleriks Rad Controls.

It works fine locally, but when I deploy it to the server I get a
"Configuration Error". I am "renting" space on the server so I don't have
access to the GAC, or to install applications, etc...

Parser Error Message: Could not load file or assembly 'Telerik.Charting,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=d14f3dcc8e3e8763' or one
of its dependencies. The located assembly's manifest definition does not
match the assembly reference. (Exception from HRESULT: 0x80131040)
Have you got the appropriate telerik dll in your ~/Bin folder?
For charting I'm guessing it's something like
RadChart.Net3.dll

Jun 27 '08 #3
I changed the version to 2.0.1.0 and it seemed to work. I wonder why it
didn't give me an error on my dev machine, only the server. :(

add assembly="Telerik.Charting, Version=2.0.1.0

"sloan" <sl***@ipass.netwrote in message
news:OP**************@TK2MSFTNGP04.phx.gbl...
>I would create a folder under your WebApp

\ThirdPartyControls\

And put all the telerik stuff in there.

Then reference them from \ThirdPartyControls\

When you deploy, the dlls should be in the /bin/ directory with all the
other ones.

..

That's how I do third party controls (and I use telerik for 2.0/3.0).

..

"Cirene" <ci****@nowhere.comwrote in message
news:u4**************@TK2MSFTNGP04.phx.gbl...
>>I created a 3.5 ASP.NET website using Teleriks Rad Controls.

It works fine locally, but when I deploy it to the server I get a
"Configuration Error". I am "renting" space on the server so I don't
have access to the GAC, or to install applications, etc...

Any ideas?

Here's teh error....
Server Error in '/robertnzana4/EZNetScheduler' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a configuration
file required to service this request. Please review the specific error
details below and modify your configuration file appropriately.

Parser Error Message: Could not load file or assembly 'Telerik.Charting,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=d14f3dcc8e3e8763' or one
of its dependencies. The located assembly's manifest definition does not
match the assembly reference. (Exception from HRESULT: 0x80131040)

Source Error:

Line 41: <compilation debug="true" strict="false" explicit="true">
Line 42: <assemblies>
Line 43: <add assembly="Telerik.Charting, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=D14F3DCC8E3E8763"/>
Line 44: <add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A"/>
Line 45: <add assembly="System.Windows.Forms, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

Source File: d:\hosting\member\robertnzana4\eznetscheduler\web. config
Line: 43

Assembly Load Trace: The following information can be helpful to
determine why the assembly 'Telerik.Charting, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=d14f3dcc8e3e8763' could not be loaded.

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value
[HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind
failure logging.
To turn this feature off, remove the registry value
[HKLM\Software\Microsoft\Fusion!EnableLog].

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.1433;
ASP.NET Version:2.0.50727.1433



Jun 27 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Ramanfromoz | last post by:
Hi, Developing a new we application. Everything okay on my local WIN XP PROFESSIONAL, IIS 5.0 running locally. The website is running smoothly. Now, the same code I am copying over to a...
1
by: Ryan Ternier | last post by:
While working on .NET I've had this error pop up on every Solution. Usually I'll just re-build the project and it works, but now it has started doing this to components we've purchased. I can't...
5
by: NoNickname | last post by:
Basically, how do I know that the release versions of all components are being published? The Build | Configuration Manager is confusing me a little in VS2005. I have three projects in my...
5
by: Mythran | last post by:
I keep having this BC2017 Compiler Error and have been able to duplicate it on several machines...can someone help with a solution to this? I do know of several ways to get this compiler error to...
1
by: Light | last post by:
Re, I'm having 2 problems with the Telerik trial controls. I'm using the latest release. I'm using 2005 studio and most of the controls show up properly in the designer but the RadMenu does...
2
by: =?Utf-8?B?V2FubmFiZQ==?= | last post by:
I'm getting an error and am not sure where to start to fix it. It began when I added an updatepanel to my page. Can someone help? An "Unspecified error" pops up when I select an option from my...
3
by: =?Utf-8?B?S2xhdXMgSmVuc2Vu?= | last post by:
Hi I would like to be able to use drag and drop in a web-application - and implement it in a fairly easy way. I have seen it done "by hand" with layers, javascript etc, but that is tedioius...
4
by: ayush patel | last post by:
Hi every one, I have to develop an application and one of the management decision is to use Rad controls(Telerik) like grid, panels etc for my web pages. I have never done any thing in that. I...
1
by: aloksingh83 | last post by:
This error coming when i am using telerik grid.It works fine in asp.net grid what i am trying to do is taking values from textbox and show in grid view... here is the code: <script...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.