473,714 Members | 2,602 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

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 dependencies, was not
found.
Description: An unhandled exception occurred during the execution of
the current web request. Please review the stack trace for more
information about the error and where it originated in the code.

Exception Details: System.IO.FileN otFoundExceptio n: File or assembly
name System, or one of its dependencies, was not found.

Source Error:
Line 36:
Line 37: Public Sub New()
Line 38: MyBase.New
Line 39: If (ASP.Global_asa x.__intialized = false) Then
Line 40: ASP.Global_asax .__intialized = true
Source File: C:\WINNT\Micros oft.NET\Framewo rk\v1.0.3705\Te mporary
ASP.NET Files\rapportis ogeda\49eca51c\ 9e1d51c7\_5olml wg.0.vb Line:
38

Assembly Load Trace: The following information can be helpful to
determine why the assembly 'System' could not be loaded.
=== Pre-bind state information ===
LOG: DisplayName = System, Version=1.0.500 0.0, Culture=neutral ,
PublicKeyToken= b77a5c561934e08 9
(Fully-specified)
LOG: Appbase = file:///C:/Inetpub/wwwroot/RapportiSogeda
LOG: Initial PrivatePath = bin
Calling assembly : RapportiSogeda, Version=1.0.160 5.25424,
Culture=neutral , PublicKeyToken= null.
===

LOG: Publisher policy file is not found.
LOG: No redirect found in host configuration file
(C:\WINNT\Micro soft.NET\Framew ork\v1.0.3705\a spnet.config).
LOG: Using machine configuration file from
C:\WINNT\Micros oft.NET\Framewo rk\v1.0.3705\co nfig\machine.co nfig.
LOG: Post-policy reference: System, Version=1.0.500 0.0,
Culture=neutral , PublicKeyToken= b77a5c561934e08 9
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET
Files/rapportisogeda/49eca51c/9e1d51c7/System.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET
Files/rapportisogeda/49eca51c/9e1d51c7/System/System.DLL.
LOG: Attempting download of new URL
file:///C:/Inetpub/wwwroot/RapportiSogeda/bin/System.DLL.
LOG: Attempting download of new URL
file:///C:/Inetpub/wwwroot/RapportiSogeda/bin/System/System.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET
Files/rapportisogeda/49eca51c/9e1d51c7/System.EXE.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET
Files/rapportisogeda/49eca51c/9e1d51c7/System/System.EXE.
LOG: Attempting download of new URL
file:///C:/Inetpub/wwwroot/RapportiSogeda/bin/System.EXE.
LOG: Attempting download of new URL
file:///C:/Inetpub/wwwroot/RapportiSogeda/bin/System/System.EXE.

Stack Trace:
[FileNotFoundExc eption: File or assembly name System, or one of its
dependencies, was not found.]
RapportiSogeda. Global.Initiali zeComponent() +0
RapportiSogeda. Global..ctor() +20
ASP.Global_asax ..ctor() in
C:\WINNT\Micros oft.NET\Framewo rk\v1.0.3705\Te mporary ASP.NET
Files\rapportis ogeda\49eca51c\ 9e1d51c7\_5olml wg.0.vb:38

[TargetInvocatio nException: Exception has been thrown by the target of
an invocation.]
System.RuntimeT ype.CreateInsta nceImpl(Boolean publicOnly) +0
System.Activato r.CreateInstanc e(Type type, Boolean nonPublic) +66
System.RuntimeT ype.CreateInsta nceImpl(Binding Flags bindingAttr,
Binder binder, Object[] args, CultureInfo culture, Object[]
activationAttri butes) +277
System.Activato r.CreateInstanc e(Type type, BindingFlags
bindingAttr, Binder binder, Object[] args, CultureInfo culture,
Object[] activationAttri butes) +109
System.Web.Http ApplicationFact ory.GetSpecialA pplicationInsta nce()
+160
System.Web.Http ApplicationFact ory.FireApplica tionOnStart(Htt pContext
context) +20
System.Web.Http ApplicationFact ory.Init(HttpCo ntext context) +481
System.Web.Http ApplicationFact ory.GetApplicat ionInstance(Htt pContext
context) +155
System.Web.Http Runtime.Process RequestInternal (HttpWorkerRequ est wr)
+407


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.0.370 5.288;
ASP.NET Version:1.0.370 5.288
Nov 18 '05 #1
2 2312
Jon
Hello aallee

Is this a dot net application written using version 1.1 of the framework. If it is then the problem seems to look like you have not installed version 1.1 on the machine. It may only have version 1.0 on

Thanks

Jon
Nov 18 '05 #2
I got framework 1.1 installed on both the machines. I installed also SP1
and SP2 on each of them.
I don't understand what the program is seeking... and how to solve
this...
Ms help said "just copy the application" ! it sound like a joke... in
fact...it doesn't work...

if you need more info reply me
and thank you again for the help!

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #3

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

Similar topics

0
1943
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"; return (SCS.SR.IDAL.IUser) Assembly.Load(path).CreateInstance(className); ( This line iam getting Error)
3
12176
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 lot of information, but if you need more (e.g. the code) please write michael@mblarsen.dk. The problem is this error messages (the code is build just fine; no errors):
0
1990
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 on IIS6 on Server 2003 Enterprise. Does anybody has a working solution for me? Martin
1
5055
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 System.Xml, or one of its dependencies, was not found. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information
4
1619
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 upload them to the server and after signing them in to the GAC i m getting some errors.
1
2899
by: lgbjr | last post by:
Hi All, I am moving some of my MDI Child forms to DLLs. The first 3 forms worked fine. But the 4th one is causing me some grief! I use the following code to load a form from a DLL: Dim asmAssemblyContainingForm As = .LoadFrom("neiconv.dll") Dim TypeToLoad As Type = asmAssemblyContainingForm.GetType("neiconv.Frm_ND")
2
1762
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 I then get this error when I refresh the browser. I have to restart IIS to fix the problem. I've included the error info but it all looks very cryptic to me. How do I find out what's really happening and how to fix it? Thanks
2
568
by: Eric Falsken | last post by:
Eric Falsken <eric@db4o.com> wrote on 04 Dec 2005: > craigkenisston@hotmail.com wrote on 19 Nov 2005: > >> I'm working in the migration of an asp.net application in 1.1 to 2.0. >> I'm new to this application, just worked with that some days. >> Today, I decided to open the project in VS.2005 and everything seemed >> to be fine, all opened and everything was migrated. I have been >> working on improvements on it this day. >>
3
9081
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
8701
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
9306
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9068
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
9009
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...
1
6621
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
4462
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
4715
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2510
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2103
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.