2 using System.Collections;
3 using System.Collections.Generic;
5 using System.Runtime.Remoting;
6 using System.Runtime.Remoting.Channels;
7 using System.Runtime.Remoting.Channels.Tcp;
8 using System.Runtime.Remoting.Channels.Http;
9 using System.Runtime.InteropServices;
11 namespace Seci.Remoting
26 [GuidAttribute(
"D5DD2558-7C71-3462-8323-68C2DE67C86D"), ComVisible(
true)]
27 [ProgId(
"Seci.Remoting.ComNetInterface")]
39 IDictionary properties =
new Hashtable();
40 properties.Add(
"secure",
true);
41 properties.Add(
"connectionTimeout", 5000);
42 properties.Add(
"tokenimpersonationlevel",
"impersonation");
45 TcpClientChannel clientChannel =
new TcpClientChannel(properties, null);
46 ChannelServices.RegisterChannel(clientChannel,
true);
This class is for accessing SECI via DotNet Remoting. This class can return values from SECI and also...
static Remoting.ReadWriteRemoting _client