<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://connect.nintex.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>Developer Information NW2010</title><link>http://connect.nintex.com/forums/98/ShowForum.aspx</link><description>Please use this section to post queries about Technical issues. Please note, Nintex Connect is not a priority support nor a custom consulting service. Solutions and suggestions are provided with the best of intentions, but Nintex accepts no liability or responsibility for delays, inaccuracy or degree of abstraction.</description><dc:language>en</dc:language><generator>CommunityServer 2.1 (Build: 60809.935)</generator><item><title>Update Item on External Content List</title><link>http://connect.nintex.com/forums/thread/30176.aspx</link><pubDate>Thu, 13 Jun 2013 00:27:38 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30176</guid><dc:creator>mjstorevik</dc:creator><slash:comments>2</slash:comments><comments>http://connect.nintex.com/forums/thread/30176.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30176</wfw:commentRss><description>&lt;p&gt;I have a workflow that needs to create an item and then update that list item in a External Content List.&amp;nbsp; The create Item to the External List works fine.&amp;nbsp; However, when I try to do a Update Item for the External List I get the following error: &amp;quot;An error has occurred&amp;quot;.&amp;nbsp; That is all I get for error messages, I checked the NintexWorkflowHistory.&amp;nbsp;If the field I am trying to update in the External List is NULL then I get a Coercian Error otherwise I just the Error has Occurred.&amp;nbsp;&lt;/p&gt;&lt;p&gt;We just updated to this version of Nintex&amp;nbsp; (Nintex Workflow 2.3.9.0)&amp;nbsp;- the previous version would give us the same issue for creating a list item in a External List as well.&amp;nbsp; My workaround for this is to use a SharePoint Workflow instead.&amp;nbsp; &lt;/p&gt;</description></item><item><title>Removing the workflow progress visualization</title><link>http://connect.nintex.com/forums/thread/30193.aspx</link><pubDate>Thu, 13 Jun 2013 19:26:31 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30193</guid><dc:creator>Jlrc</dc:creator><slash:comments>3</slash:comments><comments>http://connect.nintex.com/forums/thread/30193.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30193</wfw:commentRss><description>&lt;p&gt;Is there a way to remove the OOB workflow progress visualization?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>How to embed ECMAScript in Nintex form?</title><link>http://connect.nintex.com/forums/thread/30073.aspx</link><pubDate>Thu, 06 Jun 2013 07:12:54 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30073</guid><dc:creator>Jun</dc:creator><slash:comments>5</slash:comments><comments>http://connect.nintex.com/forums/thread/30073.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30073</wfw:commentRss><description>&lt;p&gt;Hi folks,&lt;/p&gt;&lt;p&gt;I&amp;#39;m brand new to Nintex and after many searches online, I need some help with embedding ECMAScript in Nintex form.&lt;/p&gt;&lt;p&gt;I have&amp;nbsp; a form with 3 fields, staffID(dropdownlist field), firstName(single line input box), department(single line input box). The staffID dropdown list is connected to another list called &amp;quot;Staff&amp;quot;. I need to populate values for the firstName and department fields when I change the selection in the staffID dropdown list.&lt;/p&gt;&lt;p&gt;I&amp;#39;m thinking to use the client object model to get an item from the Staff list based on the passed in value (from the staffID dropdown list).&lt;/p&gt;&lt;p&gt;I&amp;#39;ve got the following code so far:&lt;/p&gt;&lt;p&gt;function populate_staffInfo(staffID){&lt;br /&gt;&amp;nbsp;try {&lt;br /&gt;&amp;nbsp; var context = new SP.ClientContext.get_current();&lt;br /&gt;&amp;nbsp; this.web = context.get_web();&lt;br /&gt;&amp;nbsp; var list = this.web.get_lists().getByTitle(&amp;#39;Staff&amp;#39;);&lt;br /&gt;&amp;nbsp; staff = list.getItemById(staffID);&lt;br /&gt;&amp;nbsp; context.load(this.staff, &amp;#39;Title&amp;#39;,&amp;#39;LastName&amp;#39;,&amp;#39;FirstName&amp;#39;,&amp;#39;Department&amp;#39;);&lt;br /&gt;&amp;nbsp; context.executeQueryAsync(Function.createDelegate(this, this.get_Staff_onSuccess), Function.createDelegate(this, this.get_Staff_onFailure)); &lt;br /&gt;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;catch (e)&lt;br /&gt;&amp;nbsp;{ &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(&amp;quot;An error occurred while fetching data. Please contact your system administrator.&amp;quot;);&lt;br /&gt;&amp;nbsp;}&lt;/p&gt;&lt;p&gt;function get_Staff_onSuccess(sender, args) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp; var fullName = this.staff.get_item(&amp;#39;FirstName&amp;#39;) + &amp;#39; &amp;#39; + this.staff.get_item(&amp;#39;LastName&amp;#39;);&lt;br /&gt;&amp;nbsp;&amp;nbsp; alert(fullName);&lt;br /&gt;}&lt;/p&gt;&lt;p&gt;function get_Staff_onFailure(sender, args) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(&amp;#39;Request failed. &amp;#39; + args.get_message() + &amp;#39;\n&amp;#39; + args.get_stackTrace());&lt;br /&gt;}&lt;/p&gt;&lt;p&gt;&lt;br /&gt;NWF$(document).ready(function() { &lt;br /&gt;populate_staffInfo(&amp;#39;1&amp;#39;);&lt;br /&gt;&amp;nbsp;}); &lt;/p&gt;&lt;p&gt;&lt;br /&gt;I&amp;#39;m expecting the above code to pop up a box with the staff&amp;#39;s full name whoes ID is 1.&lt;/p&gt;&lt;p&gt;After publishing the form, I&amp;#39;m not seeing anything. What did I miss? I haven&amp;#39;t included SP.js anywhere. Do I need to do this? Where?&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;p&gt;June&lt;br /&gt;&lt;/p&gt;</description></item><item><title>How to make the list attachments to open in read-only mode</title><link>http://connect.nintex.com/forums/thread/30212.aspx</link><pubDate>Fri, 14 Jun 2013 13:00:32 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30212</guid><dc:creator>RajuGowda7</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/30212.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30212</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Sorry if this&amp;nbsp;question has been answered in the past. Even after spending my&amp;nbsp;entire week looking for the soultion here, am unable to find any clue.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I&amp;#39;m using Nintex Worklfow 2010. I&amp;#39;ve created three lists:-&lt;/p&gt;&lt;p&gt;1. List for Initiator&lt;/p&gt;&lt;p&gt;2. List for Reviewer&lt;/p&gt;&lt;p&gt;3. List for Approver&lt;/p&gt;&lt;p&gt;Problem: I&amp;#39;m able to share the list attachments through &amp;#39;Request Data&amp;#39; action between the &amp;#39;Initiator&amp;#39;&amp;nbsp;and the &amp;#39;Reviewer&amp;#39; and &amp;#39;Approver&amp;#39;. But it is being accessed in edit mode. Is there a possibility of making it open in read-only mode for the reviewer and approver through&amp;nbsp;&amp;#39;Request Data&amp;#39; action? If not then,&amp;nbsp;are there any other options?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Lazy approval not working with LYNC</title><link>http://connect.nintex.com/forums/thread/27420.aspx</link><pubDate>Mon, 14 Jan 2013 08:28:54 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:27420</guid><dc:creator>chris4182</dc:creator><slash:comments>5</slash:comments><comments>http://connect.nintex.com/forums/thread/27420.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=27420</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;We have enabled IM notification and also have enabled lazy approval for IM. But it is not working. The user is able to respond to the initial message but at the end it is giving the below error message&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;span style="color:#000000;font-family:Segoe UI;font-size:9pt;word-wrap:break-word;"&gt;An
 error was encountered: You are not permitted to respond to this task. 
