UPDATE: Dit is vrygestel na CodePlex hier: http://www.codeplex.com/spdwfextensions
UPDATE: Kyk hier vir die jongste vrystellingsaantekeninge: http://paulgalvin.spaces.live.com/blog/cns!1CC1EDB3DAA9B8AA!381.entry
UPDATE: Kyk hier my gedagtes oor die kommersialisering van hierdie projek: http://paulgalvin.spaces.live.com/blog/cns!1CC1EDB3DAA9B8AA!569.entry
This project provides a custom activity in SharePoint Designer. Use this custom activity to invoke (stuur) any C# function that you incorporated into the linked assembly.
Vanaf die einde van Oktober, 2007, this is just an initial version of the project. I plan to expand it with a number of additional functions, insluitend substring, indeks, vervang, invoking web services and anything that seems useful or interesting. I also plan to post this to codeplex once I have my act together on that front. This will also be deployable as a solution at some point.
As jy enige kommentaar het, vrae of voorstelle, laat hulle asseblief in die kommentaar of epos my.
Vrywaring:
I make absolutely no claims as to the suitability of this for any purpose. Use at your own risk.
Installasie stappe (gevolg moet word vir elke WFE die plaas):
1. Aflaai die zip en onttrek.
2. Install the .dll into the GAC. I usually open c:\windows vergadering deur gebruik te maak van Windows Explorer en kopieer dit daar.
3. Verander Web.config om die vergadering by te voeg tot die veilige beheer:
<System.Workflow.ComponentModel.WorkflowCompiler>
<authorizedTypes><authorizedType Vergadering = "SpdGenericInterface, Weergawe = 1.0.0.0, Culture = neutral, PublicKeyToken = abe076fd8125f3c4" Naamruimte = "Nivlag-" Type Name = "*" Gemagtigde = "Ware" />
4. Copy "SpdGenericInterface.actions" tot C:\Program Files Common Files Microsoft Shared Web Server Extensions 12 TEMPLATE 1033 Workflow
Let daarop dat die plek is wat spesifiek is aan die Engelse taal installasies.
5. Sluit SharePoint Designer (as dit is reeds oop).
6. iisreset
7. Open Internet DOCUP en die skep van 'n nuwe workflow.
As alles goed gaan, jy moet beloon word met 'n nuwe kategorie van aksie:
Notas:
Sien hier (http://blogs.msdn.com/sharepointdesigner/archive/2007/03/15/adding-activities-to-spd.aspx) vir 'n geweldige oorsig van die proses vir die skep van, installering en instel van 'n oplossing soos hierdie.
. Zip is ontwerp om direk te onttrek aan jou c:\ drive. If you do this, jy die projek kan oopmaak en al die paaie sal in ooreenstemming wees.
Om dit te gebruik in die Visual Studio, jy waarskynlik nie nodig om te installeer "Uitbreidings vir Windows WF".
Die aanvanklike oplaai bevat net een "planner funksie", "ToLower()". To add more functionality, voeg dit by die uitvoer metode soos getoon:
beskerm oorheers ActivityExecutionStatus Voer(ActivityExecutionContext executionContext) { string functionToDispatch; functionToDispatch = hierdie.DispatchFunction.ToLower(); skakel (functionToDispatch) { geval "Tolower()": { hierdie.OutResult1 = hierdie.InParam1.ToLower(); breek; } default: { hierdie.OutResult1 = "Onbekende funksie: [" + hierdie.DispatchFunction + "]."; breek; } } terugkeer ActivityExecutionStatus.Gesluit; } // ActivityExecutionStatus }
Toe, re-build the project and copy the assembly to the GAC. I expect an iisreset would be required.