Introducing Windows Workflow Foundation. Building Basic Activities. Building Composite Activities. Activity Development Advanced Features

Size: px
Start display at page:

Download "Introducing Windows Workflow Foundation. Building Basic Activities. Building Composite Activities. Activity Development Advanced Features"

Transcription

1

2 SOA223

3 Introducing Windows Workflow Foundation Building Basic Activities Building Composite Activities Activity Development Advanced Features

4 A workflow is a set of tasks or activities organized in a pattern To solve a task or model a business process Usually involves interacting with systems or users

5 Combination Human workflow Peoples and roles Dynamic based on users Uses unstructured data e.g., Document review System workflow Applications and services Prescribed flow Structured data e.g., Supply chain management Line-of-business applications including users and services New-hire provisioning, helpdesk ticket, work item Non-traditional.NET developer tasks such as user interface navigation

6 Some workflows execute start to finish More often, workflows execute in segments Waiting for input from systems or users between active processing Workflows involve business rules 1. Submit Expense Report For Approval 2. Validate expense report (per diem rates, allowed expenses, total) 3. If not valid, reject and end processing 4. Notify Manager that approval is requested 5. WAIT for manager approval 6. IF the manager does not approve in time, notify next manager 7. WAIT for elevated approval 8. IF Approval, OK expenses and pay, otherwise, reject 9. IF timeout, notify employee to resubmit

7 Logic and business rules embedded in code Workflow tasks are disconnected in the code Process steps are scattered not declarative Managing instances of a process can be difficult State management falls to the developer Managing the current position and related state Visibility is difficult What has happened and is currently happening?

8 Single workflow framework for the Microsoft platform Used in Microsoft Office SharePoint Server applications and Microsoft Dynamics CRM today more to come Available to all third parties to build on A toolkit for building workflow into your application Not a server product Does not replace Microsoft BizTalk Server Like Microsoft ASP.NET (you still have to build your Web site) Targeted at.net developers

9 What you get: Runtime Runtime Services Base Activity Library Rule engine Visual designers What you build: Custom activities Workflows Host application Your own services Custom workflow designer 1. Custom Host Application Custom Workflows Custom Activities Workflow Foundation Base Activity Library Workflow Runtime Runtime Services Workflow Designer Rule engine

10 Runtime/Execution State Management Bookmarking Business Rules Communications Tracking Dynamic Update Do some work Stop and wait Do some work Stop and wait Do some work

11

12 Activities are the building blocks of a workflow Model for reuse and encapsulation Similar to UI design with controls on a form Controls provide the function for a form Controls define what the form does and how it acts Each control has properties, events, methods Come in two different types Basic: performs simple operation, e.g., send a message Composite: controls the execution of child activities

13 Base set of activities to build workflows Control Flow Communication Scoping Data/Rule-driven Some activities can be extended: Sequence, State, CallExternalMethod, HandleExternalEvent You will often need custom activities

14 Designer Activity core is a class Attributes define related classes for design and runtime Override base methods Interfaces for certain behaviors Custom Activity Activity Validator [Designer(typeof(CustomActivityDesigner))] [Validator(typeof(CustomActivityValidator))] public class CustomActivity : Activity, ICompensatableActivity { protected override ActivityExecutionStatus Cancel(ActivityExecutionContext ctx){ } protected override HandleFault (ActivityExecutionContext ctx, Exception ex){ } ActivityExecutionStatus Compensate(ActivityExecutionContext ctx){ } }

15 Derive from System.Workflow.ComponentModel.Activity Define properties and events Override Execute method

16 public partial class ConsoleWriteLine : Activity { private string texttowrite; public string OutputText { get { return texttowrite; } set { texttowrite = value; } } } protected override ActivityExecutionStatus Execute( ActivityExecutionContext executioncontext) { Console.WriteLine(OutputText); return ActivityExecutionStatus.Closed; }

17 Runtime Activity Canceling Compensating Initialized Executing Closed Faulting

18 Each workflow is a class instance The data of the workflow is in the properties Input parameters map to public properties Activities read/write properties on the workflow Output parameters drawn from public properties

19 Workflows are ideally declarative and composable Need a way to bind data between activities Dependency properties provide support for Binding properties between activities Persistence of state Promoting property values from composite activities

20

21

22 Reuse existing logic by deriving from base class e.g., Derive from sequence Use composite activity designer to define children Much like designing a sequential workflow Useful for building reusable collection of logic Contains properties and events like other activities Simplest implementation

23 Explicitly control child activity execution e.g., For each, conditional execution, parallel Adds some complexity Must manage activity execution Handle cases of faulting or canceling Provides more control Monitor activities for state changes Extend child activities with custom properties

24 Composite activities contain other activities May need to expose properties of children Promote the property from the child activity Creates a dependency property on the composite Binds the child activity property to the new property Consumers of composite activity can get/set the value Value automatically propagated to the child

25 Set value for timeout Promote Timeout Duration

26

27 Activity Designer Control the design time experience for your activity Look and feel + interactive features Activity Validator Validate your activities configuration at compile time Listener activities Write activities which can respond to external events

28

29 Windows Workflow Foundation provides a framework for managing business logic in an app Services simplify building complex applications Workflows are comprised of activities Base activity library gets you part-way there Activities are your unit of reuse Activities can be basic or composite Dependency properties provide data binding

