Remote Invocation!

  • Thread starter Thread starter Vai2000
  • Start date Start date
V

Vai2000

Hi All, I have a 3rd part assembly Foo.dll and its dependencies. I have
registered them on Server A.
I have an exe (bar.exe) which runs on Server B which would like to make
calls to this Assembly Foo.dll
I am using reflection in bar.exe
Q can I use Assembly.LoadFrom(\\server A\foo.dll)? I am trying to avoid
Remoting/WebSvc for now...kept them for last resort
BTW ServerA and ServerB are part of the same domain.


TIA
 
Vai2000,

If you want it to run within a process on server A, then no, you can't
use LoadFrom. If you just want to load the assembly from the server, then
you can do that, but you will have to deal with security restrictions (since
it was loaded from a network resource).

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top