hi,
i'm trying to do a TIF to JPEG conversion on the server side, using a web service.
Everything (GdPicture.dll and all the unmanaged DLLS) is inside the Bin folder of my web project.
Initially I got the error:
"The version of GdPicture.NET.image.gdimgplug.dll is invalid. Please, copy last version of this dll into your application directory at: C:\Windows\SysWOW64\inetsrv"
So my understanding is that IIS is looking for the DLLs in that folder. Copying them in the folder and restarting IIS makes it works.
The question is, is there a way to make IIS locate the DLLs inside the Bin folder of my project, so that when I make a setup I don't have to copy GdPicture Dlls inside Windows system folders, having to check the operating system (32 or 64bit) and the application pool (again could be 32-64, depends on the customer environment) ?
Is there a best practice to do these kind of deployments?
