Welcome to SofiaDev.Org's Blogs Sign in | Join | Help

Април 2006 - Posts

Comparing and Sorting with Generics

I’m working on a project on which I need to sort some custom classes. Today, I’ve decided to play around and find easier and faster way to deal with different sorting scenarios with the use of generics. I’ve a simple class hierarchy with a root abstract
posted by branimir | 0 Comments

WSE 2.0 and Windows Authentication

I’m currently finishing on a project which uses WSE 2.0 SP3 as a communication platform. At one point I’ve had an interesting problem, which I couldn’t find solution for (at least not according to the specs and WSE documentation). So I’ve decided to share
posted by branimir | 0 Comments
Attachment(s): WSE Files.zip

Accessing Active Directory without specifying LDAP path

I’m writing up a class that wraps all of the functionality I need for accessing AD in one place.So how do I get the LDAP path to the domain controller? It’s easy – just get it from AD itself. Here’s the code: using (DirectoryEntry rootDse = (PreAuthenticate

Using nHibernate with .NET Framework 2.0 and a generic data factory implementation.

One of the projects currently I’m working on is using nHibernate as a data persistence framework. If you’re not familiar with the concept, check out Nikola’s article on nHibernate.   Ideally we want to write as little as possible code that deals
posted by branimir | 0 Comments
Attachment(s): ConsoleApplication4.zip

Passed 70-529 - TS: Microsoft .NET Framework 2.0 - Distributed Application Development

I was checking my profile at Vue this Friday, when I saw that the results for 50-529 are finally out. I've passed :). With this one I've 2/4 of the new .NET track passed in beta.
posted by branimir | 0 Comments

And here's the actual SPList implementation

So let’s pick it off from where we’ve left the last time. We’ve defined some base classes we’re going to use throughout our solution: BaseList – abstract base class An abstract configuration A concrete implementation of the configuration And a
posted by branimir | 0 Comments

Introduction to the SPS series - Defining a base class library

So let’s start with something simple. We’re going to define a few base classes, that will be used later on with all of the topics listed in the previous post. The base classes include: A base abstract configuration class that will contain some info
posted by branimir | 0 Comments