473,396 Members | 1,864 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,396 software developers and data experts.

Too many assemblies asp.net

I have been developing several web applications in VB.NET. I have
started to notice that when I run one of the applications, all the
assemblies for that application get loaded PLUS all the assemblies for
the other applications. I do not like this behavior and want only the
required assemblies to get loaded. Any suggestions and overall
information would be greatly appreciated.
Nov 17 '05 #1
7 2723
Hello Lance,

You can view binding information in the log file using the Assembly Binding Log Viewer (Fuslogvw.exe), which is included in
the .NET Framework SDK.

The process of locating and binding to an assembly begins when the runtime attempts to resolve a reference to another
assembly. This reference can be either static or dynamic. The compiler records static references in the assembly manifest's
metadata at build time. Dynamic references are constructed on the fly as a result of calling various methods, such as
System.Reflection.Assembly.Load.

However, I don't think that a web application would load other web app's assembly. Could you please let us know how you
detected it?

Thanks.

Best regards,
Yanhong Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
!From: la***@parsecorp.com (Lance Barger)
!Newsgroups: microsoft.public.dotnet.framework.aspnet
!Subject: Too many assemblies asp.net
!Date: 17 Jul 2003 08:33:54 -0700
!Organization: http://groups.google.com/
!Lines: 6
!Message-ID: <c0**************************@posting.google.com >
!NNTP-Posting-Host: 216.98.201.200
!Content-Type: text/plain; charset=ISO-8859-1
!Content-Transfer-Encoding: 8bit
!X-Trace: posting.google.com 1058456035 7334 127.0.0.1 (17 Jul 2003 15:33:55 GMT)
!X-Complaints-To: gr**********@google.com
!NNTP-Posting-Date: 17 Jul 2003 15:33:55 GMT
!Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed 00.sul.t-online.de!t-online.de!news-spur1.maxwell.syr.edu!
news.maxwell.syr.edu!sn-xit-03!sn-xit-01!sn-xit-09!supernews.com!postnews1.google.com!not-for-mail
!Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:159974
!X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!
!I have been developing several web applications in VB.NET. I have
!started to notice that when I run one of the applications, all the
!assemblies for that application get loaded PLUS all the assemblies for
!the other applications. I do not like this behavior and want only the
!required assemblies to get loaded. Any suggestions and overall
!information would be greatly appreciated.
!
Nov 17 '05 #2
yh*****@online.microsoft.com (Yan-Hong Huang[MSFT]) wrote in message news:<nD**************@cpmsftngxa06.phx.gbl>...
Hello Lance,

You can view binding information in the log file using the Assembly Binding Log Viewer (Fuslogvw.exe), which is included in
the .NET Framework SDK.

The process of locating and binding to an assembly begins when the runtime attempts to resolve a reference to another
assembly. This reference can be either static or dynamic. The compiler records static references in the assembly manifest's
metadata at build time. Dynamic references are constructed on the fly as a result of calling various methods, such as
System.Reflection.Assembly.Load.

However, I don't think that a web application would load other web app's assembly. Could you please let us know how you
detected it?

Thanks.

Best regards,
Yanhong Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
!From: la***@parsecorp.com (Lance Barger)
!Newsgroups: microsoft.public.dotnet.framework.aspnet
!Subject: Too many assemblies asp.net
!Date: 17 Jul 2003 08:33:54 -0700
!Organization: http://groups.google.com/
!Lines: 6
!Message-ID: <c0**************************@posting.google.com >
!NNTP-Posting-Host: 216.98.201.200
!Content-Type: text/plain; charset=ISO-8859-1
!Content-Transfer-Encoding: 8bit
!X-Trace: posting.google.com 1058456035 7334 127.0.0.1 (17 Jul 2003 15:33:55 GMT)
!X-Complaints-To: gr**********@google.com
!NNTP-Posting-Date: 17 Jul 2003 15:33:55 GMT
!Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed 00.sul.t-online.de!t-online.de!news-spur1.maxwell.syr.edu!
news.maxwell.syr.edu!sn-xit-03!sn-xit-01!sn-xit-09!supernews.com!postnews1.google.com!not-for-mail
!Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:159974
!X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!
!I have been developing several web applications in VB.NET. I have
!started to notice that when I run one of the applications, all the
!assemblies for that application get loaded PLUS all the assemblies for
!the other applications. I do not like this behavior and want only the
!required assemblies to get loaded. Any suggestions and overall
!information would be greatly appreciated.
!