30 Moving to a Blended World: Software + Service SaaS Accounting Solution IT Service Portfolio Software+Services Connected User Experience Accounting Portal Customer Support Web 2.0 Composition SaaS Customer Support Solution Manufacturing Enterprise User Core Applications Commodity Applications Devices and People

31 WF BizTalk It depends Inside Application Between Applications Between Organizations UI Page Controller Dynamically Updateable Process Flow Long Running Business Logic Long Running Business Process Message Broker (EAI) Web Service Composition Web Service Composition Enterprise Service Bus (ESB) B2B Integration Abstraction of Rules from Business Logic Abstraction of Rules from Business Process Enterprise Rule Repository

32

33 Breakout Sessions SOA321 Building Microsoft Windows Workflow Foundation Enabled Windows Communication Foundation Services in.net Framework 3.5 SOA322 Rules Engine Use and Extensibility in Microsoft Windows Workflow Foundation Chalk-Talks SOA10 Implementing UI Page Flow with Windows Workflow Foundation SOA01 Incorporating Microsoft Windows PowerShell to Manage Windows Communication Foundation and Windows Workflow Foundation Applications Hands-on Labs SOA13 Microsoft Windows Workflow Foundation Introductory Lab SOA15 Creating Custom Activities with Windows Workflow Foundation

34 Technical Communities, Webcasts, Blogs, Chats & User Groups Microsoft Learning and Certification Microsoft Developer Network (MSDN) & TechNet Trial Software and Virtual Labs

35 Take part in the RFID demo at the SOA and WEB Services Booth - for a chance to win one!!!

36 Complete an evaluation on CommNet and enter to win!

37 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

How To Build A Financial Messaging And Enterprise Service Bus (Esb)

How To Build A Financial Messaging And Enterprise Service Bus (Esb) Simplifying SWIFT Connectivity Introduction to Financial Messaging Services Bus A White Paper by Microsoft and SAGA Version 1.0 August 2009 Applies to: Financial Services Architecture BizTalk Server BizTalk

More information

Integration Architecture & (Hybrid) Cloud Scenarios on the Microsoft Business Platform. Gijs in t Veld CTO BizTalk Server MVP BTUG NL, June 7 th 2012

Integration Architecture & (Hybrid) Cloud Scenarios on the Microsoft Business Platform. Gijs in t Veld CTO BizTalk Server MVP BTUG NL, June 7 th 2012 Integration Architecture & (Hybrid) Cloud Scenarios on the Microsoft Business Platform Gijs in t Veld CTO BizTalk Server MVP BTUG NL, June 7 th 2012 Agenda Integration architecture; what & why? On-premise

More information

David Chou. david.chou@microsoft.com Architect Microsoft

David Chou. david.chou@microsoft.com Architect Microsoft David Chou david.chou@microsoft.com Architect Microsoft Business Online Services from Microsoft Services Services Estimate custom design Unstructured Get specs from customer Validate specs with Tech

More information

Microsoft SOA Roadmap

Microsoft SOA Roadmap Microsoft SOA Roadmap Application Platform for SOA and BPM Thomas Reimer Enterprise Technology Strategist, SOA and BPM Microsoft Corporation (EMEA) Trends and Roadmap THE FUTURE OF DYNAMIC IT Market Trends

More information

A SharePoint Developer Introduction

A SharePoint Developer Introduction A SharePoint Developer Introduction Hands-On Lab Lab Manual HOL7 - Developing a SharePoint 2010 Workflow with Initiation Form in Visual Studio 2010 C# Information in this document, including URL and other

More information

The webmethods ESB. The Foundation of your SOA. Jean-Michel Ghyoot, Principal Solution Architect, March 28, 2013

The webmethods ESB. The Foundation of your SOA. Jean-Michel Ghyoot, Principal Solution Architect, March 28, 2013 The webmethods ESB The Foundation of your SOA Jean-Michel Ghyoot, Principal Solution Architect, March 28, 2013 2013 Software AG. All rights reserved. 2 2 Agility Process & Integration 3 Integration? INTEGRATION

More information

Developing Visual Studio Workflows and Activities for SharePoint Sites

Developing Visual Studio Workflows and Activities for SharePoint Sites Developing Visual Studio Workflows and Activities for SharePoint Sites Steve Heaney Product Development Manager Nintex steve.heaney@nintex.com Agenda Workflow authoring scenarios Windows Workflow Foundation

More information

Client. Applications. Middle Tier. Database. Infrastructure. Leading Vendors

Client. Applications. Middle Tier. Database. Infrastructure. Leading Vendors Client Applications Development Management Middle Tier Database On Premises Infrastructure Cloud Leading Vendors PC, Phone, Browser Your business applications Running on the Microsoft Application Platform

More information

Lab Answer Key for Module 6: Configuring and Managing Windows SharePoint Services 3.0. Table of Contents Lab 1: Configuring and Managing WSS 3.

Lab Answer Key for Module 6: Configuring and Managing Windows SharePoint Services 3.0. Table of Contents Lab 1: Configuring and Managing WSS 3. Lab Answer Key for Module 6: Configuring and Managing Windows SharePoint Services 3.0 Table of Contents Lab 1: Configuring and Managing WSS 3.0 1 Information in this document, including URL and other Internet

More information

Building cross-platform Modern Apps: the Design perspective. Amit Bahree, Senior Director, Avanade @bahree, http://desigeek.com

