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

  • Home
  • SEARCH
  • 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

Ask A Question

Stats

  • Questions 138k
  • Answers 138k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The condition below: //Element[@attribute1="abc" and @attribute2="xyz" and Data] checks for… May 12, 2026 at 7:34 am
  • Editorial Team
    Editorial Team added an answer Are you trying to login and register users in your… May 12, 2026 at 7:34 am
  • Editorial Team
    Editorial Team added an answer I was able to successfully bind to several tables to… May 12, 2026 at 7:34 am

Related Questions

I have an ASP.NET 3.5 Website (visual studio lingo), but the site continues to
I am trying to host an ASP.NET application that is running the Silverlight Video
I have a webapplication written in .NET, that utilizes CookComputing.XmlRpcV2 for xmlrpc-communication. When I
I have a Dynamic Data website built in Visual Studio 2008 using .NET 3.5

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.