Archive for the "SharePoint Services 3.0" category

 

Silverlight + SharePoint integration (Silverlight Blueprint for SharePoint)

 
Overview Microsoft provides a Blueprint for integrating Silverlight 2 applications with SharePoint sites. The Blueprint includes guides to configure SharePoint runtime environment for hosting Silverlight 2 application, as well as VS 2008 development environment for building Silverlight 2 wrapper webparts. Besides, 5 examples application are included in the Blueprint. Reference Silverlight Blueprint [...]

Continue reading

 
 

Renaming a SharePoint 2007 / WSS 3.0 Server

 
Overview Sometimes you have to rename a Server, it can easily be done in "System properties". However, if the Server host a SharePoint Services/Server, then renaming will cause SharePoint sites to stop functioning. Eventually I found a Blog showing the steps to rename a SharePoint 2007 / WSS 3.0 Server, and I have repost [...]

Continue reading

 
 

Uninstall WSS 3.0 MICROSOFT##SSEE Database

 
Overview I come across a situation that I was installing WSS 3.0 but the "SharePoint Products and Technologies Configuration Wizard" failed at half-way and it keep crashing even after I uninstall and reinstall WSS. The result is the broken "MICROSOFT##SSEE" Database which is the configuration database created by WSS. After I followed instructions of [...]

Continue reading

 
 

Deploy old SQL Reporting Services Reports to SharePoint Site

 
Overview In my previous post, I discussed about how to setup SharePoint Integrated SQL Server Reporting Services (RS). Now that I have the Integrated RS ready, I can deploy the reports to the SharePoint site. But wait, how can I deploy a Pre-SP2 RS report to SharePoint site? Below shows the steps I used. [...]

Continue reading

 
 

Guides on setting up SharePoint integrated SQL Server Reporting Services

 
Overview This is going to be a long post, in this post I am trying to describe how I setup Integrated SQL Server Reporting Services on a Standalone SharePoint Server. According to my understanding, these steps can be applied to SharePoint Services too. Software Configuration SQL Server 2005 [...]

Continue reading

 
 

Customizing Web Parts Outlook with XSL Editor

 
Overview Out-of-the-box web parts in MOSS is very useful in development. However some of their looking might not fit your needs. However, the looking and style of web parts can be customized by editing the XSL(Extensible Stylesheet Language) file. Steps Navigate to the Page containing the Web part you [...]

Continue reading

 
 

Using Features and Solutions to do Deployment in MOSS / WSS

 
Overview "Feature" is a new concept in MOSS / WSS 3.0, it defines a collection of functionality or site customization in a SharePoint site (For example, adding "Content Type", "Columns" or "Workflow"). Feature can be installed into a specific server machine, and then be activated or deactivated on specific sites. A Feature must [...]

Continue reading

 
 

Adding Workflow Task Link in Auto-generated Email

 
Overview Sending Email is a common activity in MOSS workflows. When alerting the task assignee to finish the task, it is quite a normal thought to include the Workflow Task Link in the Email. Below is how to do this. Reference Task URL in workflows.. Code Snippet [...]

Continue reading

 
 

Copying Files between Document Libraries in WSS 3.0 Workflow

 
Overview Sometimes you would need to move/copy files to different Document Libraries during a workflow process, but when using ‘File.CopyTo’ or ‘File.MoveTo’ method there may be build errors. If this is the case, then you can use the following snippet (Copied from ‘cwogle’ ) to manually ‘copy’ a file to the destination Document Library. [...]

Continue reading

 
 

Update Workflow Task properties with ‘UpdateTask Activity’

 
吹水 OK~ 之前幾個post打左咁多英文, 都係時候講下廣東話啦… :p 話說我今個星期接到單非常好玩既job, 就係無人做過既 WSS/MOSS Workflow 啦~ 個期仲要鬼咁急, 不過只係做demo啫~ 由於我係用 Sequential Workflow + Looping  + Create / Update / Delete Tasks, 所以出現好多問題, 最後我用左個折衷方法就係只用一個task, 靠update佢既 "Title" 同 "AssignedTo" properties 黎 "扮" 不同既 tasks. 不過最後我發覺原來要 update 一個 task 既 properties 係幾煩既…. Reference Task reassignments [...]

Continue reading