<?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>Workflow Action examples.</title><link>http://connect.nintex.com/forums/88/ShowForum.aspx</link><description>Examples of common workflow action configurations and usage in real world scenarios. Please note: these examples are provided as is and designed as a way to insipre your own creative thinking. They are illustrative examples, not ready-made solutions, and therefore are not specifically supported. Also please note these configurations were created for specific environments and may need to be modified to suit your environment. The product help files in Nintex Connect and inline inside the product contain all the specific action configuration information.</description><dc:language>en</dc:language><generator>CommunityServer 2.1 (Build: 60809.935)</generator><item><title>Call Web Service: Attaching a file from a Document Library to a List</title><link>http://connect.nintex.com/forums/thread/8036.aspx</link><pubDate>Fri, 25 Dec 2009 19:04:08 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:8036</guid><dc:creator>Anonymous</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/8036.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=88&amp;PostID=8036</wfw:commentRss><description>&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;You can use the Microsoft Web service &lt;a href="http://msdn.microsoft.com/en-us/library/lists.lists.addattachment.aspx"&gt;http://msdn.microsoft.com/en-us/library/lists.lists.addattachment.aspx&lt;/a&gt; to attach the current file the workflow is running on to a list item within the list specified in the Web service SOAP configuration. &lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;Below is a List with one item and no attachment&lt;/p&gt;&lt;img height="128" src="http://download.nintex.com/Connect_images/8036/1.jpg" width="304" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;Below is a screenshot of the Shared Documents library containing the item to attach to the list:&lt;/p&gt;&lt;img height="138" src="http://download.nintex.com/Connect_images/8036/2.jpg" width="436" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;Here we are creating a workflow on the Shared Documents library with a &amp;quot;Call Web Service&amp;quot; action configured as follows:&lt;/p&gt;&lt;img height="716" src="http://download.nintex.com/Connect_images/8036/3.jpg" width="636" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;In this example the &lt;strong&gt;listName&lt;/strong&gt; and &lt;strong&gt;listItemID&lt;/strong&gt; are the ID and List Name of the target item where you would like the attachment added.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;&lt;strong&gt;SOAP Example&lt;/strong&gt;&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&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;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;br /&gt;&amp;nbsp;&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;nbsp; &amp;lt;AddAttachment xmlns=&amp;quot;http://schemas.microsoft.com/sharepoint/soap/&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;lt;listName&amp;gt;CAS-06699-LRR5&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;nbsp; &amp;lt;listItemID&amp;gt;1&amp;lt;/listItemID&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;fileName&amp;gt;{ItemProperty:FileLeafRef}&amp;lt;/fileName&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;attachment&amp;gt;[FileData]&amp;lt;/attachment&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/AddAttachment&amp;gt; &lt;br /&gt;&amp;nbsp;&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;&lt;br /&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;Where {ItemProperty:FileLeafRef} is the document name inserted reference and [FileData] is the file byte array parameter.&lt;/p&gt;&lt;img height="217" src="http://download.nintex.com/Connect_images/8036/4.jpg" width="646" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;Go here to see more tutorials on other examples of the &amp;quot;Call Web Service&amp;quot; action - &lt;a href="http://connect.nintex.com/files/folders/tutorials/tags/web+service/default.aspx"&gt;http://connect.nintex.com/files/folders/tutorials/tags/web+service/default.aspx&lt;/a&gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description></item><item><title>Call Web Service: Query to Find All Rows for a Specific Due Date</title><link>http://connect.nintex.com/forums/thread/7746.aspx</link><pubDate>Wed, 09 Dec 2009 18:44:26 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:7746</guid><dc:creator>Anonymous</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/7746.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=88&amp;PostID=7746</wfw:commentRss><description>&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;This was an example whereby a customer had a working query that tried to find all the rows for a specific &amp;ldquo;due date&amp;rdquo;.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;The method used for building this example was to first create the same query using the &amp;quot;Query List&amp;quot; action. You can then select the CAML editor and copy the CAML query into your &amp;quot;Call Web Service&amp;quot; action. In this example, we used the Calendar list and queried for items where the title is equal to &lt;strong&gt;test&lt;/strong&gt; and the &lt;strong&gt;start date&lt;/strong&gt; is a date variable which was created using the &amp;quot;Calculate a Date&amp;quot; action.&lt;/p&gt;&lt;img height="316" src="http://download.nintex.com/Connect_images/7746/DueDate1.jpg" width="340" /&gt; &lt;p style="font-family:'Segoe UI';font-size:small;"&gt;In switching to the CAML editor you can cut and paste this directly into your Call Web Service Query element.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Where&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;And&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;Eq&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;nbsp; &amp;lt;FieldRef Name=&amp;quot;Title&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;nbsp; &amp;lt;Value Type=&amp;quot;Text&amp;quot;&amp;gt;test&amp;lt;/Value&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;/Eq&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;Eq&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;nbsp; &amp;lt;FieldRef Name=&amp;quot;EventDate&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;nbsp; &amp;lt;Value Type=&amp;quot;DateTime&amp;quot;&amp;gt;{WorkflowVariable:testdate}&amp;lt;/Value&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;/Eq&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/And&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Where&amp;gt; &lt;br /&gt;&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;In this case, it is recommended to try building the date using the &amp;quot;Calculate a Date&amp;quot; action then specify this variable in your &amp;quot;Call Web Service&amp;quot; action as well. Also, try leaving the viewName section blank as this is an optional input.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;If that doesn&amp;rsquo;t help, you can try a more simplistic query first then add to it if the first part returns the expected results.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;Here is the GetListItems SOAP used when testing a similar query which worked as expected.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;&amp;lt;GetListItems xmlns=&amp;quot;http://schemas.microsoft.com/sharepoint/soap/&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;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;nbsp; &amp;lt;viewName&amp;gt;&amp;lt;/viewName&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;query&amp;gt; &lt;br /&gt;&amp;lt;Query&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Where&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;And&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;Eq&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;nbsp; &amp;lt;FieldRef Name=&amp;quot;Title&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;nbsp; &amp;lt;Value Type=&amp;quot;Text&amp;quot;&amp;gt;test&amp;lt;/Value&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;/Eq&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;Eq&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;nbsp; &amp;lt;FieldRef Name=&amp;quot;EventDate&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;nbsp; &amp;lt;Value Type=&amp;quot;DateTime&amp;quot;&amp;gt;{WorkflowVariable:testdate}&amp;lt;/Value&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;/Eq&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/And&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Where&amp;gt; &lt;br /&gt;&amp;lt;/Query&amp;gt; &lt;br /&gt;&amp;lt;/query&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;viewFields&amp;gt;&amp;lt;/viewFields&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;rowLimit&amp;gt;&amp;lt;/rowLimit&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;queryOptions&amp;gt;&amp;lt;QueryOptions/&amp;gt;&amp;lt;/queryOptions&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;webID&amp;gt;&amp;lt;/webID&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/GetListItems&amp;gt; &lt;br /&gt;&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;Please include all the elements as described on the Microsoft Web site &lt;a href="http://msdn.microsoft.com/en-us/library/lists.lists.getlistitems.aspx"&gt;http://msdn.microsoft.com/en-us/library/lists.lists.getlistitems.aspx&lt;/a&gt;. Also for your reference is the &amp;quot;Calculate a Date&amp;quot; action configuration.&lt;/p&gt;&lt;img height="587" src="http://download.nintex.com/Connect_images/7746/DueDate2.jpg" width="617" /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description></item><item><title>Build Dynamic String: Using an Inline Function to Format a Date</title><link>http://connect.nintex.com/forums/thread/7744.aspx</link><pubDate>Wed, 09 Dec 2009 17:56:07 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:7744</guid><dc:creator>Anonymous</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/7744.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=88&amp;PostID=7744</wfw:commentRss><description>&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;To format a date you can use the inline function fn-FormatDate in a Build Dynamic String action.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;&lt;strong&gt;fn-FormatDate&lt;/strong&gt;&lt;br /&gt;Represents a date time value in text of a specific format.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br /&gt;fn-FormatDate({WorkflowVariable:MyDate}, d)&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;&lt;strong&gt;Arguments&lt;/strong&gt;&lt;br /&gt;MyDate is a variable containing a date value.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;Format string Text describing how the date time value should be formatted. Information on how to format the value can be found on this page: Standard Date and Time Format Strings and this page Custom Date and Time Format Strings.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;&lt;img height="586" src="http://download.nintex.com/Connect_images/7744/FormatDate.jpg" width="619" /&gt; &lt;p style="font-family:'Segoe UI';font-size:small;"&gt;Where &amp;lsquo;datevar&amp;rsquo; is a workflow date variable containing the date you would like to convert and &amp;lsquo;result&amp;rsquo; is a workflow text variable.&lt;/p&gt;&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;Please see this page for all the different date formats: &lt;a href="http://msdn.microsoft.com/en-us/library/az4se3k1.aspx"&gt;http://msdn.microsoft.com/en-us/library/az4se3k1.aspx&lt;/a&gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description></item><item><title>Call Web Service:  Opening List Attachment URLs from an Email Notification in Edit Mode</title><link>http://connect.nintex.com/forums/thread/7612.aspx</link><pubDate>Thu, 03 Dec 2009 18:07:05 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:7612</guid><dc:creator>Anonymous</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/7612.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=88&amp;PostID=7612</wfw:commentRss><description>&lt;p style="font-family:'Segoe UI';font-size:small;"&gt;The following workflow was designed to loop through multiple List attachments, capture their URL, then embed them into a &amp;ldquo;Request Approval&amp;rdquo; action so that approvers can open the attachments from the email notification in Edit mode then modify them without having to access the List item directly from SharePoint. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Declared 4 workflow variables using the variable types as shown below: &lt;br /&gt;&lt;br /&gt;&lt;img height="462" src="http://download.nintex.com/Connect_images/7612/wfVariables.jpg" width="620" /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here&amp;rsquo;s a screenshot of the workflow structure: &lt;br /&gt;&lt;br /&gt;&lt;img height="816" src="http://download.nintex.com/Connect_images/7612/wfStructure.jpg" width="625" /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The actions are configured as follows: &lt;br /&gt;&lt;br /&gt;The &amp;ldquo;Call web service&amp;rdquo; is using the &lt;strong&gt;Web_Url&lt;/strong&gt; lookup then the &lt;strong&gt;/_vti_bin/Lists.asmx&lt;/strong&gt; extension which is a mandatory field that represents the full URL of the SOAP Web service to call. Once a URL has been entered, the Refresh button can be pressed to define the available methods. &lt;br /&gt;&lt;br /&gt;&lt;img height="672" src="http://download.nintex.com/Connect_images/7612/CallWebService.jpg" width="618" /&gt; &lt;br /&gt;&lt;br /&gt;The parameters are stored within the &lt;strong&gt;var_AttachmentXML&lt;/strong&gt; workflow variable. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The &amp;ldquo;Regular expression&amp;rdquo; action removes the XPath namespace (e.g. xmlns=&amp;quot;http://schemas.microsoft.com/sharepoint/soap/&amp;quot;) as leaving it in would make it more difficult to write the XPath expression. &lt;br /&gt;&lt;br /&gt;&lt;img height="740" src="http://download.nintex.com/Connect_images/7612/RegularExpression.jpg" width="618" /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The &amp;ldquo;Query XML&amp;rdquo; action is querying the XML variable using the XPath expression //attachments/attachment to pull out the value inside the Attachment XML node for each Attachment node then storing them in our defined collection variable &lt;strong&gt;var_CollectionURLs&lt;/strong&gt;. &lt;br /&gt;&lt;br /&gt;&lt;img height="668" src="http://download.nintex.com/Connect_images/7612/QueryXML.jpg" width="620" /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The &amp;ldquo;For Each&amp;rdquo; action is used to store the &lt;strong&gt;var_CollectionURLs&lt;/strong&gt; variable data within a text variable to be used in the &amp;ldquo;Build Dynamic String&amp;rdquo; action for each attachment. &lt;br /&gt;&lt;br /&gt;&lt;img height="589" src="http://download.nintex.com/Connect_images/7612/ForEach.jpg" width="620" /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The &amp;ldquo;Build Dynamic String&amp;rdquo; action uses the &lt;strong&gt;var_AttachmentURL&lt;/strong&gt; data and converts it into a URL that can be embedded into the email notification. (Note that this is a part of the &amp;ldquo;For Each&amp;rdquo; action, so it will continue to loop through all List attachments.) &lt;br /&gt;&lt;br /&gt;&lt;img height="588" src="http://download.nintex.com/Connect_images/7612/BuildDynamicString.jpg" width="620" /&gt; &lt;br /&gt;&lt;br /&gt;{WorkflowVariable:var_AttachmentLinks} &lt;font style="font-family:Wingdings;"&gt;&amp;agrave;&lt;/font&gt; &lt;font color="teal"&gt;&lt;em&gt;this is being included so that the previous loop&amp;rsquo;s data is not overwritten&lt;/em&gt;&lt;/font&gt; &lt;br /&gt;&lt;br /&gt;&amp;lt;a href=&amp;quot;{Common:WebUrl}/_layouts/nintexworkflow/opendocforedit.aspx?doc={WorkflowVariable:var_AttachmentURL}&amp;amp;page={Common:WebUrl}&amp;amp;close=true&amp;quot;&amp;gt;{WorkflowVariable:var_AttachmentURL}&amp;lt;/a&amp;gt; &lt;font style="font-family:Wingdings;"&gt;&amp;agrave;&lt;/font&gt; &lt;font color="teal"&gt;&lt;em&gt;This string builds the URL so that it can be opened in Edit Mode within the email notification. Additionally, it includes HTML tags so that the URL will be displayed as a hyperlink. (This is really necessary if spaces were included in your site/list name as spaces will sometimes break hyperlinks.&lt;/em&gt;&lt;/font&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The &amp;ldquo;Request Approval&amp;rdquo; action includes the &lt;strong&gt;var_AttachmentLinks&lt;/strong&gt; within the &amp;ldquo;Edit Approval Required Notification&amp;rdquo; body which will now reflect all attachment links. Again, these links will open in Edit Mode from the email making this process easier for approvers. &lt;br /&gt;&lt;br /&gt;&lt;img height="953" src="http://download.nintex.com/Connect_images/7612/RequestApproval.jpg" width="628" /&gt; &lt;br /&gt;&lt;br /&gt;Note that you will want to also update the Approvers field on this action so that it reflects the correct approvers. &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description></item><item><title>Web Request: Copying a Document and Updating meta data (updatelistitems)</title><link>http://connect.nintex.com/forums/thread/6929.aspx</link><pubDate>Fri, 30 Oct 2009 19:11:30 GMT</pubDate><guid isPermaLink="false">3bc42a30-32af-4e84-97f0-c790da351aac:6929</guid><dc:creator>Peter D</dc:creator><slash:comments>0</slash:comments><comments>http://connect.nintex.com/forums/thread/6929.aspx</comments><wfw:commentRss>http://connect.nintex.com/forums/commentrss.aspx?SectionID=88&amp;PostID=6929</wfw:commentRss><description>&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;Using the Web Request action you can use the &lt;strong&gt;PUT&lt;/strong&gt;&amp;nbsp;command to copy a document to a remote farm and then use the &amp;lsquo;UpdateListItems&amp;rsquo; web service to update any associated meta data.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;Here is how I configured this in my test environment.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;I had 2 document libraries both with the same name, each in a different farm.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;img height="110" src="http://download.nintex.com/Connect_images/wae1/1.jpg" width="975" /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;The first Web Request action was configured as follows:&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;img height="750" src="http://download.nintex.com/Connect_images/wae1/2.jpg" width="616" /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;The URL is the URL to the destination farm with the new document name also included. &amp;nbsp;It is recommended you store this URL to a workflow text variable and then pass this to your web request actions, as it will be used in both.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;This action will copy the current item to the destination farm document library with a title of &amp;ldquo;test1.doc&amp;rdquo;.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;I then used another Web Request to update the associated meta data (in this case a field named &amp;lsquo;data&amp;rsquo;) calling the web service &amp;lsquo;UpdateListItems&amp;rsquo;.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;img height="1011" src="http://download.nintex.com/Connect_images/wae1/3.jpg" width="616" /&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;The URL in this case is the destination farm URL with /_vti_bin/Lists.asmx added to the end.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;The SOAP action is: &lt;strong&gt;&lt;font color="#0000ff"&gt;http://schemas.microsoft.com/sharepoint/soap/UpdateListItems&lt;/font&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;The SOAP used was:&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;lt;soap:Envelope xmlns:xsi=&amp;quot;&lt;a href="http://www.w3.org/2001/XMLSchema-instance"&gt;&lt;font color="#0000ff"&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/font&gt;&lt;/a&gt;&amp;quot; xmlns:xsd=&amp;quot;&lt;a href="http://www.w3.org/2001/XMLSchema"&gt;&lt;font color="#0000ff"&gt;http://www.w3.org/2001/XMLSchema&lt;/font&gt;&lt;/a&gt;&amp;quot; xmlns:soap=&amp;quot;&lt;a href="http://schemas.xmlsoap.org/soap/envelope/"&gt;&lt;font color="#0000ff"&gt;http://schemas.xmlsoap.org/soap/envelope/&lt;/font&gt;&lt;/a&gt;&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp; &amp;lt;soap:Body&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;UpdateListItems xmlns=&amp;quot;&lt;a href="http://schemas.microsoft.com/sharepoint/soap/"&gt;&lt;font color="#0000ff"&gt;http://schemas.microsoft.com/sharepoint/soap/&lt;/font&gt;&lt;/a&gt;&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;listName&amp;gt;&lt;strong&gt;CAS-06438-V6FC&lt;/strong&gt;&amp;lt;/listName&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;updates&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;lt;Batch OnError=&amp;quot;Continue&amp;quot; PreCalc=&amp;quot;TRUE&amp;quot; ListVersion=&amp;quot;0&amp;quot;&amp;gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp; &amp;lt;Method ID=&amp;quot;1&amp;quot; Cmd=&amp;quot;Update&amp;quot;&amp;gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;ID&amp;quot;&amp;gt;1&amp;lt;/Field&amp;gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;FileRef&amp;quot;&amp;gt;&lt;a href="http://farm2/peter/CAS06438V6FC/test1.doc%3c/Field"&gt;&lt;font color="#0000ff"&gt;http://farm2/peter/CAS06438V6FC/test1.doc&amp;lt;/Field&lt;/font&gt;&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Field Name=&amp;quot;data&amp;quot;&amp;gt;{ItemProperty:data}&amp;lt;/Field&amp;gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/Method&amp;gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;strong&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;lt;/Batch&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;lt;/updates&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/UpdateListItems&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;nbsp; &amp;lt;/soap:Body&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&amp;lt;/soap:Envelope&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;The ID field will always be 1, however the FIleRef must be the URL used in your first web request action where you used the PUT command.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;The 2&lt;sup&gt;nd&lt;/sup&gt; web request action is only required if you need to copy any meta data associated with your document.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0cm 0cm 0pt;"&gt;&lt;span style="font-size:10pt;color:#17365d;font-family:'Arial','sans-serif';"&gt;For more information on the &amp;lsquo;UpdateListItems&amp;rsquo; web service please see: &lt;a href="http://msdn.microsoft.com/en-us/library/lists.aspx"&gt;http://msdn.microsoft.com/en-us/library/lists.aspx&lt;/a&gt;. &lt;/span&gt;&lt;/p&gt;</description></item></channel></rss>