Click here to Skip to main content
Licence CPOL
First Posted 22 Aug 2008
Views 6,890
Downloads 47
Bookmarked 5 times

RemotingConfiguration Unconfigure

By | 1 Sep 2008 | Article
This article is about RemotingConfiguration and how to handle it.

Introduction

This article is about how to unconfigure after you have called RemotingConfiguration.Configure(<file.config>).

Background

I found a solution for RemotingConfiguration unconfigure which is quite simple after you understand what an AppDomain is. Read some tutorials (MSDN will be the best) on how to create an AppDomain.

Using the code

First, I create an AppDomain which I use in my project. For my purposes, I have:

//Code
void Execute(string filepath, string filename)
{
    string exeAssembly = Assembly.GetExecutingAssembly().GetName().Name;
        AppDomainSetup ads = new AppDomainSetup();
        AppDomain ad2 = AppDomain.CreateDomain("NewDomain", null, ads);
        RemotingDomainObjects mbrt = (RemotingDomainObjects)ad2.CreateInstanceAndUnwrap(
                exeAssembly,
                typeof(RemotingDomainObjects).FullName);
        mbrt.DoConfiguration(filepath + filename, Session.SystemState);
        AppDomain.Unload(ad2);
}
//EndCode

Pay attention to RemotingDomainObjects and RemotingDomainObjects.DoConfiguration. Here I have:

//Code
public class RemotingDomainObjects : MarshalByRefObject
    { 
        public void DoConfiguration(string str)
        {
            RemotingConfiguration.Configure(str);
            Customer obj = new Customer();
            Console.WriteLine("obj value = " + obj.get(108));
            Console.WriteLine("Press <Enter> to get the " + 
               "RemoteUnconfigure object or <Space> to exit!");
        }
    }
//EndCode

How it works

After AppDomain.Unload(ad2); is executed, all configurations on ad2 (AppDomain) are deleted. So you can configure over and over and there will be no problem. If you need additional information about my application, you can find me at hakkuss@yahoo.com.

License

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

About the Author

Mircea Sirghi

Software Developer

Moldova (Republic Of) Moldova (Republic Of)

Member

Graduate: Romania, University of Bucharest, Mathematical - Informatical faculty.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 1 Sep 2008
Article Copyright 2008 by Mircea Sirghi
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid