Wednesday, June 02, 2004 8:35 PM Jan Tielens

Workflow Lite for SharePoint RC1 (Finally!)

Finally I've found some time to work some more on my SharePoint Lite for SharePoint project and today the Release Candidate 1 can be downloaded form the GotDotNet Workspace. RC1 is feature-complete for V1 (I've already got some cool features for the next version in mind), to get an idea what's possible you can watch this video. To install the workflow engine, execute the MSI package (so the assembly gets deployed to the GAC) and follow the installation instructions closely. The installation instructions are modified a little bit, so the installation video isn't up to date anymore but it will be updated ASAP. Probably the main part in the installation is the creation of the config file that contains the workflow logic. At this point you need to alter the configuration XML file manually, but there's a Configuration Application on its way. A very basic configuration file could look like this (updated on the 15th of June, see http://weblogs.asp.net/jan/archive/2004/06/15/156419.aspx):

<?xml version="1.0" encoding="utf-8" ?>
<WorkflowConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://Leadit.SharePoint.Workflow/WorkflowConfiguration">

  <WorkflowStage DocumentLibraryURL="
http://server/site/documentlibrary">
    <Description>DocumentLibrary 1</Description>
    <Properties>
      <Property Name="Status">
        <Triggers>
          <Trigger PropertyValue="Ready To publish">
            <Actions>
              <Action Type="COPY">
  <Parameter1>In Review</Parameter1>
  <Parameter2></Parameter2>
  <Parameter3></Parameter3>
       </Action>
              <Action Type="SETFIELDVALUE">
  <Parameter1>Submitted by</Parameter1>
  <Parameter2>{FIELD:Modified By}</Parameter2>
  <Parameter3></Parameter3>
       </Action>
              <Action Type="DELETESOURCE">
  <Parameter1></Parameter1>
  <Parameter2></Parameter2>
  <Parameter3></Parameter3>
       </Action>
              <Action Type="SENDMAIL">
  <Parameter1>review@mycompany.com</Parameter1>
  <Parameter2>Document {FIELD:Title} added for review</Parameter2>
  <Parameter3>Submitted by{FIELD:Submitted by}{NEWLINE}Submitter comments:{NEWLINE}{FIELD:Comments}</Parameter3>
       </Action>
            </Actions>
          </Trigger>
        </Triggers>
      </Property>
    </Properties>
  </WorkflowStage>
</WorkflowConfiguration>

A configuration file contains one or more WorkflowStage nodes, each node corresponds to a stage in the workflow process, so a SharePoint document library corresponds to a WorkflowStage. The DocumentLibraryURL tag sets the location of the document library for which it should work, the Description tag is descriptive only. A WorkflowStage node can contain one or more Property nodes, contained in the Properties tag. A Property node corresponds with a field of the document library which will be used by the workflow process. The Name attribute of the Property tag should contain the name of that document library field. Each Property node can contain one or more Trigger nodes, contained in the Triggers tag. A Trigger node corresponds with a specific value of the document library field, which should be specified in the PropertyValue attribute. Finally a Trigger node can contain one or more Action nodes, contained in the Actions tag. An Action node corresponds with an action that the workflow process should execute. Each Action node has a specific type, and three optional parameter values. Here’s a list of the Action types that are currently implemented:

  • Action type: COPY
    Copies the document library item to a specified document library. Any action that is executed before the copy statement is applicable to the originating document library item. Any action that is executed after the copy statement is applicable to the copied document library item. For example: a SETFIELDVALUE action that happens before the COPY action, changes a field value of the originating document library item. A SETFIELDVALUE action that happens after the COPY statement will change a field value of the copied document library item. Of course the DELETESOURCE is always applicable to the originating item!
    Parameter 1: destination document library
    Parameter 2 and 3: not used
  • Action type: SETFIELDVALUE
    Sets the value of a field to a specified value. This value can be a fixed string, or a reference to other field values.
    Parameter 1: name of the field to set
    Parameter 2: value to which the field should be set (see formulas for more information about the format). Examples: “Fixed string“, “{FIELD:OtherField}“, “{FIELD:OtherField1} fixed string {FIELD:OtherField2}“
    Parameter 3: not used
  • Action type: DELETESOURCE
    Deletes the originating file from the document library.
    Parameter 1, 2 and 3: not used
  • Action type: CREATEEVENTITEM
    Creates an event item in a specified event log SharePoint list. The event log SharePoint list is a custom list, containing the following fields: Title (default), Event (single line of text), Initiator (user lookup field), Comments (multiple lines of text). 
    Parameter 1: the event log SharePoint list
    Parameter 2: the event type (for example: “Document Published“, “Document Declined“)
    Parameter 3: comments for the event log item (see formulas for more information about the format)
  • Action type: SENDEMAIL
    Sends an email to a specified person or a specified SharePoint group.
    Parameter 1: mail to value. This value can either be a fixed string like “reviewer@mycompany.com“, the name of a SharePoint Group (site level) or the value of a specific field like “{FIELD:Modified By}“. In the last case, the workflow engine will retrieve the corresponding email of the user specified in the Modified By field. The value of parameter 1 can contain HTML, so HTML formatted mails are sent.
    Parameter 2: mail subject value (see formulas for more information about the format)
    Parameter 3: mail body value (see formulas for more information about the format)

