Reflection in ASP.net

  • Thread starter Thread starter Satheesh
  • Start date Start date
S

Satheesh

Hi All,

I am trying to upload a dll to my web site and then use reflection to call
one of the methods from it.

It gives a error like

failed to register Assembly.


any idea why it is.

same code works fine with console applicaion.
thanks
Satheesh.
 
Is the DLL that you're trying to reflect on a COM+
component? It sounds like the component is trying to be
automatically registered by ASP.NET, a process which
generally doesn't have the authority to register COM+
components.

Bruce Johnson
http://www.ObjectSharp.com/Bruce
 
Yes that's true , i am trying to access a COM+ Component from reflection
and then use some of it's properties.
 
Back
Top