vote up 2 vote down star

I want the given application (Windows Service) to act as a remoting server as well as remoting client. In production I will run the two instances of my application monitoring each other over .NET Remoting and will report the failures accordingly.

I have written a basic pieces, and getting "The channel 'tcp' is already registered" exception..I want to set the channel configuration programmatically.

flag

3 Answers

vote up 1 vote down check

A channel with a specific port number can only be created by one application instance. You need to use different port numbers and channel names for each instance.

This requires using seperate channel templates (if you are using templates?).

link|flag
The ports are different.. – Khurram Aziz May 8 at 12:44
@Khurram Aziz - So each instance opens different ports (rather than each instance opens multiple ports, but uses different ones)? – Stevo3000 May 8 at 12:55
@Khurram Aziz - Have you got both channels using different names? – Stevo3000 May 8 at 12:58
Specifying name while creating an instance of TcpServerChannel resolved the issued. – Khurram Aziz May 8 at 14:28
vote up 2 vote down

You can only create the same channel with the same portnumber once per AppDomain. Is that what's wrong?

link|flag
It seems... The Service1 has "VitalSigns" server listening at port 9001 and Service2 has "VitalSigns" server listening at port 9002. The Service1 will check vital signs of Service2 and Service 2 will check of Service1 If I dont run the server in one instance and check other's it work fine...but I want server/client in each – Khurram Aziz May 8 at 12:46
vote up 2 vote down

As others have said, if you don;t specify the channel name, the code by default uses "tcp" and every channel has to have a unique name: So specify a unique name for each channel you open...

        int tcpPort = 82131;
        // ------------------------------------------------------------
        BinaryServerFormatterSinkProvider serverProv =
            new BinaryServerFormatterSinkProvider();
        serverProv.TypeFilterLevel = TypeFilterLevel.Full; 
        RemotingConfiguration.CustomErrorsMode = CustomErrorsModes.Off;

        serverProv.TypeFilterLevel = TypeFilterLevel.Full;
        IDictionary propBag = new Hashtable();
        // -----------------------------------------
        bool isSecure = [true/false];
        propBag["port"] = tcpPort ;
        propBag["typeFilterLevel"] = TypeFilterLevel.Full;
        propBag["name"] = "UniqueChannelName";  // here enter unique channel name
        if (isSecure)  // if you want remoting comm to be secure and encrypted
        {
            propBag["secure"] = isSecure;
            propBag["impersonate"] = false;  // change to true to do impersonation
        }
        // -----------------------------------------
        tcpChan = new TcpChannel(
            propBag, null, serverProv);
        ChannelServices.RegisterChannel(tcpChan, isSecure);
        // --------------------------------------------

        string uRI = MyUniversalResourceIndicatorName;
        // ---------------------------------------------

        RemotingConfiguration.RegisterWellKnownServiceType(
            typeof(ImportServiceManager), uRI ,
            WellKnownObjectMode.SingleCall);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.