A parameter that can contain a formula, can use references to other fields of the document library item. The syntax is pretty straight forward, some examples:

  • {FIELD:Submitter Comments}
  • Comments by {FIELD:Modified By} {NEWLINE} {FIELD:Submitter Comments}
  • Submitted by {FIELD:Modified By} on {NOW}

So what's next? In the next few days I will create more documentation and update the demo and installation video to reflect the new possibilities. Based on your feedback the final V1 version will be released. After that I'll be accepting contributors for the GotDotNet Workspace, if you're intrested contact me, and I'll invite you. Please do only apply if you are really planning to contribute to the project! Thanks to the people who have mailed me their feedback and bugs!

Filed under:

Comments

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, June 02, 2004 5:37 PM by Jeff

This looks similar to the CorasWorks email connector/workflow solution, but it's 'marginally' cheaper. Very good. Thanks for sharing.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, June 02, 2004 6:01 PM by Profke

looks great jan!

# Workflow Lite for SharePoint

Wednesday, June 02, 2004 8:51 PM by TrackBack

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 03, 2004 2:18 AM by thomas

What about searching: do you filter the search results to return only document in the "Published" state?

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 03, 2004 2:20 AM by Jan

Can you explain a little bit more Thomas? When do you want to filter?

# Jans

Thursday, June 03, 2004 3:02 AM by TrackBack

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 03, 2004 3:32 AM by EROL

Thanks ;o) EROL

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 03, 2004 9:01 AM by Daniel McPherson

Great stuff Jan, looking forward to checking this out...

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 03, 2004 2:05 PM by thomas

What I meant was when a document is not yet published it should not show up in the search results.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 03, 2004 9:22 PM by Eugene

Hi Jan!

Your RC1 looks promising. :) I tried to download it but I can't (it shows a disclaimer). How can I download it? By the way, I applied for your workspace, but I realized that I can't help/contribute to your project. Feel free to decline my application. :) Thanks!

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, June 04, 2004 5:38 AM by Graham Carr

Hi jan!

I have successfully installed the Beta version but after installing the RC1 edition, I am having a problem. I am receiving the error

