473,406 Members | 2,867 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,406 software developers and data experts.

HTTPMODULE ERROR WEB.CONFIG

HI
first of all, excuse me for my english. And Thank in advance for even read
my post.
I have a problem that is driving me insane.
I have an application (JUCAR) which use HttpModule and i have declared of
course into the Webconfig. This application runs perfect. So, i created
another application (Accreditation), that runs perfect too inside of it as a
virtual directory that does not use HttpModule. Now i am getting this 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.

Parser Error Message: File or assembly name Jucar.Components, or one of its
dependencies, was not found.

Source Error:

Line 37: <system.web>
Line 38: <httpModules>
Line 39: <add name="SiteHttpModule" type="Jucar.SiteHttpModule,
Jucar.Components" />
Line 40: </httpModules>
Line 41:

Source File: F:\sitios\jucar\web.config Line: 39

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

=== Pre-bind state information ===
LOG: DisplayName = Jucar.Components
(Partial)
LOG: Appbase = file:///F:/sitios/Accreditation
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: Jucar.Components
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components/Jucar.Components.EXE.

Jul 9 '06 #1
3 2159
I would hazard a guess that your virtual directory (Accreditation) resides
under your JUCAR application, with its own BIN directory etc. If this is
the case your Accreditation application will be looking for a referenced
module which does not exsist within its own bin directory as it instead
resides within JUCAR as the root application, and thus is within scope.
Modules can only be configured in the root web.config in your application,
so you probably cant even derefernce it using httpModules remove.

<httpModules>
<remove name="AuthenticationModule" />
</httpModules>

Make sure they are two entirely different applications, or try adding a
remove element to a sub level web.config.

Regards

John Timney (MVP)
"Jose Fernandez" <pp*****@hotmail.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
HI
first of all, excuse me for my english. And Thank in advance for even read
my post.
I have a problem that is driving me insane.
I have an application (JUCAR) which use HttpModule and i have declared of
course into the Webconfig. This application runs perfect. So, i created
another application (Accreditation), that runs perfect too inside of it as
a virtual directory that does not use HttpModule. Now i am getting this
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.

Parser Error Message: File or assembly name Jucar.Components, or one of
its dependencies, was not found.

Source Error:

Line 37: <system.web>
Line 38: <httpModules>
Line 39: <add name="SiteHttpModule" type="Jucar.SiteHttpModule,
Jucar.Components" />
Line 40: </httpModules>
Line 41:

Source File: F:\sitios\jucar\web.config Line: 39

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

=== Pre-bind state information ===
LOG: DisplayName = Jucar.Components
(Partial)
LOG: Appbase = file:///F:/sitios/Accreditation
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: Jucar.Components
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components/Jucar.Components.EXE.

Jul 9 '06 #2
YES
THAT WAS THE SOLUTIONTHANK YOU SO MUCH>

"John Timney (MVP)" <x_****@timney.eclipse.co.ukwrote in message
news:E5******************************@eclipse.net. uk...
>I would hazard a guess that your virtual directory (Accreditation) resides
under your JUCAR application, with its own BIN directory etc. If this is
the case your Accreditation application will be looking for a referenced
module which does not exsist within its own bin directory as it instead
resides within JUCAR as the root application, and thus is within scope.
Modules can only be configured in the root web.config in your application,
so you probably cant even derefernce it using httpModules remove.

<httpModules>
<remove name="AuthenticationModule" />
</httpModules>

Make sure they are two entirely different applications, or try adding a
remove element to a sub level web.config.

Regards

John Timney (MVP)
"Jose Fernandez" <pp*****@hotmail.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>HI
first of all, excuse me for my english. And Thank in advance for even
read my post.
I have a problem that is driving me insane.
I have an application (JUCAR) which use HttpModule and i have declared of
course into the Webconfig. This application runs perfect. So, i created
another application (Accreditation), that runs perfect too inside of it
as a virtual directory that does not use HttpModule. Now i am getting
this 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.

Parser Error Message: File or assembly name Jucar.Components, or one of
its dependencies, was not found.

Source Error:

Line 37: <system.web>
Line 38: <httpModules>
Line 39: <add name="SiteHttpModule" type="Jucar.SiteHttpModule,
Jucar.Components" />
Line 40: </httpModules>
Line 41:

Source File: F:\sitios\jucar\web.config Line: 39

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

