Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 115425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T03:01:02+00:00 2026-05-11T03:01:02+00:00

In visual studio, I have an asp.net 3.5 project that is using MS Enterprise

  • 0

In visual studio, I have an asp.net 3.5 project that is using MS Enterprise Library 4.0 application blocks.

When I have my web config file open, my Error list fills up with 99 messages with things like

Could not find schema information for the element 'dataConfiguration'.   Could not find schema information for the attribute 'defaultDatabase'.   Could not find schema information for the element 'loggingConfiguration'.    Could not find schema information for the attribute 'tracingEnabled'.    Could not find schema information for the attribute 'defaultCategory'.   

If I close the Web.config file they go away (but they come back as soon as I need to open the file again).

After doing some looking, I found that this is becauase there is an XSD or schema file missing that Visual Studio needs in order to properly ‘understand’ the schema that is in the web.config file and provide intellisense for it.

Does anyone know how to either supply VS with the appropriate schema information, or to turn off these messages?

@Franci – Thanks for the info, I have tried that tool as well as the MMC snap in (they tend to blow up the formatting in the Web.config) but they still do not resolve the irritating warnings I receive. Thanks for trying.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T03:01:03+00:00Added an answer on May 11, 2026 at 3:01 am

    I configured the app.config with the tool for EntLib configuration and set up my LoggingConfiguration block. Then I copied this into the DotNetConfig.xsd. Of course, it does not cover all attributes, only the ones I added but it does not display those annoying info messages anymore.

    <xs:element name='loggingConfiguration'>   <xs:complexType>     <xs:sequence>       <xs:element name='listeners'>         <xs:complexType>           <xs:sequence>             <xs:element maxOccurs='unbounded' name='add'>               <xs:complexType>                 <xs:attribute name='fileName' type='xs:string' use='required' />                 <xs:attribute name='footer' type='xs:string' use='required' />                 <xs:attribute name='formatter' type='xs:string' use='required' />                 <xs:attribute name='header' type='xs:string' use='required' />                 <xs:attribute name='rollFileExistsBehavior' type='xs:string' use='required' />                 <xs:attribute name='rollInterval' type='xs:string' use='required' />                 <xs:attribute name='rollSizeKB' type='xs:unsignedByte' use='required' />                 <xs:attribute name='timeStampPattern' type='xs:string' use='required' />                 <xs:attribute name='listenerDataType' type='xs:string' use='required' />                 <xs:attribute name='traceOutputOptions' type='xs:string' use='required' />                 <xs:attribute name='filter' type='xs:string' use='required' />                 <xs:attribute name='type' type='xs:string' use='required' />                 <xs:attribute name='name' type='xs:string' use='required' />               </xs:complexType>             </xs:element>           </xs:sequence>         </xs:complexType>       </xs:element>       <xs:element name='formatters'>         <xs:complexType>           <xs:sequence>             <xs:element name='add'>               <xs:complexType>                 <xs:attribute name='template' type='xs:string' use='required' />                 <xs:attribute name='type' type='xs:string' use='required' />                 <xs:attribute name='name' type='xs:string' use='required' />               </xs:complexType>             </xs:element>           </xs:sequence>         </xs:complexType>       </xs:element>       <xs:element name='logFilters'>         <xs:complexType>           <xs:sequence>             <xs:element name='add'>               <xs:complexType>                 <xs:attribute name='enabled' type='xs:boolean' use='required' />                 <xs:attribute name='type' type='xs:string' use='required' />                 <xs:attribute name='name' type='xs:string' use='required' />               </xs:complexType>             </xs:element>           </xs:sequence>         </xs:complexType>       </xs:element>       <xs:element name='categorySources'>         <xs:complexType>           <xs:sequence>             <xs:element maxOccurs='unbounded' name='add'>               <xs:complexType>                 <xs:sequence>                   <xs:element name='listeners'>                     <xs:complexType>                       <xs:sequence>                         <xs:element name='add'>                           <xs:complexType>                             <xs:attribute name='name' type='xs:string' use='required' />                           </xs:complexType>                         </xs:element>                       </xs:sequence>                     </xs:complexType>                   </xs:element>                 </xs:sequence>                 <xs:attribute name='switchValue' type='xs:string' use='required' />                 <xs:attribute name='name' type='xs:string' use='required' />               </xs:complexType>             </xs:element>           </xs:sequence>         </xs:complexType>       </xs:element>       <xs:element name='specialSources'>         <xs:complexType>           <xs:sequence>             <xs:element name='allEvents'>               <xs:complexType>                 <xs:attribute name='switchValue' type='xs:string' use='required' />                 <xs:attribute name='name' type='xs:string' use='required' />               </xs:complexType>             </xs:element>             <xs:element name='notProcessed'>               <xs:complexType>                 <xs:attribute name='switchValue' type='xs:string' use='required' />                 <xs:attribute name='name' type='xs:string' use='required' />               </xs:complexType>             </xs:element>             <xs:element name='errors'>               <xs:complexType>                 <xs:sequence>                   <xs:element name='listeners'>                     <xs:complexType>                       <xs:sequence>                         <xs:element name='add'>                           <xs:complexType>                             <xs:attribute name='name' type='xs:string' use='required' />                           </xs:complexType>                         </xs:element>                       </xs:sequence>                     </xs:complexType>                   </xs:element>                 </xs:sequence>                 <xs:attribute name='switchValue' type='xs:string' use='required' />                 <xs:attribute name='name' type='xs:string' use='required' />               </xs:complexType>             </xs:element>           </xs:sequence>         </xs:complexType>       </xs:element>     </xs:sequence>     <xs:attribute name='name' type='xs:string' use='required' />     <xs:attribute name='tracingEnabled' type='xs:boolean' use='required' />     <xs:attribute name='defaultCategory' type='xs:string' use='required' />     <xs:attribute name='logWarningsWhenNoCategoriesMatch' type='xs:boolean' use='required' />   </xs:complexType> </xs:element> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm building an ASP.net application using Visual Studio Web Developer 2010 Express and have
Hi I have a Visual Studio solution and an ASP.NET MVC project that uses
I'm using ASP.net MVC C# in Visual Studio Web Dev. I have a couple
I am using visual studio 2008, asp.net.vb I have various functions; 1 that calculates
When I create a ASP.NET Web Application (using .net framework 4) in visual studio
I have a visual studio 2008 solution that includes an asp.net-hosted remoting project in
I have created an asp.net mvc2 project using the standard visual studio template which
I have an ASP.NET Web Site running in Visual Studio dev-fabric (azure project) and
I have the correct entries in the web.config file in my ASP.NET project. How
In Visual Studio 2010 I have an ASP.NET MVC 3 project called blahblah. As

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.