<?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/"
	>

<channel>
	<title>Eddy Blanco</title>
	<atom:link href="http://eddyblanco.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://eddyblanco.com/blog</link>
	<description>Sharepoint Making Technology Simpler</description>
	<pubDate>Thu, 28 Jan 2010 00:50:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to copy files across SharePoint libraries.</title>
		<link>http://eddyblanco.com/blog/?p=61</link>
		<comments>http://eddyblanco.com/blog/?p=61#comments</comments>
		<pubDate>Fri, 22 Jan 2010 13:03:51 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Sharepoint]]></category>

		<category><![CDATA[MOSS 2007]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=61</guid>
		<description><![CDATA[Yesterday, I was working on a SharePoint Workflow. I needed to copy the final InfoPath (xml) to a different library. My first thought was to use the spfile.copyto but that gave me the &#8220;Value does not fall within the expected range.&#8221; or COM errors.
Instead of wasting my time trying to figure out how to make the copyto  [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I was working on a SharePoint Workflow. I needed to copy the final InfoPath (xml) to a different library. My first thought was to use the spfile.copyto but that gave me the &#8220;Value does not fall within the expected range.&#8221; or COM errors.<br />
Instead of wasting my time trying to figure out how to make the copyto  method copy across site collections, I did the following.<br />
   </p>
<blockquote><p>SPFile file = workflowProperties.Item.File;<br />
string xmlFileContent = System.Text.Encoding.Default.GetString(file.OpenBinary());<br />
int index = xmlFileContent.IndexOf(”&lt;?xml”);<br />
if (index != 0)<br />
    xmlFileContent = xmlFileContent.Remove(0, index);<br />
XmlDocument doc = new XmlDocument();<br />
doc.LoadXml(xmlFileContent);<br />
XmlNamespaceManager mgr = new XmlNamespaceManager(doc.NameTable);<br />
mgr.AddNamespace(”my”, @”http://schemas.microsoft.com/office/infopath/2003/myXSD/2007-10-05T17:30:02”</p></blockquote>
<p> I needed to set the status before I move to the new location.</p>
<blockquote><p>XmlNode nodeStatus = doc.DocumentElement.SelectSingleNode(&#8221;/my:myFields/my:FormStatus&#8221;, mgr);<br />
nodeStatus.InnerText = status;<br />
char[] newFile = doc.InnerXml.ToCharArray();<br />
file.SaveBinary(System.Text.Encoding.Default.GetBytes(newFile));<br />
Stream s = file2.OpenBinaryStream();<br />
SPFolder target = curweb.GetFolder(&#8221;Contract&#8221;);<br />
SPFile ofile = curweb.GetFile(&#8221;Contract/&#8221; + _requestName + &#8220;.xml&#8221;);<br />
if (ofile.Exists)<br />
    ofile.Delete();<br />
target.Files.Add(_requestName + &#8220;.xml&#8221;, s);<br />
fileURLWorkSpace = thedestinationlocation-URL + _requestName + &#8220;.xml&#8221;;<br />
target.Update(</p>
<p> Hope this helps someone.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=61</wfw:commentRss>
		</item>
		<item>
		<title>Installing the PWA site for Sharepoint</title>
		<link>http://eddyblanco.com/blog/?p=54</link>
		<comments>http://eddyblanco.com/blog/?p=54#comments</comments>
		<pubDate>Wed, 21 Oct 2009 13:58:25 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Project Server]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=54</guid>
		<description><![CDATA[The process to install an instance of Project Server 2007 and the PWA site required a several steps. Please follow the instructions below.
First we have to make sure that the “Project Application Services” is running.
Open the SharePoint Central Administration website and select the “Operations” tab under Topology and services select “Services on Server”. Select “Project [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-family: Calibri; font-size: small;">The process to install an instance of Project Server 2007 and the PWA site required a several steps. Please follow the instructions below.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-family: Calibri; font-size: small;">First we have to make sure that the “Project Application Services” is running.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-family: Calibri; font-size: small;">Open the </span><strong><span style="line-height: 115%; font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt;">SharePoint Central Administration</span></strong><span style="line-height: 115%; font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt;"> website and select the “<strong style="mso-bidi-font-weight: normal;">Operations”</strong> tab under Topology and services select “Services on Server”. Select “Project Application” and start the “Project Application Service” if is stop.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="line-height: 115%; font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt;">In order to install the PWA site do the following</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-family: Calibri; font-size: small;">Open the </span><strong><span style="line-height: 115%; font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt;">SharePoint Central Administration </span></strong><span style="line-height: 115%; font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-bidi-font-weight: bold;">website. Select SharedServices1 or the name of your SSP link in the left menu. Then select</span></p>
<p><a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-01.jpg"><img class="alignnone size-medium wp-image-55" title="admin-01" src="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-01-300x193.jpg" alt="admin-01" width="300" height="193" /></a><a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-04.jpg"></a></p>
<p><span style="line-height: 115%; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-size: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-no-proof: yes; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;">Then Click on the “Project Web Access Site” under Project Server heading. </span></p>
<p><span style="line-height: 115%; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-size: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-no-proof: yes; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"><a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-03.jpg"><img class="alignnone size-medium wp-image-57" title="admin-03" src="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-03-300x193.jpg" alt="admin-03" width="300" height="193" /></a></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="mso-no-proof: yes;"><span style="font-size: small;"><span style="font-family: Calibri;">Under the “Manage Project Web Access Site” Click the Create Project Web Acess Site button.<a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-03.jpg"></a></span></span></span></p>
<p><a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-04.jpg"><img class="alignnone size-medium wp-image-58" title="admin-04" src="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-04-300x193.jpg" alt="admin-04" width="300" height="193" /></a></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">On the <strong>Create Project Web Access Site</strong> page, enter the following information, then click the <strong>OK</strong> </span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 0.5in;"><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"> </span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">SharePoint Web Application to host Project Web Access:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> &lt;The Name of the website&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Project Web Access path:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> PWA</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Administrator account: </span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">&lt;Account&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Primary Database:</span></strong><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Primary database server:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> &lt;Server Name&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Published database name:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> Default is &lt;ProjectServer_Published&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Draft database name:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> Default is &lt;ProjectServer_Draft&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Archive database name: </span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Default is &lt;ProjectServer_Archive&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Reporting Database:</span></strong><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Use the primary database server:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> Yes</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Reporting database name:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> Default is <span style="mso-spacerun: yes;"> </span>&lt;ProjectServer_Reporting&gt;</span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';">At the end is going to take a few minutes to create the PWA site and DB’s. Click on refresh tilt you see “Provisioned” Once is completed the PWA site is ready. </span></p>
<p><a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-04.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=54</wfw:commentRss>
		</item>
		<item>
		<title>Planning for SharePoint 2010 - Upgrade Planning and Guidance</title>
		<link>http://eddyblanco.com/blog/?p=52</link>
		<comments>http://eddyblanco.com/blog/?p=52#comments</comments>
		<pubDate>Mon, 19 Oct 2009 11:01:45 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=52</guid>
		<description><![CDATA[This is a series of White Papers that have been published by Microsoft before the reveal of Sharepoint 2010 at Sharepoint Coference 2009.   
Microsoft SharePoint Server 2010 Upgrade Planning
Microsoft SharePoint Server 2010 — Test Your Upgrade Process
Microsoft SharePoint Server 2010 — Services Upgrade

]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="line-height: 115%; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black; font-size: 9pt;">This is a series of White Papers that have been published by Microsoft before the reveal of Sharepoint 2010 at Sharepoint Coference 2009. <span style="mso-spacerun: yes;"> </span><span style="mso-spacerun: yes;"> </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="line-height: 115%; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black; font-size: 9pt;"><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=eef6f604-9faa-4ea8-b000-569c656b7420#tm" target="_blank">Microsoft SharePoint Server 2010 Upgrade Planning</a><br />
<a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=d7389d9f-f70f-4226-89aa-a96a05a497f0#tm" target="_blank">Microsoft SharePoint Server 2010 — Test Your Upgrade Process</a><br />
<a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=8a6ce527-1ac3-4642-bd04-5e93efc364f6#tm" target="_blank">Microsoft SharePoint Server 2010 — Services Upgrade</a><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=52</wfw:commentRss>
		</item>
		<item>
		<title>SharePoint 2010 requirements</title>
		<link>http://eddyblanco.com/blog/?p=48</link>
		<comments>http://eddyblanco.com/blog/?p=48#comments</comments>
		<pubDate>Tue, 12 May 2009 01:22:15 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=48</guid>
		<description><![CDATA[Microsoft just announced the Sharepoint 2010 preliminary system requirements. From this point on only 64bit of Sharepoint and SQL are supported.
&#160;
Link
]]></description>
			<content:encoded><![CDATA[<p style="margin: 0in 0in 0pt" class="MsoNormal"><font face="Times New Roman">Microsoft just announced the Sharepoint 2010 preliminary system requirements. From this point on only 64bit of Sharepoint and SQL are supported.</font></p>
<p style="margin: 0in 0in 0pt" class="MsoNormal">&nbsp;</p>
<p style="margin: 0in 0in 0pt" class="MsoNormal"><font face="Times New Roman"><a target="_blank" href="http://" title="http://blogs.msdn.com/sharepoint/archive/2009/05/07/announcing-sharepoint-server-2010-preliminary-system-requirements.aspx">Link</a></font></p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=48</wfw:commentRss>
		</item>
		<item>
		<title>WSS 3 /MOSS SP2 errors encounter</title>
		<link>http://eddyblanco.com/blog/?p=47</link>
		<comments>http://eddyblanco.com/blog/?p=47#comments</comments>
		<pubDate>Wed, 29 Apr 2009 17:36:25 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=47</guid>
		<description><![CDATA[After installing WSS 3 SP2 I encounter the following error.
Server error: http://go.microsoft.com/fwlink?LinkID=96177
I try the following and nothing happened, after started changing the version number in the SQL DB and that broke the entire solution.
USE master;
GO
EXEC sp_configure &#8217;show advanced option&#8217;, &#8216;1&#8242;;
RECONFIGURE WITH OVERRIDE;
EXEC sp_configure;
psconfig -cmd upgrade
stsadm -o upgrade –forceupgrade -inplace
stsadm -o upgrade -url http://laptopdev -inplace –forceupgrade
At [...]]]></description>
			<content:encoded><![CDATA[<p>After installing WSS 3 SP2 I encounter the following error.</p>
<p>Server error: <a href="http://go.microsoft.com/fwlink?LinkID=96177">http://go.microsoft.com/fwlink?LinkID=96177</a><br />
I try the following and nothing happened, after started changing the version number in the SQL DB and that broke the entire solution.<br />
USE master;<br />
GO<br />
EXEC sp_configure &#8217;show advanced option&#8217;, &#8216;1&#8242;;<br />
RECONFIGURE WITH OVERRIDE;<br />
EXEC sp_configure;<br />
psconfig -cmd upgrade<br />
stsadm -o upgrade –forceupgrade -inplace<br />
stsadm -o upgrade -url <a href="http://laptopdev/">http://laptopdev</a> -inplace –forceupgrade</p>
<p>At this point I try the “Sharepoint products and technologies configuration”  and created a new Config DB , reinstall the entire and then restore the old DB<br />
stsadm.exe -o addcontentdb -url <a href="http://laptopdev/">http://laptopdev:80</a> -databasename WSS_Content -databaseserver laptopdev</p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=47</wfw:commentRss>
		</item>
		<item>
		<title>Sending mail using c#</title>
		<link>http://eddyblanco.com/blog/?p=46</link>
		<comments>http://eddyblanco.com/blog/?p=46#comments</comments>
		<pubDate>Thu, 05 Mar 2009 15:21:52 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=46</guid>
		<description><![CDATA[The simple program will send emails at the end of the month.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Mail;
namespace SendEmailLastDayofMonth
{
    class Program
    {
        static void Main(string[] args)
        {
            DateTime lastDayofMonth = new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.DaysInMonth(DateTime.Today.Year,DateTime.Today.Month));
            if(DateTime.Today == lastDayofMonth)
            {
                try
                {
                    MailMessage mM = new MailMessage();
                    mM.From = new MailAddress(&#8221;eddyblanco@gmail.com&#8220;);
                    mM.To.Add(&#8221;eddyblanco@gmail.com&#8220;);
                    mM.Subject = &#8220;Text Subject&#8221;;
                    mM.Body = [...]]]></description>
			<content:encoded><![CDATA[<p>The simple program will send emails at the end of the month.</p>
<p>using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Text;<br />
using System.Net.Mail;</p>
<p>namespace SendEmailLastDayofMonth<br />
{<br />
    class Program<br />
    {<br />
        static void Main(string[] args)<br />
        {<br />
            DateTime lastDayofMonth = new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.DaysInMonth(DateTime.Today.Year,DateTime.Today.Month));</p>
<p>            if(DateTime.Today == lastDayofMonth)<br />
            {<br />
                try<br />
                {</p>
<p>                    MailMessage mM = new MailMessage();<br />
                    mM.From = new MailAddress(&#8221;<a href="mailto:eddyblanco@gmail.com">eddyblanco@gmail.com</a>&#8220;);<br />
                    mM.To.Add(&#8221;<a href="mailto:eddyblanco@gmail.com">eddyblanco@gmail.com</a>&#8220;);<br />
                    mM.Subject = &#8220;Text Subject&#8221;;<br />
                    mM.Body = &#8220;The body of the email&#8221;;<br />
                    mM.IsBodyHtml = true;<br />
                    mM.Priority = MailPriority.High;<br />
                    SmtpClient sC = new SmtpClient(&#8221;smtp.mail.eddyblanco.com&#8221;);<br />
                    sC.Send(mM);<br />
                  </p>
<p>                }<br />
                catch<br />
                {<br />
                 <br />
                }<br />
            }<br />
        }<br />
    }<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=46</wfw:commentRss>
		</item>
		<item>
		<title>Warning: Importing Group &#8220;Group Name&#8221;</title>
		<link>http://eddyblanco.com/blog/?p=45</link>
		<comments>http://eddyblanco.com/blog/?p=45#comments</comments>
		<pubDate>Sat, 28 Feb 2009 18:37:22 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=45</guid>
		<description><![CDATA[Today in the process of a SharePoint migration I encounter several Warnings in the logs. Warning: User or group xxxx cannot be resolved.
The problem is every security group that has the ID’s with the warning above do not come over on the import, which shows up as a warning in the import log as.
Warning: Importing [...]]]></description>
			<content:encoded><![CDATA[<p>Today in the process of a SharePoint migration I encounter several Warnings in the logs. Warning: User or group xxxx cannot be resolved.</p>
<p>The problem is every security group that has the ID’s with the warning above do not come over on the import, which shows up as a warning in the import log as.</p>
<p>Warning: Importing Group &lt;Group Name&gt;</p>
<p>The SQL query below when run on the content DB will return all groups that have the owner ID’s specified in the warning.</p>
<p>select * from groups with (nolock) where owner = XXXX</p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=45</wfw:commentRss>
		</item>
		<item>
		<title>ESP For SharePoint Announced!</title>
		<link>http://eddyblanco.com/blog/?p=44</link>
		<comments>http://eddyblanco.com/blog/?p=44#comments</comments>
		<pubDate>Tue, 10 Feb 2009 19:36:37 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=44</guid>
		<description><![CDATA[Article by Michael Gannotti on the announcement of ESP for SharePoint.
Link
]]></description>
			<content:encoded><![CDATA[<p style="margin: 0in 0in 10pt" class="MsoNormal"><font face="Calibri">Article by Michael Gannotti on the announcement of ESP for SharePoint.</font></p>
<p style="margin: 0in 0in 10pt" class="MsoNormal"><font face="Calibri"><a target="_blank" href="http://sharepoint.microsoft.com/blogs/mikeg/Lists/Posts/Post.aspx?ID=1512">Link</a></font></p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=44</wfw:commentRss>
		</item>
		<item>
		<title>SPDisposeCheck Released</title>
		<link>http://eddyblanco.com/blog/?p=43</link>
		<comments>http://eddyblanco.com/blog/?p=43#comments</comments>
		<pubDate>Sat, 31 Jan 2009 12:44:48 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=43</guid>
		<description><![CDATA[PDisposeCheck for SharePoint Developers has been released. SPDisposeCheck inspect your SharePoint assemblies to make sure you are code is disposing correctly
Link
]]></description>
			<content:encoded><![CDATA[<p>PDisposeCheck for SharePoint Developers has been released. SPDisposeCheck inspect your SharePoint assemblies to make sure you are code is disposing correctly</p>
<p><a target="_blank" href="http://blogs.msdn.com/sharepoint/archive/2009/01/29/spdisposecheck-released.aspx" title="SPDisposeCheck Released">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=43</wfw:commentRss>
		</item>
		<item>
		<title>stsadm restore Results &#8220;No content databases are available for this operation&#8221;</title>
		<link>http://eddyblanco.com/blog/?p=42</link>
		<comments>http://eddyblanco.com/blog/?p=42#comments</comments>
		<pubDate>Fri, 23 Jan 2009 19:03:05 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=42</guid>
		<description><![CDATA[The reason for the problem is that the GUID is the same as an existing site. You could either delete the old site or create a new web application and restore in that new one.
]]></description>
			<content:encoded><![CDATA[<p><span lang="EN"><font face="Calibri">The reason for the problem is that the GUID is the same as an existing site. You could either delete the old site or create a new web application and restore in that new one.<o:p></o:p></font></span></p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=42</wfw:commentRss>
		</item>
	</channel>
</rss>