=== Pre-bind state information ===
LOG: DisplayName = Jucar.Components
(Partial)
LOG: Appbase = file:///F:/sitios/Accreditation
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: Jucar.Components
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components/Jucar.Components.EXE.


Jul 11 '06 #3
Glad to have helped!

Regards

John Timney (MVP)
"Jose Fernandez" <pp*****@hotmail.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
YES
THAT WAS THE SOLUTIONTHANK YOU SO MUCH>

"John Timney (MVP)" <x_****@timney.eclipse.co.ukwrote in message
news:E5******************************@eclipse.net. uk...
>>I would hazard a guess that your virtual directory (Accreditation) resides
under your JUCAR application, with its own BIN directory etc. If this is
the case your Accreditation application will be looking for a referenced
module which does not exsist within its own bin directory as it instead
resides within JUCAR as the root application, and thus is within scope.
Modules can only be configured in the root web.config in your application,
so you probably cant even derefernce it using httpModules remove.

<httpModules>
<remove name="AuthenticationModule" />
</httpModules>

Make sure they are two entirely different applications, or try adding a
remove element to a sub level web.config.

Regards

John Timney (MVP)
"Jose Fernandez" <pp*****@hotmail.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>>HI
first of all, excuse me for my english. And Thank in advance for even
read my post.
I have a problem that is driving me insane.
I have an application (JUCAR) which use HttpModule and i have declared
of course into the Webconfig. This application runs perfect. So, i
created another application (Accreditation), that runs perfect too
inside of it as a virtual directory that does not use HttpModule. Now i
am getting this 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.

Parser Error Message: File or assembly name Jucar.Components, or one of
its dependencies, was not found.

Source Error:

Line 37: <system.web>
Line 38: <httpModules>
Line 39: <add name="SiteHttpModule" type="Jucar.SiteHttpModule,
Jucar.Components" />
Line 40: </httpModules>
Line 41:

Source File: F:\sitios\jucar\web.config Line: 39

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

=== Pre-bind state information ===
LOG: DisplayName = Jucar.Components
(Partial)
LOG: Appbase = file:///F:/sitios/Accreditation
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: Jucar.Components
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components/Jucar.Components.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/accreditation/ab2072eb/e93c0b3c/Jucar.Components/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components.EXE.
LOG: Attempting download of new URL
file:///F:/sitios/Accreditation/bin/Jucar.Components/Jucar.Components.EXE.



Jul 11 '06 #4

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

Similar topics

7
by: nail | last post by:
Folks, I develop a HttpModule and it works correct, but one problem is occurs. After I register the httpmodule in the web.config, my pages (not testing http://localhost/site but...
4
by: | last post by:
I have earlier used an HttpModule that did URL rewrites on the BeginRequest event. Now I am trying to use the same module in a different application on a new and upgraded machine (winxp sp2). ...
4
by: Chip Page | last post by:
Hello, In my top-level Web.config, I had added a number of httpModules. In a particular sub-directory in the application, I wish to prevent one of the HttpModules from executing. My attempts...
2
by: Simon-Pierre Jarry | last post by:
Hi, I created a custom HttpModule for managing the security of my application. in "Init" sub, I regsiter the events doing that : Public Sub Init(ByVal context As System.Web.HttpApplication)...
3
by: Erik Cruz | last post by:
Hi. I wrote an HTTPModule to log errors from my application. The component works well on all the development machines running Windows XP or Windows 2000 and VS.NET 2003. When I run the...
2
by: walter | last post by:
Hi there, I know there is pool of HttpApplications, and for each request coming in, HttpRuntime will dedicate one from pool to serve the request. My questions are : 1. since HttpModule is plug...
3
by: Dan Sikorsky | last post by:
I use an HttpModule that handles unhandled exceptions from an .aspx.cs page by logging to a text file, logging to the event viewer's app log, and sending out an email to the website developer and...
2
by: Jimi Schacht | last post by:
ok, so, i've got a web project in c#. I'm using IIS instead of dev server. The application builds fine until I add an httpmodule I intend to use for URL rewriting and it's entry in the web.config....
4
by: =?Utf-8?B?bXVzb3NkZXY=?= | last post by:
Hi guys I'm working on a web app in VS2005 (.net 2.0.50727). All is working fine, except when I add a HTTPModule to my web.config file, as follows... <httpModules> <add name="UrlRewrite"...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.