473,772 Members | 2,522 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP circular dependency

On a server W2K, IIS5, I have many messages from ASP :
cirdular dependency between types/modules. Which can be
the origin of the problem?
Example :
Event Type: Warning
Event Source: Active Server Pages
Event Category: None
Event ID: 9
Date: 09/07/2004
Time: 09:29:25
User: N/A
Computer: xxxxx
Description:
Warning: File /Include/Connexion/OuvreConnexion. asp Line 3
Circular dependency between types/modules.
.. .
For additional information specific to this message please
visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.
Event Type: Warning
Event Source: Active Server Pages
Event Category: None
Event ID: 9
Date: 09/07/2004
Time: 09:29:08
User: N/A
Computer: xxxxx
Description:
Warning: File
d:\yyyy\INFODOC \CONSULTATION\A CCUEIL\../Include/Connexion/O
uvreConnexion.a sp Line 3 Circular dependency between
types/modules.
.. .
For additional information specific to this message please
visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.

Jul 19 '05 #1
4 2827
What's on line 3 in OuvreConnexion. asp?

Ray at work

"Evelyne" <ge*****@agf.fr > wrote in message
news:2a******** *************** ******@phx.gbl. ..
On a server W2K, IIS5, I have many messages from ASP :
cirdular dependency between types/modules. Which can be
the origin of the problem?
Example :
Event Type: Warning
Event Source: Active Server Pages
Event Category: None
Event ID: 9
Date: 09/07/2004
Time: 09:29:25
User: N/A
Computer: xxxxx
Description:
Warning: File /Include/Connexion/OuvreConnexion. asp Line 3
Circular dependency between types/modules.
. .
For additional information specific to this message please
visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.
Event Type: Warning
Event Source: Active Server Pages
Event Category: None
Event ID: 9
Date: 09/07/2004
Time: 09:29:08
User: N/A
Computer: xxxxx
Description:
Warning: File
d:\yyyy\INFODOC \CONSULTATION\A CCUEIL\../Include/Connexion/O
uvreConnexion.a sp Line 3 Circular dependency between
types/modules.
. .
For additional information specific to this message please
visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.

Jul 19 '05 #2
Never saw this but you I would say you have something such as :
- a.asp includes b.asp
- b.asp includes a.asp
resulting in an endless reference "loop" (actually IIS detects this
situation).

Patrice
--

"Evelyne" <ge*****@agf.fr > a écrit dans le message de
news:2a******** *************** ******@phx.gbl. ..
On a server W2K, IIS5, I have many messages from ASP :
cirdular dependency between types/modules. Which can be
the origin of the problem?
Example :
Event Type: Warning
Event Source: Active Server Pages
Event Category: None
Event ID: 9
Date: 09/07/2004
Time: 09:29:25
User: N/A
Computer: xxxxx
Description:
Warning: File /Include/Connexion/OuvreConnexion. asp Line 3
Circular dependency between types/modules.
. .
For additional information specific to this message please
visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.
Event Type: Warning
Event Source: Active Server Pages
Event Category: None
Event ID: 9
Date: 09/07/2004
Time: 09:29:08
User: N/A
Computer: xxxxx
Description:
Warning: File
d:\yyyy\INFODOC \CONSULTATION\A CCUEIL\../Include/Connexion/O
uvreConnexion.a sp Line 3 Circular dependency between
types/modules.
. .
For additional information specific to this message please
visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.

Jul 19 '05 #3

Here is the content of OuvreConnexion. asp
<%
Dim Cnx
Set Cnx = Server.CreateOb ject("ADODB.Con nection")

Cnx.ConnectionS tring = Session("Cnx")
Cnx.ConnectionT imeout = 60
Cnx.CommandTime out = 60
Cnx.Open
%>
and the beginning of d:\yyyy\INFODOC \CONSULTATION\A CCUEIL\accueil. asp
<%Point="../"%>
<!-- #INCLUDE FILE="../Include/Session.asp" -->
<!-- #INCLUDE FILE="../Include/Connexion/OuvreConnexion. asp" -->
<!-- #INCLUDE FILE="../Include/Fonctions.asp" -->
<!-- #INCLUDE FILE="../Ergonomie/MenuStatique.as p" -->

