Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

.NET

Workflow in SharePoint 2007


SharePoint Workflows and Visual Studio 2005

When you need Workflows that will have a larger impact than single-instance workflows, you won't be able to use the SharePoint Designer tool. Visual Studio 2005 (with the .NET Framework 3.0 properly installed extensions) has a designer for WF applications that lets you build sequential and state machine workflows, build your own custom activities, and much more. You can utilize this functionality to build your own SharePoint workflows by downloading a toolkit from Microsoft.

The SharePoint Server 2007 SDK includes the updated SDK as well as the Enterprise Content Management (ECM) Starter Kit. Included in the ECM starter kit are Visual Studio 2005 templates for creating SharePoint-specific sequential and state-machine workflows. In addition, the starter kit includes sample code for many different kinds of workflow scenarios.

Workflow Classes

While editing workflows using Visual Studio 2005 or SharePoint Designer might be helpful, many developers will want direct access to the Workflows that are running within the context of Windows SharePoint Services list items. This can be accomplished by code running on the SharePoint server through the SPWorkflow class, the entry point into the SharePoint-specific implementation of Windows Workflow Foundation. The following is a list of a few of the properties of the SPWorkflow class that can be queried at runtime by developers:

  • Author, the initiator of the workflow (integer).
  • AuthorUser, an instance of the SPUser class representing the author of the workflow.
  • HistoryList, a reference to an instance of the SPList object that contains the entire history of the workflow. This is useful for developers wishing to render the status of an open workflow, or the history of completed workflows.
  • IsCompleted, a Boolean indicating whether the workflow has been completed.
  • Tasks, an instance of the SPWorkflowTaskCollection class containing the list of tasks associated with the current workflow.

Some other useful classes include the SPWorkflowTemplateCollection class, which represents the list of workflow templates installed on a given site. The SPWorkflowTemplate class represents a single workflow template. Remember that a workflow template is the definition of the structure of the workflow, while an instance of a workflow is a running copy of that template. Finally, one of the most powerful SharePoint workflow classes is the SPWorkflowManager class that can start, run, or cancel workflows and query the list of active workflows running for a given item. All of these classes are documented in the WSS SDK available online at msdn2.microsoft.com/en-us/library/aa902527.aspx.


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.