.NET Framework Developer Center >
.NET Development Forums
>
Windows Workflow Foundation
>
Work flow in "My site"----->> Please Help
Work flow in "My site"----->> Please Help
- Hi every one,
i am new in asp.net.. just 3-4 months, i have devloped a website which will interact with Microsoft dynamics ax and do some processes(JV posting etc.), but now i want to attach work flow to my site and i cant even start..
I mean after two days of googling around, i dont evn know how to start with it.
Please can some one kindly help me with this..
just tell me how to start with applying a work flow in a single page website.
and please be specific and in points so that even a dummy like me can do it..
eg: I have created a Journal voucher, now befor posting i want it to get approved from a senior and then only i or my senior can post this Journal voucher.
i.e i want a approval process..- Edited byazurearian Tuesday, October 27, 2009 9:57 AM
- Edited byazurearian Tuesday, October 27, 2009 9:57 AM
Answers
- Hi,
->"just tell me how to start with applying a work flow in a single page website."
I wrote a blog on this issue,check it here:
http://xhinker.com/2009/08/30/WFRunWorkflowInASPNET.aspx
When we use ASP.NET app as a wf host, pay attention to scheduling wf threads:
ManualWorkflowSchedulerService scheduler = workflowRuntime.GetService(typeof (ManualWorkflowSchedulerService)) as ManualWorkflowSchedulerService;
...
scheduler.RunWorkflow(instance.InstanceId);
Regards
This posting is provided "AS IS" with no warranties, and confers no rights. Microsoft Online Community Support- Marked As Answer byAndrew_ZhuMSFT, ModeratorTuesday, November 03, 2009 1:49 AM
All Replies
Hi every one,
i am new in asp.net.. just 3-4 months, i have devloped a website which will interact with Microsoft dynamics ax and do some processes(JV posting etc.), but now i want to attach work flow to my site and i cant even start..
I mean after two days of googling around, i dont evn know how to start with it.
Please can some one kindly help me with this..
just tell me how to start with applying a work flow in a single page website.
and please be specific and in points so that even a dummy like me can do it..
and yeah i have devloped my site in c#3.5 VS 2008Hello!! any1 out thr listning to my plight.. help me here.. cmmmon.. sum1..
- Hi,
->"just tell me how to start with applying a work flow in a single page website."
I wrote a blog on this issue,check it here:
http://xhinker.com/2009/08/30/WFRunWorkflowInASPNET.aspx
When we use ASP.NET app as a wf host, pay attention to scheduling wf threads:
ManualWorkflowSchedulerService scheduler = workflowRuntime.GetService(typeof (ManualWorkflowSchedulerService)) as ManualWorkflowSchedulerService;
...
scheduler.RunWorkflow(instance.InstanceId);
Regards
This posting is provided "AS IS" with no warranties, and confers no rights. Microsoft Online Community Support- Marked As Answer byAndrew_ZhuMSFT, ModeratorTuesday, November 03, 2009 1:49 AM
- thanx a lot.. it was a great help.


