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

File or assembly name or one of its dependencies, was not found.

I'm receiving the error message shown below when I try to load an aspx file
(C# web application) on our server. The web application works fine if I
remove the reference to the dll so I know the application and IIS are both
ok. I ran depends on the dll and all referenced dlls are either in system32
or in the bin directory of the web application. I suspect it is some kind of
security issue.

Any help will be greatly appreciated.

Jon Lea

Parser Error Message: File or assembly name LeapSoft.Engr.Utils, or one of
its dependencies, was not found.

=== Pre-bind state information ===
LOG: DisplayName = LeapSoft.Engr.Utils
(Partial)
LOG: Appbase = file:///E:/Pub/JL/TestWebApplication1
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: LeapSoft.Engr.Utils
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/jltestwebsite1/3b1b703f/74d67837/LeapSoft.Engr.Utils.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/jltestwebsite1/3b1b703f/74d67837/LeapSoft.Engr.Utils/LeapSoft.Engr.Uti
ls.DLL.
LOG: Attempting download of new URL
file:///E:/Pub/JL/TestWebApplication1/bin/LeapSoft.Engr.Utils.DLL.
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: LeapSoft.Engr.Utils, Version=1.0.1733.19648,
Culture=neutral, PublicKeyToken=null
Nov 18 '05 #1
3 1950
The error you are getting is a code access security exception. This means the
assembly you are working with (your project) cannot access the other assembly
or the other assembly cannot access some software it needs to work.

You can edit the machine.config to open security policy (there is also a
tool for this). Better yet, you can adjust the security for your particular
project (noting that an executable that is distributed to clients needs to
have the same security).

For your global assemblies, you can put them in the Global Assembly cache
and erase most exceptions. Most likely the issue is the assemblies in
System32.
---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************

"jlea" wrote:
I'm receiving the error message shown below when I try to load an aspx file
(C# web application) on our server. The web application works fine if I
remove the reference to the dll so I know the application and IIS are both
ok. I ran depends on the dll and all referenced dlls are either in system32
or in the bin directory of the web application. I suspect it is some kind of
security issue.

Any help will be greatly appreciated.

Jon Lea

Parser Error Message: File or assembly name LeapSoft.Engr.Utils, or one of
its dependencies, was not found.

=== Pre-bind state information ===
LOG: DisplayName = LeapSoft.Engr.Utils
(Partial)
LOG: Appbase = file:///E:/Pub/JL/TestWebApplication1
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: LeapSoft.Engr.Utils
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/jltestwebsite1/3b1b703f/74d67837/LeapSoft.Engr.Utils.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/jltestwebsite1/3b1b703f/74d67837/LeapSoft.Engr.Utils/LeapSoft.Engr.Uti
ls.DLL.
LOG: Attempting download of new URL
file:///E:/Pub/JL/TestWebApplication1/bin/LeapSoft.Engr.Utils.DLL.
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: LeapSoft.Engr.Utils, Version=1.0.1733.19648,
Culture=neutral, PublicKeyToken=null

Nov 18 '05 #2
Thanks for the good info. Where in the .NET IDE or IIS do I adjust the
security for the project? Jon.

"Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM> wrote
in message news:1B**********************************@microsof t.com...
The error you are getting is a code access security exception. This means the assembly you are working with (your project) cannot access the other assembly or the other assembly cannot access some software it needs to work.

You can edit the machine.config to open security policy (there is also a
tool for this). Better yet, you can adjust the security for your particular project (noting that an executable that is distributed to clients needs to
have the same security).

For your global assemblies, you can put them in the Global Assembly cache
and erase most exceptions. Most likely the issue is the assemblies in
System32.
---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************

"jlea" wrote:
I'm receiving the error message shown below when I try to load an aspx file (C# web application) on our server. The web application works fine if I
remove the reference to the dll so I know the application and IIS are both ok. I ran depends on the dll and all referenced dlls are either in system32 or in the bin directory of the web application. I suspect it is some kind of security issue.

Any help will be greatly appreciated.

Jon Lea

Parser Error Message: File or assembly name LeapSoft.Engr.Utils, or one of its dependencies, was not found.

=== Pre-bind state information ===
LOG: DisplayName = LeapSoft.Engr.Utils
(Partial)
LOG: Appbase = file:///E:/Pub/JL/TestWebApplication1
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: LeapSoft.Engr.Utils
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/jltestwebsite1/3b1b703f/74d67837/LeapSoft.Engr.Utils.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/jltestwebsite1/3b1b703f/74d67837/LeapSoft.Engr.Utils/LeapSoft.Engr.Uti ls.DLL.
LOG: Attempting download of new URL
file:///E:/Pub/JL/TestWebApplication1/bin/LeapSoft.Engr.Utils.DLL.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Post-policy reference: LeapSoft.Engr.Utils, Version=1.0.1733.19648,
Culture=neutral, PublicKeyToken=null

Nov 18 '05 #3
I forgot to mention that the server is Win2000. When I run the same web
application from an NT machine (using IE) to my XP-Pro machine (running IIS)
within the intranet, all is good.

"jlea" <jo*@leapsoft.com> wrote in message
news:uq****************@tk2msftngp13.phx.gbl...
Thanks for the good info. Where in the .NET IDE or IIS do I adjust the
security for the project? Jon.

"Cowboy (Gregory A. Beamer) - MVP" <No************@comcast.netNoSpamM> wrote in message news:1B**********************************@microsof t.com...
The error you are getting is a code access security exception. This means
the
assembly you are working with (your project) cannot access the other assembly
or the other assembly cannot access some software it needs to work.

You can edit the machine.config to open security policy (there is also a
tool for this). Better yet, you can adjust the security for your

particular
project (noting that an executable that is distributed to clients needs to have the same security).

For your global assemblies, you can put them in the Global Assembly cache and erase most exceptions. Most likely the issue is the assemblies in
System32.
---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************

"jlea" wrote:
I'm receiving the error message shown below when I try to load an aspx

file (C# web application) on our server. The web application works fine if I remove the reference to the dll so I know the application and IIS are both ok. I ran depends on the dll and all referenced dlls are either in system32 or in the bin directory of the web application. I suspect it is some kind of security issue.

Any help will be greatly appreciated.

Jon Lea

Parser Error Message: File or assembly name LeapSoft.Engr.Utils, or on e of
its dependencies, was not found.

=== Pre-bind state information ===
LOG: DisplayName = LeapSoft.Engr.Utils
(Partial)
LOG: Appbase = file:///E:/Pub/JL/TestWebApplication1
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: LeapSoft.Engr.Utils
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/jltestwebsite1/3b1b703f/74d67837/LeapSoft.Engr.Utils.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET

Files/jltestwebsite1/3b1b703f/74d67837/LeapSoft.Engr.Utils/LeapSoft.Engr.Uti ls.DLL.
LOG: Attempting download of new URL
file:///E:/Pub/JL/TestWebApplication1/bin/LeapSoft.Engr.Utils.DLL.
LOG: Policy not being applied to reference at this time (private,

custom, partial, or location-based assembly bind).
LOG: Post-policy reference: LeapSoft.Engr.Utils, Version=1.0.1733.19648, Culture=neutral, PublicKeyToken=null


Nov 18 '05 #4

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

Similar topics

0
by: karunakar | last post by:
Hi All I am not able to read the class name I want read the particular class name string path = System.Configuration.ConfigurationSettings.AppSettings; string className = path + ".User";...
3
by: Michael Bøcker-Larsen | last post by:
Hi I'v been stuck on this problem for ages now. I have found that I'm not the only one with this problem, by looking through the different newsgroups. Hope you can help me! I know there is a...
2
by: aallee83 | last post by:
i'm new in asp.net after develop my solution i copied it on the server where I want it to run but something cares... WHAT?!?! thank you in advance File or assembly name System, or one of its...
0
by: Martinh | last post by:
Hi After invoking RetrieveData in a WebService I recieve the following response in a new window... I am running Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573 ...
1
by: Olav Tollefsen | last post by:
I get the included error message when trying to run my ASP.NET application under Windows Server 2003 (with all updates installed). How can I troubleshoot this? Olav File or assembly name...
0
by: Federico Hernández Arce | last post by:
Hi group, first sorry for my poor english We have a vb.net app, run whit any problem in our pcs (whit vs.net 2003 installed). The app have a ocx that draw a binary tree (the only external...
4
by: Tiraman | last post by:
Hi, i have some problem to run my dll's (assemblies) on the production server. I have 3 dll's which use each other. Every thing is ok on my local machine where i developed them but when i...
2
by: Andrew Jocelyn | last post by:
Hi I get this error when I change something in the web.config file. When I build the VS projects and load the first web page the application runs fine. If I then make a save the web.config file...
3
by: James | last post by:
Hi guys Do you ever get the exception in Managed C++? How can I know which file or dll is missed?
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
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
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,...
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
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...

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.