|
Navigation
Categories
Entries by Month
| July, 2008 (4) |
| June, 2008 (6) |
| May, 2008 (2) |
| March, 2008 (5) |
| December, 2007 (1) |
| October, 2007 (1) |
| September, 2007 (2) |
| May, 2007 (1) |
| April, 2007 (5) |
| October, 2006 (1) |
| July, 2006 (2) |
| June, 2006 (6) |
| January, 2006 (2) |
| December, 2005 (6) |
| November, 2005 (9) |
| October, 2005 (9) |
| September, 2005 (3) |
| August, 2005 (11) |
| July, 2005 (20) |
| June, 2005 (3) |
| May, 2005 (5) |
| April, 2005 (5) |
| March, 2005 (5) |
| February, 2005 (5) |
| January, 2005 (13) |
| December, 2004 (10) |
| November, 2004 (6) |
| October, 2004 (2) |
| September, 2004 (7) |
| August, 2004 (8) |
| July, 2004 (8) |
| June, 2004 (4) |
| May, 2004 (13) |
| April, 2004 (14) |
| March, 2004 (33) |
| February, 2004 (1) |
| May, 2003 (6) |
| April, 2003 (5) |
| March, 2003 (4) |
| February, 2003 (1) |
| January, 2003 (6) |
|
|
|
 Thursday, June 26, 2008
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 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.
 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!
 Friday, May 16, 2008
Windows Network Load Balancing error:
Starting update... Going to bind NLB... Bind operation failed. Update failed with status code 0x80041002
Turns out that the Network Load Balancing service must be installed before attempting to configure the cluster.
 Thursday, May 01, 2008
Introduction
The out-of-the-box Image Web Part can be used to display an image on a site. The web part has a property that specifies the web address of the image. For most site members, this is problematic – how do they get an image on the web site? And how do they determine the web address? For power users, these steps are understood, but are time consuming to complete.
The Image Upload Web Part will allow the site member to browse their local computer for the image. Once the image is selected, the web part will automatically upload the image to a location specified by an administrator and set the web address.
The result is a solution that works for both groups. Site members can display pictures from their computer and administrators can provide storage for those pictures with changing the permissions of their site and with minimal training.
More information available in the download or at the project's page on CodePlex. ImageUploadv3.zip (.16 KB)
 Thursday, March 20, 2008
 Tuesday, March 18, 2008
I will be speaking at the MOSS Camp in St. Louis on April 5th. I will giving an overview of the Porting Workflows project and community site.
Hope to see you there!
|
|
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
E-mail
|