I can see them getting loaded by viewing the output window when I run
one of the applications.
Nov 17 '05 #3
I am having trouble getting that tool to work with my web
applications. I can get it to log information for a windows app but
not web. Anyway, regardless of binding, why would the output window
show assemblies from several different web apps loading when I run one
of them? The annoying part is when I stop the web app as it takes time
for statements like this to execute:

The program '[1664] aspnet_wp.exe: DefaultDomain' has exited with code
0 (0x0).
The program '[1664] aspnet_wp.exe:
/LM/W3SVC/1/Root/Axis-5-127035316663928032' has exited with code 0
(0x0).

These statements show only one web app exiting, but when multiples get
loaded there are several of these statements to execute. Also, the
behavior seems completely random. Some days several web app assemblies
will load some days only the correct one! Insight would be
appreciated.

Thank You
Lance Barger
Nov 17 '05 #4
Hello Lance,

I will look into it and reply you with more information here. Thanks very much.

Best regards,
Yanhong Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
!From: la***@parsecorp.com (Lance Barger)
!Newsgroups: microsoft.public.dotnet.framework.aspnet
!Subject: Re: Too many assemblies asp.net
!Date: 24 Jul 2003 16:01:06 -0700
!Organization: http://groups.google.com/
!Lines: 21
!Message-ID: <c0**************************@posting.google.com >
!References: <c0**************************@posting.google.com > <nD**************@cpmsftngxa06.phx.gbl>
<c0**************************@posting.google.com > <v9**************@cpmsftngxa06.phx.gbl>
!NNTP-Posting-Host: 216.98.201.200
!Content-Type: text/plain; charset=ISO-8859-1
!Content-Transfer-Encoding: 8bit
!X-Trace: posting.google.com 1059087669 4580 127.0.0.1 (24 Jul 2003 23:01:09 GMT)
!X-Complaints-To: gr**********@google.com
!NNTP-Posting-Date: 24 Jul 2003 23:01:09 GMT
!Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed 00.sul.t-online.de!t-online.de!newsfeed.icl.net!
newsfeed.fjserv.net!news-out1.nntp.be!propagator2-sterling!news-in-sterling.newsfeed.com!pd2nf1so.cg.shawcable.net!
residential.shaw.ca!sn-xit-03!sn-xit-06!sn-xit-08!sn-xit-09!supernews.com!postnews1.google.com!not-for-mail
!Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:161943
!X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!
!I am having trouble getting that tool to work with my web
!applications. I can get it to log information for a windows app but
!not web. Anyway, regardless of binding, why would the output window
!show assemblies from several different web apps loading when I run one
!of them? The annoying part is when I stop the web app as it takes time
!for statements like this to execute:
!
!The program '[1664] aspnet_wp.exe: DefaultDomain' has exited with code
!0 (0x0).
!The program '[1664] aspnet_wp.exe:
!/LM/W3SVC/1/Root/Axis-5-127035316663928032' has exited with code 0
!(0x0).
!
!These statements show only one web app exiting, but when multiples get
!loaded there are several of these statements to execute. Also, the
!behavior seems completely random. Some days several web app assemblies
!will load some days only the correct one! Insight would be
!appreciated.
!
!Thank You
!Lance Barger
!
Nov 17 '05 #5
Hello Lance,

Currently I am working with product team to troubleshoot the problem. This may need some more time. Anyway, I will get
back here as soon as possible. Sorry for any inconvenience that brought to you.

