473,763 Members | 2,930 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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.Component s, or one of its
dependencies, was not found.

Source Error:

Line 37: <system.web>
Line 38: <httpModules>
Line 39: <add name="SiteHttpM odule" type="Jucar.Sit eHttpModule,
Jucar.Component s" />
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.Componen ts' could not be loaded.

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

Jul 9 '06 #1
3 2184
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="Authentic ationModule" />
</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*****@hotmai l.comwrote in message
news:%2******** ********@TK2MSF TNGP04.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.Component s, or one of
its dependencies, was not found.

Source Error:

Line 37: <system.web>
Line 38: <httpModules>
Line 39: <add name="SiteHttpM odule" type="Jucar.Sit eHttpModule,
Jucar.Component s" />
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.Componen ts' could not be loaded.

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

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

"John Timney (MVP)" <x_****@timney. eclipse.co.ukwr ote 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="Authentic ationModule" />
</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*****@hotmai l.comwrote in message
news:%2******** ********@TK2MSF TNGP04.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.
Configuratio n 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.Component s, or one of
its dependencies, was not found.

Source Error:

Line 37: <system.web>
Line 38: <httpModules>
Line 39: <add name="SiteHttpM odule" type="Jucar.Sit eHttpModule,
Jucar.Componen ts" />
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.Componen ts' could not be loaded.

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


Jul 11 '06 #3
Glad to have helped!

Regards

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

"John Timney (MVP)" <x_****@timney. eclipse.co.ukwr ote 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="Authentic ationModule" />
</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*****@hotmai l.comwrote in message
news:%2******* *********@TK2MS FTNGP04.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.
Configurati on 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.Component s, or one of
its dependencies, was not found.

Source Error:

Line 37: <system.web>
Line 38: <httpModules>
Line 39: <add name="SiteHttpM odule" type="Jucar.Sit eHttpModule,
Jucar.Compone nts" />
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.Componen ts' could not be loaded.

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



Jul 11 '06 #4

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

Similar topics

7
2578
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 http://my_machine_name/site) show problems when refresh the page. I guess some kind of javascript problems with the postback methods. Someone has any idea how can i fix it? Thanks
4
6203
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). The Module is registered via Web.config. The registration is OK. When asking for an existing .aspx page, the eventhandler is called as it should. HOWEVER - if the request url is for a non-existant file, I get a 404 - file
4
1612
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 using the <remove> element to remove the HttpModule for a subdir have not worked. ---- My top-level Web.config contains :
2
2141
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) Implements IHttpModule.Init httpApp = context
3
2031
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 application on the server, a Windows 2003 box, the HTTPModule does not run. If I change the component to a simple dll and call its methods directly, the code works ok. As soon as I change the component back to an HTTPModule it stops working on the server....
2
4586
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 into the process, does each instance of HttpApplication keep its own set of HttpModule instance or HttpModules are shared among all HttpApplication instances? 2. In case of HttpApplication keep its own set of HttpModule, does the HttpModule...
3
2243
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 any interested parties. Finally, a user friendly page (GenericError.aspx) is Redirected To. My Page_Load event has no code, so when the page is unavailable, (for instance, the website is down), an unhandled event is generated and my HttpModule...
2
3179
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. the httpmodule is basically a simple implementation as all I've done so far is to implement required methods and to those I've added no code. the app builds but when I go to run it, it says the module type urlrewriter is ambiguous. it says it...
4
2675
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" type="UrlRewrite" /> </httpModules> If I do that, I get a really huge dialog box which basically says "Unable to
0
9563
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
1
9935
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9819
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8821
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7364
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5405
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3916
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3519
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2790
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.