Regards, Evelyne
*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 19 '05 #4
Your file is trying to include itself:

<!-- #INCLUDE FILE="../Include/Connexion/OuvreConnexion. asp" -->

Ray at work
"Evelyne Germain" <ge*****@agf.fr > wrote in message
news:eI******** ******@TK2MSFTN GP09.phx.gbl...

Here is the content of OuvreConnexion. asp
<%
Dim Cnx
Set Cnx = Server.CreateOb ject("ADODB.Con nection")

Cnx.ConnectionS tring = Session("Cnx")
Cnx.ConnectionT imeout = 60
Cnx.CommandTime out = 60
Cnx.Open
%>
and the beginning of d:\yyyy\INFODOC \CONSULTATION\A CCUEIL\accueil. asp
<%Point="../"%>
<!-- #INCLUDE FILE="../Include/Session.asp" -->
<!-- #INCLUDE FILE="../Include/Connexion/OuvreConnexion. asp" -->
<!-- #INCLUDE FILE="../Include/Fonctions.asp" -->
<!-- #INCLUDE FILE="../Ergonomie/MenuStatique.as p" -->

Regards, Evelyne
*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!

Jul 19 '05 #5

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

Similar topics

1
2099
by: Henry Miller | last post by:
I have the following code (much simplified for this post). Note that SessionKey uses DataAccess, and DataAccess requires SessionKey in it's constructor. Public Class SessionKey Public IsValidSession as Boolean Sub New(UserName, Password) ' Create session, including calls on DataAccess ' to validate username/password
2
3103
by: ernesto basc?n pantoja | last post by:
Hi everybody: I'm implementing a general C++ framework and I have a basic question about circular dependencies: I am creating a base class Object, my Object class has a method defined as: virtual String toString(); where String is defined as:
4
4802
by: ro86 | last post by:
Hello everyone! I am a newbie to C++ (~1 Week experience) and I have a few months of experience with object-oriented languages (Objective-C). I am currently working just for fun on a particle system. All the particles are controlled by a "server". The server performs all kinds of operations on them (updating, drawing etc.). The particles (my "clients") on the other hand need to retrieve once a while some information from their server...
1
484
by: ChrisB | last post by:
Hello: I have created several components that have the following dependency relationships: Assembly1 references assemblies A, B, and C. Assembly2 references assemblies A, B When attempting to allow Assembly 2 to reference Assembly1, the following message is returned: "A reference to Assembly1.Library could not be added. Adding this project as
4
3284
by: Henke | last post by:
I have this scenario. public class A { public int numbers; public class A() { }
2
761
by: Rimma Meital via .NET 247 | last post by:
(Type your message here) -------------------------------- From: Rimma Meital I have 2 DLLs (Class Libraries). Both defines single-ton objects - logger object (writes to logger) and application_management object (stores paths and other things, reads ini file of the application). Both needs to refer to each other -> application_management can write to a logger and logger needs to know the path of logger file. Of course, it's circular...
3
2877
by: Rob Clark | last post by:
Hi, I have an issue which is the ordinary and always recurring circular dependency - but I do not know how to resolve it :-( The usual forward declaration does not help... I have a client that uses a resource. As a consequence of using the resource, the resource later receives an asynchronous notification (from an underlying layer, e.g. OS). This notification should then be forwarded to the Client that owns the resource.
7
13525
by: barias | last post by:
Although circular dependencies are something developers should normally avoid, unfortunately they are very easy to create accidentally between classes in a VS project (i.e. circular compile-time dependencies). But then I started wondering how "easy" it would be to similarly make a NON-RUNTIME circular dependency between (implicitly linked) DLLs. Indeed authors like John Lakos, who focus on compile/link-time dependencies (not run-time),...
3
7059
by: donnyma | last post by:
I have a problem that looks like it has not been discussed before in these groups. I have a simple SQLAgent job that runs sp_who (could be anything, but let's just say sp_who for this example). I have set the jobstep to write to an output file "T:\out.txt". If the job is owned by an admin, it runs fine and writes the output file. If it is owned by a non-admin user, it gets the following error msg: Warning: cannot write logfile...
0
9621
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...
0
9454
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10106
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10039
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
6716
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5355
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5484
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4009
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
2
3610
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.