Could not execute the COPY action.(System.ArgumentException: Value does not fall within the expected range.
at Microsoft.SharePoint.SPWeb.c(String A_0, Boolean A_1, Boolean A_2)
at Microsoft.SharePoint.SPWeb.f(String A_0)
at Microsoft.SharePoint.SPFile.a(String A_0, Boolean A_1, Boolean A_2)
at Microsoft.SharePoint.SPFile.CopyTo(String strNewUrl, Boolean bOverWrite)

Any ideas?

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, June 04, 2004 5:46 AM by Jan

Eugene, that's strange... send me an email and I'll mail it to you.

Graham, I've send you an email for some more info.

# Workflow Lite for SharePoint, Reporting Services WebParts

Friday, June 04, 2004 1:57 PM by TrackBack

Linked

# Workflow Lite for SharePoint, Reporting Services WebParts

Friday, June 04, 2004 1:59 PM by TrackBack

Linked

# Workflow Lite for SharePoint, Reporting Services WebParts

Friday, June 04, 2004 1:59 PM by TrackBack

Linked

# re: Workflow Lite for SharePoint RC1 (Finally!)

Monday, June 07, 2004 4:38 PM by Brad

I am having trouble getting RC1 to work. I was succesfully using the beta and now It doesnt seem to work.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Tuesday, June 08, 2004 8:13 AM by Jona

Hi Jan,

I installed the beta version, and it works fine but for RC1, it does not work eventhough I followed the instructions indicated on the readme. I don't receive any application error.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, June 09, 2004 2:16 PM by brad


Still unable to get RC1 to work. I followed the install precisely. Any idea why I am unable to get it to work. In the meantime I went back to the beta version.

Please keep me posted

# Smartpart for SharePoint

Friday, June 11, 2004 12:33 PM by TrackBack

Jan is just too cool!! Just as I am getting over my ecstasy with what he had created with Workflow Lite - now he has come out with Smartpart. This guy should really get a HUGE award for all the great work he is doing in the SharePoint community. I can't stress how impressed I am. Great work again Jan! I have been working very steadily with SharePoint for about 2 years now and I absolutely love it. I love what it does for me today and even more so I love it's potential. Aside from the power given to the information worker (which is tremendous), what really makes SharePoint scream are the web parts, tools and add-ons that developers like Jan come up with that extend the platform....

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, June 11, 2004 5:34 PM by jramos

I'm getting the "Value does not fall within the expected range" error too, with RC1.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Monday, June 14, 2004 7:19 AM by hjacobss

Has anybody had any luck with RC1 ?
I'm also getting the "Value does not fall within the expected range" error on COPY action in the Event log.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Monday, June 14, 2004 6:25 PM by mtoole

I am also getting this error, any news on how to fix it? Btw, great job Jan the videos look great for a sharepoint only workflow which is exactly what I'm looking for at the moment. Looking forward to getting this fixed...

# re: WHere is the Beta Version?

Tuesday, June 15, 2004 12:58 AM by Carlos

I am also having the same COPY error. The Delete function works so I know it is executing. Are we able to download the Beta version in the meanwhile?? I can't find it anywhere. Thanks.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Tuesday, June 15, 2004 1:50 PM by Boris

I'm getting the "Value does not fall within the expected range" error too, with RC1.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Tuesday, June 15, 2004 2:07 PM by JJ

I'm having the following Error!! How can I fix it???
Unable to instantiate event handler (assembly "Leadit.SharePoint.Workflow, Version=0.2.0.0, Culture=neutral, PublicKeyToken=3948f234bbbabe18", class "Leadit.SharePoint.Workflow.EventHandler"), or report event for "En Progreso/Demo WEB Parts.txt" in "En Progreso". Could not execute the COPY action.(System.ArgumentException: Value does not fall within the expected range.
at Microsoft.SharePoint.SPWeb.c(String A_0, Boolean A_1, Boolean A_2)
at Microsoft.SharePoint.SPWeb.f(String A_0)
at Microsoft.SharePoint.SPFile.a(String A_0, Boolean A_1, Boolean A_2)
at Microsoft.SharePoint.SPFile.CopyTo(String strNewUrl, Boolean bOverWrite)
at Leadit.SharePoint.Workflow.EventHandler.HandleEvent(SPListEvent le))

# Cool SharePoint Stuff

Wednesday, June 16, 2004 4:12 AM by TrackBack

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, June 16, 2004 7:20 AM by Tariq

Hi Jan,
This is really cool
And I noticed the config file has got sorted out in RC1c

Btw how about including logging in this.
Might be easier to troubleshoot issues that may arise that way.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, June 16, 2004 7:46 AM by Jan

Tariq

What do you mean by loggin? Bugs/issues can be tracked in the GotDotNet Workspace.

Or do you mean logging inside the workflow engine?

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, June 16, 2004 8:43 AM by jain

this is only work for serial flow.
is it possible to make it parallel also.
i mean both work together ??? if yes...tell me in details.....

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 17, 2004 1:30 AM by Jan

Jain

Could you explain the scenario you are thinking about, a little bit more? Btw, maybe it's easier to contact me through the contact link to solve this issue.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 17, 2004 2:00 AM by JAIN

hi jan,

in this existing scenario , only one persone at a time can approve the document after this it moves to next folder for other person approvable.but if more then one person suppose three person want to approve/reject this doc OR any one out of three then this workflow lite will not work.(parallel flow.)

# FIELD:... formulas

Thursday, June 17, 2004 5:40 AM by Oier

The formulas { FIELD:Title }... don`t work. I have the WSS installed in Spanish, this could influence?
If in a parameter in config.xml I put {FIELD:Title}, in the WSS appears the text {FIELD:Title} and not title of the document.
How could I use references to other fields of the document library item?

Thank you.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 17, 2004 5:44 AM by Jan

Oier, you can replace Title by the name of the field in your doc. lib. For example {FIELD:MyCustomField}

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 17, 2004 8:47 PM by Wade

Can workflow lite work with Lists too? Like the Issues list?

I would like to send email to people based on the status field of the issues list(open, updated, resolved)with fields from the same list in the body of the email message.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 17, 2004 10:55 PM by _Riwut_

Hi, I just read your workspace. Is workflow lite work for SharePoint 2003 ?

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, June 18, 2004 12:53 AM by Jan

Wade, it only works with Document Libraries (by design of SharePoint itself).

Riwut, it's for SharePoint Portal Server 2003 or Windows SharePoint Services.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, June 24, 2004 4:14 PM by Mike

Jan - is there a way to allow a trigger to be based on more than one field value? Also, is there a way to tell it to trigger if a value is empty? I've tried " " and "" for my values on the trigger and niether work. I am attempting to reset the "Approval Status" value to "Pending" (2) if the "Approver Comments" is empty but I cannot get it to fire. I am trying to take advantage of the built-in approval / rejection methods that document libraries allow you to enable. The problem is that some of our portal-site administrators will have access to this particular site but they are not allowed to approve documents they submit (they are not defined as site administrators in this specific site, but they are in the actual root portal site). The site has been setup to use "unique permissions" instead of inheriting the parent permissions but I seem to still have problems with it automatically setting the document to approved. Any ideas?

Scenario: monthly management reports from our divisions are to submit documents to a specific document library. Once submitted, our president reviews the documents. If he rejects them, his assistant takes care of making the necessary changes. The document is then put back into "Pending" approval and our president is to once again review and approve if necessary. Some people who are submitting documents are part of the portal administrators, but have only been defined as contributors to this specific site. The problem is these "special" users are automatically approved once submitting the document. So, I thought I could check if comments were included and if not, reset the status to "Pending" otherwise allow it to be approved since there are only two people allowed to approve documents and I will tell them they must submit the approval with comments.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, June 25, 2004 5:32 AM by Jan

Mike, can you send me an email (using the contact form) so we can discuss your problem in detail?

At this point it's not yet possible to trigger actions based on the value of 2 fields.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, June 30, 2004 10:26 AM by Henrik

Is it possible to trigger on the "Approval status" field/value ?
I have tried with no success.
I would like to move the documents based on approval status.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, July 02, 2004 2:33 PM by Peter

When I catch "Modified By" fiels I get "#:4Administrator" instead of the value "Administrator" Where did the "#:4" bit come from?? and how can I stop it from adding this extra piece?

# re: Workflow Lite for SharePoint RC1 (Finally!)

Saturday, July 03, 2004 12:08 PM by Sjeng

Hi Jan,
First of all : your work is very helpfull to me
where I'm discovering Sharepoint features.
At the moment I'm trying to implement your Workflow Lite version RC1C. I think I've installed and configured according to the documentation, but when changing a status value in the source document library nothing happens.
Not even an error or logging.
So I have some questions :
1.
How can I find out if the configured config file is or is not used ?
2.
Must all actions be present in the config file
or can I reduce to for example only the DELETESOURCE action for testing ?
3.
Could the fact that I'm implementing for external access (DocumentLibraryURL="http://www.bk2000.nl/sites/wflow/xxx/forms">) be the troublemaker ?
4.
I'm running a Dutch trial version of SPS2003.
Is there except referring to other FIELD:names as in your example config file anything else
that I therefore must change ?

# re: Workflow Lite for SharePoint RC1 (Finally!)

Monday, July 05, 2004 4:51 AM by Sjeng

Problem solved.
I was testing on an external documentlibraryurl from within my local network.
Works fine now, compliments, I'm very interested in what is to come next.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Monday, July 05, 2004 8:02 AM by Poonam

Hi ,
I had modified config file and reduced the Actions only to COPY.It's not working ...
Whether all actions be present in the config file ??
Pls. respond.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Monday, July 05, 2004 3:14 PM by Sjeng

Hi Poonam,

No, not all actions have to be present.
There are a few things however you should look after :
Be sure that all colums and actions in your config file have the exact same name as in your document libray, they are case sensitive!

In detail :

<?xml version="1.0" encoding="utf-8" ?>
<WorkflowConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://Leadit.SharePoint.Workflow/WorkflowConfiguration">
<WorkflowStage DocumentLibraryURL="-X1-">
<Description>DocumentLibrary 1</Description>
<Properties>
<Property Name="-X2-">
<Triggers>
<Trigger PropertyValue="-X3-">
<Actions>
<Action Type="COPY">
<Parameter1>-X4-</Parameter1>
<Parameter2></Parameter2>
<Parameter3></Parameter3>
</Action>

</Actions>
</Trigger>
</Triggers>
</Property>
</Properties>
</WorkflowStage>
</WorkflowConfiguration>




If for example you want to copy a document from documentlibray work to documentlibrary done
Suppose the libraynames are "http://localhost/sites/wflow/work"">http://localhost/sites/wflow/work" and "http://localhost/sites/wflow/done"

Replace in the above :

-X1- with the source documentlibraryurl : "http://localhost/sites/wflow/work"">http://localhost/sites/wflow/work"
-X2- with the column you use for action triggering : for example "Status"
Be sure that this column is in your documentlibarylistheader
-X3- with the value of column X2 on which you will take action : for example : "Ready"
-X4- with "done"


In your case both doclibs should have the same columns.
If you want to give the document in the destination library a new status you must the setfieldvalue action.

I hope this helps, otherwise you can contact me on bk.2000@home.nl

Sjeng

# Some Cool Blogs on sharepoint resently Visited / Who's Online / Workflow Lite

Wednesday, July 07, 2004 12:01 AM by TrackBack

# Some Cool Blogs on sharepoint resently Visited / Who's Online / Workflow Lite

Wednesday, July 07, 2004 12:03 AM by TrackBack

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, July 09, 2004 6:58 AM by Henrik

Problem with triggering on the "Approval field" solved.

If you want to trigger on the approval field (I wanted to copy a document based on the approvalfield value) add this to the config file:
<Properties>
<Property Name="Approval Status">
<Triggers>
<Trigger PropertyValue="0">
<Actions>
<Action Type="COPY">
<Parameter1>In Review</Parameter1>
<Parameter2></Parameter2>
<Parameter3></Parameter3>
</Action>
<Action Type="SETFIELDVALUE">
<Parameter1>Submitted by</Parameter1>
<Parameter2>{FIELD:Modified By}</Parameter2>
<Parameter3></Parameter3>
</Action>
</Actions>
</Trigger>
</Triggers>
</Property>
</Properties>

# Come faccio il workflow con SharePoint 2003?

Saturday, July 10, 2004 10:33 PM by TrackBack

# re: Workflow Lite for SharePoint RC1 (Finally!)

Monday, July 12, 2004 9:22 AM by ---lars...

By the book, nice video showing how it should work.


# Come faccio il workflow con SharePoint 2003?

Monday, July 12, 2004 9:32 AM by TrackBack

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, July 28, 2004 9:41 PM by Sray

I also have a problem with the modified by attribute, I get "10;#" appended the front of the name when I use that field value to SETFIELDVALUE another one.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, July 28, 2004 10:49 PM by Sray

I have been trying to develop a parallel approval scheme with workflow lite. I was wondering how much success other users have had trying to mimic the approval process of the old document libraries. Right now the document is submitted by a supervisor, is then checked for adequacy by our engineering manager, he then publishes the document(COPY TO MANAGERS AREA, WRITES AND EVENT, DELETES SOURCE). Once in the new library managers can choose to approve the document/reject it or reject it with need of presentation. I am using the standard approve/reject that is built into sharepoint for the General Manager as this auto-approves the document. Any ideas how to keep the document in the same library and let each manager place their stamp of approval on the document?

# A way to speed up the time to trigger events

Thursday, July 29, 2004 9:19 AM by Jason

Is there a way to speed up the time taken for the events to trigger when moving a doc from one library to another?

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, July 29, 2004 9:20 AM by Jason

Is it possible to use workflow lite with a forms library?

# Great Work

Thursday, July 29, 2004 9:21 AM by Jason

Jan,

I forgot to say, great work!

Jason

# I want to copy a document to two libraries

Friday, July 30, 2004 9:59 AM by Jason

Any idea on how I should do this, I've tried and tried but not getting anywhere.

Thanks

# Event to catch an item being inserted

Friday, July 30, 2004 10:17 AM by Jason

Jan,
is there an event to catch a doc being inserted into a library?

# re: Workflow Lite for SharePoint RC1 (Finally!)

Thursday, September 21, 2006 12:50 PM by Felipe

hi, i'm from brazil and i need all pack with 3 files (leadit.sharepoint.workflow.dll , readme.txt , Sample.xml).

I take de movie class WorkflowInstallation.wmv , and i need 3 files for to do the workflow here...

if you've de link... please give me...

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, November 10, 2006 4:58 AM by sri

hi

release candidate 1 in the gotdotnet workspace does not contain the dll.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Monday, December 18, 2006 11:21 PM by zl

Hi. I have a series of actions (send mail, copy, set 3 different values) to take place when an event triggered.

sometimes the actions didn't take place. and gives impersonation error.

How should i solve this? appreciate any help.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Tuesday, March 20, 2007 3:33 AM by dokka

I have a problem in your design. I use Firefox in Ubuntu.

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, March 23, 2007 10:15 AM by Lucy! Please call me,Jonny

Lucy! Please call me,Lucy! Please call me

# re: Workflow Lite for SharePoint RC1 (Finally!)

Saturday, March 24, 2007 7:27 AM by Lucy! Please call me,Jonny

Lucy! Please call me,Lucy! Please call me

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, March 28, 2007 3:35 AM by Britneyxxrhb

<a href= http://my11618.livejournal.com >wildwood n.j. yearly rental</a> <a href= http://my67661.livejournal.com >233 e. roberts ave. wildwood n.j. rental</a> <a href= http://my91464.livejournal.com >daily paper in houston tx</a> <a href= http://my48529.livejournal.com >bay ave trattoria</a> <a href= http://my90003.livejournal.com >delilah and florida</a>

# re: Workflow Lite for SharePoint RC1 (Finally!)

Sunday, April 29, 2007 9:32 PM by Jopadil

<a href=" http://tenuate.alkablog.com ">buy tenuate</a>

<a href=" http://codein.alkablog.com ">buy codeine</a>

<a href=" http://valiums.alkablog.com ">buy valium</a>

<a href=" http://xanaxz.alkablog.com ">buy xanax</a>

<a href=" http://flexerilo.alkablog.com ">buy flexeril</a>

<a href=" http://diazepamf.alkablog.com ">buy diazepam</a>

<a href=" http://ephedras.alkablog.com ">buy ephedra</a>

<a href=" http://phentermines.alkablog.com ">buy phentermine</a>

<a href=" http://alprazolamh.alkablog.com ">buy alprazolam</a>

<a href=" http://btramadol.alkablog.com ">buy tramadol</a>

<a href=" http://levitras.alkablog.com ">buy levitra</a>

<a href=" http://cialisss.alkablog.com ">buy cialis</a>

<a href=" http://adipexs.alkablog.com ">buy adipex</a>

<a href=" http://vicodino.alkablog.com ">buy vicodin</a>

<a href=" http://valtrexs.alkablog.com ">buy valtrex</a>

<a href=" http://paxils.alkablog.com ">buy paxil</a>

<a href=" http://hydrocodonem.alkablog.com ">buy hydrocodone</a>

<a href=" http://ultrams.alkablog.com ">buy ultram</a>

<a href=" http://somax.alkablog.com ">buy soma</a>

<a href=" http://zolfti.alkablog.com ">buy zoloft</a>

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, May 04, 2007 9:57 PM by adult toys for sale,http://escena.ya.com/tekuv/kim/index.html <a href="http://escena.ya.com/tekuv/kim/index.html">buy sex toys</a> http://escena.ya.com/tekuv/kim/12-01.html <a href="http://escena.ya.com/tekuv/kim/12-01.html">amateur porn</a> http://escena.ya.com/tekuv/kim/12-02.html <a href="http://escena.ya.com/tekuv/kim/12-02.html">anal sex</a> http://escena.ya.com/tekuv/kim/12-03.html <a href="http://escena.ya.com/tekuv/kim/12-03.html">asian porn</a> http://escena.ya.com/tekuv/kim/12-04.html <a href="http://escena.ya.com/tekuv/kim/12-04.html">bbw sex</a> http://escena.ya.com/tekuv/kim/12-05.html <a href="http://escena.ya.com/tekuv/kim/12-05.html">bestiality pictures</a> http://escena.ya.com/tekuv/kim/12-06.html <a href="http://escena.ya.com/tekuv/kim/12-05.html">bestiality dvd</a> http://escena.ya.com/tekuv/kim/12-07.html <a href="http://escena.ya.com/tekuv/kim/12-07.html">big dicks</a> http://escena.ya.com/tekuv/kim/12-08.html <a href="http://escena.ya.com/tekuv/kim/12-08.html">big ***</a> http://escena.ya.com/tekuv/kim/12-09.html <a href="http://escena.ya.com/tekuv/kim/12-09.html">black sex</a> http://escena.ya.com/tekuv/kim/12-10.html <a href="http://escena.ya.com/tekuv/kim/12-10.html">pornstar video</a> http://escena.ya.com/tekuv/kim/12-11.html <a href="http://escena.ya.com/tekuv/kim/12-11.html">brunettes porn</a> http://escena.ya.com/tekuv/kim/12-12.html <a href="http://escena.ya.com/tekuv/kim/12-12.html">bukkake pictures</a> http://escena.ya.com/tekuv/kim/12-13.html <a href="http://escena.ya.com/tekuv/kim/12-13.html">buy cialis</a> http://escena.ya.com/tekuv/kim/12-14.html <a href="http://escena.ya.com/tekuv/kim/12-14.html">cumshot sex</a> http://escena.ya.com/tekuv/kim/12-15.html <a href="http://escena.ya.com/tekuv/kim/12-15.html">sex dating</a> http://escena.ya.com/tekuv/kim/12-16.html <a href="http://escena.ya.com/tekuv/kim/12-16.html">porn dvd</a> http://escena.ya.com/tekuv/kim/12-17.html <a href="http://escena.ya.com/tekuv/kim/12-17.html">ebony sex</a> http://escena.ya.com/tekuv/kim/12-18.html <a href="http://escena.ya.com/tekuv/kim/12-18.html">femdom porn</a> http://escena.ya.com/tekuv/kim/12-19.html <a href="http://escena.ya.com/tekuv/kim/12-19.html">fisting sex</a> http://escena.ya.com/tekuv/kim/12-20.html <a href="http://escena.ya.com/tekuv/kim/12-20.html">footjobs porn</a> http://escena.ya.com/tekuv/kim/12-21.html <a href="http://escena.ya.com/tekuv/kim/12-21.html">gangbang sex</a> http://escena.ya.com/tekuv/kim/12-22.html <a href="http://escena.ya.com/tekuv/kim/12-22.html">granny porn</a> http://escena.ya.com/tekuv/kim/12-23.html <a href="http://escena.ya.com/tekuv/kim/12-23.html">handjobs sex</a> http://escena.ya.com/tekuv/kim/12-24.html <a href="http://escena.ya.com/tekuv/kim/12-24.html">incest porn</a> http://escena.ya.com/tekuv/kim/12-25.html <a href="http://escena.ya.com/tekuv/kim/12-25.html">indian porn</a> http://escena.ya.com/tekuv/kim/12-26.html <a href="http://escena.ya.com/tekuv/kim/12-26.html">interracial sex</a> http://escena.ya.com/tekuv/kim/12-27.html <a href="http://escena.ya.com/tekuv/kim/12-27.html">latina porn</a> http://escena.ya.com/tekuv/kim/12-28.html <a href="http://escena.ya.com/tekuv/kim/12-28.html">lesbians sex</a> http://escena.ya.com/tekuv/kim/12-29.html <a href="http://escena.ya.com/tekuv/kim/12-29.html">buy levitra</a> http://escena.ya.com/tekuv/kim/12-30.html <a href="http://escena.ya.com/tekuv/kim/12-30.html">live sex chat</a> http://escena.ya.com/tekuv/kim/12-31.html <a href="http://escena.ya.com/tekuv/kim/12-31.html">mature porn</a> http://escena.ya.com/tekuv/kim/12-32.html <a href="http://escena.ya.com/tekuv/kim/12-32.html">group sex</a> http://escena.ya.com/tekuv/kim/12-33.html <a href="http://escena.ya.com/tekuv/kim/12-33.html">pantyhose sex</a> http://escena.ya.com/tekuv/kim/12-34.html <a href="http://escena.ya.com/tekuv/kim/12-34.html">pissing girls</a> http://escena.ya.com/tekuv/kim/12-35.html <a href="http://escena.ya.com/tekuv/kim/12-35.html">preggo porn</a> http://escena.ya.com/tekuv/kim/12-36.html <a href="http://escena.ya.com/tekuv/kim/12-36.html">rape video</a> http://escena.ya.com/tekuv/kim/12-37.html <a href="http://escena.ya.com/tekuv/kim/12-37.html">redheads sex</a> http://escena.ya.com/tekuv/kim/12-38.html <a href="http://escena.ya.com/tekuv/kim/12-38.html">scat sex</a> http://escena.ya.com/tekuv/kim/12-39.html <a href="http://escena.ya.com/tekuv/kim/12-39.html">sextoys for sale</a> http://escena.ya.com/tekuv/kim/12-40.html <a href="http://escena.ya.com/tekuv/kim/12-40.html">shemales sex</a> http://escena.ya.com/tekuv/kim/12-41.html <a href="http://escena.ya.com/tekuv/kim/12-41.html">teen porn</a> http://escena.ya.com/tekuv/kim/12-42.html <a href="http://escena.ya.com/tekuv/kim/12-42.html">hardcore toons</a> http://escena.ya.com/tekuv/kim/12-43.html <a href="http://escena.ya.com/tekuv/kim/12-43.html">twink sex</a> http://escena.ya.com/tekuv/kim/12-44.html <a href="http://escena.ya.com/tekuv/kim/12-44.html">buy viagra</a> http://escena.ya.com/tekuv/kim/12-45.html <a href="http://escena.ya.com/tekuv/kim/12-45.html">voyeur porn</a>

http://escena.ya.com/tekuv/kim/index.html <a href="http://escena.ya.com/tekuv/kim/index.html">buy sex toys</a>

http://escena.ya.com/tekuv/kim/12-01.html <a href="http://escena.ya.com/tekuv/kim/12-01.html">amateur porn</a>

http://escena.ya.com/tekuv/kim/12-02.html <a href="http://escena.ya.com/tekuv/kim/12-02.html">anal sex</a>

http://escena.ya.com/tekuv/kim/12-03.html <a href="http://escena.ya.com/tekuv/kim/12-03.html">asian porn</a>

http://escena.ya.com/tekuv/kim/12-04.html <a href="http://escena.ya.com/tekuv/kim/12-04.html">bbw sex</a>

http://escena.ya.com/tekuv/kim/12-05.html <a href="http://escena.ya.com/tekuv/kim/12-05.html">bestiality pictures</a>

http://escena.ya.com/tekuv/kim/12-06.html <a href="http://escena.ya.com/tekuv/kim/12-05.html">bestiality dvd</a>

http://escena.ya.com/tekuv/kim/12-07.html <a href="http://escena.ya.com/tekuv/kim/12-07.html">big dicks</a>

http://escena.ya.com/tekuv/kim/12-08.html <a href="http://escena.ya.com/tekuv/kim/12-08.html">big ***</a>

http://escena.ya.com/tekuv/kim/12-09.html <a href="http://escena.ya.com/tekuv/kim/12-09.html">black sex</a>

http://escena.ya.com/tekuv/kim/12-10.html <a href="http://escena.ya.com/tekuv/kim/12-10.html">pornstar video</a>

http://escena.ya.com/tekuv/kim/12-11.html <a href="http://escena.ya.com/tekuv/kim/12-11.html">brunettes porn</a>

http://escena.ya.com/tekuv/kim/12-12.html <a href="http://escena.ya.com/tekuv/kim/12-12.html">bukkake pictures</a>

http://escena.ya.com/tekuv/kim/12-13.html <a href="http://escena.ya.com/tekuv/kim/12-13.html">buy cialis</a>

http://escena.ya.com/tekuv/kim/12-14.html <a href="http://escena.ya.com/tekuv/kim/12-14.html">cumshot sex</a>

http://escena.ya.com/tekuv/kim/12-15.html <a href="http://escena.ya.com/tekuv/kim/12-15.html">sex dating</a>

http://escena.ya.com/tekuv/kim/12-16.html <a href="http://escena.ya.com/tekuv/kim/12-16.html">porn dvd</a>

http://escena.ya.com/tekuv/kim/12-17.html <a href="http://escena.ya.com/tekuv/kim/12-17.html">ebony sex</a>

http://escena.ya.com/tekuv/kim/12-18.html <a href="http://escena.ya.com/tekuv/kim/12-18.html">femdom porn</a>

http://escena.ya.com/tekuv/kim/12-19.html <a href="http://escena.ya.com/tekuv/kim/12-19.html">fisting sex</a>

http://escena.ya.com/tekuv/kim/12-20.html <a href="http://escena.ya.com/tekuv/kim/12-20.html">footjobs porn</a>

http://escena.ya.com/tekuv/kim/12-21.html <a href="http://escena.ya.com/tekuv/kim/12-21.html">gangbang sex</a>

http://escena.ya.com/tekuv/kim/12-22.html <a href="http://escena.ya.com/tekuv/kim/12-22.html">granny porn</a>

http://escena.ya.com/tekuv/kim/12-23.html <a href="http://escena.ya.com/tekuv/kim/12-23.html">handjobs sex</a>

http://escena.ya.com/tekuv/kim/12-24.html <a href="http://escena.ya.com/tekuv/kim/12-24.html">incest porn</a>

http://escena.ya.com/tekuv/kim/12-25.html <a href="http://escena.ya.com/tekuv/kim/12-25.html">indian porn</a>

http://escena.ya.com/tekuv/kim/12-26.html <a href="http://escena.ya.com/tekuv/kim/12-26.html">interracial sex</a>

http://escena.ya.com/tekuv/kim/12-27.html <a href="http://escena.ya.com/tekuv/kim/12-27.html">latina porn</a>

http://escena.ya.com/tekuv/kim/12-28.html <a href="http://escena.ya.com/tekuv/kim/12-28.html">lesbians sex</a>

http://escena.ya.com/tekuv/kim/12-29.html <a href="http://escena.ya.com/tekuv/kim/12-29.html">buy levitra</a>

http://escena.ya.com/tekuv/kim/12-30.html <a href="http://escena.ya.com/tekuv/kim/12-30.html">live sex chat</a>

http://escena.ya.com/tekuv/kim/12-31.html <a href="http://escena.ya.com/tekuv/kim/12-31.html">mature porn</a>

http://escena.ya.com/tekuv/kim/12-32.html <a href="http://escena.ya.com/tekuv/kim/12-32.html">group sex</a>

http://escena.ya.com/tekuv/kim/12-33.html <a href="http://escena.ya.com/tekuv/kim/12-33.html">pantyhose sex</a>

http://escena.ya.com/tekuv/kim/12-34.html <a href="http://escena.ya.com/tekuv/kim/12-34.html">pissing girls</a>

http://escena.ya.com/tekuv/kim/12-35.html <a href="http://escena.ya.com/tekuv/kim/12-35.html">preggo porn</a>

http://escena.ya.com/tekuv/kim/12-36.html <a href="http://escena.ya.com/tekuv/kim/12-36.html">rape video</a>

http://escena.ya.com/tekuv/kim/12-37.html <a href="http://escena.ya.com/tekuv/kim/12-37.html">redheads sex</a>

http://escena.ya.com/tekuv/kim/12-38.html <a href="http://escena.ya.com/tekuv/kim/12-38.html">scat sex</a>

http://escena.ya.com/tekuv/kim/12-39.html <a href="http://escena.ya.com/tekuv/kim/12-39.html">sextoys for sale</a>

http://escena.ya.com/tekuv/kim/12-40.html <a href="http://escena.ya.com/tekuv/kim/12-40.html">shemales sex</a>

http://escena.ya.com/tekuv/kim/12-41.html <a href="http://escena.ya.com/tekuv/kim/12-41.html">teen porn</a>

http://escena.ya.com/tekuv/kim/12-42.html <a href="http://escena.ya.com/tekuv/kim/12-42.html">hardcore toons</a>

http://escena.ya.com/tekuv/kim/12-43.html <a href="http://escena.ya.com/tekuv/kim/12-43.html">twink sex</a>

http://escena.ya.com/tekuv/kim/12-44.html <a href="http://escena.ya.com/tekuv/kim/12-44.html">buy viagra</a>

http://escena.ya.com/tekuv/kim/12-45.html <a href="http://escena.ya.com/tekuv/kim/12-45.html">voyeur porn</a>

# re: Workflow Lite for SharePoint RC1 (Finally!)

Wednesday, May 09, 2007 7:44 AM by Britneytnjxx

<a href= http://www.angelfire.com/planet/viqeno >dinner party ad</a> <a href= http://www.angelfire.com/planet/xatozi >jvc gr ax70 camcorder</a> <a href= http://www.angelfire.com/indie/dozosa >jesu joy of mans desiring free sheet music</a> <a href= http://www.angelfire.com/punk/ficope >enemy ninja shredder turtle</a> <a href= http://www.angelfire.com/goth/dovore >ascendancy manual</a>

# re: Workflow Lite for SharePoint RC1 (Finally!)

Friday, May 11, 2007 12:25 AM by Britneyomhut

<a href= http://funuti.hotbox.ru >a million years from now you know</a> <a href= http://kyxese.hotbox.ru >a rose for emily</a> <a href= http://kydihu.hotbox.ru >a380 abacus</a> <a href= http://qyliso.hotbox.ru >a second language courses in</a> <a href= http://gifory.hotbox.ru