CodefoundryDE / LegacyWrapper

LegacyWrapper uses a x86 wrapper to call legacy dlls from a 64 bit process (or vice versa).
MIT License
79 stars 20 forks source link

Can this be used in IIS asp.net #19

Open wdstest opened 5 years ago

wdstest commented 5 years ago

I am trying to use this on the web server. I place everything in the site's bin folder, but the page complaint with an exception about file not find in start process. So I place all the file in windows\system32\inetsrv\ Now it the site gives a request timed out exception.

zalintyre commented 5 years ago

You should include all necessary files via nuget package manager, not copying files. system32 is definitely the wrong place for dependencies.

wdstest commented 5 years ago

To move it onto the web server, we use the 'publish' feature of Visual Studio. Then we need to copy the 'published' content into the web server site's bin folder. All the files are there. But it doesn't work.