Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Configuration Error

Status
Not open for further replies.

jain747

Technical User
Apr 22, 2003
17
US
Hello Everyone,

I'm receiving a configuration error, but not entirely sure on what it means. The error is in this line: <add verb=&quot;*&quot; path=&quot;*.vb&quot; type=&quot;System.Web.HttpNotFoundHandler,System.Web&quot; />

The suggested help is:


=== Pre-bind state information ===
LOG: DisplayName = System.Web
(Partial)
LOG: Appbase = file:///c:/inetpub/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: System.Web
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/aspdotnet_intro/e5d66587/320434/System.Web.DLL.
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/aspdotnet_intro/e5d66587/320434/System.Web/System.Web.DLL.
LOG: Attempting download of new URL file:///c:/inetpub/LOG: Attempting download of new URL file:///c:/inetpub/LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/aspdotnet_intro/e5d66587/320434/System.Web.EXE.
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/aspdotnet_intro/e5d66587/320434/System.Web/System.Web.EXE.
LOG: Attempting download of new URL file:///c:/inetpub/LOG: Attempting download of new URL file:///c:/inetpub/
Any help would be appreciated. Thanks!
 
I ran into this also. Just leave off the extra system.web so have:

<add verb="*" path="*.vb" type="System.Web.HttpNotFoundHandler" />

instead of

<add verb="*" path="*.vb" type="System.Web.HttpNotFoundHandler,System.Web" />
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top