Tasks can be delegated via the approve/reject web interface.&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&amp;nbsp;We have verified the user&amp;#39;s permission toboth to the item and the task list and it is correct. On going through your forum we see lot&amp;#39;s of similar error like this one. We have checked the diag logs but wasn&amp;#39;t able to find something which will relate directly to the above error message.&lt;/p&gt;&lt;p&gt;Any help will be appreciated.&lt;/p&gt;</description></item><item><title>Nintex &quot;workflows I've Started&quot; webpart is showing cancelled workflow though only &quot;Running&quot; is selected in properties</title><link>http://connect.nintex.com/forums/thread/27969.aspx</link><pubDate>Thu, 07 Feb 2013 20:44:26 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:27969</guid><dc:creator>niravpatel</dc:creator><slash:comments>7</slash:comments><comments>http://connect.nintex.com/forums/thread/27969.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=27969</wfw:commentRss><description>&lt;p&gt;Hi ,&lt;/p&gt;&lt;p&gt;&amp;nbsp;I am using OOB Nintex&amp;nbsp;&lt;span style="font-size:10pt;"&gt;&amp;nbsp;&lt;/span&gt;&amp;quot;workflows I&amp;#39;ve Started&amp;quot; webpart in my sites.&lt;/p&gt;&lt;p&gt;It is configured for &amp;quot;Running&amp;quot; &amp;nbsp;workflows in webpart properties though it is showing &amp;quot;Canceled&amp;quot;&lt;span style="font-size:10pt;"&gt;&amp;nbsp; workflows item in it.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Above scenario is only with the Production sites, not with the our rest of the environment.&lt;/p&gt;&lt;p&gt;Would it be any particular setting am i missing anywhere ?&lt;/p&gt;&lt;p&gt;Any help will be appreciated.&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Nirav&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Workflow not working unless user is in Owner group</title><link>http://connect.nintex.com/forums/thread/30153.aspx</link><pubDate>Tue, 11 Jun 2013 21:04:21 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30153</guid><dc:creator>Murphybp2</dc:creator><slash:comments>1</slash:comments><comments>http://connect.nintex.com/forums/thread/30153.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30153</wfw:commentRss><description>&lt;p class="MsoNormal" style="margin:0in 0in 0pt;"&gt;&lt;font size="3"&gt;&lt;font face="Calibri"&gt;I have a workflow that I&amp;#39;m running that has a query list action.&lt;span&gt;&amp;nbsp; &lt;/span&gt;The list it is querying I have broken permissions because I wanted to remove the option for people to delete items from the list.&lt;span&gt;&amp;nbsp; &lt;/span&gt;When I run this workflow as myself, with owner privileges, it works.&lt;span&gt;&amp;nbsp; &lt;/span&gt;However when I run it with another id, it doesn&amp;#39;t return any results.&lt;span&gt;&amp;nbsp; &lt;/span&gt;It seems to be a permissions issue but I don&amp;#39;t understand why.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Any permission level, except for full control, and the query list returns no results.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Even when I change it back to the regular contribute it doesn&amp;#39;t work.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Anyone have an idea of why this would be?&lt;span&gt;&amp;nbsp; &lt;/span&gt;And how can I get it to work without giving users full control of the list.&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&amp;nbsp;</description></item><item><title>Cannot Publish workflow - actions that do not exist need to be configured.</title><link>http://connect.nintex.com/forums/thread/30111.aspx</link><pubDate>Fri, 07 Jun 2013 21:54:59 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30111</guid><dc:creator>randalls</dc:creator><slash:comments>1</slash:comments><comments>http://connect.nintex.com/forums/thread/30111.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30111</wfw:commentRss><description>&lt;div&gt;&lt;font color="#000000" face="Tahoma" size="2"&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font color="#000000" face="Tahoma" size="2"&gt;I am trying to publish a workflow, but am unable to. I get the error message:&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="tahoma" size="2"&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="tahoma" size="2"&gt;The workflow is not valid and cannot be published. The following actions need to be configured:&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="tahoma" size="2"&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="tahoma" size="2"&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="tahoma" size="2"&gt;Those actions are not to be found in the workflow. I suppose they existed at some point.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="tahoma" size="2"&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="tahoma" size="2"&gt;I tried publishing without validating, still got the error message.&lt;/font&gt;&lt;/div&gt;</description></item><item><title>Programmatic update of workflow status from Error to Completed</title><link>http://connect.nintex.com/forums/thread/30119.aspx</link><pubDate>Mon, 10 Jun 2013 07:59:13 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30119</guid><dc:creator>Jim Cantwell</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/30119.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30119</wfw:commentRss><description>&lt;p&gt;I have a need to change a workflow that&amp;#39;s current status is &amp;quot;Error Occurred&amp;quot;.&amp;nbsp; There are multiple approval tasks which have gone through and the customer does not want to lose all the tasks.&amp;nbsp; Can the status be updated through the APIs to mark as completed?&lt;/p&gt;</description></item><item><title>Add multiple workflows to Item menu</title><link>http://connect.nintex.com/forums/thread/29081.aspx</link><pubDate>Mon, 01 Apr 2013 14:57:23 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:29081</guid><dc:creator>jdhavo</dc:creator><slash:comments>6</slash:comments><comments>http://connect.nintex.com/forums/thread/29081.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=29081</wfw:commentRss><description>I would like to allow the user to start more than one workflow from the item menu.&amp;nbsp; Currently only the most recently published workflow shows in the item menu.&amp;nbsp; Is there a way (by using the position property) or some other means to allow the user to pick the workflow to run?&amp;nbsp; I have tried multiple values in the menu position field but nothing seems to work here.</description></item><item><title>DelegateTask webservice call not working</title><link>http://connect.nintex.com/forums/thread/30103.aspx</link><pubDate>Fri, 07 Jun 2013 17:36:13 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30103</guid><dc:creator>smithareddy</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/30103.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30103</wfw:commentRss><description>&lt;div&gt;Hi&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;We have infopath list form where the users set their delegate with (start and end dates). We have a Timer Job to delegate any tasks pending user&amp;#39;s approval to the delegatee in their absence. We have used DelegateTask Webservice in our TimerJob to delegate the tasks already pending in user&amp;#39;s queue (workflows already running) to the delegatee. The DelegateTask webservice call returns true and it reassigns the pending tasks to the Delegatee, but when Delegatee opens the task form the outcomes are greyed out and so they are unable to take action on the task. Please let me know what I am missing here. Below is the code we have for delegation.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; NintexWS.NintexWorkflowWS nintexWS = new NintexWS.NintexWorkflowWS();&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; nintexWS.Url = web.Url + &amp;quot;/_vti_bin/nintexworkflow/workflow.asmx&amp;quot;;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; nintexWS.UseDefaultCredentials = true;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bool ret = nintexWS.DelegateTask(task.ID, &amp;quot;Workflow Tasks&amp;quot;, Delegatee.Name, &amp;quot;Reassigning task to delegate&amp;quot;, false);&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Thanks!&lt;/div&gt;</description></item><item><title>Nintex Workflow webservice method PublishWorkflow</title><link>http://connect.nintex.com/forums/thread/29825.aspx</link><pubDate>Fri, 17 May 2013 13:59:24 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:29825</guid><dc:creator>christoffer.soltau</dc:creator><slash:comments>3</slash:comments><comments>http://connect.nintex.com/forums/thread/29825.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=29825</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;Does anyone have an example of how to
configure the PublishWorkflow action of /Nintexworkflow/workflow.asmx?&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;&amp;nbsp;So far, I&amp;#39;ve configured it like below, but keep
getting this error message:&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;Server was unable to process request.
---&amp;gt; There is an error in XML document (0, 0). ---&amp;gt; Root element is
missing.&amp;nbsp;&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpFirst"&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot;
encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpMiddle"&gt;&lt;span&gt;&amp;lt;soap:Envelope
xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot;
xmlns:xsd=&amp;quot;http://www.w3.org/2001/XMLSchema&amp;quot;
xmlns:soap=&amp;quot;http://schemas.xmlsoap.org/soap/envelope/&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpMiddle"&gt;&lt;span&gt;&amp;nbsp;
&amp;nbsp; &amp;lt;soap:Body&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpMiddle"&gt;&lt;span&gt;&amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;PublishWorkflow
xmlns=&amp;quot;http://nintex.com&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpMiddle"&gt;&lt;span&gt;&amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;wfName&amp;gt;New Workflow&amp;lt;/wfName&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpMiddle"&gt;&lt;span&gt;&amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;activityConfigs&amp;gt;&amp;lt;/activityConfigs&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpMiddle"&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;lt;listId&amp;gt;{447D712E-647E-470A-BF71-7B04538FB526}&amp;lt;/listId&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpMiddle"&gt;&lt;span&gt;&amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;contentTypeId&amp;gt;&amp;lt;/contentTypeId&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpMiddle"&gt;&lt;span&gt;&amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;changeNotes&amp;gt;&amp;lt;/changeNotes&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpMiddle"&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/PublishWorkflow&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpMiddle"&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;lt;/soap:Body&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class="MsoNormalCxSpLast"&gt;&lt;span&gt;&amp;lt;/soap:Envelope&amp;gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;It seems the issue is in the activityConfigs node, where
an xml node may be expected, but I can&amp;rsquo;t find documentation on the webservice
method anywhere.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;&amp;hellip; as for alternatives, what I&amp;rsquo;m trying to
do is this:&lt;/span&gt;&lt;/p&gt;