Thanks very much. If you have any more concerns, please post here.

Best regards,
Yanhong Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
!From: la***@parsecorp.com (Lance Barger)
!Newsgroups: microsoft.public.dotnet.framework.aspnet
!Subject: Re: Too many assemblies asp.net
!Date: 24 Jul 2003 16:01:06 -0700
!Organization: http://groups.google.com/
!Lines: 21
!Message-ID: <c0**************************@posting.google.com >
!References: <c0**************************@posting.google.com > <nD**************@cpmsftngxa06.phx.gbl>
<c0**************************@posting.google.com > <v9**************@cpmsftngxa06.phx.gbl>
!NNTP-Posting-Host: 216.98.201.200
!Content-Type: text/plain; charset=ISO-8859-1
!Content-Transfer-Encoding: 8bit
!X-Trace: posting.google.com 1059087669 4580 127.0.0.1 (24 Jul 2003 23:01:09 GMT)
!X-Complaints-To: gr**********@google.com
!NNTP-Posting-Date: 24 Jul 2003 23:01:09 GMT
!Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed 00.sul.t-online.de!t-online.de!newsfeed.icl.net!
newsfeed.fjserv.net!news-out1.nntp.be!propagator2-sterling!news-in-sterling.newsfeed.com!pd2nf1so.cg.shawcable.net!
residential.shaw.ca!sn-xit-03!sn-xit-06!sn-xit-08!sn-xit-09!supernews.com!postnews1.google.com!not-for-mail
!Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:161943
!X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!
!I am having trouble getting that tool to work with my web
!applications. I can get it to log information for a windows app but
!not web. Anyway, regardless of binding, why would the output window
!show assemblies from several different web apps loading when I run one
!of them? The annoying part is when I stop the web app as it takes time
!for statements like this to execute:
!
!The program '[1664] aspnet_wp.exe: DefaultDomain' has exited with code
!0 (0x0).
!The program '[1664] aspnet_wp.exe:
!/LM/W3SVC/1/Root/Axis-5-127035316663928032' has exited with code 0
!(0x0).
!
!These statements show only one web app exiting, but when multiples get
!loaded there are several of these statements to execute. Also, the
!behavior seems completely random. Some days several web app assemblies
!will load some days only the correct one! Insight would be
!appreciated.
!
!Thank You
!Lance Barger
!
Nov 17 '05 #6
The behavior has started again. Just wanted to show you my output
screen for the web app Axis. Notice the assemblies for Axis plus the
assemblies for another web app called Survey get loaded. Also, the
annoying part, they both have to exit when I stop the Axis app.

Thanks for all your help.
Lance Barger

