Welcome to MSDN Blogs Sign in | Join | Help

October 2008 - Posts

Using a Separate Application Domain to Test for Implemented Interfaces

Sometimes you need to load an assembly for use or inspection.  The problem is that loading an assembly is permanent for the lifetime of an application domain.  Sometimes this is acceptable and sometimes it is not.   Mike Shughrue and
Posted by coafrica | 1 Comments
Filed under:

It's the Little Things Part 1

As I get further and further into the Project Server Interface (PSI), I run up against gaps in my knowledge and some times the community's knowledge, as it exists in searchable form online.  This little "gotcha's" can sometimes mean hours
Posted by coafrica | 1 Comments

Interface Type Param Arrays to Operate on Many Objects

Here is an example: 1: private void Dispose( params IDisposable[] disposableObjects) 2: { 3: foreach (IDisposable disposableObject in disposableObjects) 4: { 5: if (disposableObject != null ) 6: { 7: disposableObject.Dispose(); 8: } 9: } 10: } I have
Posted by coafrica | 0 Comments
Filed under:

"Friends Don't Let Friends Delete Their Cache or Cancel Queue Jobs"

I thought I would repost something Brian Smith wrote.  Believe you me when I say follow his advice: http://blogs.msdn.com/brismith/archive/2007/11/02/friends-don-t-let-friends-delete-their-cache-or-cancel-queue-jobs.aspx
Posted by coafrica | 1 Comments
Filed under:

Assert.IsTrue(ThrowsException(() => object.Method()));

While reading this post , I came across an interesting line of code: 1: Assert.IsTrue(ThrowsException<UpdateException>(() => rb.Update(b2))); 2:   3: ThrowsException<E> is : 4:   5: private static bool ThrowsException<E>(Action
Posted by coafrica | 1 Comments

Microsoft SQL Server Data Services (SSDS): First Contact

I have been reading about cloud computing quite a bit.  I found that Microsoft is doing something really interesting under the code name "Sitka" (there is now a public beta, so the code word is no longer internal). Sitka, or SSDS, is cloud
Posted by coafrica | 1 Comments
Filed under:

PSI Calls Result in 401.2 2148074254 Entries in IIS Log

I implemented an integration service using the PSI for lifting data from a customer's system into Project Server.  The service ran like a champ in my development environment but upon deploying it at the customer site, I was flummoxed for a while
Posted by coafrica | 1 Comments
Filed under: ,
 
Page view tracker