Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Colby Africa
This Blog
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
About
ASP.NET Session
Automation
C#
Code Gallery
CSharp Code Header Designer
IExpress
Learning SharePoint
Microsoft Project
MpFx
PSI
PSI Extensions
QuickPatch
Rant
SharePoint
SSDS
Troubleshooting
Walkthroughs
WinProj
WPF
Archives
May 2009 (1)
April 2009 (1)
March 2009 (2)
February 2009 (3)
January 2009 (17)
December 2008 (4)
November 2008 (1)
October 2008 (7)
EPM Blogs
The Microsoft Office Project Product Group
Brian Kennemer's Projectified
Christophe Fiessinger's Blog
Chris Boyd: Program Manager, Project Programmability
October 2008 - Posts
Tuesday, October 28, 2008 4:51 PM
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:
C#
Tuesday, October 21, 2008 3:30 PM
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
Monday, October 20, 2008 8:07 PM
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:
C#
Monday, October 20, 2008 3:41 PM
"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:
Microsoft Project
Tuesday, October 07, 2008 8:19 PM
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
Sunday, October 05, 2008 8:31 PM
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:
SSDS
Friday, October 03, 2008 3:45 PM
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:
PSI
,
Troubleshooting