'DefaultDomain': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\mscorl ib.dll', No symbols
loaded.
'DefaultDomain': Loaded
'c:\winnt\assembly\gac\system.web\1.0.3300.0__b03f 5f7f11d50a3a\system.web.dll',
No symbols loaded.
'DefaultDomain': Loaded
'c:\winnt\assembly\gac\system\1.0.3300.0__b77a5c56 1934e089\system.dll',
No symbols loaded.
'DefaultDomain': Loaded
'c:\winnt\assembly\gac\system.data\1.0.3300.0__b77 a5c561934e089\system.data.dll',
No symbols loaded.
'DefaultDomain': Loaded
'c:\winnt\assembly\gac\system.enterpriseservices\1 .0.3300.0__b03f5f7f11d50a3a\system.enterpriseservi ces.dll',
No symbols loaded.
'DefaultDomain': Loaded
'c:\winnt\assembly\gac\system.enterpriseservices\1 .0.3300.0__b03f5f7f11d50a3a\system.enterpriseservi ces.thunk.dll',
No symbols loaded.
'DefaultDomain': Loaded
'c:\winnt\assembly\gac\system.web.regularexpressio ns\1.0.3300.0__b03f5f7f11d50a3a\system.web.regular expressions.dll',
No symbols loaded.
Auto-attach to process '[1516] aspnet_wp.exe' on machine 'LANCE'
succeeded.
'DefaultDomain': Loaded
'c:\winnt\assembly\gac\system.xml\1.0.3300.0__b77a 5c561934e089\system.xml.dll',
No symbols loaded.
'DefaultDomain': Loaded
'c:\winnt\assembly\gac\system.drawing\1.0.3300.0__ b03f5f7f11d50a3a\system.drawing.dll',
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\mscorl ib.dll', No symbols
loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\assembly\gac\system.web\1.0.3300.0__b03f 5f7f11d50a3a\system.web.dll',
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\assembly\gac\system.xml\1.0.3300.0__b77a 5c561934e089\system.xml.dll',
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\assembly\gac\system\1.0.3300.0__b77a5c56 1934e089\system.dll',
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\assembly\gac\system.web.regularexpressio ns\1.0.3300.0__b03f5f7f11d50a3a\system.web.regular expressions.dll',
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\tempor ary asp.net
files\experiment_survey\b0ba83db\21e68314\ngkjstxt .dll', Symbols
loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\assembly\gac\microsoft.visualbasic\7.0.3 300.0__b03f5f7f11d50a3a\microsoft.visualbasic.dll' ,
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\assembly\gac\system.data\1.0.3300.0__b77 a5c561934e089\system.data.dll',
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\assembly\gac\system.web.services\1.0.330 0.0__b03f5f7f11d50a3a\system.web.services.dll',
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\assembly\gac\system.drawing\1.0.3300.0__ b03f5f7f11d50a3a\system.drawing.dll',
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\assembly\gac\system.enterpriseservices\1 .0.3300.0__b03f5f7f11d50a3a\system.enterpriseservi ces.dll',
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\assembly\gac\system.enterpriseservices\1 .0.3300.0__b03f5f7f11d50a3a\system.enterpriseservi ces.thunk.dll',
No symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\tempor ary asp.net
files\experiment_survey\b0ba83db\21e68314\assembly \dl2\7e458136\700de17d_2f55c301\survey.dll',
Symbols loaded.
'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\tempor ary asp.net
files\experiment_survey\b0ba83db\21e68314\5ifsbzu8 .dll', Symbols
loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\mscorl ib.dll', No symbols
loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\assembly\gac\system.web\1.0.3300.0__b03f 5f7f11d50a3a\system.web.dll',
No symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\assembly\gac\system.data\1.0.3300.0__b77 a5c561934e089\system.data.dll',
No symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\assembly\gac\system.enterpriseservices\1 .0.3300.0__b03f5f7f11d50a3a\system.enterpriseservi ces.dll',
No symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\assembly\gac\system.enterpriseservices\1 .0.3300.0__b03f5f7f11d50a3a\system.enterpriseservi ces.thunk.dll',
No symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\assembly\gac\system.web.regularexpressio ns\1.0.3300.0__b03f5f7f11d50a3a\system.web.regular expressions.dll',
No symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\assembly\gac\system.xml\1.0.3300.0__b77a 5c561934e089\system.xml.dll',
No symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\assembly\gac\system\1.0.3300.0__b77a5c56 1934e089\system.dll',
No symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\assembly\gac\system.drawing\1.0.3300.0__ b03f5f7f11d50a3a\system.drawing.dll',
No symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\assembly\gac\system.web.services\1.0.330 0.0__b03f5f7f11d50a3a\system.web.services.dll',
No symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\tempor ary asp.net
files\axis\03de8bff\9f2e4f66\assembly\dl2\20f1a1de \a05c0c06_da55c301\axis.dll',
Symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\tempor ary asp.net
files\axis\03de8bff\9f2e4f66\1lqwwzpb.dll', Symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\assembly\gac\microsoft.visualbasic\7.0.3 300.0__b03f5f7f11d50a3a\microsoft.visualbasic.dll' ,
No symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\tempor ary asp.net
files\axis\03de8bff\9f2e4f66\q_l2s0fn.dll', Symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\tempor ary asp.net
files\axis\03de8bff\9f2e4f66\gzar4oed.dll', Symbols loaded.
'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
'c:\winnt\microsoft.net\framework\v1.0.3705\tempor ary asp.net
files\axis\03de8bff\9f2e4f66\ddqcxalq.dll', Symbols loaded.
The program '[1516] aspnet_wp.exe:
/LM/w3svc/1/root/experiment/Survey-1-127039009692188816' has exited
with code 0 (0x0).
The program '[1516] aspnet_wp.exe: DefaultDomain' has exited with code
0 (0x0).
The program '[1516] aspnet_wp.exe:
/LM/W3SVC/1/Root/Axis-6-127039609395119280' has exited with code 0
(0x0).
Nov 17 '05 #7
Hello Lance,

