N
Novice
Hi all, I've gone through and given my .dll (generated from a VB
application) a strong name via:
<Assembly: AssemblyKeyFileAttribute("..\\Testkey.snk")>
and ensured that partially trusted callers can invoke my dll using:
<Assembly: AllowPartiallyTrustedCallers()>
However, now I realize, I don't know how to get a .NET application to
invoke a method in a class that is in a dll through the internet.
I've added the dll to my project (through the references) and now my
application can invoke the .dll. But I don't know how to create the
executable for my application so that it is able to load the .dll once
I try running it from the web.
Therefore, what is the minimum that every person who uses my web
application have to do to make use of the .dll that my web application
requires? I.E. what are the steps they must follow when I send them
my .dll so that when they visit my webpage (with my application on it)
that my application is on, my application can make use of that .dll?
Thanks,
Novice
application) a strong name via:
<Assembly: AssemblyKeyFileAttribute("..\\Testkey.snk")>
and ensured that partially trusted callers can invoke my dll using:
<Assembly: AllowPartiallyTrustedCallers()>
However, now I realize, I don't know how to get a .NET application to
invoke a method in a class that is in a dll through the internet.
I've added the dll to my project (through the references) and now my
application can invoke the .dll. But I don't know how to create the
executable for my application so that it is able to load the .dll once
I try running it from the web.
Therefore, what is the minimum that every person who uses my web
application have to do to make use of the .dll that my web application
requires? I.E. what are the steps they must follow when I send them
my .dll so that when they visit my webpage (with my application on it)
that my application is on, my application can make use of that .dll?
Thanks,
Novice