<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cyberactiva web development and optimisation &#187; Sharepoint</title>
	<atom:link href="http://www.cyberactiva.com/tag/sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cyberactiva.com</link>
	<description>Every day&#039;s life about programming and webmarketing</description>
	<lastBuildDate>Wed, 21 Oct 2009 11:33:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SHAREPOINT:The list that is referenced here no longer exists</title>
		<link>http://www.cyberactiva.com/2009/09/sharepointthe-list-that-is-referenced-here-no-longer-exists/</link>
		<comments>http://www.cyberactiva.com/2009/09/sharepointthe-list-that-is-referenced-here-no-longer-exists/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 09:48:02 +0000</pubDate>
		<dc:creator>Claudio Barba</dc:creator>
				<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[WEBSERVICES]]></category>

		<guid isPermaLink="false">http://lnx.cyberactiva.com/?p=14</guid>
		<description><![CDATA[<p>Are you get this error while using the updatelistitems method in SHAREPOINT web service (list.asmx)?
Are you aiming to data stored in a subsite?
If so, the solution is to point the webservice of the subsite directly.
If your main site is http://cia, and your subsite is http://cia/coa, you should point to the webservice:</p>
<p>http://cia/coa/_vti_bin/list.asmx</p>
<p>Pay attention that, sometimes, when [...]]]></description>
			<content:encoded><![CDATA[<p>Are you get this error while using the updatelistitems method in SHAREPOINT web service (list.asmx)?<br />
Are you aiming to data stored in a subsite?<br />
If so, the solution is to point the webservice of the subsite directly.<br />
If your main site is http://cia, and your subsite is http://cia/coa, you should point to the webservice:</p>
<p>http://cia/coa/_vti_bin/list.asmx</p>
<p>Pay attention that, sometimes, when you update the webreference, in the app.config it remains the same. So change it there as well.</p>
<p>Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberactiva.com/2009/09/sharepointthe-list-that-is-referenced-here-no-longer-exists/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SHAREPOINT: One of more field types are not installed properly</title>
		<link>http://www.cyberactiva.com/2009/09/sharepoint-one-of-more-field-types-are-not-installed-properly/</link>
		<comments>http://www.cyberactiva.com/2009/09/sharepoint-one-of-more-field-types-are-not-installed-properly/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 09:44:22 +0000</pubDate>
		<dc:creator>Claudio Barba</dc:creator>
				<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://lnx.cyberactiva.com/?p=12</guid>
		<description><![CDATA[<p>If you get this error while debugging your Sharepoint application,  you have probably to know that you must call the fields with their INTERNAL NAME, which can be different from the name you see on labels on the site.</p>
<p>How can you find the correct internal name?
You can go to a page in which you [...]]]></description>
			<content:encoded><![CDATA[<p>If you get this error while debugging your Sharepoint application,  you have probably to know that you must call the fields with their INTERNAL NAME, which can be different from the name you see on labels on the site.</p>
<p>How can you find the correct internal name?<br />
You can go to a page in which you have the possibility to edit all the fields and then look in the page source for the fieldname; otherwise you can also order a view by the specific field and then see what is written in the url.</p>
<p>I got this problem while trying to use the method UpdateListItems<br />
in the lists.asmx Sharepoint webservices.<br />
Here is the code I used:</p>
<p><span style="font-style: italic;font-size:85%;" >XmlDocument doc = new XmlDocument();<br />
XmlElement newFile = doc.CreateElement(&#8221;Batch&#8221;);<br />
newFile.SetAttribute(&#8221;OnError&#8221;, &#8220;Return&#8221;);</p>
<p>// as field name, we must pass the INTERNAL NAMES of the fields, example: Title is the internal name of the field Subject</p>
<p>newFile.InnerXml = &#8220;<method id="'1'" cmd="'New'">&#8221; +<br />
&#8220;<field name="'ID'">New</field>&#8221; +<br />
&#8220;<field name="'Title'">&#8221; + NewName + &#8220;</field>&#8221; + // Title is the internal name of Subject<br />
&#8220;<field name="'Client'">&#8221; + _client + &#8220;</field>&#8221; +<br />
&#8220;<field name="'List_x0020_type'">&#8221; + _listtype + &#8220;</field>&#8221; + //internal name of List type<br />
&#8220;<field name="'Country'">&#8221; + _country + &#8220;</field>&#8221; +<br />
&#8220;<field name="'Datext'">&#8221; + _datext + &#8220;</field>&#8221; +<br />
&#8220;</method>&#8220;;<br />
XmlNode returnValue = WS.UpdateListItems(&#8221;xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx&#8221;, newFile);</span></p>
<p>Hope this will help you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberactiva.com/2009/09/sharepoint-one-of-more-field-types-are-not-installed-properly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WEBSERVICES TO A SHAREPOINT SUBSITE</title>
		<link>http://www.cyberactiva.com/2009/09/webservices-to-a-sharepoint-subsite/</link>
		<comments>http://www.cyberactiva.com/2009/09/webservices-to-a-sharepoint-subsite/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 09:36:51 +0000</pubDate>
		<dc:creator>Claudio Barba</dc:creator>
				<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[WEBSERVICES]]></category>

		<guid isPermaLink="false">http://lnx.cyberactiva.com/?p=3</guid>
		<description><![CDATA[<p>Just a small tip that will help you to avoid to loose half a day looking for a solution&#8230;</p>
<p>When using Sharepoint throught web services remember to set the WEB REFERENCE to the right website.</p>
<p>If you have to access the main website point to http://&#60;typehereyourdomain&#62;/_vti_bin/lists.aspx but if you need to work on a subsite, remember that you [...]]]></description>
			<content:encoded><![CDATA[<p>Just a small tip that will help you to avoid to loose half a day looking for a solution&#8230;</p>
<p>When using Sharepoint throught web services remember to set the WEB REFERENCE to the right website.</p>
<p>If you have to access the main website point to <a href="http://&lt;typehereyourdomain&gt;/_vti_bin/lists.aspx">http://&lt;typehereyourdomain&gt;/_vti_bin/lists.aspx</a> <strong>but</strong> if you need to work on a subsite, remember that you have to point to the right web service, i.e. <a href="http://&lt;typehereyourdomain&gt;/&lt;typehereyoursubsite&gt;/_vti_bin/lists.aspx">http://&lt;typehereyourdomain&gt;/&lt;typehereyoursubsite&gt;/_vti_bin/lists.aspx</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberactiva.com/2009/09/webservices-to-a-sharepoint-subsite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
