-
Posted to
General
by
DadKind
on
02-18-2009, 12:15 PM
Thanks for the link.
The solution that seems to work is discussed here:
http://forums.asp.net/p/1386237/2948418.aspx
The root cause of my problem is that my web app has a dependency on a 64 bit UnManaged DLL, so I need to compile a wrapper class as 64 bit.
But with the deployment strategy discussed in the link I've posted, ...
-
Posted to
General
by
DadKind
on
02-17-2009, 3:50 PM
Thanks!! I'll post there too.
(This is the first time I've run across this; I usually just use JIT).
-tomas
-
Posted to
General
by
DadKind
on
02-17-2009, 2:11 PM
Hello All,
I need to precompile my web app in both 32 bit and 64 bit mode. My development machine is running a 32 bit version of Windows Server 2008 with frameworks 2, 3, and 3.5 available.
I can compile in 32 bit mode with no problem.
But when I try to compile in 64 bit mode I get "Could not load File or Assembly ...
-
Posted to
IIS7 - Extensibility
by
DadKind
on
12-09-2008, 5:12 PM
OK. I've turned on PageHeap using GlobalFlags. But still it doesn't seem to show much. Here is a more detailed dump of data. I'm a little concerned that WinDbg does not seem to find the Symbol file for some of the DLLs.
Here's my stub definition:
[DllImport("rsynclib.dll", CharSet = CharSet.Auto)]
public ...
-
Posted to
IIS7 - Extensibility
by
DadKind
on
12-09-2008, 1:10 PM
Anil,
I got this from a Windb session, but I need some help interpreting the results. Is "COMCTL32.DLL" the offending DLL? What should be the next step?
Why does this run inside the debugger but not in "normal" fashion?
Your help is much appreciated.
-tomas
-----WINDBG Session --------------------- ...
-
Posted to
IIS7 - Extensibility
by
DadKind
on
12-02-2008, 5:21 PM
Hello All,
I'm porting an old web app to Server2008/IIS7 (it was originally written in VS2005 and runs on XP Pro and Windows Server 2003).
This app imports from functions from an unmanaged DLL.
When I was first running my app I was getting a bunch of "Unable to load DLL" errors. I then figured out that I needed to ...