The Direct Project – Trust Bundles

Introduction One of the problems with administering a Direct server is that you must find and install anchors for any destinations you want to transmit messages to.  One place to find anchors is the DirectTrust site.  I’ll show a quick and dirty method of getting these anchors into your system. Trust Bundles A trust bundle … Read moreThe Direct Project – Trust Bundles

The Direct Project – Introduction

Summary The Direct Project is an encrypted email package that can be setup and configured to allow doctors to send protected health information (PHI) from one system to another over the Internet.  For those who work in the health software industry, this system is necessary in order to meet Meaningful Use Stage 2 (MU2) certification.  … Read moreThe Direct Project – Introduction

Stack Exchange Redis Connection Pooling

Summary The Stack Exchange Redis client for C# is fast and reliable.  Unfortunately, it’s difficult to find quality information on the details of this client.  In this blog post I’m going to demonstrate how to setup a Redis connection in C# using the Stack Exchange Redis client.  This connection technique will reuse connections instead of … Read moreStack Exchange Redis Connection Pooling

So You Want to Build Software For a Living (Your First Programming Class)

In this post, I’m going to give you, the potential Computer Scientist, the information you’ll need to get through that first computer programming class.  This is not an infomercial and I’m not selling anything.  My goal is to try and help students who are not learning the material because their class size is astronomical or … Read moreSo You Want to Build Software For a Living (Your First Programming Class)

ISessionStateItemCollection interface

Summary In previous programming projects, I have used the ISessionStateItemCollection object to override the session state collection object built into HttpContext.Current.  In this blog post I’m going to demo a bug in Microsoft’s sample code used to show how to create a custom SessionStateItemCollection. Where to Find the Sample Code Microsoft provides a lot of … Read moreISessionStateItemCollection interface

Mocking HttpContext – Adding Sessions

Summary In one of my previous posts (See: Mocking HttpContext), I created a HttpContext factory and a mocked HttpContext object that can be used to simulate the HttpContext.Current object used by methods under a unit test.  In this post, I’m going to add the Session capabilities to this object so you can unit test your … Read moreMocking HttpContext – Adding Sessions