Note that there are some explanatory texts on larger screens.

plurals
  1. POReference remotely located assembly (web uri) from locally installed application?
    text
    copied!<p>We have a .NET application for Windows which is installed locally by Microsoft Installer. Now we have the need to use additional assemblies which are located online at our Web Servers. We'd like to refer to a remote uri like <a href="https://www.ourserver.com/OurProductName/ExternalLib.dll" rel="nofollow noreferrer">https://www.ourserver.com/OurProductName/ExternalLib.dll</a> and reveal additional functionality, which is described roughly by a known common ("AddIn/Plugin") Interface. These are <strong>not</strong> 3rd Party Plugins, we just want be able to exchange parts of the application frequently, without the need to have frequent software updates.</p> <p>Our first idea was to add some kind of "remote refence" in Visual Studio by setting the path to the remote assembly uri. But Visual Studio downloaded the assembly immediately to a temporary directory, adding a reference to it.</p> <p>Our second attempt then, is simply using a <code>WebRequest</code> (or <code>WebClient</code>) to retrieve a binary stream of the Assembly, loading it "from image" by using <code>Assembly.Load(...)</code>. This actually works, but is not very elegant and requires more additional programming for verification etc.</p> <p>We hoped Clickonce would provide useful techniques but apparently it's suitable for standalone applications only. (<em>Correct me?</em>)</p> <p><strong>Is there a way (.net native or by framework/api) to reference remotely located assemblies?</strong></p> <p>Thanks in advance and have a happy easter!</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload