Re: What do you make of this error message ?
From: Derek Harmon (loresayer_at_msn.com)
Date: 02/21/05
- Next message: Vadivel Kumar: "Re: denotes a class which is not valid in the current context"
- Previous message: Ken Cox [Microsoft MVP]: "Re: VB.NET DLL Decompiler"
- In reply to: Schultz: "Re: What do you make of this error message ?"
- Messages sorted by: [ date ] [ thread ]
Date: Sun, 20 Feb 2005 22:54:55 -0500
"Schultz" <schultz@a2z4u.net> wrote in message news:1108954907.824514.316690@o13g2000cwo.googlegroups.com...
>I would scan your computer for a virus. I don't think that MS would put
> crazy dll names in the .NET Framework.
It's no virus.
"Crazy" dll names and paths are generated by the .NET Framework in
temporary folders all the time to make them unique.
> The aspnet_wp.exe process,
> starting up on its own is what leads me to think you have a virus.
aspnet_wp.exe is supposed to start up when the class is a web page:
> > Public Class Serialization_XML
> > Inherits System.Web.UI.Page
Alex is having a problem with the serialization assembly XmlSerializer creates.
What you may not know is that everytime an XmlSerializer is created for a
Type, it generates code for serialization and deserialization on-the-fly and
puts them in a uniquely-named assembly in the temp folder.
First thing to check is to make sure that ASPNET has permission to
read, write and create files in it's Temp folder (the path to this temp
folder is listed in the Exception's stack trace). If the serializer failed
to emit the assembly, then it won't be found when you need it.
Other things that can lead to this are those for which the code generated
by the XmlSerializer fails to compile (hence, the .dll is never written out
and that's why it cannot be found).
Derek Harmon
- Next message: Vadivel Kumar: "Re: denotes a class which is not valid in the current context"
- Previous message: Ken Cox [Microsoft MVP]: "Re: VB.NET DLL Decompiler"
- In reply to: Schultz: "Re: What do you make of this error message ?"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|