Building cross-platform Modern Apps: the Design perspective. Amit Bahree, Senior Director, Avanade @bahree, http://desigeek.com Building cross-platform Modern Apps: the Design perspective Amit Bahree, Senior Director, Avanade @bahree, http://desigeek.com Agenda Mobile Platforms CoIT Development Options Xamarin Architecture Patterns

More information

BEA BPM an integrated solution for business processes modelling. Frederik Frederiksen Principal PreSales Consultant BEA Systems

BEA BPM an integrated solution for business processes modelling. Frederik Frederiksen Principal PreSales Consultant BEA Systems BEA BPM an integrated solution for business processes modelling Frederik Frederiksen Principal PreSales Consultant BEA Systems Agenda What is BPM? BEA AquaLogic BPM Suite Industry View Customers BPM and

More information

Administration Guide for the System Center Cloud Services Process Pack

Administration Guide for the System Center Cloud Services Process Pack Administration Guide for the System Center Cloud Services Process Pack Microsoft Corporation Published: May 7, 2012 Author Kathy Vinatieri Applies To System Center Cloud Services Process Pack This document

More information

Introducing Microsoft SharePoint Foundation 2010 Executive Summary This paper describes how Microsoft SharePoint Foundation 2010 is the next step forward for the Microsoft fundamental collaboration technology

More information

Best of SharePoint 2010. Composites

Best of SharePoint 2010. Composites Best of SharePoint 2010 Composites Agenda Overview Composite Applications Developer Investments Microsoft SharePoint 2010 The business collaboration platform for the Enterprise and the Web Microsoft SharePoint

More information

Software + Services Using WCF and WF

Software + Services Using WCF and WF Software + Services Using WCF and WF Michael Stiefel Reliable Software, Inc. www.reliablesoftware.com Pre-requisites for this presentation: 1) Understand WCF 2) Understand WFC Level: Intermediate Goals

More information

Service Oriented Architecture 1 COMPILED BY BJ

Service Oriented Architecture 1 COMPILED BY BJ Service Oriented Architecture 1 COMPILED BY BJ CHAPTER 9 Service Oriented architecture(soa) Defining SOA. Business value of SOA SOA characteristics. Concept of a service, Enterprise Service Bus (ESB) SOA

More information

New Features in Neuron ESB 2.6

New Features in Neuron ESB 2.6 New Features in Neuron ESB 2.6 This release significantly extends the Neuron ESB platform by introducing new capabilities that will allow businesses to more easily scale, develop, connect and operationally

More information

Building Composite Application Services with Windows Server AppFabric. Rick G. Garibay @rickggaribay

Building Composite Application Services with Windows Server AppFabric. Rick G. Garibay @rickggaribay Building Composite Application Services with Windows Server AppFabric Rick G. Garibay @rickggaribay About Me General Manager, Connected Systems Practice at Neudesic Microsoft MVP, Connected Systems Microsoft

More information

Windows Azure Pack Installation and Initial Configuration

Windows Azure Pack Installation and Initial Configuration Windows Azure Pack Installation and Initial Configuration Windows Server 2012 R2 Hands-on lab In this lab, you will learn how to install and configure the components of the Windows Azure Pack. To complete

More information

Automating Business Processes Using SharePoint Designer

Automating Business Processes Using SharePoint Designer Automating Business Processes Using SharePoint Designer Jeff MacKenzie Director of Technology Edgewater Technology www.edgewater.com jmackenzie@edgewater.com Contents What is a workflow? Types of SharePoint

More information

Service Virtualization andRecycling

Service Virtualization andRecycling Message Driven SOA -- Enterprise Service Oriented Architecture Service virtualization and component applications Driving reusability and ROI in SOA deployments --- Atul Saini Entire contents Fiorano Software

More information

Introduction. C a p a b i l i t y d o c u m e n t : B i z T a l k S e r v e r

Introduction. C a p a b i l i t y d o c u m e n t : B i z T a l k S e r v e r Microsoft Technology Practice Capability document Overview Microsoft BizTalk Server is the middleware application server providing Business Process Management, Process Automations along with SOA / ESB

More information

Amplify Service Integration Developer Productivity with Oracle SOA Suite 12c

Amplify Service Integration Developer Productivity with Oracle SOA Suite 12c Amplify Service Integration Developer Productivity with Oracle SOA Suite 12c CON7598 Rajesh Kalra, Sr. Principal Product Manager Robert Wunderlich, Sr. Principal Product Manager Service Integration Product

More information

The Application of BizTalk in Public Sector

The Application of BizTalk in Public Sector The Application of BizTalk in Public Sector with BizTalk Server 2006 Chris Axton Application Platform Specialist NSW Public Sector Rahul Garg National BizTalk Specialist Microsoft Australia Public Sector

More information

Exploring the options to deploy Microsoft SharePoint in the Cloud.

Exploring the options to deploy Microsoft SharePoint in the Cloud. Exploring the options to deploy Microsoft SharePoint in the Cloud. Carlos Camacho NWN Corporation Overview of Office 365 Overview of SharePoint Online Demo of SharePoint Online Admin Console Overview of

More information

Advanced Process Modeling (BPMN) Data Connectivity & Data Graphics Understanding Visio Services D t a ab a a b s a e s e Mod o e d l e ing

Advanced Process Modeling (BPMN) Data Connectivity & Data Graphics Understanding Visio Services D t a ab a a b s a e s e Mod o e d l e ing Visio 2010 Tips and Techniques Advanced Concepts and Solutions Mr. David A. Edson, M.Arch., MCP, MVP Visibility.biz CTE / Director of Consulting Services Agenda Advanced Process Modeling (BPMN) Data Connectivity

More information

Microsoft Technical Computing The Advancement of Parallelism. Tom Quinn, Technical Computing Partner Manager

Microsoft Technical Computing The Advancement of Parallelism. Tom Quinn, Technical Computing Partner Manager Presented at the COMSOL Conference 2010 Boston Microsoft Technical Computing The Advancement of Parallelism Tom Quinn, Technical Computing Partner Manager 21 1.2 x 10 New Bytes of Information in 2010 Source:

More information

Workflow and Forms Services for People-Driven Process Management

Workflow and Forms Services for People-Driven Process Management Workflow and Forms Services for People-Driven Process Management AuraTech Pte Ltd 30 Robinson Road, #04-01B Robinson Towers, Singapore 048546 http://www.consultaura.com PH: 6224 9238 Call AuraTech for

More information

CRM Accelerators Overview

CRM Accelerators Overview CRM Accelerators Overview Microsoft Dynamics CRM November 2008 CRM Accelerators are a range of free-of-charge add-on solutions which are being developed for Microsoft Dynamics CRM 4.0 customers and partners.

More information

Hitchhiker's Guide to Demand Management 2013

Hitchhiker's Guide to Demand Management 2013 Hitchhiker's Guide to Demand Management 2013 Project 2013 Case Study Prepared for Contoso February 2013 Prepared by Steven Haden Published by Project Server Content Publishing The information contained

More information

Spring 2011 Conference Sandanski, May 13th 15th 2011 Oracle SOA Suite 11g Rapid service integration and process automation with a no-coding approach

Spring 2011 Conference Sandanski, May 13th 15th 2011 Oracle SOA Suite 11g Rapid service integration and process automation with a no-coding approach Spring 2011 Conference Sandanski, May 13th 15th 2011 Oracle SOA Suite 11g Rapid service integration and process automation with a no-coding approach George Moykin Senior Consultant, Middleware george.moykin@oracle.com

More information

Making SharePoint Work with Workflow. Robert L. Bogue Rob.Bogue@ThorProjects.com 3 Part Presentation Series

Making SharePoint Work with Workflow. Robert L. Bogue Rob.Bogue@ThorProjects.com 3 Part Presentation Series Making SharePoint Work with Workflow Robert L. Bogue Rob.Bogue@ThorProjects.com 3 Part Presentation Series SharePoint 2010 Workflow with SharePoint Designer and Visio Robert Bogue Rob.Bogue@ThorProjects.com

More information

Authoring for System Center 2012 Operations Manager

Authoring for System Center 2012 Operations Manager Authoring for System Center 2012 Operations Manager Microsoft Corporation Published: November 1, 2013 Authors Byron Ricks Applies To System Center 2012 Operations Manager System Center 2012 Service Pack

More information

SharePoint Operational Governance. al 1

SharePoint Operational Governance. al 1 SharePoint Operational Governance al 1 About the Speaker Dan Lewis Senior Consultant, Microsoft Corporation U.S. Enterprise Services Consulting for IT Operations MCITP, MCTS, MCAD, MOF Email: dan.lewis@microsoft.com

More information

The ESB and Microsoft BI

The ESB and Microsoft BI Business Intelligence The ESB and Microsoft BI The role of the Enterprise Service Bus in Microsoft s BI Framework Gijsbert Gijs in t Veld CTO, BizTalk Server MVP gijs.intveld@motion10.com About motion10

More information

Better Together with Microsoft Dynamics CRM

Better Together with Microsoft Dynamics CRM Better Together with Microsoft Dynamics CRM Enhance the power and effectiveness of Microsoft Dynamics CRM business software with Microsoft products and technologies that work even better, together. Microsoft

More information

BizTalk Server 2006. Business Activity Monitoring. Microsoft Corporation Published: April 2005. Abstract

BizTalk Server 2006. Business Activity Monitoring. Microsoft Corporation Published: April 2005. Abstract BizTalk Server 2006 Business Activity Monitoring Microsoft Corporation Published: April 2005 Abstract This paper provides a detailed description of two new Business Activity Monitoring (BAM) features in

More information

A Jacada & Microsoft CCF Competitive Review

A Jacada & Microsoft CCF Competitive Review WHITE PAPER A Jacada & Microsoft CCF Competitive Review A contrast of two call center solution providers, based on an outline of Microsoft CCF Jacada Marketing Research 1 Introduction... 3 2 Overview...

More information

AGILEXRM REFERENCE ARCHITECTURE

AGILEXRM REFERENCE ARCHITECTURE AGILEXRM REFERENCE ARCHITECTURE 2012 AgilePoint, Inc. Table of Contents 1. Introduction 4 1.1 Disclaimer of warranty 4 1.2 AgileXRM components 5 1.3 Access from PES to AgileXRM Process Engine Database

More information

ORACLE WEBCENTER PORTAL

ORACLE WEBCENTER PORTAL ORACLE WEBCENTER PORTAL A MODERN ENTERPRISE PORTAL WITH INTUITIVE TOOLS FOR COMPOSING CONTENT-RICH SELF- SERVICE PORTALS WITH INTEGRATED SOCIAL AND COLLABORATION SERVICES KEY FEATURES Enterprise-Grade

More information

Oracle Application Development Framework Overview

Oracle Application Development Framework Overview An Oracle White Paper June 2011 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services

More information

K2 Appit for SharePoint and SharePoint 2013 TECHNICAL COMPARISON

K2 Appit for SharePoint and SharePoint 2013 TECHNICAL COMPARISON K2 Appit for SharePoint and SharePoint 2013 TECHNICAL COMPARISON SharePoint 2013 includes some improvements to its workflow capabilities, including an independent workflow engine called Workflow Manager

More information

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. 20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction

More information

Visio 2010 Tips and Techniques

Visio 2010 Tips and Techniques Visio 2010 Tips and Techniques Advanced Concepts and Solutions Mr. David A. Edson, M.Arch., MCP, MVP Visibility.biz CTE / Director of Consulting Services david@visibility.biz Wendy McGill Visio Solution

More information

Lab Answer Key for Module 9: Active Directory Domain Services. Table of Contents Lab 1: Exploring Active Directory Domain Services 1

Lab Answer Key for Module 9: Active Directory Domain Services. Table of Contents Lab 1: Exploring Active Directory Domain Services 1 Lab Answer Key for Module 9: Active Directory Domain Services Table of Contents Lab 1: Exploring Active Directory Domain Services 1 Information in this document, including URL and other Internet Web site

More information

Sentinet for BizTalk Server SENTINET

Sentinet for BizTalk Server SENTINET Sentinet for BizTalk Server SENTINET Sentinet for BizTalk Server 1 Contents Introduction... 2 Sentinet Benefits... 3 SOA and APIs Repository... 4 Security... 4 Mediation and Virtualization... 5 Authentication

More information

Key Benefits of Microsoft Visual Studio 2008

Key Benefits of Microsoft Visual Studio 2008 Key Benefits of Microsoft Visual Studio 2008 White Paper December 2007 For the latest information, please see www.microsoft.com/vstudio The information contained in this document represents the current

More information

EVALUATION. WA1844 WebSphere Process Server 7.0 Programming Using WebSphere Integration COPY. Developer

EVALUATION. WA1844 WebSphere Process Server 7.0 Programming Using WebSphere Integration COPY. Developer WA1844 WebSphere Process Server 7.0 Programming Using WebSphere Integration Developer Web Age Solutions Inc. USA: 1-877-517-6540 Canada: 1-866-206-4644 Web: http://www.webagesolutions.com Chapter 6 - Introduction

More information

Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync

Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync Microsoft Corporation Published: December 2014 Author: Mark Grimes Acknowledgements Special thanks to the

More information

A standards-based approach to application integration

A standards-based approach to application integration A standards-based approach to application integration An introduction to IBM s WebSphere ESB product Jim MacNair Senior Consulting IT Specialist Macnair@us.ibm.com Copyright IBM Corporation 2005. All rights

More information

Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010

Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010 Getting started with 2c8 plugin for Microsoft Sharepoint Server 2010... 1 Introduction... 1 Adding the Content Management Interoperability Services (CMIS) connector... 1 Installing the SharePoint 2010

More information

Special thanks to the following people for reviewing and providing invaluable feedback for this document: Joe Davies, Bill Mathers, Andreas Kjellman

Special thanks to the following people for reviewing and providing invaluable feedback for this document: Joe Davies, Bill Mathers, Andreas Kjellman Test Lab Guide: Creating a Microsoft Azure Active Directory and Windows Server Active Directory Environment using Microsoft Azure Active Directory Sync Services Microsoft Corporation Published: December

More information

Windows SharePoint Services Installation Guide

Windows SharePoint Services Installation Guide Windows SharePoint Services Installation Guide Michael@SchmittDotNet.com www.schmittdotnet.com Version 1.4 10/11/2010 Copyright and Disclaimers This guide is for informational purposes only. THE AUTHOR

More information

Programmabilty. Programmability in Microsoft Dynamics AX 2009. Microsoft Dynamics AX 2009. White Paper

Programmabilty. Programmability in Microsoft Dynamics AX 2009. Microsoft Dynamics AX 2009. White Paper Programmabilty Microsoft Dynamics AX 2009 Programmability in Microsoft Dynamics AX 2009 White Paper December 2008 Contents Introduction... 4 Scenarios... 4 The Presentation Layer... 4 Business Intelligence

More information

IBM BPM V8.5 Standard Consistent Document Managment

IBM BPM V8.5 Standard Consistent Document Managment IBM Software An IBM Proof of Technology IBM BPM V8.5 Standard Consistent Document Managment Lab Exercises Version 1.0 Author: Sebastian Carbajales An IBM Proof of Technology Catalog Number Copyright IBM

More information

Application Architecture for.net: Designing Applications and Services

Application Architecture for.net: Designing Applications and Services Application Architecture for.net: Designing Applications and Services Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise

More information

Business Rules and SOA: Parallels and Synergies

Business Rules and SOA: Parallels and Synergies Business Rules and SOA: Parallels and Synergies White Paper As of January 2006 Innovations Software Technology GmbH, 2009. All rights reserved. Dissemination or reproduction of this publication or any

More information

WA1802 SOA for Architects Using WebSphere ESB. Student Labs. Web Age Solutions Inc.

