<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx</link><description>Step 4: Deploy Your Workflow Once you have your forms and code ready to go, it’s time to compile and deploy your workflow. To prepare for deployment: There are two required files for workflow features: 1) Feature.xml – just like every SharePoint feature,</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Differences in debugged workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1179139</link><pubDate>Thu, 30 Nov 2006 21:58:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1179139</guid><dc:creator>rlbogue</dc:creator><description>&lt;p&gt;Eilene -- There's great information here. &amp;nbsp;However, there are still a lot of little gotchas. &amp;nbsp;(See my blog for the ones I've managed to make it through thus far.)&lt;/p&gt;
&lt;p&gt;A few questions ...&lt;/p&gt;
&lt;p&gt;1) I'm observing that the workflow that I'm getting while debugging is slightly different than the one I created and installed. &amp;nbsp;For instance, a delayActivity and a codeActivity are removed. &amp;nbsp;I'm also observing that the file reference is to a dynamically generated XOML file even though the original workflow is a CS file. &amp;nbsp;Is there a way to get attached to the actual DLL? &amp;nbsp;Is there any reason why certain activities might disappear while debugging?&lt;/p&gt;
&lt;p&gt;2) As a sort of sidebar to the preceding, I've always believed that to debug items in the GAC you had to manually copy the PDB file into the GAC alongside the DLL. &amp;nbsp;It looks like your post is saying that this isn't required. &amp;nbsp;Is that because of the specific workflow debugging type?&lt;/p&gt;
&lt;p&gt;3) You've previously mentioned that the task from a CreateTask activity isn't committed until a workflow is dehydrated. &amp;nbsp;Other than putting a short duration delayActivity (1 second) is there a way to force a dehydration?&lt;/p&gt;
&lt;p&gt;Rob Bogue [MVP]&lt;/p&gt;
</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1179189</link><pubDate>Thu, 30 Nov 2006 22:27:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1179189</guid><dc:creator>Cassius</dc:creator><description>&lt;p&gt;Eilene,&lt;/p&gt;
&lt;p&gt;This guide is nice, but what we really need is some documentation on MSDN.&lt;/p&gt;
&lt;p&gt;Most of the workflow actions in the Microsoft.SharePoint.WorkflowActions namespace are completely undocumented.&lt;/p&gt;
&lt;p&gt;Ditto for the Microsoft.SharePoint.Workflow namespace. &amp;nbsp;Many of the classes don't even have a one-line description of what the heck they are for.&lt;/p&gt;
&lt;p&gt;All the data exchange services -- IListItemService, ISharePointService, ITaskService, and IWorkflowModificationService -- completely undocumented. &amp;nbsp;There can't be any serious work on custom Sharepoint workflow actions without some visiblity into how Sharepoint idles and reawakrens workflow instances.&lt;/p&gt;
&lt;p&gt;Heck, that's just workflows. &amp;nbsp;Half the MSDN entries in the Microsoft.Sharepoint namespace are blank as well.&lt;/p&gt;
&lt;p&gt;Office 2007 is going live in about a month. &amp;nbsp;I hope the Sharepoint team is aware of how woeful the documentation is right now.&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1179204</link><pubDate>Thu, 30 Nov 2006 22:32:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1179204</guid><dc:creator>Daryl</dc:creator><description>&lt;p&gt;rlbogue: &amp;quot;I'm observing that the workflow that I'm getting while debugging is slightly different than the one I created and installed.&amp;quot;&lt;/p&gt;
&lt;p&gt;I had this problem once. &amp;nbsp;I wasn't debugging, but I noticed the workflow activity log had entries from an activity which I had removed from the workflow.&lt;/p&gt;
&lt;p&gt;After loading the new workflow DLL into the GAC, you need to call IISRESET. &amp;nbsp;By unloading the IIS process and starting a new one, you force it to map the new DLL into its memory space.&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1179688</link><pubDate>Fri, 01 Dec 2006 01:38:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1179688</guid><dc:creator>Alex Angas</dc:creator><description>&lt;p&gt;Hi Eilene,&lt;/p&gt;
&lt;p&gt;I'm curious about the AssociateOnActivate element. There doesn't seem to be anything about this in the SDK or on the net in general. Can you give any more detail? Sounds exactly like what i'm looking for.&lt;/p&gt;
&lt;p&gt;Thanks for these articles, they are a good practical overview.&lt;/p&gt;
&lt;p&gt;Alex Angas.&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1181800</link><pubDate>Fri, 01 Dec 2006 11:19:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1181800</guid><dc:creator>Eilene Hao</dc:creator><description>&lt;p&gt;Hi Rob, here are some answers for your questions:&lt;/p&gt;
&lt;p&gt;1) Yes, Daryl is right; don't forget to iisreset to refresh everything, and make sure your build and GAC'ed dll's are the same:). &amp;nbsp;I believe the xoml is generated when it's compiled; you can actually create workflows using xoml directly instead of a cs file (haven't tried it, but I think there's a way). &amp;nbsp;The resulting dll should be the same though, in either case.&lt;/p&gt;
&lt;p&gt;2) I'm not sure about why this is the case for workflow. &amp;nbsp;But based on my own experience, I've never copied over the pdb when debugging, which is why I didn't write anything about it;).&lt;/p&gt;
&lt;p&gt;3) Yes, you can use OnTaskCreated to dehydrate before continuing.:)&lt;/p&gt;
&lt;p&gt;Cassius, you're right, and thanks for the feedback! &amp;nbsp;We have more info in the RTM SDKs, and we'll be updating after that to fill in any gaps. &amp;nbsp;Sorry for the inconvenience! &amp;nbsp;For now, there's a chart with the important SharePoint.Workflow classes in the summary doc I'll be attaching to my next post, and as a rule of thumb, any On* service method puts the workflow to sleep, anything that's not plows straight through and doesn't commit until it goes to sleep.&lt;/p&gt;
&lt;p&gt;Daryl, thanks for the helpful advice:)&lt;/p&gt;
&lt;p&gt;Alex, the example for how this works is the out-of-box Review workflows in MOSS. &amp;nbsp;You'll notice that by default any item in a document library has Approval and Collect Feedback workflows available to run. There're not in the list of associations for the doc lib, so it's may seem like they're coming from nowhere, but in actuality, they are associated with the Document content type, which is the base type for doc lib items. &amp;nbsp;This is done with this tag:). &amp;nbsp;Just add &amp;lt;AssociateOnActivate&amp;gt;true&amp;lt;/AssociateOnActivate&amp;gt; under the &amp;lt;Metadata&amp;gt; section of your workflow.xml to automatically make the workflow available on any item of the Document content type. &amp;nbsp;It'll also automatically enable new instances in the association if you uninstall and reinstall the feature (they normally get set to No New Instances on deactivation).&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1189074</link><pubDate>Sat, 02 Dec 2006 05:36:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1189074</guid><dc:creator>rlbogue</dc:creator><description>&lt;p&gt;Eilene -- &lt;/p&gt;
&lt;p&gt;I have a batch file that does the install (because I'm still copying in the PDB.) &amp;nbsp;It's tearing down and rebuilding the stack -- complete with two IISRESETs. &amp;nbsp;Yea, I know overkill, however, I don't want to take chances. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;I rebooted the whole system and I got an accurate instance. &amp;nbsp;... Now all I have to do is figure out why the workflow won't rehydrate after a delay. &amp;nbsp;I feel like the salmon swimming up stream (only to be snatched up by a bear at some point.)&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;
</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1189677</link><pubDate>Sat, 02 Dec 2006 06:34:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1189677</guid><dc:creator>Daryl</dc:creator><description>&lt;p&gt;rlbogue: &amp;quot;I have a batch file that does the install (because I'm still copying in the PDB.) &amp;nbsp;It's tearing down and rebuilding the stack -- complete with two IISRESETs.. &amp;nbsp;I rebooted the whole system and I got an accurate instance.&amp;quot;&lt;/p&gt;
&lt;p&gt;I sometimes wonder if the OWSTIMER.EXE process should be restarted as well when you replace a workflow DLL. &amp;nbsp;I know this is sometimes the process responsible for (trying to) rehydrate workflow instances. &amp;nbsp;Then again, it might just be telling Sharepoint to do it through a webservice or some such.&lt;/p&gt;
&lt;p&gt;rlbogue: &amp;quot;Now all I have to do is figure out why the workflow won't rehydrate after a delay.&amp;quot;&lt;/p&gt;
&lt;p&gt;You're not the only one. &amp;nbsp;Lots of people have this problem, and I've never heard anything from Microsoft about it. &amp;nbsp;I had this problem back in Betas 2 and 2TR. &amp;nbsp;Loads of people talk about it on microsoft.public.sharepoint.development_and_programming, but I've never seen a Microsoft employee post there. &amp;nbsp;For all I know, they don't even read the newsgroup, which seems strange to me.&lt;/p&gt;
&lt;p&gt;Eilene is helpful; maybe she'll shed some light on what's happening with selays.&lt;/p&gt;
&lt;p&gt;Since installing the RTM release, my delays started returning. &amp;nbsp;For some reason, they never rehydrate on the first &amp;quot;Workflow&amp;quot; timer job. &amp;nbsp;Always on the second run, 6-10 minutes after the delay expires.&lt;/p&gt;
&lt;p&gt;Knock on wood they're working for me right now. &amp;nbsp;Lots of people still can't get DelayActivity's to return at all in Sharepoint, which makes the majority of real-life workflow scenarios impossible. &amp;nbsp;:(&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1198637</link><pubDate>Sun, 03 Dec 2006 12:39:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1198637</guid><dc:creator>Eilene Hao</dc:creator><description>&lt;p&gt;Hi guys, there's a bug on delays at the moment; we're working on a patch that's almost ready. &amp;nbsp;Sorry for the inconvenience.&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1200826</link><pubDate>Sun, 03 Dec 2006 23:17:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1200826</guid><dc:creator>Daryl</dc:creator><description>&lt;p&gt;Eilene,&lt;/p&gt;
&lt;p&gt;Great to hear. &amp;nbsp;Bugs will happen. &amp;nbsp;Developers just want to know that 1. MS knows the bug exists, and 2. it will eventually get fixed.&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1204560</link><pubDate>Mon, 04 Dec 2006 15:29:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1204560</guid><dc:creator>rlbogue</dc:creator><description>&lt;p&gt;Daryl-- &lt;/p&gt;
&lt;p&gt;The PSS folks are under water right now trying to stay in the newsgroups and as you can see some of the MVPs are struggling with keeping ahead of the demand. &amp;nbsp;It should get better after the first of the year.&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;
</description></item><item><title>OnePage Workflow in SharePoint 2007</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1213004</link><pubDate>Tue, 05 Dec 2006 22:40:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1213004</guid><dc:creator>SharePoint, SharePoint and stuff </dc:creator><description>&lt;p&gt;OnePage : der einfache Blick auf das Wesentliche - die wichtigsten Informationen zu einem Thema auf einer&lt;/p&gt;
</description></item><item><title>Creating Workflows with Visual Studio 2005 (Walkthrough)</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1233388</link><pubDate>Thu, 07 Dec 2006 20:25:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1233388</guid><dc:creator>Bob Fox's Sharepoint Blog</dc:creator><description>&lt;p&gt;Im not sure how many have found this yet but Eileen Hao has put together a Seven Part walkthrough with...&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1273311</link><pubDate>Wed, 13 Dec 2006 11:51:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1273311</guid><dc:creator>Abhinandan</dc:creator><description>&lt;p&gt;Hey, could any one please tell me why I am not able to see the PostBuildActions.bat file when I am creating a Workflow library? &amp;nbsp;Also please let me know how to create it.&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;</description></item><item><title>WF inside of SharePoint</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1277966</link><pubDate>Thu, 14 Dec 2006 00:51:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1277966</guid><dc:creator>Matt W's Windows Workflow Place</dc:creator><description>&lt;p&gt;I'm a little late to notice this, but Eilene Hao, a PM on the SharePoint Workflow team, has put together&lt;/p&gt;</description></item><item><title>SharePoint 2007 workflow development</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1308859</link><pubDate>Sun, 17 Dec 2006 04:24:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1308859</guid><dc:creator>Miguel Isidoro</dc:creator><description>&lt;p&gt;Encontrei esta compila&amp;amp;ccedil;&amp;amp;atilde;o interessante de recursos sobre desenvolvimento de workflows para&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1321805</link><pubDate>Tue, 19 Dec 2006 06:21:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1321805</guid><dc:creator>Eilene Hao</dc:creator><description>&lt;p&gt;Sorry about that, postbuildactions.bat is coming out with the RTM MOSS SDK, which is alllmost ready...&lt;/p&gt;</description></item><item><title>The GAC</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1733764</link><pubDate>Wed, 21 Feb 2007 11:39:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1733764</guid><dc:creator>VJ</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Perhaps I'm slow but I still don't get the relationship between the debugger and the GAC. &amp;nbsp;Should the pdb be copied? &amp;nbsp;If so how does one get the location? If not, why are breakpoints sometimes dissabled even after uploading the dll and resetting iis? &amp;nbsp;Why do some dlls in the gac appear in windows\assembly\gac and others don't? &amp;nbsp;Is there a bug in visual studio relating to this? &amp;nbsp;Is there an article that explains this well and in simple terms, I'm tired of reading contradictory threads.&lt;/p&gt;
&lt;p&gt;VJ&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1808543</link><pubDate>Mon, 05 Mar 2007 12:59:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1808543</guid><dc:creator>elizageojy</dc:creator><description>&lt;p&gt;Eilene,&lt;/p&gt;
&lt;p&gt;Can we deploy a workflow as feature using the markup language (.xoml)&lt;/p&gt;
&lt;p&gt;Liz&lt;/p&gt;
</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#1962096</link><pubDate>Tue, 27 Mar 2007 12:51:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1962096</guid><dc:creator>luckshika</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;delay activity bug issue yet fixed or not? I've installed RTM MOSS SDK. whenever my workflow hits delay activity it goes to sleep and never wakes up again. &lt;/p&gt;
&lt;p&gt;any comment really appreciated!&lt;/p&gt;
</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#2026900</link><pubDate>Wed, 04 Apr 2007 22:40:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2026900</guid><dc:creator>Isabelle</dc:creator><description>&lt;p&gt;Hi Eilene,&lt;/p&gt;
&lt;p&gt;when I want to used my deployed custom workflow I get &amp;quot;the form has been closed&amp;quot; do you know why I get this error.&lt;/p&gt;
&lt;p&gt;I have been stuck for too long now, please help.&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;
&lt;p&gt;Isabelle&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#2032693</link><pubDate>Thu, 05 Apr 2007 16:25:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2032693</guid><dc:creator>Isabelle</dc:creator><description>&lt;p&gt;Hi Eilene,&lt;/p&gt;
&lt;p&gt;I just found the solution to the error &amp;quot;the form has been closed&amp;quot;. In the workflow.xml in the MetaData section when I specified the FormURN of my Initiation Form it was wrong even if I copied and paste the Form ID in the InfoPath properties. It was urn:schemas-microsoft-com:office:infopath:Initform:-myXSD-2007-03-08T01-00-06&lt;/p&gt;
&lt;p&gt;instead of &lt;/p&gt;
&lt;p&gt;urn:schemas-microsoft-com:office:infopath:InitiationForm:-myXSD-2007-03-08T01-00-06&lt;/p&gt;
&lt;p&gt;the name of the form was missed spelled.&lt;/p&gt;
&lt;p&gt;Isabelle&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#2056950</link><pubDate>Mon, 09 Apr 2007 04:31:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2056950</guid><dc:creator>Don</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The sample workflow that Ive developed opens the Initiation form in Add workflow settings(List-&amp;gt;Tasks-&amp;gt;WorkflowSettings).&lt;/p&gt;
&lt;p&gt;Is there a way where I get this form to open up when I click on Task-&amp;gt;NewItem because instead of using the standard task new item details..i want to use the info path(Inititationform.xsn) to do this. Would this be possible.&lt;/p&gt;
&lt;p&gt;Also, when I create a new item in tasks,the workflow triggers off but it shows 'Failed on start' in the log the error'The event receiver for the context is invalid'&lt;/p&gt;
&lt;p&gt;Any feedback on this will help&lt;/p&gt;</description></item><item><title>Start Learning Workflows!!</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#2099506</link><pubDate>Thu, 12 Apr 2007 16:46:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2099506</guid><dc:creator>Code Eater</dc:creator><description>&lt;p&gt;Wow such an exciting topic to learn!! its nice and fun yet its a bit difficult to grasp easily,,, This&lt;/p&gt;
</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#2286973</link><pubDate>Thu, 26 Apr 2007 17:27:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2286973</guid><dc:creator>Kevin S</dc:creator><description>&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;Would anyone know why my workflow errors out with &amp;quot;Failed on Start&amp;quot;. &amp;nbsp;When I check the logs, it says it can't find my dll or one of its dependencies. &amp;nbsp;I've loaded it to the GAC but don't know what else needs to be done for it to be found. &amp;nbsp;This is a custom wf I built from an example, it uses an InfoPath Initiation form, accepts my text, then I contine the wf by submitting. &amp;nbsp;At that point it should use my dll in the GAC, but it can't locate it. &amp;nbsp;I verified that it's signed, version number, public key token - all correct.&lt;/p&gt;
&lt;p&gt;Thanks for any help,&lt;/p&gt;
&lt;p&gt;Kevin&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#2463877</link><pubDate>Mon, 07 May 2007 17:27:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2463877</guid><dc:creator>Suneetha.n</dc:creator><description>&lt;p&gt;After doing all the steps when i do rebuild I am not able to see the PostBuildActions.bat file when I am creating a Workflow library? &amp;nbsp;Also please let me know how to create it.&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#2653822</link><pubDate>Tue, 15 May 2007 21:17:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2653822</guid><dc:creator>roky</dc:creator><description>&lt;p&gt;Suneetha.n : You need the SharePoint workflow templates for Visual Studio. &amp;nbsp;Those templates install when you install the SharePoint 2007 SDK.&lt;/p&gt;
&lt;p&gt;Here's the link:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.microsoft.com/downloads/details.aspx?familyid=6d94e307-67d9-41ac-b2d6-0074d6286fa9&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=6d94e307-67d9-41ac-b2d6-0074d6286fa9&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#2987757</link><pubDate>Wed, 30 May 2007 15:21:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2987757</guid><dc:creator>Shashwat</dc:creator><description>&lt;p&gt;Hi i am getting &amp;quot;Error occured&amp;quot; when i try to attach my custom workflow to the document library item.any clues?&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#3142083</link><pubDate>Thu, 07 Jun 2007 17:10:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3142083</guid><dc:creator>revati</dc:creator><description>&lt;p&gt;when i uploading a document,my workflow is showing the status as &amp;quot;falied on start(retrying)&amp;quot;.&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#4274664</link><pubDate>Tue, 07 Aug 2007 11:00:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4274664</guid><dc:creator>totmakov</dc:creator><description>&lt;p&gt;I've got the same error &amp;quot;failed on start(retrying)&amp;quot;. In log it says that something wrong with the context of workflow.&lt;/p&gt;
&lt;p&gt;It seems that in VS workflow designer you can't set WorkflowId property of onWorkflowActivated activity. (This property simply is absent in the &amp;quot;Properties&amp;quot; window). But in ECM Starter Kit workflows this property was set (saw in *.Designer.cs file) and they work fine.&lt;/p&gt;
&lt;p&gt;Is it cause of error? Is it bug?&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#4362714</link><pubDate>Mon, 13 Aug 2007 07:12:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4362714</guid><dc:creator>Min</dc:creator><description>&lt;p&gt;When I start this sample workflow, I got errors like 'Workflow [myworkflowname] was canceled by System Account' and 'Failed on start'. &lt;/p&gt;
&lt;p&gt;How can I fix these errors?&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#4784195</link><pubDate>Thu, 06 Sep 2007 13:42:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4784195</guid><dc:creator>Laxmikant</dc:creator><description>&lt;p&gt;When I want to use my deployed custom workflow I get &amp;quot;the form has been closed&amp;quot; does anyone know why I get this error.&lt;/p&gt;
&lt;p&gt;I have been stuck for too long now, please help.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Laxmikant&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#5383589</link><pubDate>Tue, 09 Oct 2007 19:38:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5383589</guid><dc:creator>Thor</dc:creator><description>&lt;p&gt;Great. &amp;quot;Failed on Start (retrying)&amp;quot; an NO solution! Does Ms have a clue?&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#7274432</link><pubDate>Mon, 28 Jan 2008 02:46:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7274432</guid><dc:creator>Stiow</dc:creator><description>&lt;p&gt;use Sharepoint Logging Spy for real time diagnostics to resolve these issues.&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#7671756</link><pubDate>Wed, 13 Feb 2008 14:49:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7671756</guid><dc:creator>Asif</dc:creator><description>&lt;p&gt;Hi I am new to WF. I just created a new custom activity using VS. It built succefully but when I run it, I am getting the message &amp;quot;Unable to start program 'C:\Workflows\SendEmailC\bin\Debug\SendEmailC.dll&amp;quot;. Would any one assist me in this problem?&lt;/p&gt;
&lt;p&gt;Regards..&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#7775256</link><pubDate>Mon, 18 Feb 2008 18:28:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7775256</guid><dc:creator>Vimal Raj SG</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I have created two Workflows for a site &lt;/p&gt;
&lt;p&gt;1)A seperate Approval Group of the site who approves the Workflow ,whenever it is started.And it is working fine.&lt;/p&gt;
&lt;p&gt;2)when i enable my second workflow(which is the Member Approval(the member group approves the document) for the same site, and start the workflow i got the error in sharepoint itself stating &amp;quot;An error has occured while starting the [Workflow name]&amp;quot;.&lt;/p&gt;
&lt;p&gt;it will be of great help ,if you can provide me some soln to this problem i am facing for sometime now..!:-(&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Vimal raj&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#7996197</link><pubDate>Mon, 03 Mar 2008 09:03:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7996197</guid><dc:creator>suryakant</dc:creator><description>&lt;p&gt;Would anyone know why my workflow errors out with &amp;quot;Failed on Start&amp;quot;. &amp;nbsp;When I check the logs, it says it can't find my dll or one of its dependencies. &amp;nbsp;I've loaded it to the GAC but don't know what else needs to be done for it to be found. &amp;nbsp;This is a custom wf I built from an example, it uses an InfoPath Initiation form, accepts my text, then I contine the wf by submitting. &amp;nbsp;At that point it should use my dll in the GAC, but it can't locate it. &amp;nbsp;I verified that it's signed, version number, public key token - all correct.&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#8344587</link><pubDate>Sun, 30 Mar 2008 22:57:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8344587</guid><dc:creator>Ann</dc:creator><description>&lt;p&gt;I was able to get rid of the Failed on Start error by repairing the .NET Framework 3.0 SP1. I put additional details in this blob post:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.thesug.org/blogs/annw/Lists/Posts/ViewPost.aspx?ID=6"&gt;http://www.thesug.org/blogs/annw/Lists/Posts/ViewPost.aspx?ID=6&lt;/a&gt;&lt;/p&gt;</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#8444145</link><pubDate>Wed, 30 Apr 2008 20:28:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8444145</guid><dc:creator>Seth Hildebrand</dc:creator><description>&lt;p&gt;I've found one cause to workflows failing on start. When/If you create a new task in your workflow, make sure you set your TaskID equal to a new GUID. This is easy to miss if you bind your TaskID property from the CreateTask activity, rather than specifying a hard coded Guid for the TaskID. On your handler for the CreateTask activity, put code in place that sets the variable that you bound against.. something like &amp;quot;taskID = Guid.NewGuid()&amp;quot;. &lt;/p&gt;</description></item><item><title>Problem on edit SPFile properties from a workflow.</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#8584447</link><pubDate>Mon, 09 Jun 2008 11:38:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8584447</guid><dc:creator>yfrolov</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I've tried to create simple sequential workflow in VS 2008. Everything works fine except I can't edit any property of the SPFile from the workflow. No exceptions fired, no messages in a log.&lt;/p&gt;
&lt;p&gt;Are there any ideas what the problem could be. Thanks much!&lt;/p&gt;
&lt;p&gt;Yuriy.&lt;/p&gt;
</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#8591231</link><pubDate>Wed, 11 Jun 2008 15:21:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8591231</guid><dc:creator>halomez</dc:creator><description>&lt;p&gt;I have a problem where it appears the workflow starts before the file is complete in a document library. &amp;nbsp;I have a scheduled task that copies an XML file from a remote system via the WebClient. &amp;nbsp;When my workflow starts it loads the XML into an XMLDocument object via workflowProperties.Item.File. &amp;nbsp;But it gives me an error &amp;quot;root element is missing&amp;quot;. &amp;nbsp;When I manually upload the same file it works. &amp;nbsp;I added a Thread.Sleep(30000) method to my code just before loading the file as a work around, but is there a better way to tell if the file has finished loading? &amp;nbsp;&lt;/p&gt;
</description></item><item><title>re: Developing Workflows in VS: Part 6 - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#8730970</link><pubDate>Mon, 14 Jul 2008 09:20:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8730970</guid><dc:creator>Chandra</dc:creator><description>&lt;p&gt;I have a workflow developed and deployed on the production site.Due to the change request we had to change the workflow by adding a number of states and event driven activities when i deploy the changed workflow with the same dll name i have seen that the already existing items on the production site which were In progress dead and not moving forward where as the new items where using the new version of the dll.Is there any way that i can force the older items In Progress to use the new version of the workflow.&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;</description></item><item><title>应用SharePoint的Workflow须记住的10句话！</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#8963051</link><pubDate>Wed, 24 Sep 2008 06:14:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8963051</guid><dc:creator>晃晃悠悠</dc:creator><description>&lt;p&gt;1）SharePoint的工作流是基于文档的工作流，只能关联到列表，文档库和内容类型上 2）SharePoint的工作流模板利用网站功能(Feature)来发布 3）SharePoint的...&lt;/p&gt;
</description></item><item><title>微软sharepoint产品组博客——使用VS进行工作流开发系列博客</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#9135896</link><pubDate>Mon, 24 Nov 2008 08:36:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9135896</guid><dc:creator>virus</dc:creator><description>&lt;p&gt;最近的两个月一直在研究SharePoint的内容，从配置到开发，从配置，到sharepoint对象模型，webpart，eventhandler，workflow，contenttype，自定义字段...&lt;/p&gt;
</description></item><item><title>使用VS进行工作流开发系列博客7-Developing Workflows in VS: Part6  - Deploy and Debug your workflow</title><link>http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-vs-part-6-deploy-and-debug-your-workflow.aspx#9140365</link><pubDate>Tue, 25 Nov 2008 06:28:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9140365</guid><dc:creator>virus</dc:creator><description>&lt;p&gt;在VS中开发工作流：部署和调试工作流原文地址：&lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-v"&gt;http://blogs.msdn.com/sharepoint/archive/2006/11/30/developing-workflows-in-v&lt;/a&gt;...&lt;/p&gt;
</description></item></channel></rss>