UPDATE: Kjo ka qenë të lëshuara në CodePlex këtu: http://www.codeplex.com/spdwfextensions
UPDATE: Shih këtu për shënimet e lëshimit të fundit: http://paulgalvin.spaces.live.com/blog/cns!1CC1EDB3DAA9B8AA!381.entry
UPDATE: Shiko këtu për mendimet e mia në komercializimin e këtij projekti: 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 (dërgim) any C# function that you incorporated into the linked assembly.
Që nga fundi i tetorit, 2007, this is just an initial version of the project. I plan to expand it with a number of additional functions, përfshirë substring, indeks, zëvendësoj, 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.
Nëse keni ndonjë koment, pyetje apo sugjerime, ju lutem të lënë ato në komentet ose email mua.
Mohim:
I make absolutely no claims as to the suitability of this for any purpose. Use at your own risk.
Hapat e instalimit (për të ndjekur per secilin WFE ne fermë):
1. Shkarko dhe ekstrakt zip..
2. Install the .dll into the GAC. I usually open c:\windows kuvendi duke përdorur Windows Explorer dhe kopjoni atë atje.
3. Ndrysho web.config për të shtuar asamblenë për kontrolle të sigurta:
<System.Workflow.ComponentModel.WorkflowCompiler>
<authorizedTypes>
<authorizedType Assembly="SpdGenericInterface, Version = 1.0.0.0, Culture = neutral, PublicKeyToken = abe076fd8125f3c4" Namespace="Nivlag" TypeName="*" Authorized="True" />
4. Copy "SpdGenericInterface.actions" për C:\Program Files Common Files Microsoft Shared extensions web server 12 MOSTRA 1033 Workflow
Vini re se lokacioni më sipër është specifik për instalimet e gjuhës angleze.
5. Mbylle SharePoint Designer (në qoftë se ajo është tashmë e hapur).
6. iisreset
7. Hapni SPD dhe të krijojë një workflow të re.
Nëse gjithçka shkon mirë, ju duhet të shpërblehet me një kategori të re të veprimit:
Shënimet:
Shoh këtu (http://blogs.msdn.com/sharepointdesigner/archive/2007/03/15/adding-activities-to-spd.aspx) për një vështrim të frikshëm të procesit për krijimin e, instalimi dhe konfigurimi i një zgjidhje si kjo.
. Zip është projektuar për nxjerrjen direkt për ju c:\ drive. If you do this, ju mund të hapur projektin dhe të gjitha rrugët do të jenë në përputhje.
Për të përdorur këtë në vizual studio, you probably need to install "Extensions for Windows WF".
The initial upload contains just one "dispatcher function", "ToLower()". To add more functionality, shtoni atë në Execute metodë siç tregohet:
mbrojtur shkel ActivityExecutionStatus
Kryej(ActivityExecutionContext executionContext)
{
varg functionToDispatch;
functionToDispatch = kjo.DispatchFunction.ToLower();
kaloni (functionToDispatch)
{
rast "tolower()":
{
kjo.OutResult1 = kjo.InParam1.ToLower();
pushim;
}
parazgjedhur:
{
kjo.OutResult1 = "Unknown function: [" + kjo.DispatchFunction + "].";
pushim;
}
}
kthehem ActivityExecutionStatus.Mbyllur;
} // ActivityExecutionStatus
}
Pastaj, re-build the project and copy the assembly to the GAC. I expect an iisreset would be required.