WebService UpdateListItems subsite?<p align=left><font face=Arial size=2></font> </p> <p>Hello,</p> <p align=left> </p> <p align=left>Please bear with me.</p> <p align=left> </p> <p align=left>I am trying to add an entry to a subsites calendar, but it will only add it to the main sites calendar. I have tried a number of different changes to fix my code but it seems to only run the web service mehtod against the main site not the subsite. I have tried to split up the problem into sections in order to explain things better, (my english is not the best)</p> <p align=left> </p> <p align=left><strong>first of all here is the setup of the server</strong></p> <p align=left> </p> <p align=left><font size=2><a title="http://moss" href="http://moss">http://moss</a>        &lt;- main site</font></p> <p align=left><font size=2><a title="http://moss/dpi" href="http://moss/dpi">http://moss/dpi</a>   &lt;- subsite</font></p> <p align=left>I have added a web reference to my C#2.0 </p> <p align=left> </p> <p align=left><font size=2><a title="http://moss/dpi/_vti_bin/Lists.asmx" href="http://moss/dpi/_vti_bin/Lists.asmx">http://moss/dpi<a href="http://banmossdemo/sites/dpi/_vti_bin/Lists.asmx">/_vti_bin/Lists.asmx</a></a>  &lt;- Web service location?</font></p> <p align=left> </p> <p align=left><strong>My Code Error Message</strong></p> <p align=left><font size=2></font> </p> <p align=left>&lt;Result ID=&quot;1,New&quot; xmlns=&quot;<a href="http://schemas.microsoft.com/sharepoint/soap/&quot;&gt;&lt;ErrorCode&gt;0x81020026&lt;/ErrorCode&gt;&lt;ErrorText&gt;The">http://schemas.microsoft.com/sharepoint/soap/&quot;&gt;&lt;ErrorCode&gt;0x81020026&lt;/ErrorCode&gt;&lt;ErrorText&gt;The</a> list that is referenced here no longer exists.&lt;/ErrorText&gt;&lt;/Result&gt;</p> <p align=left> </p> <p align=left><strong>I have tried the following</strong></p> <p align=left> </p> <p align=left>changing the Web Reference of the webservice to <a title="http://moss/sites/dpi" href="http://moss/sites/dpi">http://moss/sites/dpi<a href="http://banmossdemo/sites/dpi/_vti_bin/Lists.asmx">/_vti_bin/Lists.asmx</a> (still did not work)</a></p> <p align=left> </p> <p align=left>call the UpdateListItems method using &quot;Calendar&quot; instead of using the calendar's GUID, but this only added the item to the main sites calendar.</p> <p align=left> </p> <p align=left>I have also renamed the calendar, changing its title. this did not work</p> <p align=left> </p> <p align=left>I have listed all the lists using the <font size=2>GetListCollection() method, where it listed all the lists avalible to the main site not the subsite. (I can post this code if required)</font></p> <p align=left><font size=2></font> </p> <p align=left><font size=2>also tried listing all the subsites, where my subsite is found correctly</p></font> <p align=left> </p> <p align=left><font size=2><strong>and this is the code</strong></font></p> <p align=left> </p><font size=2> <p></font><font color="#008000" size=2>//opens a template update XML document.</p></font><font size=2> <p></font><font color="#2b91af" size=2>Assembly</font><font size=2> a = </font><font color="#2b91af" size=2>Assembly</font><font size=2>.GetEntryAssembly();</p> <p></font><font color="#2b91af" size=2>XmlDocument</font><font size=2> doc = </font><font color="#0000ff" size=2>new</font><font size=2> </font><font color="#2b91af" size=2>XmlDocument</font><font size=2>();</p> <p></font><font color="#2b91af" size=2>FileStream</font><font size=2> fs = </font><font color="#2b91af" size=2>File</font><font size=2>.Open(</font><font color="#2b91af" size=2>Path</font><font size=2>.GetDirectoryName(a.Location) + </font><font color="#a31515" size=2>&quot;\\CalDoc.xml&quot;</font><font size=2>, </font><font color="#2b91af" size=2>FileMode</font><font size=2>.Open);</p> <p>doc.Load(fs);</p> <p>fs.Close();</p> <p>fs.Dispose();</p> <p></font><font color="#2b91af" size=2>XmlElement</font><font size=2> rootNode = doc.DocumentElement;</font></p> <p align=left><font size=2> </p> <p></p> <p></font><font color="#008000" size=2>//Alters the XML to contain the required information </p></font><font size=2> <p>rootNode.SelectSingleNode(</font><font color="#a31515" size=2>&quot;/Batch/Method/Field[@Name='Title']&quot;</font><font size=2>).InnerXml = </font><font color="#a31515" size=2>&quot;Dave Day&quot;</font><font size=2>;</p> <p>rootNode.SelectSingleNode(</font><font color="#a31515" size=2>&quot;/Batch/Method/Field[@Name='Location']&quot;</font><font size=2>).InnerXml = </font><font color="#a31515" size=2>&quot;Location&quot;</font><font size=2>;</p> <p>rootNode.SelectSingleNode(</font><font color="#a31515" size=2>&quot;/Batch/Method/Field[@Name='Description']&quot;</font><font size=2>).InnerXml = </font><font color="#a31515" size=2>&quot;Description&quot;</font><font size=2>;</font></p> <p align=left><font size=2> </p> <p>rootNode.SelectSingleNode(</font><font color="#a31515" size=2>&quot;/Batch/Method/Field[@Name='EventDate']&quot;</font><font size=2>).InnerXml = </font><font color="#0000ff" size=2>string</font><font size=2>.Format(</font><font color="#a31515" size=2>&quot;{0}T{1}Z&quot;</font><font size=2>, </font><font color="#2b91af" size=2>DateTime</font><font size=2>.Now.ToString(</font><font color="#a31515" size=2>&quot;yyyy-MM-dd&quot;</font><font size=2>), </font><font color="#2b91af" size=2>DateTime</font><font size=2>.Now.AddMinutes(10).ToString(</font><font color="#a31515" size=2>&quot;HH:mm<img height=19 alt="Tongue Tied" src="http://forums.microsoft.com/MSDN/emoticons/emotion-7.gif" width=19>s&quot;</font><font size=2>));</font></p> <p align=left><font size=2> </p> <p>rootNode.SelectSingleNode(</font><font color="#a31515" size=2>&quot;/Batch/Method/Field[@Name='EndDate']&quot;</font><font size=2>).InnerXml = </font><font color="#0000ff" size=2>string</font><font size=2>.Format(</font><font color="#a31515" size=2>&quot;{0}T{1}Z&quot;</font><font size=2>, </font><font color="#2b91af" size=2>DateTime</font><font size=2>.Now.ToString(</font><font color="#a31515" size=2>&quot;yyyy-MM-dd&quot;</font><font size=2>), </font><font color="#2b91af" size=2>DateTime</font><font size=2>.Now.AddHours(1).ToString(</font><font color="#a31515" size=2>&quot;HH:mm<img height=19 alt="Tongue Tied" src="http://forums.microsoft.com/MSDN/emoticons/emotion-7.gif" width=19>s&quot;</font><font size=2>));</font></p> <p align=left><font size=2> </p> <p></font><font color="#008000" size=2>//rootNode.SelectSingleNode(&quot;/Batch/Method/Field[@Name='fAllDayEvent']&quot;).Value = &quot;0&quot;;</p></font><font size=2> <p></font><font color="#2b91af" size=2>Console</font><font size=2>.WriteLine(doc.OuterXml);</font></p> <p align=left><font size=2> </p> <p></font><font color="#008000" size=2>//Calendar's Name, its GUID</p></font><font size=2> <p></font><font color="#0000ff" size=2>string</font><font size=2> CalGuid = </font><font color="#a31515" size=2>&quot;{1CC831B0-AE1B-4170-AE43-1337A908C2EB}&quot;</font><font size=2>; </font></p> <p align=left><font size=2> </p> <p></font><font color="#008000" size=2>//Create an instance of the webservice </p></font><font size=2> <p>banmossdemo.</font><font color="#2b91af" size=2>Lists</font><font size=2> l = </font><font color="#0000ff" size=2>new</font><font size=2> testAddCalSP.banmossdemo.</font><font color="#2b91af" size=2>Lists</font><font size=2>();</p> <p>l.Credentials = System.Net.</font><font color="#2b91af" size=2>CredentialCache</font><font size=2>.DefaultCredentials;</font></p> <p align=left><font size=2> </p> <p></font><font color="#008000" size=2>//call the method</p></font><font size=2> <p></font><font color="#2b91af" size=2>XmlNode</font><font size=2> node1 = l.UpdateListItems(CalGuid, rootNode);</font></p> <p align=left><font size=2> </p> <p></font><font color="#008000" size=2>//display the result into a textbox</p></font><font size=2> <p>txtResult.Text = </font><font color="#a31515" size=2>&quot;&quot;</font><font size=2>;</p> <p></font><font color="#2b91af" size=2>StringBuilder</font><font size=2> sb = </font><font color="#0000ff" size=2>new</font><font size=2> </font><font color="#2b91af" size=2>StringBuilder</font><font size=2>();</p> <p></font><font color="#0000ff" size=2>foreach</font><font size=2> (</font><font color="#2b91af" size=2>XmlNode</font><font size=2> node </font><font color="#0000ff" size=2>in</font><font size=2> node1.ChildNodes)</p> <p>{</p> <p>    sb.AppendLine(node.OuterXml); </p> <p>}</p> <p>txtResult.Text = sb.ToString();</p></font> <p align=left> </p> <p align=left><font size=2></font> </p> <p align=left><font size=2><strong>contents of the CalDoc.xml</strong></font></p><font color="#0000ff" size=2> <p> </p> <p align=left>&lt;?</font><font color="#a31515" size=2>xml</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>version</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>1.0</font><font size=2>&quot;</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>encoding</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>utf-8</font><font size=2>&quot;</font><font color="#0000ff" size=2> ?&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Batch</font><font color="#0000ff" size=2>&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Method</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>ID</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>1</font><font size=2>&quot;</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Cmd</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>New</font><font size=2>&quot;</font><font color="#0000ff" size=2>&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>Title</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>Location</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>Description</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>EventDate</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>EndDate</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>fAllDayEvent</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;/</font><font color="#a31515" size=2>Method</font><font color="#0000ff" size=2>&gt;</p> <p>&lt;/</font><font color="#a31515" size=2>Batch</font><font color="#0000ff" size=2>&gt;</p></font> <p align=left> </p> <p align=left> </p> <p align=left><font size=2><font size=2>many thanks</font></font></p> <p align=left><font size=2><font size=2>bones</p></font></font>© 2009 Microsoft Corporation. All rights reserved.Mon, 06 Jul 2009 17:53:15 Z82afb758-7ab8-4e17-86f0-37f68e8ce7aehttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#82afb758-7ab8-4e17-86f0-37f68e8ce7aehttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#82afb758-7ab8-4e17-86f0-37f68e8ce7aedboneshttp://social.msdn.microsoft.com/Profile/en-US/?user=dbonesWebService UpdateListItems subsite?<p align=left><font face=Arial size=2></font> </p> <p>Hello,</p> <p align=left> </p> <p align=left>Please bear with me.</p> <p align=left> </p> <p align=left>I am trying to add an entry to a subsites calendar, but it will only add it to the main sites calendar. I have tried a number of different changes to fix my code but it seems to only run the web service mehtod against the main site not the subsite. I have tried to split up the problem into sections in order to explain things better, (my english is not the best)</p> <p align=left> </p> <p align=left><strong>first of all here is the setup of the server</strong></p> <p align=left> </p> <p align=left><font size=2><a title="http://moss" href="http://moss">http://moss</a>        &lt;- main site</font></p> <p align=left><font size=2><a title="http://moss/dpi" href="http://moss/dpi">http://moss/dpi</a>   &lt;- subsite</font></p> <p align=left>I have added a web reference to my C#2.0 </p> <p align=left> </p> <p align=left><font size=2><a title="http://moss/dpi/_vti_bin/Lists.asmx" href="http://moss/dpi/_vti_bin/Lists.asmx">http://moss/dpi<a href="http://banmossdemo/sites/dpi/_vti_bin/Lists.asmx">/_vti_bin/Lists.asmx</a></a>  &lt;- Web service location?</font></p> <p align=left> </p> <p align=left><strong>My Code Error Message</strong></p> <p align=left><font size=2></font> </p> <p align=left>&lt;Result ID=&quot;1,New&quot; xmlns=&quot;<a href="http://schemas.microsoft.com/sharepoint/soap/&quot;&gt;&lt;ErrorCode&gt;0x81020026&lt;/ErrorCode&gt;&lt;ErrorText&gt;The">http://schemas.microsoft.com/sharepoint/soap/&quot;&gt;&lt;ErrorCode&gt;0x81020026&lt;/ErrorCode&gt;&lt;ErrorText&gt;The</a> list that is referenced here no longer exists.&lt;/ErrorText&gt;&lt;/Result&gt;</p> <p align=left> </p> <p align=left><strong>I have tried the following</strong></p> <p align=left> </p> <p align=left>changing the Web Reference of the webservice to <a title="http://moss/sites/dpi" href="http://moss/sites/dpi">http://moss/sites/dpi<a href="http://banmossdemo/sites/dpi/_vti_bin/Lists.asmx">/_vti_bin/Lists.asmx</a> (still did not work)</a></p> <p align=left> </p> <p align=left>call the UpdateListItems method using &quot;Calendar&quot; instead of using the calendar's GUID, but this only added the item to the main sites calendar.</p> <p align=left> </p> <p align=left>I have also renamed the calendar, changing its title. this did not work</p> <p align=left> </p> <p align=left>I have listed all the lists using the <font size=2>GetListCollection() method, where it listed all the lists avalible to the main site not the subsite. (I can post this code if required)</font></p> <p align=left><font size=2></font> </p> <p align=left><font size=2>also tried listing all the subsites, where my subsite is found correctly</p></font> <p align=left> </p> <p align=left><font size=2><strong>and this is the code</strong></font></p> <p align=left> </p><font size=2> <p></font><font color="#008000" size=2>//opens a template update XML document.</p></font><font size=2> <p></font><font color="#2b91af" size=2>Assembly</font><font size=2> a = </font><font color="#2b91af" size=2>Assembly</font><font size=2>.GetEntryAssembly();</p> <p></font><font color="#2b91af" size=2>XmlDocument</font><font size=2> doc = </font><font color="#0000ff" size=2>new</font><font size=2> </font><font color="#2b91af" size=2>XmlDocument</font><font size=2>();</p> <p></font><font color="#2b91af" size=2>FileStream</font><font size=2> fs = </font><font color="#2b91af" size=2>File</font><font size=2>.Open(</font><font color="#2b91af" size=2>Path</font><font size=2>.GetDirectoryName(a.Location) + </font><font color="#a31515" size=2>&quot;\\CalDoc.xml&quot;</font><font size=2>, </font><font color="#2b91af" size=2>FileMode</font><font size=2>.Open);</p> <p>doc.Load(fs);</p> <p>fs.Close();</p> <p>fs.Dispose();</p> <p></font><font color="#2b91af" size=2>XmlElement</font><font size=2> rootNode = doc.DocumentElement;</font></p> <p align=left><font size=2> </p> <p></p> <p></font><font color="#008000" size=2>//Alters the XML to contain the required information </p></font><font size=2> <p>rootNode.SelectSingleNode(</font><font color="#a31515" size=2>&quot;/Batch/Method/Field[@Name='Title']&quot;</font><font size=2>).InnerXml = </font><font color="#a31515" size=2>&quot;Dave Day&quot;</font><font size=2>;</p> <p>rootNode.SelectSingleNode(</font><font color="#a31515" size=2>&quot;/Batch/Method/Field[@Name='Location']&quot;</font><font size=2>).InnerXml = </font><font color="#a31515" size=2>&quot;Location&quot;</font><font size=2>;</p> <p>rootNode.SelectSingleNode(</font><font color="#a31515" size=2>&quot;/Batch/Method/Field[@Name='Description']&quot;</font><font size=2>).InnerXml = </font><font color="#a31515" size=2>&quot;Description&quot;</font><font size=2>;</font></p> <p align=left><font size=2> </p> <p>rootNode.SelectSingleNode(</font><font color="#a31515" size=2>&quot;/Batch/Method/Field[@Name='EventDate']&quot;</font><font size=2>).InnerXml = </font><font color="#0000ff" size=2>string</font><font size=2>.Format(</font><font color="#a31515" size=2>&quot;{0}T{1}Z&quot;</font><font size=2>, </font><font color="#2b91af" size=2>DateTime</font><font size=2>.Now.ToString(</font><font color="#a31515" size=2>&quot;yyyy-MM-dd&quot;</font><font size=2>), </font><font color="#2b91af" size=2>DateTime</font><font size=2>.Now.AddMinutes(10).ToString(</font><font color="#a31515" size=2>&quot;HH:mm<img height=19 alt="Tongue Tied" src="http://forums.microsoft.com/MSDN/emoticons/emotion-7.gif" width=19>s&quot;</font><font size=2>));</font></p> <p align=left><font size=2> </p> <p>rootNode.SelectSingleNode(</font><font color="#a31515" size=2>&quot;/Batch/Method/Field[@Name='EndDate']&quot;</font><font size=2>).InnerXml = </font><font color="#0000ff" size=2>string</font><font size=2>.Format(</font><font color="#a31515" size=2>&quot;{0}T{1}Z&quot;</font><font size=2>, </font><font color="#2b91af" size=2>DateTime</font><font size=2>.Now.ToString(</font><font color="#a31515" size=2>&quot;yyyy-MM-dd&quot;</font><font size=2>), </font><font color="#2b91af" size=2>DateTime</font><font size=2>.Now.AddHours(1).ToString(</font><font color="#a31515" size=2>&quot;HH:mm<img height=19 alt="Tongue Tied" src="http://forums.microsoft.com/MSDN/emoticons/emotion-7.gif" width=19>s&quot;</font><font size=2>));</font></p> <p align=left><font size=2> </p> <p></font><font color="#008000" size=2>//rootNode.SelectSingleNode(&quot;/Batch/Method/Field[@Name='fAllDayEvent']&quot;).Value = &quot;0&quot;;</p></font><font size=2> <p></font><font color="#2b91af" size=2>Console</font><font size=2>.WriteLine(doc.OuterXml);</font></p> <p align=left><font size=2> </p> <p></font><font color="#008000" size=2>//Calendar's Name, its GUID</p></font><font size=2> <p></font><font color="#0000ff" size=2>string</font><font size=2> CalGuid = </font><font color="#a31515" size=2>&quot;{1CC831B0-AE1B-4170-AE43-1337A908C2EB}&quot;</font><font size=2>; </font></p> <p align=left><font size=2> </p> <p></font><font color="#008000" size=2>//Create an instance of the webservice </p></font><font size=2> <p>banmossdemo.</font><font color="#2b91af" size=2>Lists</font><font size=2> l = </font><font color="#0000ff" size=2>new</font><font size=2> testAddCalSP.banmossdemo.</font><font color="#2b91af" size=2>Lists</font><font size=2>();</p> <p>l.Credentials = System.Net.</font><font color="#2b91af" size=2>CredentialCache</font><font size=2>.DefaultCredentials;</font></p> <p align=left><font size=2> </p> <p></font><font color="#008000" size=2>//call the method</p></font><font size=2> <p></font><font color="#2b91af" size=2>XmlNode</font><font size=2> node1 = l.UpdateListItems(CalGuid, rootNode);</font></p> <p align=left><font size=2> </p> <p></font><font color="#008000" size=2>//display the result into a textbox</p></font><font size=2> <p>txtResult.Text = </font><font color="#a31515" size=2>&quot;&quot;</font><font size=2>;</p> <p></font><font color="#2b91af" size=2>StringBuilder</font><font size=2> sb = </font><font color="#0000ff" size=2>new</font><font size=2> </font><font color="#2b91af" size=2>StringBuilder</font><font size=2>();</p> <p></font><font color="#0000ff" size=2>foreach</font><font size=2> (</font><font color="#2b91af" size=2>XmlNode</font><font size=2> node </font><font color="#0000ff" size=2>in</font><font size=2> node1.ChildNodes)</p> <p>{</p> <p>    sb.AppendLine(node.OuterXml); </p> <p>}</p> <p>txtResult.Text = sb.ToString();</p></font> <p align=left> </p> <p align=left><font size=2></font> </p> <p align=left><font size=2><strong>contents of the CalDoc.xml</strong></font></p><font color="#0000ff" size=2> <p> </p> <p align=left>&lt;?</font><font color="#a31515" size=2>xml</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>version</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>1.0</font><font size=2>&quot;</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>encoding</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>utf-8</font><font size=2>&quot;</font><font color="#0000ff" size=2> ?&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Batch</font><font color="#0000ff" size=2>&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Method</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>ID</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>1</font><font size=2>&quot;</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Cmd</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>New</font><font size=2>&quot;</font><font color="#0000ff" size=2>&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>Title</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>Location</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>Description</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>EventDate</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>EndDate</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;</font><font color="#a31515" size=2>Field</font><font color="#0000ff" size=2> </font><font color="#ff0000" size=2>Name</font><font color="#0000ff" size=2>=</font><font size=2>&quot;</font><font color="#0000ff" size=2>fAllDayEvent</font><font size=2>&quot;</font><font color="#0000ff" size=2> /&gt;</p> <p>&lt;/</font><font color="#a31515" size=2>Method</font><font color="#0000ff" size=2>&gt;</p> <p>&lt;/</font><font color="#a31515" size=2>Batch</font><font color="#0000ff" size=2>&gt;</p></font> <p align=left> </p> <p align=left> </p> <p align=left><font size=2><font size=2>many thanks</font></font></p> <p align=left><font size=2><font size=2>bones</p></font></font>Mon, 14 Jan 2008 15:26:29 Z2008-03-01T04:27:00Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#adf17388-53e3-488b-b042-3981a02aedd9http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#adf17388-53e3-488b-b042-3981a02aedd9ToddFriedlichhttp://social.msdn.microsoft.com/Profile/en-US/?user=ToddFriedlichWebService UpdateListItems subsite?I'm having the same problem.  Have you solved it?<br><br>Mon, 25 Feb 2008 20:33:31 Z2008-02-25T20:33:31Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#524459e4-d401-4895-b10b-3a995952166bhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#524459e4-d401-4895-b10b-3a995952166bToddFriedlichhttp://social.msdn.microsoft.com/Profile/en-US/?user=ToddFriedlichWebService UpdateListItems subsite?Well, in case you haven't solved it yet, I did see somewhere that if you are trying to use UpdateListItems on a list in a subsite you need to append ?wsdl to the url of asmx.<br><br>My problem was a bit different as I was trying to access this via a vbs script, but I was able to solve my issue none-the-less.<br><br>Creating a new list item using vbscript and Sharepoint WebServices.<br><br>I'm including my code as there aren't any thorough examples out on the internets.  I based my solution on something from <a title="http://www.wssdemo.com/Blog/default.aspx" href="http://www.wssdemo.com/Blog/default.aspx">Ian Morrish</a> so I am giving credit where credit is due.  I hope someone finds this useful.<br><br>Sub AddListItem(site, listGUID, itemTitle)<br>    strEndPointURL = &quot;http://moss&quot; + site + &quot;/_vti_bin/Lists.asmx&quot;<br>    strSoapAction=&quot;http://schemas.microsoft.com/sharepoint/soap/UpdateListItems&quot;<br>    Set objSOAPConnector = CreateObject(&quot;MSOSOAP.HttpConnector30&quot;)<br>    with objSOAPConnector<br>     .Property(&quot;EndPointURL&quot;) = strEndPointURL<br>     .Property(&quot;SoapAction&quot;) = strSoapAction<br>     .Connect<br>    End With<br>    Set objSOAPSerializer = CreateObject(&quot;MSOSoap.SoapSerializer30&quot;)<br>    with objSOAPSerializer<br>     .Init(objSOAPConnector.InputStream)<br>     .startEnvelope()<br>        .startBody()<br>            .StartElement &quot;UpdateListItems&quot;, &quot;http://schemas.microsoft.com/sharepoint/soap/&quot;<br>                .StartElement &quot;listName&quot;, &quot;http://schemas.microsoft.com/sharepoint/soap/&quot;<br>                    .WriteString(listGUID)<br>                .EndElement()<br>                .StartElement &quot;updates&quot;,&quot;http://schemas.microsoft.com/sharepoint/soap/&quot;<br>                    .StartElement &quot;Batch&quot;<br>                        .SoapAttribute &quot;ListName&quot;, ,listGUID<br>                        .SoapAttribute &quot;OnError&quot;, ,&quot;Continue&quot;<br>                        .StartElement &quot;Method&quot;<br>                                .SoapAttribute &quot;ID&quot;, ,&quot;1&quot;<br>                                .SoapAttribute &quot;Cmd&quot;, ,&quot;New&quot;                        <br>                                .StartElement &quot;Field&quot;<br>                                    .SoapAttribute &quot;Name&quot;, ,&quot;Title&quot;<br>                                    .WriteString(itemTitle)<br>                                .EndElement()        <br>                        .EndElement()                                                                <br>                    .EndElement()    <br>               .EndElement()<br>            .EndElement()<br>        .endBody()<br>     .endEnvelope()<br>    End With<br>    objSOAPConnector.EndMessage()    <br>    Set objResponseReader = CreateObject(&quot;MSOSOAP.SoapReader30&quot;)<br>    objResponseReader.Load(objSOAPConnector.OutputStream)    <br>    Wscript.echo objResponseReader.Body.xml<br>End Sub<br><br>Mon, 25 Feb 2008 22:24:09 Z2008-03-01T04:27:00Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#098826ac-e63b-4cbe-8e31-4d4a3a29d7a9http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#098826ac-e63b-4cbe-8e31-4d4a3a29d7a9Jon Walkerhttp://social.msdn.microsoft.com/Profile/en-US/?user=Jon%20WalkerWebService UpdateListItems subsite?<p>I'm having the same issue as dbones.  I've tried the same solutions, but so far none have worked.</p> <p align=left> </p> <p align=left>I've also tried appending ?wsdl to the asmx url, but to no avail.  I'm not 100% sure, but I beleive the wsdl is used to print out the XML schema for the web service.</p> <p align=left> </p> <p align=left>Has anyone found a solution to this issue yet?</p> <p align=left><font face=Arial size=2></font> </p>Mon, 10 Mar 2008 21:36:06 Z2008-03-10T21:36:06Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#d86a62fa-bccf-4a89-96f8-7a82f27e1883http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#d86a62fa-bccf-4a89-96f8-7a82f27e1883Jon Walkerhttp://social.msdn.microsoft.com/Profile/en-US/?user=Jon%20WalkerWebService UpdateListItems subsite?<p align=left><font face=Arial size=2>In case anyone else is having the same problem the solution is to change  the Url property of  the web service.</font></p> <p align=left> </p> <p align=left>I was able to update lists under <a title="http://moss" href="http://moss">http://moss</a> just fine, but when I tried to edit a list under <a title="http://moss/subweb" href="http://moss/subweb">http://moss/subweb</a> the code always failed  to find the list.  I tried updating the web reference and the app.config file to point to <a title="http://moss/subweb/_vti_bin/lists.asmx" href="http://moss/subweb/_vti_bin/lists.asmx">http://moss/subweb/_vti_bin/lists.asmx</a>, but this still failed.</p> <p align=left> </p> <p align=left>I noticed that even after these updates, if I checked the Url property of  the web service while the code was running, it was still set to <a title="http://moss/_vti_bin/lists.asmx" href="http://moss/_vti_bin/lists.asmx">http://moss/_vti_bin/lists.asmx</a> somehow.  To fix it, I specifically set the Url property of the web service to <a title="http://moss/subweb/_vti_bin/lists.asmx" href="http://moss/subweb/_vti_bin/lists.asmx">http://moss/subweb/_vti_bin/lists.asmx</a> during run time.  Below is the code:</p> <p align=left> </p><font size=2> <p>SharePoint.</font><font color="#008080" size=2>Lists</font><font size=2> ListService = </font><font color="#0000ff" size=2>new</font><font size=2> SharePoint.</font><font color="#008080" size=2>Lists</font><font size=2>();</p> <p>ListService.Credentials = System.Net.</font><font color="#008080" size=2>CredentialCache</font><font size=2>.DefaultCredentials;</p> <p>ListService.Url = </font><font color="#800000" size=2>&quot;https://moss/subweb/_vti_bin/Lists.asmx&quot;</font><font size=2>;</p></font> <p align=left> </p> <p align=left> </p> <p align=left> </p>Tue, 11 Mar 2008 13:36:01 Z2008-03-11T13:36:01Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#db5f3bdf-90b7-498f-bfd2-366dc396bd63http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#db5f3bdf-90b7-498f-bfd2-366dc396bd63vbpatel2000http://social.msdn.microsoft.com/Profile/en-US/?user=vbpatel2000WebService UpdateListItems subsite?<p>I have updated the URL property at runtime as recommended and I am still having the same problem. Anymore ideas? </p> <p align=left> </p> <p align=left><font face=Arial size=2></font> </p>Mon, 28 Apr 2008 10:42:24 Z2008-04-28T10:42:24Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#1ec9206f-c1f2-4984-8964-4ca8685803e2http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#1ec9206f-c1f2-4984-8964-4ca8685803e2PiktazLThttp://social.msdn.microsoft.com/Profile/en-US/?user=PiktazLTWebService UpdateListItems subsite? Hello, for subsites you must use WebID.<br><br>This is example how to get web using webpat (example <a href="http://sharepointserver/subsite/">http://sharepointserver/subsite/</a>):<br><a href="http://www.sharepoint-tips.com/2007/02/how-to-use-getlistitems-web-service.html">http://www.sharepoint-tips.com/2007/02/how-to-use-getlistitems-web-service.html</a> Wed, 13 Aug 2008 08:49:29 Z2008-08-13T08:49:29Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#422916c1-e54c-4f2d-8c13-9e5289a26d9bhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#422916c1-e54c-4f2d-8c13-9e5289a26d9bOuaes Jamalihttp://social.msdn.microsoft.com/Profile/en-US/?user=Ouaes%20JamaliWebService UpdateListItems subsite?it does work when you set the URL at runtime. This is definietly a bug in my opinion. I have set the correct  URL when selecting the web service and also made sure that the URL was correct in the app.config file but when i looked at the URL during runtime, it is without the subweb. <font size=2> <p></font><font color="#0000ff" size=2><font color="#0000ff" size=2>string</font></font><font size=2> strData = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>string</font></font><font size=2>.Format(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;&lt;Method ID='1' Cmd='New'&gt;&lt;Field Name='ID'&gt;New&lt;/Field&gt;&lt;Field Name='Title'&gt;{0}&lt;/Field&gt;&lt;Field Name='Description'&gt;{1}&lt;/Field&gt;&lt;/Method&gt;&quot;</font></font><font size=2>, title, description);</p> <p></p> <p>Lists.</font><font color="#2b91af" size=2><font color="#2b91af" size=2>Lists</font></font><font size=2> lists = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>new</font></font><font size=2> ComsolEJob.Lists.</font><font color="#2b91af" size=2><font color="#2b91af" size=2>Lists</font></font><font size=2>();</p> <p>lists.Url = </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;http://moss/hr/_vti_bin/lists.asmx&quot;</font></font><font size=2>; </font><font color="#808080" size=2><font color="#808080" size=2>///</p></font></font><font size=2> <p>lists.Credentials = System.Net.</font><font color="#2b91af" size=2><font color="#2b91af" size=2>CredentialCache</font></font><font size=2>.DefaultCredentials;</p> <p></font><font color="#2b91af" size=2><font color="#2b91af" size=2>XmlDocument</font></font><font size=2> doc = </font><font color="#0000ff" size=2><font color="#0000ff" size=2>new</font></font> <font color="#2b91af" size=2><font color="#2b91af" size=2>XmlDocument</font></font><font size=2>();</p> <p></font><font color="#2b91af" size=2><font color="#2b91af" size=2>XmlElement</font></font><font size=2> el = doc.CreateElement(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;Batch&quot;</font></font><font size=2>);</p> <p>el.SetAttribute(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;OnError&quot;</font></font><font size=2>, </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;Continue&quot;</font></font><font size=2>);</p> <p>el.SetAttribute(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;ListVersion&quot;</font></font><font size=2>, </font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;0&quot;</font></font><font size=2>);</p> <p>el.SetAttribute(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;ViewName&quot;</font></font><font size=2>, </font><font color="#0000ff" size=2><font color="#0000ff" size=2>string</font></font><font size=2>.Empty);</p> <p>el.InnerXml = strData; </font><font color="#008000" size=2><font color="#008000" size=2>//{3AD79943-A03C-4B98-979B-65B13B5C6FAC}<br></font></font><font color="#008000" size=2><font color="#008000" size=2><br><font color="#2b91af" size=2><font color="#2b91af" size=2>XmlNode</font></font><font size=2> ndReturn = lists.UpdateListItems(</font><font color="#a31515" size=2><font color="#a31515" size=2>&quot;{3AD79943-A03C-4B98-979B-65B13B5C6FAC}&quot;</font></font><font size=2>, el);</p></font></font></font><hr size="1" align="left" width="25%">Ouaes JamaliFri, 26 Sep 2008 14:55:50 Z2008-09-26T14:55:50Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#c1f28ee3-0752-44b9-934a-5aa53335d3f0http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#c1f28ee3-0752-44b9-934a-5aa53335d3f0Dr.Fixhttp://social.msdn.microsoft.com/Profile/en-US/?user=Dr.FixWebService UpdateListItems subsite?I have to create a new subfolder under<br> _siteUrl + <font style="color:blue">&quot;/Corporate/procurement/frame agreement/price list/</font>&quot;<br><br>what I do is the following:<br> <br> <div style="overflow:auto;background-color:white;line-height:100% ! important;font-family:Courier New;font-size:11px"><table style="border-width:0px;margin:2px 0px;width:99%;border-collapse:collapse;background-color:rgb(255, 255, 255)" cellpadding=0 cellspacing=0><col style="border-right:1px solid gray;font-family:Courier New;font-size:11px;background-color:rgb(238, 238, 238);padding-right:5px;padding-left:10px;width:5px;color:gray;text-align:right;vertical-align:top"><col style="font-family:Courier New;font-size:11px;padding-left:10px;white-space:nowrap"><tbody><tr><td><nobr>1</nobr></td><td><font style="font-size:11px">Lists.Lists listService = </font><font style="color:blue">new</font><font style="font-size:11px"> Lists.Lists(); </font></td></tr><tr><td><nobr>2</nobr></td><td style="background-color:rgb(247, 247, 247)">listService.Url = _siteUrl + <font style="color:blue">&quot;/Corporate/procurement/frame agreement/price list/_vti_bin/Lists.asmx&quot;</font><font style="font-size:11px">; </font></td></tr><tr><td><nobr>3</nobr></td><td>listService.Credentials = GetCredentials(); </td></tr><tr><td><nobr>4</nobr></td><td style="background-color:rgb(247, 247, 247)"> </td></tr><tr><td><nobr>5</nobr></td><td> </td></tr><tr><td><nobr>6</nobr></td><td style="background-color:rgb(247, 247, 247)">String CreateFolder = <font style="color:blue">&quot;&lt;Method ID=\&quot;</font><font style="font-size:11px">1\</font><font style="color:blue">&quot; Cmd=\&quot;</font><font style="font-size:11px">New\</font><font style="color:blue">&quot;&gt;&lt;Field Name=\&quot;</font><font style="font-size:11px">ID\</font><font style="color:blue">&quot;&gt;New&lt;/Field&gt;&lt;Field Name=\&quot;</font><font style="font-size:11px">FSObjType\</font><font style="color:blue">&quot;&gt;1&lt;/Field&gt;&lt;Field Name=\&quot;</font><font style="font-size:11px">BaseName\</font><font style="color:blue">&quot;&gt;newFolderName&lt;/Field&gt;&lt;/Method&gt;&quot;</font><font style="font-size:11px">; </font></td></tr><tr><td><nobr>7</nobr></td><td>             </td></tr><tr><td><nobr>8</nobr></td><td style="background-color:rgb(247, 247, 247)">         </td></tr><tr><td><nobr>9</nobr></td><td>XmlDocument xmlDoc = <font style="color:blue">new</font><font style="font-size:11px"> System.Xml.XmlDocument(); </font></td></tr><tr><td><nobr>10</nobr></td><td style="background-color:rgb(247, 247, 247)"> </td></tr><tr><td><nobr>11</nobr></td><td>System.Xml.XmlElement elBatch = xmlDoc.CreateElement(<font style="color:blue">&quot;Batch&quot;</font><font style="font-size:11px">); </font></td></tr><tr><td><nobr>12</nobr></td><td style="background-color:rgb(247, 247, 247)"> </td></tr><tr><td><nobr>13</nobr></td><td>elBatch.SetAttribute(<font style="color:blue">&quot;RootFolder&quot;</font><font style="font-size:11px">, </font><font style="color:blue">&quot;/Corporate/procurement/frame agreement/price list&quot;</font><font style="font-size:11px">);     </font></td></tr><tr><td><nobr>14</nobr></td><td style="background-color:rgb(247, 247, 247)">elBatch.SetAttribute(<font style="color:blue">&quot;OnError&quot;</font><font style="font-size:11px">, </font><font style="color:blue">&quot;Continue&quot;</font><font style="font-size:11px">); </font></td></tr><tr><td><nobr>15</nobr></td><td>elBatch.SetAttribute(<font style="color:blue">&quot;ListVersion&quot;</font><font style="font-size:11px">, </font><font style="color:blue">&quot;1&quot;</font><font style="font-size:11px">); </font></td></tr><tr><td><nobr>16</nobr></td><td style="background-color:rgb(247, 247, 247)">elBatch.SetAttribute(<font style="color:blue">&quot;ViewName&quot;</font><font style="font-size:11px">, </font><font style="color:blue">&quot;&quot;</font><font style="font-size:11px">); </font></td></tr><tr><td><nobr>17</nobr></td><td> </td></tr><tr><td><nobr>18</nobr></td><td style="background-color:rgb(247, 247, 247)">elBatch.InnerXml = CreateFolder; </td></tr><tr><td><nobr>19</nobr></td><td> </td></tr><tr><td><nobr>20</nobr></td><td style="background-color:rgb(247, 247, 247)">XmlNode ndReturn = listService.UpdateListItems(_ListID, elBatch); </td></tr><tr><td><nobr>21</nobr></td><td>         </td></tr></tbody></table></div><br> I'm setting the webservice Url to _siteUrl + <font style="color:blue">&quot;/Corporate/procurement/frame agreement/price list/_vti_bin/Lists.asmx&quot; <font color="#000000">instead of</font></font> _siteUrl + &quot;<font style="color:blue">_vti_bin/Lists.asmx</font>&quot; because doing this I get an errory saying that the list couldn't be found..<br> <br> I tried both not setting rootFolder and putting the whole url in <font style="color:blue">&lt;Field Name=\&quot;</font><font style="font-size:11px">BaseName\</font><font style="color:blue">&quot;&gt;<font color="#000000"> tag</font></font> but I keep getting the same result:<br><br><b>The operation failed because an unexpected error occurred. (Result Code: 0x80070005)</b><br><br>Please help!<br> Wed, 17 Dec 2008 09:13:36 Z2008-12-17T09:13:36Zhttp://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#8bd19914-81e6-4523-b805-18918564fce2http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/82afb758-7ab8-4e17-86f0-37f68e8ce7ae#8bd19914-81e6-4523-b805-18918564fce2Roberto Castro Vexler _http://social.msdn.microsoft.com/Profile/en-US/?user=Roberto%20Castro%20Vexler%20_WebService UpdateListItems subsite?Hi:<br>I´ve had the same issue, try using this &quot;\&quot; in the Name: RootFolder/SubFolder, put <i><b><font style="color:blue">/Corporate/procurement/frame agreement/price list/</font></b></i><font style="color:blue"><i>newFolderName</i></font> instead of just <font style="color:blue"><i>newFolderName</i></font><br>something like this:<br><br>String CreateFolder = <font style="color:blue">&quot;&lt;Method ID=\&quot;</font><font style="font-size:11px">1\</font><font style="color:blue">&quot; Cmd=\&quot;</font><font style="font-size:11px">New\</font><font style="color:blue">&quot;&gt;&lt;Field Name=\&quot;</font><font style="font-size:11px">ID\</font><font style="color:blue">&quot;&gt;New&lt;/Field&gt;&lt;Field Name=\&quot;</font><font style="font-size:11px">FSObjType\</font><font style="color:blue">&quot;&gt;1&lt;/Field&gt;&lt;Field Name=\&quot;</font><font style="font-size:11px">BaseName\</font><font style="color:blue">&quot;&gt;</font><i><b><font style="color:blue">/Corporate/procurement/frame agreement/price list/</font></b></i><font style="color:blue"><i>newFolderName</i>&lt;/Field&gt;&lt;/Method&gt;&quot;</font><font style="font-size:11px">; </font><br><br>regards<br><br>Roberto Castro Vexler<br> Mon, 09 Mar 2009 12:33:01 Z2009-03-09T12:33:01Z