MovGP0 | Über mich | Hilfen | Artikel | Weblinks | Literatur | Zitate | Notizen | Programmierung | MSCert | Physik |
OverviewBearbeitenSharePoint 2010 vs 2013Bearbeiten
Activities and ActionsBearbeiten
StagesBearbeiten
Design ToolsBearbeiten
Calling Custom CodeBearbeiten
Create SharePoint Worfklow App in Visual StudioBearbeiten→ New → Project → App for Sharepoint → add Customizeable List → create columns → add Workflow → "UpdateProductRequest" → Associate with List → WF is usually started when something is created → add activities to get info about current list item
→ use → use → use Install Workflow ServiceBearbeiten
# with HTTP
Register-SPWorkflowService -SPSite "http://myspsite.com" -WorkflowHostUri "http://mywfhost.com:12291" -AllowOAuthHttp
# with HTTPS
Register-SPWorkflowService -SPSite "http://myspsite.com" -WorkflowHostUri "https://mywfhost:12290" -AllowOAuthHttp
|