Use WPF DLL Assembly in ASP.NET problem

Posted by liimur on Stack Overflow See other posts from Stack Overflow or by liimur
Published on 2010-03-24T01:54:10Z Indexed on 2010/03/24 2:03 UTC
Read the original article Hit count: 377

Filed under:
|
|

Hello, I have C++ project that compiles as DLL Assembly in .NET 3.5 SP1 Project is used for Image rendering processing by using WPF (it loads 2 images from local folder, applies one image on another and saves the output file in the same folder). I want to use that that project as a reference in ASP.NET project to the rendering on the website. So I created simple Web Project in ASP.NET C# that uses C++ project as a Reference. Everything works great in ASP.NET Web Development Server (built-in Web server in VS2008). But once I publish this project to IIS on the same Machine or use IIS for debug instead of built-in Web server Image rendering it's not working anymore. I'm not getting any exceptions or error messages, it just output image is not processes as it supposed to be.

If anyone know what could cause that I would really appreciate your insight!

© Stack Overflow or respective owner

Related posts about wpf

Related posts about ASP.NET