26
SharePoint Workflow

Share Point 2010 Workflow

Embed Size (px)

DESCRIPTION

 

Citation preview

Page 1: Share Point 2010 Workflow

SharePoint Workflow

Page 2: Share Point 2010 Workflow

Outline

What’s New in SharePoint 2010 WorkflowDesigning Workflows with SPDDeveloping Workflows with VS 2010

Page 3: Share Point 2010 Workflow

Process Automation in SharePoint

SharePoint 2010

Event MessagingCollaboratio

n

LOB Apps

Workflow

Page 4: Share Point 2010 Workflow

Windows Workflow Foundation

Workflow engine shipped as part of the .NET 3.0 Framework

Model workflows as state machines or sequential steps

Long-running and stateful

Page 5: Share Point 2010 Workflow

"What's New" for SharePoint 2010

For the end-userNew targets to run a workflowVisio visualization

For the power-userImproved nested logicNew Task Process designerCustomizable OOB workflows

For the developerVisual Studio 2010 SharePoint toolsWorkflow EventsPluggable External Data Exchange Services

Page 6: Share Point 2010 Workflow

SharePoint 2010 Workflow Targets

Site List Item

Page 7: Share Point 2010 Workflow

Creating Workflows in Visio

Visio has SharePoint Workflow template

Allows you to create workflow design in VisioWorkflow can be exported to SharePoint Designer

Page 8: Share Point 2010 Workflow

Creating Workflows

demo

Page 9: Share Point 2010 Workflow

Outline

What’s New in SharePoint 2010 WorkflowDesigning Workflows with SPDDeveloping Workflows with VS 2010

Page 10: Share Point 2010 Workflow

SharePoint Designer Improvements

For DesignNew declarative workflow designerAdvanced task process designerInfoPath FormsVisio workflow designer

For DevelopmentReusable workflowsVisio visualizationsExport as WSP

Page 11: Share Point 2010 Workflow

SharePoint Designer Workflows

Improved declarative workflow designer

Page 12: Share Point 2010 Workflow

Nested logic in SharePoint Designer

Page 13: Share Point 2010 Workflow

The Task Process Designer

Page 14: Share Point 2010 Workflow

Prototype, Design and Develop

SharePoint 2010 offers new development process

Envision workflows in VisioImport into SharePoint Designer

Parameterize

Export to Visual Studio 2010Add code

Visio SPD VS10

Page 15: Share Point 2010 Workflow

SharePoint Designer Workflows

demo

Page 16: Share Point 2010 Workflow

Outline

What’s New in SharePoint 2010 WorkflowDesigning Workflows with SPDDeveloping Workflows with VS 2010

Page 17: Share Point 2010 Workflow

What’s new in Visual Studio 2010

Site WorkflowsASP.NET Form TemplatesNew eventsExternal Data Exchange

Page 18: Share Point 2010 Workflow

Developing Site Level Workflows

Site Workflows List / Item properties are nullNo auto-start

Page 19: Share Point 2010 Workflow

Creating ASP.NET Workflow Forms

Generates the required codeUpdates the elements.xml file

Available:AssociationInitiation

Page 20: Share Point 2010 Workflow

Workflow Events

Events fired during workflow lifetimeStarted, Completed…

ScenariosCall sub-workflows and wait for completionProvide more elaborate error handling

Familiar model for developers

Page 21: Share Point 2010 Workflow

SPWorklowEventReceiver

Base class for handling workflow events

Register on site / list / content type

public class MyWorkflowEventReceiver : SPWorkflowEventReceiver{ public override void WorkflowStarting( SPWorkflowEventProperties properties) { // your code here base.WorkflowStarting(properties); }}

Page 22: Share Point 2010 Workflow

External Data in SharePoint 2007

SharePoint Data

External Data

Correlated Events

Page 23: Share Point 2010 Workflow

Pluggable EDE Services

Interact with LOB systems by using custom External Data Exchange services

Requires low-level understanding of WF layer

You can write your own events

No partial trust

Call External System

Wait For Notification

Workflow Completed

WorkflowStarted

Page 24: Share Point 2010 Workflow

Flow of Events

Workflow

EDE Service

External System

Subscriptions

WorkflowRuntime

Call External Method

Raise Event

WCF Service

External System

Or

Page 25: Share Point 2010 Workflow

Developing Workflows with Visual Studio 2010

demo

Page 26: Share Point 2010 Workflow

Summary

What’s New in SharePoint 2010 WorkflowDesigning Workflows with SPDDeveloping Workflows with VS 2010