SharePoint / ASP.Net Development
Experiences from the field...
Navigation
   RSS 2.0
Categories
Entries by Month

 Thursday, June 26, 2008

The website for the SharePoint Best Practices conference is now up. Visit the site to see the agenda and register.

 

Thursday, June 26, 2008 12:12:06 PM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 

Occasionally, I see a question about determining if a given installation is MOSS or simply WSS. I am unaware of any Object Model method or property that indicates this, but I did find a different way. The User Profile service is a web service that is included in MOSS and not WSS. So, if the asmx file exists, then MOSS is installed.

Here is a code snippet:

string isapiFolder = SPUtility.GetGenericSetupPath("ISAPI");
string userProfileServicePath = Path.Combine(isapiFolder, "UserProfileService.asmx");
bool SharePointServerInstalled = File.Exists(userProfileServicePath);
Thursday, June 26, 2008 11:53:12 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
 Thursday, June 05, 2008

Daniel Larson has been sending smoke signals for the last week about using the RunWithElevatedPrivilege (RWEP) method. He finally goes into further detail today with his cautionary tale and a recommended SPUserToken work-around.

I have seen several programs that use RWEP to accomplish updates on behalf of a user. (In fact, I use the method in the Image Upload Web Part.) In this circumstance Daniel is advocating using impersonation via the SPUserToken for the "System Account." I believe this to be sound advice and will be updating my code accordingly.

Thursday, June 05, 2008 7:25:30 PM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
 Monday, June 02, 2008

We released an update to our product today. DeliverPoint :Permissions v3 includes a limited-functionality license for free. All the details can be found on http://www.deliverpoint.com.

All of us at Barracuda are excited about this product. And we've hit our groove with quarterly releases, which means you can expect much more going forward!

Monday, June 02, 2008 5:15:40 PM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 

The governance of SharePoint has been a hot topic lately, championed by Joel and the SharePoint product team. And many are discussing the best practices in deploying SharePoint. The MVPs who wrote the book (literally) are hosting a conference to discuss these topics.

Monday, June 02, 2008 9:58:47 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 

I will be part of the developer roundtable at the Regional SharePoint Conference being held by the SharePoint User Group of DC (SUGDC). Hope to see you there!  

Monday, June 02, 2008 9:48:50 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
Search

Further Reading...

Powered by: newtelligence dasBlog 1.9.7067.0

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2008, Paul Schaeflein

Send mail to the author(s) E-mail