&lt;p style="margin-left:36pt;text-indent:-18pt;"&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;1)&lt;span style="font-size:7pt;font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;Create new site from template with Nintex workflows in
it using Nintex Workflow Create Site&lt;/span&gt;&lt;/p&gt;

&lt;p style="margin-left:36pt;text-indent:-18pt;"&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;2)&lt;span style="font-size:7pt;font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;Workflows are created as draft in the new site&lt;/span&gt;&lt;/p&gt;

&lt;p style="margin-left:36pt;text-indent:-18pt;"&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;3)&lt;span style="font-size:7pt;font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;Use Call Webservice to publish said workflows.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;Any help would be appreciated.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;Thanks,&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style="font-size:10pt;font-family:Arial, sans-serif;"&gt;Christoffer&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Open Nintex Workflow Multi Outcome Task Infopath Formular within Word 2010</title><link>http://connect.nintex.com/forums/thread/26017.aspx</link><pubDate>Wed, 31 Oct 2012 09:31:28 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:26017</guid><dc:creator>steining</dc:creator><slash:comments>1</slash:comments><comments>http://connect.nintex.com/forums/thread/26017.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=26017</wfw:commentRss><description>&lt;p&gt;Hi, i created a Flexi Task with an custom Infopath Formular (Content Type: Nintex Workflow Multi Outcome Task)&lt;/p&gt;&lt;p&gt;If i try to close this task from within my word 2010 (Open this Task), i get the error: &lt;/p&gt;&lt;p&gt;Form template: &lt;font color="#000000"&gt;&lt;a href="https://portal/wien/_layouts/formResource.aspx?templateFile=https://portal/wien"&gt;https://portal&lt;/a&gt;&lt;/font&gt;&lt;a href="https://portal/wien/_layouts/formResource.aspx?templateFile=https://portal/wien"&gt;/wien/_layouts/formResource.aspx?templateFile=https://portal/wien&lt;/a&gt;/Lists/Workflow Tasks/Nintex Workflow Multi Outcome Task/&lt;strong&gt;Nintex Workflow Multi Outcome Task.xsn&lt;/strong&gt;&lt;br /&gt;The file is not a valid XML document.&lt;br /&gt;DTD is prohibited.&lt;br /&gt;  Line 2, Position 9&lt;/p&gt;&lt;p&gt;It seems that something with the content type is wrong, is there a way to fix this issue ?&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;p&gt;Thomas&lt;/p&gt;</description></item><item><title>Create Recurring Event with Web Service</title><link>http://connect.nintex.com/forums/thread/30067.aspx</link><pubDate>Wed, 05 Jun 2013 21:43:59 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30067</guid><dc:creator>Murphybp2</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/30067.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30067</wfw:commentRss><description>&lt;p&gt;I&amp;#39;m trying to figure out how to create a recuring event using a web service action.&amp;nbsp; My scenario is that I want to build a form with InfoPath, that once it&amp;#39;s submitted, a workflow would run and create an event based on the data in the form.&amp;nbsp; And some of the events could be recurring.&amp;nbsp; I&amp;#39;m trying to use the UpdateListItems web service.&amp;nbsp; Below is the soap I have so far, but it&amp;#39;s not working.&amp;nbsp; I run the WF, and it completes.&amp;nbsp; But when I go to the calendar, I get an error and can&amp;#39;t open it. I&amp;#39;ve actually had to delete and recreate the calendar a number of times now.&amp;nbsp; Any ideas on what&amp;#39;s wrong with it, and how to get it to work?&amp;nbsp; (Note: the data for the fields is dummy data.&amp;nbsp; Just trying to get it working first, then I&amp;#39;ll replace with variables)&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;&amp;lt;soap:Envelope xmlns:xsi=&amp;quot;&lt;a href="http://www.w3.org/2001/XMLSchema-instance"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot; xmlns:xsd=&amp;quot;&lt;a href="http://www.w3.org/2001/XMLSchema"&gt;http://www.w3.org/2001/XMLSchema&lt;/a&gt;&amp;quot; xmlns:soap=&amp;quot;&lt;a href="http://schemas.xmlsoap.org/soap/envelope/"&gt;http://schemas.xmlsoap.org/soap/envelope/&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;soap:Body&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;UpdateListItems xmlns=&amp;quot;&lt;a href="http://schemas.microsoft.com/sharepoint/soap/"&gt;http://schemas.microsoft.com/sharepoint/soap/&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;listName&amp;gt;Calendar&amp;lt;/listName&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;updates&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Batch OnError=&amp;quot;Return&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Method ID=&amp;quot;1&amp;quot; Cmd=&amp;quot;New&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;Title&amp;quot;&amp;gt;Notification Workflows&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;Title&amp;quot;&amp;gt;A New Event&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;Location&amp;quot;&amp;gt;London&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;EventDate&amp;quot;&amp;gt;2013-06-20T09:00:00Z&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;EndDate&amp;quot;&amp;gt;2013-06-23T12:00:00Z&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;UID&amp;quot;&amp;gt;{WorkflowVariable:st_NewGUID}&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;TimeZone&amp;quot;&amp;gt;13&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;Description&amp;quot;&amp;gt;&amp;lt;p&amp;gt;This is a description of the event&amp;lt;/p&amp;gt;&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;Field Name=&amp;quot;fAllDayEvent&amp;quot;&amp;gt;0&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;fRecurrence&amp;quot;&amp;gt;1&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;EventType&amp;quot;&amp;gt;1&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;RecurrenceData&amp;quot;&amp;gt;&amp;lt;recurrence&amp;gt;&amp;lt;rule&amp;gt;&amp;lt;firstDayOfWeek&amp;gt;su&amp;lt;/firstDayOfWeek&amp;gt;&amp;lt;repeat&amp;gt;&amp;lt;weekly su=&amp;#39;TRUE&amp;#39; th=&amp;#39;TRUE&amp;#39; fr=&amp;#39;TRUE&amp;#39; sa=&amp;#39;TRUE&amp;#39; weekFrequency=&amp;#39;1&amp;#39;/&amp;gt;&amp;lt;/repeat&amp;gt;&amp;lt;windowEnd&amp;gt;2013-06-23T12:00:00Z&amp;lt;/windowEnd&amp;gt;&amp;lt;/rule&amp;gt;&amp;lt;/recurrence&amp;gt;&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;WorkspaceLink&amp;quot;&amp;gt;0&amp;lt;/Field&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Method&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Batch&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/updates&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/UpdateListItems&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/soap:Body&amp;gt;&lt;br /&gt;&amp;lt;/soap:Envelope&amp;gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Find out files when moving a document set failed</title><link>http://connect.nintex.com/forums/thread/30021.aspx</link><pubDate>Mon, 03 Jun 2013 12:23:17 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30021</guid><dc:creator>Remy</dc:creator><slash:comments>1</slash:comments><comments>http://connect.nintex.com/forums/thread/30021.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30021</wfw:commentRss><description>&lt;p&gt;Dear Nintex,&lt;/p&gt;&lt;p&gt;&amp;nbsp;I&amp;#39;ve got the situation where a workflow that moves a document set to another location has failed because the destination was not existing at the time where the workflow did the job.&lt;/p&gt;&lt;p&gt;&amp;nbsp;The problem is that I have lost the documents that were supposed to be moved.&lt;/p&gt;&lt;p&gt;&amp;nbsp;Is there a way to find out those documents?&lt;/p&gt;&lt;p&gt;&amp;nbsp;Thanks a lot in advance,&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:10pt;"&gt;Best Regards,&lt;br /&gt;Remy&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:10pt;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Last Task Respondent</title><link>http://connect.nintex.com/forums/thread/29948.aspx</link><pubDate>Wed, 29 May 2013 19:43:04 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:29948</guid><dc:creator>randalls</dc:creator><slash:comments>10</slash:comments><comments>http://connect.nintex.com/forums/thread/29948.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=29948</wfw:commentRss><description>&lt;div&gt;&lt;font face="tahoma" size="2"&gt;I want to capture the user that completes a Request Data task so I can put it in the list. I have users in SharePoint groups, so instead of the user, it returns the group. How can I get this information?&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="tahoma" size="2"&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="tahoma" size="2"&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="tahoma" size="2"&gt;Thank you,&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face="Tahoma"&gt;randalls&lt;/font&gt;&lt;/div&gt;</description></item><item><title>Help! Unhandled Exception occured - Nintex 2010 SDK Custom Task Forms</title><link>http://connect.nintex.com/forums/thread/30052.aspx</link><pubDate>Tue, 04 Jun 2013 18:02:35 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30052</guid><dc:creator>lancea</dc:creator><slash:comments>1</slash:comments><comments>http://connect.nintex.com/forums/thread/30052.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30052</wfw:commentRss><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I am currently following the Nintex 2010 SDK guide about creating Custom Task Forms.. I have done all steps successfully such as publishing the solution provided to my SharePoint layouts folder, installing the compiled&amp;nbsp;DLL to GAC, creating and setting up a custom content type which contains the custom task form URL, and testing it out by creating a Request Review Nintex Workflow.&lt;/p&gt;&lt;p&gt;However, I am encountering the error &amp;quot;Unhandled Exception occurred&amp;quot; whenever I try to view the Task Form for that particular workflow! Looking into the event logs, here is what I found. I am not quite sure what to make of it.. Please help me thanks!&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;3005&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;An unhandled exception 
has occurred.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;4/06/2013 10:48:27 
p.m.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;4/06/2013 2:48:27 
p.m.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;0f49d2698e2549d58e7f142f2a590d37&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;494&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;5&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;0&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;/LM/W3SVC/914706193/ROOT-1-130148060545618803&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;WSS_Minimal&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;/&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;C:\inetpub\wwwroot\wss\VirtualDirectories\80\&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;PKS1413&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;3492&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;w3wp.exe&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;NT AUTHORITY\NETWORK 
SERVICE&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;COMException&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;Cannot create a file 
when that file already exists. (Exception from HRESULT: 
0x800700B7)&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;http://pks1413/_layouts/NintexCustomForm/CustomTaskForm_English.aspx?List=218227a0%2Db745%2D4a56%2D801d%2D3a7ef410da62&amp;amp;ID=3&amp;amp;Source=http%3A%2F%2Fpks1413%2Finvoice%2F%5Flayouts%2FWrkStat%2Easpx%3FList%3D2f959e7a%2D0828%2D4e48%2D8d72%2Dadb12b93a355%26WorkflowInstanceID%3D%257b27C222A8%252d8134%252d4CEA%252dAD65%252dD4C5BEC00AA3%257d&amp;amp;IsDlg=1&amp;amp;Web=b50b5914%2D8e57%2D4a33%2Da8e8%2D64faca52170f&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;/_layouts/NintexCustomForm/CustomTaskForm_English.aspx&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;fe80::7da5:10e2:86f4:6b28%25&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;User\LanceA&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;True&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;Negotiate&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;NT AUTHORITY\NETWORK 
SERVICE&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;7&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;NT AUTHORITY\NETWORK 
SERVICE&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;True&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;table cellspacing="0"&gt;

