jamin on March 25th, 2003

Well everything is set for moving this weekend. Ben and Lori will be in town to help out. Most of my stuff is packed. The main task ahead of me is to go through the endless pit that is the basement and sort through the crap down there. And I need [...]

Continue reading about And entropy continued to increase…

jamin on March 12th, 2003

One of the problems I’ve seen in my ongoing search to understand Remoting is the issue of security when you publish a remotable object over a tcp channel. I spoke with Miguel and got some ideas from him and coded the following little remoting example which now simply publishes a “factory” which exposes a [...]

Continue reading about Adding Custom Basic Security to .NET Remoting

jamin on March 4th, 2003

I’ve now got a simple IRC bot that I can control remotely. See previous stories to see the progression and get a feel for where this is going:
.NET Remoting with Mono.NET Remoting with Mono Part IIWriting IRC bots in Perl and C#
Click below for the latest source code.
Main.cs:

using System;
using Sharkbite.Irc;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
namespace [...]

Continue reading about Remote Control IRC Bot