R
Ron Baakkonen
I want to wrap a legacy COM dll within an ASP.NET app. The dll
incorporates a DCOM call to a remote server and will return data,
which the ASP.NET application will pass through. Changing either the
dll or the server interface it speaks to will be difficult.
I built an Interop wrapper for the COM dll and it runs fine from a
..NET console application.
However, when I try use the same wrapper from within an ASP.NET
application, it fails. The Event Viewer shows me:
DCOM got error "No such interface supported " from the computer
DEVSERV when attempting to activate the server:
{5001A9D4-6FC0-11D4-8B67-0001023E56B0}
I've set the IIS default web site directory security user name to a
valid user account (my own) and have put the line
<identity impersonate="true"></identity>
in my project's web.config file.
Can anyone help? Thanks.
incorporates a DCOM call to a remote server and will return data,
which the ASP.NET application will pass through. Changing either the
dll or the server interface it speaks to will be difficult.
I built an Interop wrapper for the COM dll and it runs fine from a
..NET console application.
However, when I try use the same wrapper from within an ASP.NET
application, it fails. The Event Viewer shows me:
DCOM got error "No such interface supported " from the computer
DEVSERV when attempting to activate the server:
{5001A9D4-6FC0-11D4-8B67-0001023E56B0}
I've set the IIS default web site directory security user name to a
valid user account (my own) and have put the line
<identity impersonate="true"></identity>
in my project's web.config file.
Can anyone help? Thanks.