Click here to Skip to main content
15,892,517 members
Articles / Programming Languages / C#

Marshalling For Remote Persistence

Rate me:
Please Sign up or sign in to vote.
4.64/5 (4 votes)
24 May 20073 min read 31.6K   181   20  
An article on remote persistence implementation using .NET marshal by value and XML.
/* Tetyana Loskutova http://tetyana.wordpress.com */
using System;

using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Http;
using System.Runtime.Remoting.Channels.Tcp;

using RemotingXml.PersistentClasses;

/*
 * Server class. Starts Remoting server services
 */

namespace RemotingXml.Server
{
    class XmlServer
    {
        static void Main(string[] args)
        {
            // Setting up http channel
            HttpChannel channel = new HttpChannel(65101);
            ChannelServices.RegisterChannel(channel);

            Type XmlHandler = Type.GetType("RemotingXml.PersistentClasses.XmlHandler, PersistentClasses");
            RemotingConfiguration.RegisterWellKnownServiceType(
                    XmlHandler,
                    "XmlHandlerEndPoint",
                    WellKnownObjectMode.Singleton
                );
            Console.WriteLine("XmlHandler is ready.");

            // Keep the server running until the user presses
            // the Enter key.
            Console.WriteLine("Services are running. Press Enter to end...");
            Console.ReadLine();
        }
        // end Main
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


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

Comments and Discussions