WA1802 SOA for Architects Using WebSphere ESB. Student Labs. Web Age Solutions Inc. WA1802 SOA for Architects Using WebSphere ESB Student Labs Web Age Solutions Inc. 1 Table of Contents Lab 7 - Service Composition Pattern...3 2 Lab 7 - Service Composition Pattern Service composition is

More information

Rapid Development of Smart and Self-Adaptive Cloud, Mobile & IoT Applications - Accelerating the Last Mile of Cloud Computing

Rapid Development of Smart and Self-Adaptive Cloud, Mobile & IoT Applications - Accelerating the Last Mile of Cloud Computing Rapid Development of Smart and Self-Adaptive Cloud, Mobile & IoT Applications - Accelerating the Last Mile of Cloud Computing Jesse Shiah CEO and Co-founder Jesse.shiah@agilepoint.com 2013 AgilePoint,

More information

Capital Market Day 2015

Capital Market Day 2015 Capital Market Day 2015 Digital Business Platform & Product Roadmap Dr. Wolfram Jost Chief Technology Officer February 4, 2015 1 For Internal use only. Market Application infrastructure and middleware

More information

FORMS & WORKFLOW SHAREPOINT 2010. Practical Discussion

FORMS & WORKFLOW SHAREPOINT 2010. Practical Discussion FORMS & WORKFLOW SHAREPOINT 2010 Practical Discussion Agenda Introduction Workflow Business Problems General Scenarios / Approaches What Is It? Specifics, Pitfalls, and Recommendations Forms Business Problems

More information

Technical Analysis of Business Rules and SOA

Technical Analysis of Business Rules and SOA - White Paper - Business Rules and SOA: Parallels and Synergies Innovations Softwaretechnologie GmbH Ziegelei 7-88090 Immenstaad Germany Tel. ++49 (7545) 202-500 www.visual-rules.com info@visual-rules.de

More information

AppFabric. Pro Windows Server. Stephen Kaufman. Danny Garber. Apress. INFORMATIONSBIBLIOTHbK TECHNISCHE. U N! V En SIT AT S R!

AppFabric. Pro Windows Server. Stephen Kaufman. Danny Garber. Apress. INFORMATIONSBIBLIOTHbK TECHNISCHE. U N! V En SIT AT S R! Pro Windows Server AppFabric Stephen Kaufman Danny Garber Apress TECHNISCHE INFORMATIONSBIBLIOTHbK T1B/UB Hannover 133 294 706 U N! V En SIT AT S R! B L' OT H E K HANNOVER Contents it Contents at a Glance

More information

Workflow approval via email

Workflow approval via email Microsoft Dynamics AX Workflow approval via email White Paper This document highlights the functionality in Microsoft Dynamics AX 2012 R2 that allows workflow to be configured so that a user can take approval

More information

Private Cloud 201 How to Build a Private Cloud

Private Cloud 201 How to Build a Private Cloud Private Cloud 201 How to Build a Private Cloud Chris E. Avis Sr. IT Pro Evangelist Microsoft Corp. http://chrisavis.com Presented at Seattle Windows Networking User Group January 4, 2012 al 1 The Cloudscape

More information

Course 10978A Introduction to Azure for Developers

Course 10978A Introduction to Azure for Developers Course 10978A Introduction to Azure for Developers Duration: 40 hrs. Overview: About this Course This course offers students the opportunity to take an existing ASP.NET MVC application and expand its functionality

More information

Integrating SharePoint Sites within WebSphere Portal

Integrating SharePoint Sites within WebSphere Portal Integrating SharePoint Sites within WebSphere Portal November 2007 Contents Executive Summary 2 Proliferation of SharePoint Sites 2 Silos of Information 2 Security and Compliance 3 Overview: Mainsoft SharePoint

More information

Microsoft Partner Network Competency: Exam Requirements. Created by Chris Burr Partner Account Manger Learning Solutions cburr@microsoft.

Microsoft Partner Network Competency: Exam Requirements. Created by Chris Burr Partner Account Manger Learning Solutions cburr@microsoft. Microsoft Partner Network Competency: Exam Requirements Created by Chris Burr Partner Account Manger Learning Solutions cburr@microsoft.com Guidance This deck is designed to support Partners understand

More information

Part 2: The Neuron ESB

Part 2: The Neuron ESB Neuron ESB: An Enterprise Service Bus for the Microsoft Platform This paper describes Neuron ESB, Neudesic s ESB architecture and framework software. We first cover the concept of an ESB in general in

More information

Step-By-Step build Advanced InfoPath Form and SharePoint Designer Workflow

Step-By-Step build Advanced InfoPath Form and SharePoint Designer Workflow Step-By-Step build Advanced InfoPath Form and SharePoint Designer Workflow Workshop: One the Request Form we will design a sample process of Employee Vacation Request with Approval process workflow. Required

More information

BUSINESS RULES CONCEPTS... 2 BUSINESS RULE ENGINE ARCHITECTURE... 4. By using the RETE Algorithm... 5. Benefits of RETE Algorithm...

BUSINESS RULES CONCEPTS... 2 BUSINESS RULE ENGINE ARCHITECTURE... 4. By using the RETE Algorithm... 5. Benefits of RETE Algorithm... 1 Table of Contents BUSINESS RULES CONCEPTS... 2 BUSINESS RULES... 2 RULE INFERENCE CONCEPT... 2 BASIC BUSINESS RULES CONCEPT... 3 BUSINESS RULE ENGINE ARCHITECTURE... 4 BUSINESS RULE ENGINE ARCHITECTURE...