Sorry for the late response. We just finished the research and posted the answer here:

The output that you see is not related to VS.NET IDE in anyway. The list of App Domains that you see there is the list of App
Domains that are loaded in the ASP.NET Worker process at that time. App Domains also can get loaded if you just browse
to a Web App.

Once we attach to the aspnet worker process, we list out all the currently loaded app domains and corresponding dlls
loaded for each of them.

To make things more clear, do this:
1) Open any Web Project
2) Issue iisreset command/Restart IIS
3) Now run your App and in the output Window, you will see only the current App gets listed. (along with the default App
Domain)
4) Now open a browser and browse to any other ASP.NET App.
5) Run your project again and you will see the Appdomains for your project, the App that you browsed and Default App
Domain.

Will it hurt the performance of web app since it loads so many assemblies?
Not at all. That is by design.

Thanks very much.

Best regards,
Yanhong Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
!From: la***@parsecorp.com (Lance Barger)
!Newsgroups: microsoft.public.dotnet.framework.aspnet
!Subject: Re: Too many assemblies asp.net
!Date: 29 Jul 2003 07:08:11 -0700
!Organization: http://groups.google.com/
!Lines: 139
!Message-ID: <c0*************************@posting.google.com>
!References: <c0**************************@posting.google.com > <nD**************@cpmsftngxa06.phx.gbl>
<c0**************************@posting.google.com > <v9**************@cpmsftngxa06.phx.gbl>
<c0**************************@posting.google.com > <Rs**************@cpmsftngxa06.phx.gbl>
!NNTP-Posting-Host: 216.98.201.200
!Content-Type: text/plain; charset=ISO-8859-1
!Content-Transfer-Encoding: 8bit
!X-Trace: posting.google.com 1059487691 4830 127.0.0.1 (29 Jul 2003 14:08:11 GMT)
!X-Complaints-To: gr**********@google.com
!NNTP-Posting-Date: 29 Jul 2003 14:08:11 GMT
!Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed 00.sul.t-online.de!t-online.de!skynet.be!skynet.be!
newsfeed.online.be!sn-xit-02!sn-xit-06!sn-xit-09!supernews.com!postnews1.google.com!not-for-mail
!Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:162979
!X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
!
!The behavior has started again. Just wanted to show you my output
!screen for the web app Axis. Notice the assemblies for Axis plus the
!assemblies for another web app called Survey get loaded. Also, the
!annoying part, they both have to exit when I stop the Axis app.
!
!Thanks for all your help.
!Lance Barger
!
!'DefaultDomain': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\mscor lib.dll', No symbols
!loaded.
!'DefaultDomain': Loaded
!'c:\winnt\assembly\gac\system.web\1.0.3300.0__b03 f5f7f11d50a3a\system.web.dll',
!No symbols loaded.
!'DefaultDomain': Loaded
!'c:\winnt\assembly\gac\system\1.0.3300.0__b77a5c5 61934e089\system.dll',
!No symbols loaded.
!'DefaultDomain': Loaded
!'c:\winnt\assembly\gac\system.data\1.0.3300.0__b7 7a5c561934e089\system.data.dll',
!No symbols loaded.
!'DefaultDomain': Loaded
!'c:\winnt\assembly\gac\system.enterpriseservices\ 1.0.3300.0__b03f5f7f11d50a3a\system.enterpriseserv ices.dll',
!No symbols loaded.
!'DefaultDomain': Loaded
!'c:\winnt\assembly\gac\system.enterpriseservices\ 1.0.3300.0__b03f5f7f11d50a3a\system.enterpriseserv ices.thunk.dll',
!No symbols loaded.
!'DefaultDomain': Loaded
!'c:\winnt\assembly\gac\system.web.regularexpressi ons\1.0.3300.0__b03f5f7f11d50a3a\system.web.regula rexpressions.dll',
!No symbols loaded.
!Auto-attach to process '[1516] aspnet_wp.exe' on machine 'LANCE'
!succeeded.
!'DefaultDomain': Loaded
!'c:\winnt\assembly\gac\system.xml\1.0.3300.0__b77 a5c561934e089\system.xml.dll',
!No symbols loaded.
!'DefaultDomain': Loaded
!'c:\winnt\assembly\gac\system.drawing\1.0.3300.0_ _b03f5f7f11d50a3a\system.drawing.dll',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\mscor lib.dll', No symbols
!loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\assembly\gac\system.web\1.0.3300.0__b03 f5f7f11d50a3a\system.web.dll',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\assembly\gac\system.xml\1.0.3300.0__b77 a5c561934e089\system.xml.dll',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\assembly\gac\system\1.0.3300.0__b77a5c5 61934e089\system.dll',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\assembly\gac\system.web.regularexpressi ons\1.0.3300.0__b03f5f7f11d50a3a\system.web.regula rexpressions.dll',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\tempo rary asp.net
!files\experiment_survey\b0ba83db\21e68314\ngkjstx t.dll', Symbols
!loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\assembly\gac\microsoft.visualbasic\7.0. 3300.0__b03f5f7f11d50a3a\microsoft.visualbasic.dll ',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\assembly\gac\system.data\1.0.3300.0__b7 7a5c561934e089\system.data.dll',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\assembly\gac\system.web.services\1.0.33 00.0__b03f5f7f11d50a3a\system.web.services.dll',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\assembly\gac\system.drawing\1.0.3300.0_ _b03f5f7f11d50a3a\system.drawing.dll',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\assembly\gac\system.enterpriseservices\ 1.0.3300.0__b03f5f7f11d50a3a\system.enterpriseserv ices.dll',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\assembly\gac\system.enterpriseservices\ 1.0.3300.0__b03f5f7f11d50a3a\system.enterpriseserv ices.thunk.dll',
!No symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\tempo rary asp.net
!files\experiment_survey\b0ba83db\21e68314\assembl y\dl2\7e458136\700de17d_2f55c301\survey.dll',
!Symbols loaded.
!'/LM/w3svc/1/root/experiment/Survey-1-127039009692188816': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\tempo rary asp.net
!files\experiment_survey\b0ba83db\21e68314\5ifsbzu 8.dll', Symbols
!loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\mscor lib.dll', No symbols
!loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\assembly\gac\system.web\1.0.3300.0__b03 f5f7f11d50a3a\system.web.dll',
!No symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\assembly\gac\system.data\1.0.3300.0__b7 7a5c561934e089\system.data.dll',
!No symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\assembly\gac\system.enterpriseservices\ 1.0.3300.0__b03f5f7f11d50a3a\system.enterpriseserv ices.dll',
!No symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\assembly\gac\system.enterpriseservices\ 1.0.3300.0__b03f5f7f11d50a3a\system.enterpriseserv ices.thunk.dll',
!No symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\assembly\gac\system.web.regularexpressi ons\1.0.3300.0__b03f5f7f11d50a3a\system.web.regula rexpressions.dll',
!No symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\assembly\gac\system.xml\1.0.3300.0__b77 a5c561934e089\system.xml.dll',
!No symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\assembly\gac\system\1.0.3300.0__b77a5c5 61934e089\system.dll',
!No symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\assembly\gac\system.drawing\1.0.3300.0_ _b03f5f7f11d50a3a\system.drawing.dll',
!No symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\assembly\gac\system.web.services\1.0.33 00.0__b03f5f7f11d50a3a\system.web.services.dll',
!No symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\tempo rary asp.net
!files\axis\03de8bff\9f2e4f66\assembly\dl2\20f1a1d e\a05c0c06_da55c301\axis.dll',
!Symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\tempo rary asp.net
!files\axis\03de8bff\9f2e4f66\1lqwwzpb.dll', Symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\assembly\gac\microsoft.visualbasic\7.0. 3300.0__b03f5f7f11d50a3a\microsoft.visualbasic.dll ',
!No symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\tempo rary asp.net
!files\axis\03de8bff\9f2e4f66\q_l2s0fn.dll', Symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\tempo rary asp.net
!files\axis\03de8bff\9f2e4f66\gzar4oed.dll', Symbols loaded.
!'/LM/W3SVC/1/Root/Axis-6-127039609395119280': Loaded
!'c:\winnt\microsoft.net\framework\v1.0.3705\tempo rary asp.net
!files\axis\03de8bff\9f2e4f66\ddqcxalq.dll', Symbols loaded.
!The program '[1516] aspnet_wp.exe:
!/LM/w3svc/1/root/experiment/Survey-1-127039009692188816' has exited
!with code 0 (0x0).
!The program '[1516] aspnet_wp.exe: DefaultDomain' has exited with code
!0 (0x0).
!The program '[1516] aspnet_wp.exe:
!/LM/W3SVC/1/Root/Axis-6-127039609395119280' has exited with code 0
!(0x0).
!
Nov 17 '05 #8

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

