Ask a questionAsk a question
 

AnswerWork flow in "My site"----->> Please Help

  • Tuesday, October 27, 2009 9:39 AMazurearian Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    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..

Answers

  • Monday, November 02, 2009 6:19 AMAndrew_ZhuMSFT, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    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

All Replies

  • Tuesday, October 27, 2009 9:43 AMazurearian Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    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 2008
  • Wednesday, October 28, 2009 5:04 AMazurearian Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Hello!! any1 out thr listning to my plight.. help me here.. cmmmon.. sum1..

  • Monday, November 02, 2009 6:19 AMAndrew_ZhuMSFT, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    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
  • Tuesday, November 10, 2009 4:22 AMazurearian Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    thanx a lot.. it was a great help.