More information

Achieve more with less

Achieve more with less Energy reduction Enterprise Fax Servers Solutions Integrations: SharePoint case Whitepaper Achieve more with less SharePoint 2010 Benefits and Migration Costs Why Fax Server Integration Receive faxes to

More information

Lab Answer Key for Module 11: Managing Transactions and Locks

Lab Answer Key for Module 11: Managing Transactions and Locks Lab Answer Key for Module 11: Managing Transactions and Locks Table of Contents Lab 11: Managing Transactions and Locks 1 Exercise 1: Using Transactions 1 Exercise 2: Managing Locks 3 Information in this

More information

ASP.NET Overview. Ken Casada Developer Evangelist Developer & Platform Evangelism Microsoft Switzerland

ASP.NET Overview. Ken Casada Developer Evangelist Developer & Platform Evangelism Microsoft Switzerland ASP.NET Overview Ken Casada Developer Evangelist Developer & Platform Evangelism Microsoft Switzerland Agenda Introduction Master Pages Data access Caching Site navigation Security: users and roles Themes/Skin

More information

CLOSER 2011 1 st Int. Conf. on Cloud Computing and Services Science: The Cloud Service Supply Chain

CLOSER 2011 1 st Int. Conf. on Cloud Computing and Services Science: The Cloud Service Supply Chain CLOSER 2011 1 st Int. Conf. on Cloud Computing and Services Science: The Cloud Service Supply Chain Donald F. Ferguson (donald.ferguson@ca.com) contents an overview of some problems/requirements for service

More information

Exchange Server 2013 Exchange Server 2013 with Service Pack 1 Expression 3 Studio (MSDN AA) Expression 4 Ultimate FAST Search Server 2010 FAST Search

Exchange Server 2013 Exchange Server 2013 with Service Pack 1 Expression 3 Studio (MSDN AA) Expression 4 Ultimate FAST Search Server 2010 FAST Search Product Updated (August 6, 2014).NET Framework 4.NET Framework 4.5.NET Framework 4.5.1.NET Micro Framework Porting Kit.NET Micro Framework SDK and DDKs Academic Alliance Tools Access 2007 Access 2010 Access

More information

Advanced Solutions of Microsoft SharePoint Server 2013 (20332) H6C76S

Advanced Solutions of Microsoft SharePoint Server 2013 (20332) H6C76S HP Education Services course data sheet Advanced Solutions of Microsoft SharePoint Server 2013 (20332) H6C76S Course Description In this class, you will learn how to design, configure, and manage a SharePoint

More information

PowerShell Support in SCAP 1.2. Michael Tan Microsoft Corporation

PowerShell Support in SCAP 1.2. Michael Tan Microsoft Corporation PowerShell Support in SCAP 1.2 Michael Tan Microsoft Corporation November, 2011 Topics Problems and Business Needs PowerShell Overview PowerShell configuration in SCAP 1.2 Demo Q/A Problems and Business

More information

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM Installation and Configuration Guide Revision C Issued February 2014 1 Table of Contents Overview... 3 Before You Begin... 4 Supported and Unsupported

More information

WHITEPAPER. Managing Design Changes in Enterprise SBM Installations

WHITEPAPER. Managing Design Changes in Enterprise SBM Installations WHITEPAPER Managing Design Changes in Enterprise SBM Installations By Tom Clement Serena Software, Inc. October 2013 Summary This document explains how to organize your SBM maintenance and development

More information

SharePoint Services: Using Workflows

SharePoint Services: Using Workflows SharePoint Services: Using Workflows Table of Contents INTRODUCTION TO WORKFLOWS... 1 WHAT ARE WORKFLOWS?... 1 WORKFLOWS THAT ARE INCLUDED IN OFFICE SHAREPOINT SERVER 2007... 2 ABOUT ADDING A WORKFLOW

More information

Overview. Microsoft Office Enterprise Project Management Solution. In this article

Overview. Microsoft Office Enterprise Project Management Solution. In this article Microsoft Office Enterprise Project Management Solution Overview Applies to: Microsoft Office Project 2007 Project Server 2007 In this article Manage and control all types of work Improve visibility and

More information

Managing trust relationships with multiple business identity providers (basics) 55091A; 3 Days

Managing trust relationships with multiple business identity providers (basics) 55091A; 3 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Managing trust relationships with multiple business identity providers (basics)

More information

AvePoint Tags 1.1 for Microsoft Dynamics CRM. Installation and Configuration Guide

AvePoint Tags 1.1 for Microsoft Dynamics CRM. Installation and Configuration Guide AvePoint Tags 1.1 for Microsoft Dynamics CRM Installation and Configuration Guide Revision G Issued August 2014 Table of Contents About AvePoint Tags for Microsoft Dynamics CRM... 3 Required Permissions...

More information

Hands-On Lab. Client Workflow. Lab version: 1.0.0 Last updated: 2/23/2011

Hands-On Lab. Client Workflow. Lab version: 1.0.0 Last updated: 2/23/2011 Hands-On Lab Client Workflow Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: DEFINING A PROCESS IN VISIO 2010... 4 Task 1 Define the Timesheet Approval process... 4 Task 2