Similar topics

6
by: Tom Dacon | last post by:
If you're not putting assemblies in the GAC, but are referencing shared code with copylocal=true into the projects that use them, is there any value to signing the assemblies? In the environment...
6
by: cody | last post by:
What are multi file assemblies good for? What are the advantages of using multiple assemblies (A.DLL+B.DLL) vs. a single multi file assembly (A.DLL+A.NETMODULE)?
3
by: Joel Leong | last post by:
I wish to know the industrial practices for signing assemblies with key files. I genereted a key file to sign my assemblies. Should I sign all my assemblies with a single key files or I shall...
1
by: Afaq | last post by:
Hi, After adding large number of empty resource files (which will be updated later), we are not able to compile the project. the following is the output of the build process. It fails while...
6
by: Sam-I-Am | last post by:
Hi There I have several websites that use shared assemblies in the GAC. When I try and update the GAC assemblies I get the following error: "The process cannot access the file because it is...
8
by: Jason | last post by:
In my ASP.NET 1.1 solutions, I created several web projects and compiled them each into an assembly. The assembly names reflected the functionality of the feature (Membership.dll, Dues.dll, etc)....
8
by: Charles Law | last post by:
I'm sorry to keep harping on about this one, but it is really quite important for me to be able to list _all_ required assemblies in my Help About box. Herfried kindly posted some code before that...
3
by: Claudio Pacciarini | last post by:
Hi everyone, I have a question about .NET code sharing and reuse, and also about application design best practices / guidelines. Currently, we have many different .NET projects in source...
2
by: Smithers | last post by:
I have a Windows Forms application that implements a plug-in architecture whereby required assemblies are identified and loaded dynamically. Here are the relevant classes: A = application =...
4
by: illegal.prime | last post by:
Hi all, I'm getting unexpected results when trying to preload assemblies into an AppDomain I'm creating. Upon creation of the AppDomain - I attach an AssemblyResolve to both my current AppDomain...
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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...

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.