&lt;tr&gt;
&lt;td&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/td&gt;
&lt;td style="font-family:'Segoe UI';vertical-align:top;"&gt;&lt;p&gt;at 
System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 
errorCode, IntPtr errorInfo) at System.Web.Util.Misc.ThrowIfFailedHr(Int32 
hresult) at 
System.Web.Hosting.IIS7WorkerRequest.ReMapHandlerAndGetHandlerTypeString(HttpContext 
httpContext, String path, Boolean&amp;amp; handlerExists) at 
System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() 
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp;amp; 
completedSynchronously) &lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description></item><item><title>Relation between Infopath task form and Workflow Variables</title><link>http://connect.nintex.com/forums/thread/30051.aspx</link><pubDate>Tue, 04 Jun 2013 17:53:46 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:30051</guid><dc:creator>jackgelo</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/30051.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=30051</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m new to Infopath form customization and I&amp;#39;m struggling with a question about the way to add some fields in the form and make the value saved directly in workflow variables or in some columns of the task item.&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:10pt;"&gt;I have a workflow with an Assign Flexi Task action and I want to customize the form with three additional fields (two drop-down choices and one number field), I&amp;#39;ve created a new content type, child of &amp;quot;Nintex Workflow Multi Outcome Task using Infopath&amp;quot; where I&amp;#39;ve added the three columns I want in the form.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;I&amp;#39;ve configured the flexi task to use my custom content type, I&amp;#39;ve saved the workflow and I&amp;#39;ve selected Edit with Microsoft Infopath 2010 under Edit Task Form.&lt;/p&gt;&lt;p&gt;The form opens in Infopath but it has only the Outcome and Comments fields, I&amp;#39;ve tried to add as a secondary connection a connection to the Workflow Task list and then selected my columns but if I add them to the form, they appear only in a Repeating Section (that I don&amp;#39;t need) and they all appear as text-box, even if the field are of the type specified above.&lt;/p&gt;&lt;p&gt;&amp;nbsp;Could someone help me and tell how to add some field in a task form and make the value saved somewhere on SharePoint?&lt;/p&gt;&lt;p&gt;&amp;nbsp;Thank you very much to everyone who will help me!&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:10pt;"&gt;Giacomo&amp;nbsp;&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Nintex Webservice calls parent site Workflows when called programatically</title><link>http://connect.nintex.com/forums/thread/29966.aspx</link><pubDate>Thu, 30 May 2013 11:34:25 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:29966</guid><dc:creator>ctarr</dc:creator><slash:comments>2</slash:comments><comments>http://connect.nintex.com/forums/thread/29966.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=29966</wfw:commentRss><description>&lt;p&gt;Hi, &lt;/p&gt;&lt;p&gt;I have come across a really strange issue with a client.&amp;nbsp; We created a Site Workflow in a child site.&amp;nbsp; When we kick off the workflow using a Nintex Webservice call to StartSiteWorkflow it kicks off correctly.&amp;nbsp; However when we call the same workflow via code it calls the workflows at the parent site and not the chold site, thereby throwing an error that the workflow does not exist.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Has anyone seen this before or have a workaround.&amp;nbsp; Only workaround I have was to create site workflows on the Parent site, which isn&amp;#39;t ideal!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;p&gt;Craig&lt;/p&gt;</description></item><item><title>Retrieving URL from image field</title><link>http://connect.nintex.com/forums/thread/29993.aspx</link><pubDate>Fri, 31 May 2013 12:24:48 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:29993</guid><dc:creator>Despy</dc:creator><slash:comments>3</slash:comments><comments>http://connect.nintex.com/forums/thread/29993.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=29993</wfw:commentRss><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I have a custom list for storing news items. This custom list has a roll-up image field. While creating a new news item, I want to include the image url in the notification email.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I inserted the item property news_image as reference in the email body, But the variables is somehow empty.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any suggestions?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Kind regards,&lt;/p&gt;&lt;p&gt;Dennis&amp;nbsp;&lt;/p&gt;</description></item><item><title>Server was  unable to process request. ---&gt; Field  not found</title><link>http://connect.nintex.com/forums/thread/29952.aspx</link><pubDate>Wed, 29 May 2013 22:36:07 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:29952</guid><dc:creator>hgagarcia</dc:creator><slash:comments>1</slash:comments><comments>http://connect.nintex.com/forums/thread/29952.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=29952</wfw:commentRss><description>&lt;p&gt;Hi.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:10pt;"&gt;I&amp;#39;m creating a custom action, but i have problems. When I save the workflow the message &amp;quot;Server was unable to process request. ---&amp;gt; Field not found&amp;quot; is displayed.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;Can help me?&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:10pt;"&gt;Tks.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;</description></item><item><title>User defined action reminders not working</title><link>http://connect.nintex.com/forums/thread/29921.aspx</link><pubDate>Tue, 28 May 2013 09:30:45 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:29921</guid><dc:creator>PRKJ</dc:creator><slash:comments>2</slash:comments><comments>http://connect.nintex.com/forums/thread/29921.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=29921</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I have a workflow where i have user defined actions mostly request data. Now I want to add reminders to those actions, for example if user didnt respond in next 1 day or&amp;nbsp;1 hour or 30 min then send reminder.&lt;/p&gt;&lt;p&gt;I have tried using task reminders, tried user defined reminder configuration etc but nothing worked.&lt;/p&gt;&lt;p&gt;Please let me know if anyone has done this before.&lt;/p&gt;&lt;p&gt;FYI - Nintex Workflow 2010 Version: 2.3.7.0&lt;/p&gt;</description></item><item><title>Permissions and the &quot;Wait for checkout status change&quot; action</title><link>http://connect.nintex.com/forums/thread/29962.aspx</link><pubDate>Thu, 30 May 2013 09:46:51 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:29962</guid><dc:creator>mahendrent</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/29962.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=29962</wfw:commentRss><description>&lt;p&gt;I have the following scenario:&lt;/p&gt;&lt;p&gt;An InfoPath form is submitted to a library (from the InfoPath client), and a workflow then starts automatically, and sets permissions, updates fields, sends notifications etc.&lt;/p&gt;&lt;p&gt;I had to insert&amp;nbsp;a Wait for checkout status change action to wait for the document editor to finish editing the document, otherwise the workflow crashed trying to access fields on the item.&lt;/p&gt;&lt;p&gt;Now, for a few minutes (5-10mins), the form is visible to everyone - since the permissions have not yet&amp;nbsp;been set.&lt;/p&gt;&lt;p&gt;So I inserted a Set permission action at the top of my workflow to temporarily set the permissions to only allow the Initator contribute permissions.&lt;/p&gt;&lt;p&gt;The following problem then occurs:&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now the workflow is stuck on the Wait for checkout status change forever - I waited for over an hour.&lt;/p&gt;&lt;p&gt;It&amp;#39;s almost as if the Set permission action is locking the item again, and never releasing it or something.&lt;/p&gt;&lt;p&gt;Is there any other method I can use to achieve what I want - prevent people from viewing the form, but still including the Wait for checkout status change action?&lt;/p&gt;</description></item><item><title>Help with Nintex SDK - Custom Task Form?</title><link>http://connect.nintex.com/forums/thread/29923.aspx</link><pubDate>Tue, 28 May 2013 10:13:13 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:29923</guid><dc:creator>lancea</dc:creator><slash:comments>5</slash:comments><comments>http://connect.nintex.com/forums/thread/29923.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=29923</wfw:commentRss><description>&lt;p&gt;Hi!&lt;/p&gt;&lt;p&gt;Please help me on following the steps of the Nintex SDK in &amp;quot;Creating a custom task form&amp;quot;. I am now on the step: &amp;nbsp;&lt;/p&gt;&lt;h3 class="procedureSubHeading"&gt;Deploy the custom form&lt;/h3&gt;
&lt;div class="subSection"&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Custom aspx web forms are deployed to C:\Program Files\Common Files\Microsoft 
Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS. A subfolder should be created 
in the layouts directory for any custom web forms.&lt;/p&gt;
&lt;/li&gt;&lt;li&gt;
&lt;p&gt;Install the complied DLL to the GAC.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;p&gt;&amp;nbsp;However, I am having trouble performing the first step. I open the project in Visual Studio 2010 and all is OK. I can Build / Clean, etc. But I can&amp;#39;t find option to Deploy, nor do I know how I can deploy to the specified location above. I am currently running a SharePoint Foundation 2010 on my local machine. (Sorry, I am a beginner so I don&amp;#39;t know much about creating custom forms)&lt;/p&gt;&lt;p&gt;&amp;nbsp;What am I supposed to do with the solution in Visual Studio so I can deploy?&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:10pt;"&gt;Thank you!&amp;nbsp;&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Open this task button in Office ribbon</title><link>http://connect.nintex.com/forums/thread/29511.aspx</link><pubDate>Wed, 24 Apr 2013 16:42:08 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:29511</guid><dc:creator>vito-it</dc:creator><slash:comments>2</slash:comments><comments>http://connect.nintex.com/forums/thread/29511.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=98&amp;PostID=29511</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Is there a way&amp;nbsp;to have the &amp;quot;Open this task&amp;quot; button available in the Outlook-message-ribbon, when running a Nintex &amp;quot;Request approval&amp;quot; action?&lt;br /&gt;When using the standard Sharepoint approval workflow this button is available and very useful.&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;Mark&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>