Click here to Skip to main content
15,892,674 members
Articles / Programming Languages / Visual Basic
Article

How To Load A Class Into a New Appdomain, and Use It: Quick and Simple

Rate me:
Please Sign up or sign in to vote.
2.64/5 (9 votes)
1 Sep 2006CPOL1 min read 41.2K   993   14  
Appdomain loading

Introduction

This is a quick smash-and-grab type article. Download the code and you'll see how to load a class into a secondary appdomain and use it.

One of the things I miss most about VB6, is the ability to load an object into a separate process, detached from my current process, so if something goes wrong in that object, my main process does not hang (application isolation). In the VB6 world, we create an out of process activex EXE. The .NET way requires us to use Appdomains.

My first read on appdomains left me confused and asking myself "why is this so hard? All I want to do is create an out of process object and use it." After reading Wrox's book "Visual Basic.NET Reflection Handbook", the lights went on and I better understood how these types of things work.

I'm not an expert in this area, but this code will save you some time researching how to create an 'out of process' object the .NET way...

First, you create the app domain:

VB.NET
' Create the app domain
otherDomain = System.AppDomain.CreateDomain("DuffBeerIsGreatDomain")

Next, you create the object:

VB.NET
' Do it the easy way, but you have to pay attention to case in the object.classname

Dim herHello As echo.Hello = _
    CType(otherDomain.CreateInstanceAndUnwrap("echo", "echo.Hello"), echo.Hello)

Now, invoke a method on the object:

VB.NET
MessageBox.Show(herHello.echo("As createinstanceandunwrap"))

It is *that* simple. Now obviously, there are pitfalls, one of them being that in the above createinstanceandunwrap call, the echo.Hello parameter is case sensitive..

The sample code contains example calls which avoid this issue.

Enjoy!

History

  • 1st September, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --