473,396 Members | 2,013 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.

Going nuts - Configuration Error

Hello Newsgroup

I'm about going nuts!!!
Sometime when I coding a asp.net (using C#) I'll get this wierd error.

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.

Source Error:

Line 196: <add assembly="System.EnterpriseServices, Version=1.0.5000.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 197: <add assembly="System.Web.Mobile, Version=1.0.5000.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 198: <add assembly="*"/>
Line 199: </assemblies>
Line 200: </compilation
At first i thurd that it was because i was using a 3rd party component - but
in this case i don't have
any controls - only my own WebUserControl holding some HtmlTables.
And a Reference to a DLL to handle my dataaccess - also created my myself.
If I understand this error correctly is says that the Emdesoft.Database.dll
isønt in the bin folder - but it is there...wird..

I'll post the rest:
Source File:
c:\windows\microsoft.net\framework\v1.1.4322\Confi g\machine.config Line:
198

Assembly Load Trace: The following information can be helpful to determine
why the assembly 'Emdesoft.Database' could not be loaded.
=== Pre-bind state information ===
LOG: DisplayName = Emdesoft.Database
(Partial)
LOG: Appbase = file:///c:/inetpub/wwwroot/Emdesoft.Gorm
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: Emdesoft.Database
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/emdesoft.gorm/94473a06/11ed6747/Emdesoft.Database.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/emdesoft.gorm/94473a06/11ed6747/Emdesoft.Database/Emdesoft.Database.DLL.
LOG: Attempting download of new URL
file:///c:/inetpub/wwwroot/Emdesoft.Gorm/bin/Emdesoft.Database.DLL.
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: Emdesoft.Database, Version=1.0.2093.31032,
Culture=neutral, PublicKeyToken=null

--------------------------------------------------------------------------------

Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET
Version:1.1.4322.2300

Hope that someone could help me...

Kind regards
Johnny Jensen
Nov 19 '05 #1
4 1212
I believe this may be related to the IIS indexing service. You can turn
this off in the Internet Information Services management console.

-Alan

Nov 19 '05 #2
Hello Alan

Thangs for that reply - and i worked upto right now.

I've turnded off indexing in the IIS. But know the error returns...

It says:
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: Access is denied: 'Emdesoft.MailBuilder'.

Source Error:

Line 196: <add assembly="System.EnterpriseServices, Version=1.0.5000.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 197: <add assembly="System.Web.Mobile, Version=1.0.5000.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 198: <add assembly="*"/>
Line 199: </assemblies>
Line 200: </compilation>

Source File:
c:\windows\microsoft.net\framework\v1.1.4322\Confi g\machine.config Line:
198

Assembly Load Trace: The following information can be helpful to determine
why the assembly 'Emdesoft.MailBuilder' could not be loaded.

=== Pre-bind state information ===
LOG: DisplayName = Emdesoft.MailBuilder
(Partial)
LOG: Appbase = file:///c:/inetpub/wwwroot/Emdesoft.Gorm
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: Emdesoft.MailBuilder
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/emdesoft.gorm/94473a06/11ed6747/Emdesoft.MailBuilder.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/emdesoft.gorm/94473a06/11ed6747/Emdesoft.MailBuilder/Emdesoft.MailBuilder.DLL.
LOG: Attempting download of new URL
file:///c:/inetpub/wwwroot/Emdesoft.Gorm/bin/Emdesoft.MailBuilder.DLL.
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: Emdesoft.MailBuilder, Version=1.0.2098.18190,
Culture=neutral, PublicKeyToken=null

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

Could it have something todo vith a policy file?

-Johnny
"Alan Samet" <al*******@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...
I believe this may be related to the IIS indexing service. You can turn
this off in the Internet Information Services management console.

-Alan

Nov 19 '05 #3
This is interesting. I remember running into a similar issue back when
I used to use Visual Studio.NET. I would do a build, then switch over
to my page and refresh. If I did it too quickly, I would receive that
same error. I believe that it has something to do with file system
locks. There are tools available from http://www.sysinternals.com/
(filemon I believe it's called) that you can use to monitor exactly
what's being denied access to, and when. Using that tool you may be
able to understand more about what's happening when this issue arises.

-Alan

Nov 19 '05 #4
Hello Alan

I'll try that - thanks

- Johnny

"Alan Samet" <al*******@gmail.com> wrote in message
news:11*********************@g44g2000cwa.googlegro ups.com...
This is interesting. I remember running into a similar issue back when
I used to use Visual Studio.NET. I would do a build, then switch over
to my page and refresh. If I did it too quickly, I would receive that
same error. I believe that it has something to do with file system
locks. There are tools available from http://www.sysinternals.com/
(filemon I believe it's called) that you can use to monitor exactly
what's being denied access to, and when. Using that tool you may be
able to understand more about what's happening when this issue arises.

-Alan

Nov 19 '05 #5

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

Similar topics

2
by: The Lone Wolf | last post by:
hi, i'm new to php mysql and already have a problem with a simple routine $result=mysql_db_query(jcorp,"select count(*) as bar from users"); $count = mysql_result($result,0,"bar"); //<<<<<...
132
by: Kevin | last post by:
I don't know if I should even start this topic but here goes. I'm an ex vb6 developer, now developing in C#. The reason why I started developing in C# is because the company that I worked for at...
6
by: Kathy Burke | last post by:
Ugh. I'm using the following in an asp.net. I get an Syntax Error in INSERT INTO Statement on line Cmd1.ExecuteNonQuery(). I've made all my database fields text (just to eliminate that as a...
3
by: Larry Tate | last post by:
I have had a monstrous time getting any good debugging info out of the .net platform. Using ... ..NET Framework 1.1 Windows 2K Server VB.NET <- is this the problem? error handling in the...
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...
10
by: Rider | last post by:
Hi, simple(?) question about asp.net configuration.. I've installed ASP.NET 2.0 QuickStart Sample successfully. But, When I'm first start application the follow message shown. ========= Server...
1
by: MaxBlack | last post by:
This is not working and for my life I can't figure out why: Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Dim firstLetter As String ...
3
by: Mike | last post by:
Hi I have problem as folow: Caught Exception: System.Configuration.ConfigurationErrorsException: An error occurred loading a configuration file: Request for the permission of type...
5
by: Shelly | last post by:
This ASPX/SqlServer stuff is driving me nuts. 1 - In a previous post I said I had four tables and all were showing up in Object Explorer (MS SQL Server Management Studio Express), but when I went...
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: 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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.