More information

E-mail Listeners. E-mail Formats. Free Form. Formatted

E-mail Listeners. E-mail Formats. Free Form. Formatted E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail

More information

SharePoint Composites. Do-It-Yourself SharePoint solutions

SharePoint Composites. Do-It-Yourself SharePoint solutions SharePoint Composites Do-It-Yourself SharePoint solutions Executive Summary SharePoint Composites, the newest set of capabilities in Microsoft SharePoint Server 2010, enables do-it-yourself collaborative

More information

SharePoint as a Document Management System. Tyler Durham Microsoft Corporation Grant Newton Clifford Chance LLP

SharePoint as a Document Management System. Tyler Durham Microsoft Corporation Grant Newton Clifford Chance LLP SharePoint as a Document Management System Tyler Durham Microsoft Corporation Grant Newton Clifford Chance LLP Agenda Introduction What s New Upgrade, Migration, and Integration Spotlight: Clifford Chance

More information

IBM WebSphere ILOG Rules for.net

IBM WebSphere ILOG Rules for.net Automate business decisions and accelerate time-to-market IBM WebSphere ILOG Rules for.net Business rule management for Microsoft.NET and SOA environments Highlights Complete BRMS for.net Integration with

More information

Presentation Outline. Key Business Imperatives Service Oriented Architecture Defined Oracle SOA Platform 10.1.3 SOA Maturity/Adoption Model Demo Q&A

Presentation Outline. Key Business Imperatives Service Oriented Architecture Defined Oracle SOA Platform 10.1.3 SOA Maturity/Adoption Model Demo Q&A Presentation Outline Key Business Imperatives Service Oriented Architecture Defined Oracle SOA Platform 10.1.3 SOA Maturity/Adoption Model Demo Q&A Key Business Imperatives Increased Competition Requires

More information

Intelligence. Productivity. Mobility. Unified Service. Predictive analytics: Offline mobile: Self, assisted & field service

Intelligence. Productivity. Mobility. Unified Service. Predictive analytics: Offline mobile: Self, assisted & field service Productivity Intelligence Mobility Unified Service Next generation productivity: Predictive analytics: Offline mobile: Self, assisted & field service Surface trending documents with Delve Immersive Excel

More information

Dell Migration Manager for Enterprise Social What Can and Cannot Be Migrated

Dell Migration Manager for Enterprise Social What Can and Cannot Be Migrated Dell Migration Manager for Enterprise Social What Can and Cannot Be Migrated MMES - What Can and Cannot Be Migrated First Release - April 2015 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary

More information

CATALOG OF CLASSES IT and Technical Courses

CATALOG OF CLASSES IT and Technical Courses CATALOG OF CLASSES IT and Technical Courses Table of Contents CATALOG OF CLASSES... 1 Microsoft... 1 10135BC... 1 Configuring, Managing and Troubleshooting Microsoft Exchange Server 2010 Service Pack 2...

More information

SHAREPOINT 2016 POWER USER BETA. Duration: 4 days

SHAREPOINT 2016 POWER USER BETA. Duration: 4 days SHAREPOINT 2016 POWER USER BETA Duration: 4 days Overview This course delivers the complete site owner story from start to finish in an engaging and practical way to ensure you have the confidence to plan

More information

Academic All Technology Library ( 1576 Courses)

Academic All Technology Library ( 1576 Courses) Academic All Technology Library ( 1576 Courses) Product Type Product Number Product Title Course Duration ecliniccollection 10051 Exploring New Features in Microsoft Office Communications Server 2007 R2

More information

Enterprise Application Integration (EAI) Architectures, Technologies, and Best Practices

Enterprise Application Integration (EAI) Architectures, Technologies, and Best Practices Enterprise Application Integration (EAI) Architectures, Technologies, and Best Practices Give Your Business the Competitive Edge IT managers have been under increasing pressure to migrate a portfolio of

More information

Course Code NCS2013: SharePoint 2013 No-code Solutions for Office 365 and On-premises

Course Code NCS2013: SharePoint 2013 No-code Solutions for Office 365 and On-premises 4 DAYS SHAREPOINT FOR THE POWER USER AND SOLUTIONS BUILDER Course Code NCS: SharePoint No-code Solutions for Office 365 and On-premises AUDIENCE FORMAT COURSE DESCRIPTION Power Users Instructor led training

More information

IT Insights. Using Microsoft SharePoint 2013 to build a robust support and training portal. A service of Microsoft IT Showcase

IT Insights. Using Microsoft SharePoint 2013 to build a robust support and training portal. A service of Microsoft IT Showcase IT Insights A service of Microsoft IT Showcase Using Microsoft SharePoint 2013 to build a robust support and training portal June 2015 The Microsoft IT team that is responsible for hosting customer and

More information

K2 blackpearl vs. K2 blackpoint

K2 blackpearl vs. K2 blackpoint What s the difference? K2 has two software products for creating workflows and process-driven applications: K2 blackpearl and K2 blackpoint, a low-cost subset of the former. Both products are built on.net

More information

DocAve for Office 365 Sustainable Adoption

DocAve for Office 365 Sustainable Adoption DocAve for Office 365 Sustainable Adoption Quick Start Guide Issued October 2015 1 Table of Contents Submitting Documentation Feedback to AvePoint... 3 1. Request a DocAve License from AvePoint... 4 2.

More information