<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>My SharePoint Experience</title>
	<atom:link href="http://myspexp.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://myspexp.com</link>
	<description>Bill Daugherty II</description>
	<lastBuildDate>Sun, 29 Jan 2012 13:46:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='myspexp.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>My SharePoint Experience</title>
		<link>http://myspexp.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://myspexp.com/osd.xml" title="My SharePoint Experience" />
	<atom:link rel='hub' href='http://myspexp.com/?pushpress=hub'/>
		<item>
		<title>GridView and Sorting</title>
		<link>http://myspexp.com/2011/11/14/gridview-and-sorting/</link>
		<comments>http://myspexp.com/2011/11/14/gridview-and-sorting/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 04:23:04 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/11/14/gridview-and-sorting/</guid>
		<description><![CDATA[GridView Control Please reference this: http://tablesorter.com/docs/ for the actual source. Step 1: Add the following to the ASP code: (Note, you will want to copy the js and css files to a local network server, I am just using the source) &#60;script type=&#34;text/javascript&#34; src=&#34;http://tablesorter.com/jquery-latest.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34; src=&#34;http://autobahn.tablesorter.com/jquery.tablesorter.js&#34;&#62;&#60;/script&#62; &#60;link rel=&#34;stylesheet&#34; href=&#34;http://tablesorter.com/themes/blue/style.css&#34; type=&#34;text/css&#34; media=&#34;print, projection, screen&#34; /&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1217&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>GridView Control</h3>
<h6>
<p>Please reference this: <a href="http://tablesorter.com/docs/">http://tablesorter.com/docs/</a> for the actual source.</p>
</h6>
<h3>
<p>Step 1: Add the following to the ASP code:</p>
</h3>
<p>(Note, you will want to copy the js and css files to a local network server, I am just using the source)</p>
<blockquote><p>&lt;script type=&quot;text/javascript&quot; src=&quot;http://tablesorter.com/jquery-latest.js&quot;&gt;&lt;/script&gt;</p>
<p>&lt;script type=&quot;text/javascript&quot; src=&quot;http://autobahn.tablesorter.com/jquery.tablesorter.js&quot;&gt;&lt;/script&gt;</p>
<p>&lt;link rel=&quot;stylesheet&quot; href=&quot;http://tablesorter.com/themes/blue/style.css&quot; type=&quot;text/css&quot; media=&quot;print, projection, screen&quot; /&gt;</p>
</blockquote>
<h3>Step 2: Add the following JavaScript/JQuery code to your ASP code</h3>
<p>(This will go after the code above, however the first $(document).ready command is fired for the first time the page is rendered. The second one is for if you are using AJAX Update Refresh Panels) If you are not populating the GridView on load, omit the first $(document.ready)</p>
<blockquote><p>&lt;script type=&quot;text/javascript&quot;&gt;</p>
<p>try{</p>
<p>Sys.Application.add_init(appl_init);</p>
<p>$(document).ready(function () { $(&lt;%= grdCaseInfo.ClientID %&gt;).tablesorter(); });</p>
<p>}</p>
<p>catch(err){</p>
<p>}</p>
<p>function appl_init() {</p>
<p>try{</p>
<p>var pgRegMgr = Sys.WebForms.PageRequestManager.getInstance();</p>
<p>pgRegMgr.add_endRequest(EndHandler); }</p>
<p>catch(err){</p>
<p>}</p>
<p>}</p>
<p>function EndHandler() {</p>
<p>try{</p>
<p>$(document).ready(function () { $(&lt;%= grdCaseInfo.ClientID %&gt;).tablesorter(); });</p>
<p>}</p>
<p>catch(err){</p>
<p>}</p>
<p>}</p>
<p>&lt;/script&gt;</p>
</blockquote>
<h3>Step 3: Add your GridView</h3>
<p>(Please note, the CSS Class &quot;tablesorter&quot; must be used)</p>
<blockquote><p>&lt;asp:GridView ID=&quot;grdCaseInfo&quot; runat=&quot;server&quot; EnableModelValidation=&quot;True&quot;</p>
<p>class=&quot;tablesorter&quot; AutoGenerateColumns=&quot;False&quot;&gt;</p>
<p>&lt;Columns&gt;</p>
<p>&lt;asp:BoundField DataField=&quot;ID&quot; HeaderText=&quot;Case&quot; /&gt;</p>
<p>&lt;asp:BoundField DataField=&quot;CaseTitle&quot; HeaderText=&quot;Title&quot; /&gt;</p>
<p>&lt;/Columns&gt;</p>
<p>&lt;/asp:GridView&gt;</p>
</blockquote>
<h3>Step 4: Add Code</h3>
<p>(Use what ever code you need)</p>
<p>private string ConnectionString = &quot;Data Source=.;Initial Catalog=CMS_InfoDept;Persist Security Info=True;User ID=cmsuser;Password=pass@word1&quot;;</p>
<blockquote><p>protected void Page_Load(object sender, EventArgs e)</p>
<p>{</p>
<p>BindGridView();</p>
<p>}</p>
<p>private void BindGridView()</p>
<p>{</p>
<p>List&lt;Case&gt; cases = new List&lt;Case&gt;();</p>
<p>using (CMSDataContext db = new CMSDataContext(ConnectionString))</p>
<p>{</p>
<p>var dbResults = from q in db.tblCases</p>
<p>where q.caseOwnerID == 2</p>
<p>select q;</p>
<p>foreach (var dbItem in dbResults)</p>
<p>{</p>
<p>Case caseItem = new Case();</p>
<p>caseItem.ID = dbItem.ID;</p>
<p>caseItem.CaseTitle = dbItem.caseTitle;</p>
<p>cases.Add(caseItem);</p>
<p>}</p>
<p>this.grdCaseInfo.DataSource = cases;</p>
<p>this.grdCaseInfo.DataBind();</p>
<p>}</p>
<p>}</p>
<p>}</p>
</blockquote>
<h3>Step 5: Ensure the GridView has a HR row</h3>
<p>(Adding the following code after you perofrm a DataBind() will ensure that your table will have hr that is required by the jQuery)</p>
<blockquote><p>// This is required for all sorting on this gridview</p>
<p>if (grdCaseInfo.Rows.Count &gt; 0)</p>
<p>{</p>
<p>// This replaces &lt;td&gt; with &lt;th&gt; and adds the scope attribute</p>
<p>grdCaseInfo.UseAccessibleHeader = true;</p>
<p>// This will add the &lt;thead&gt; and &lt;tbody&gt; elements</p>
<p>grdCaseInfo.HeaderRow.TableSection = TableRowSection.TableHeader;</p>
<p>}</p>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1217/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1217&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/11/14/gridview-and-sorting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding a Modal Dialog link to the Quick Launch</title>
		<link>http://myspexp.com/2011/11/14/adding-a-modal-dialog-link-to-the-quick-launch/</link>
		<comments>http://myspexp.com/2011/11/14/adding-a-modal-dialog-link-to-the-quick-launch/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 16:16:50 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">http://myspexp.com/?p=1213</guid>
		<description><![CDATA[Modify Your Quick Launch First, modify your quick launch: http://xxxxxxx/_layouts/quiklnch.aspx Add a javaScript modal popup Next, get the link of the item you want to add, and make sure it has the IsDlg=1 in the URL, add it as a link in the following format: javascript:function tdql1(){SP.UI.ModalDialog.showModalDialog({url:&#8217;/xxx/Lists/xxx/NewForm.aspx?RootFolder=&#38;IsDlg=1&#8242;,title:&#8217;Press Publication&#8217;})}tdql1();<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1213&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Modify Your Quick Launch</strong><br />
First, modify your quick launch:</p>
<p><em>http://xxxxxxx/_layouts/quiklnch.aspx</em></p>
<p><strong>Add a javaScript modal popup</strong><br />
Next, get the link of the item you want to add, and make sure it has the IsDlg=1 in the URL, add it as a link in the following format:<br />
javascript:function tdql1(){SP.UI.ModalDialog.showModalDialog({url:&#8217;/xxx/Lists/xxx/NewForm.aspx?RootFolder=&amp;IsDlg=1&#8242;,title:&#8217;Press Publication&#8217;})}tdql1();</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1213/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1213&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/11/14/adding-a-modal-dialog-link-to-the-quick-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Capture Enter Key in ASP.NET&#8217;s Textbox</title>
		<link>http://myspexp.com/2011/09/21/capture-enter-key-in-asp-nets-textbox/</link>
		<comments>http://myspexp.com/2011/09/21/capture-enter-key-in-asp-nets-textbox/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 00:45:16 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">http://myspexp.com/?p=1199</guid>
		<description><![CDATA[Here is some sample code on how to capture the enter key on a textbox in ASP.NET. I am posting this because I use it a lot. function KeyDownHandler() { if (event.keyCode == 13) { event.returnValue = false; event.cancel = true; document.getElementById(&#8216;cphmainContent_C008_LoginButton&#8217;).click(); } } Then add this to your textobox: onkeydown=&#8221;KeyDownHandler();&#8221;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1199&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is some sample code on how to capture the enter key on a textbox in ASP.NET.  I am posting this because I use it a lot.</p>
<p>function KeyDownHandler() {<br />
   if (event.keyCode == 13) {<br />
        event.returnValue = false;<br />
        event.cancel = true;<br />
        document.getElementById(&#8216;cphmainContent_C008_LoginButton&#8217;).click();<br />
    }<br />
} </p>
<p>Then add this to your textobox:<br />
onkeydown=&#8221;KeyDownHandler();&#8221;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1199/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1199&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/09/21/capture-enter-key-in-asp-nets-textbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint 2010 (And Office 2010) SP1 RTW</title>
		<link>http://myspexp.com/2011/06/29/sharepoint-2010-and-office-2010-sp1-rtw/</link>
		<comments>http://myspexp.com/2011/06/29/sharepoint-2010-and-office-2010-sp1-rtw/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 13:36:32 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/06/29/sharepoint-2010-and-office-2010-sp1-rtw/</guid>
		<description><![CDATA[Microsoft Download Site: http://www.microsoft.com/download/en/details.aspx?displaylang=en&#38;id=26623<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1209&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Microsoft Download Site: <a title="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=26623" href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=26623">http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=26623</a></p>
<p><a href="http://myspexp.files.wordpress.com/2011/06/image10.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/06/image_thumb10.png?w=600&#038;h=501" width="600" height="501" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1209/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1209&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/06/29/sharepoint-2010-and-office-2010-sp1-rtw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/06/image_thumb10.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Office Web Apps&#8211;Unable to process the request.</title>
		<link>http://myspexp.com/2011/06/16/office-web-appsunable-to-process-the-request/</link>
		<comments>http://myspexp.com/2011/06/16/office-web-appsunable-to-process-the-request/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 18:43:53 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/06/16/office-web-appsunable-to-process-the-request/</guid>
		<description><![CDATA[So the strangest error came up in our environment today. When users go to open excel documents, they get this message: Unable to process the request.&#160; Wait a few minutes and perform this operation again. I did a trace in ULSLogViewer: There was an error in communicating with Excel Calculation Services http://xxxxxx:12345/fc4fbe4d08ge4a5589e844e33e8d3c08/ExcelService*.asmx exception: An error [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1196&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So the strangest error came up in our environment today. </p>
<p>When users go to open excel documents, they get this message:   <br />Unable to process the request.&#160; Wait a few minutes and perform this operation again.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/06/image8.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/06/image_thumb8.png?w=338&#038;h=180" width="338" height="180" /></a></p>
<p>I did a trace in ULSLogViewer:</p>
<p>There was an error in communicating with Excel Calculation Services <a href="http://xxxxxx:12345/fc4fbe4d08ge4a5589e844e33e8d3c08/ExcelService*.asmx">http://xxxxxx:12345/fc4fbe4d08ge4a5589e844e33e8d3c08/ExcelService*.asmx</a> exception: An error has occurred. [Session:&#160; User: domain\yyyyyyy].</p>
<p>This didn’t say a whole lot, so I went to IIS Manager (inetmgr) on the system.&#160; I saw the service and the app pool looked like it was up and working fine.&#160; However, it still didn’t work.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/06/image9.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/06/image_thumb9.png?w=272&#038;h=174" width="272" height="174" /></a></p>
<p>After performing an “IISRESET”, it worked juts fine.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1196/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1196/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1196/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1196&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/06/16/office-web-appsunable-to-process-the-request/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/06/image_thumb8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/06/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft SketchFlow&#8211;Great for wire framing UI&#8217;s</title>
		<link>http://myspexp.com/2011/06/10/microsoft-sketchflowgreat-for-wire-framing-uis/</link>
		<comments>http://myspexp.com/2011/06/10/microsoft-sketchflowgreat-for-wire-framing-uis/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 21:03:03 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/?p=1187</guid>
		<description><![CDATA[Microsoft Expressions Blend has some very useful functionality and I just wanted to share this. Here is the overview for SketchFlow by Microsoft: http://www.microsoft.com/expression/products/sketchflow_overview.aspx Jeff Rix who works with me created this in about 15 minutes within SketchFlow.&#160; It is much better UI prototyping than Excel or Visio. &#160; I really suggest this application to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1187&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Microsoft Expressions Blend has some very useful functionality and I just wanted to share this.</p>
<p>Here is the overview for SketchFlow by Microsoft: <a title="http://www.microsoft.com/expression/products/sketchflow_overview.aspx" href="http://www.microsoft.com/expression/products/sketchflow_overview.aspx">http://www.microsoft.com/expression/products/sketchflow_overview.aspx</a></p>
<p><a href="http://realworldsql.com/"><strong>Jeff Rix</strong></a> who works with me created this in about 15 minutes within SketchFlow.&#160; It is much better UI prototyping than Excel or Visio.</p>
<p>&#160;</p>
<p><a href="http://myspexp.files.wordpress.com/2011/06/assign-detentions-2.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Assign Detentions (2)" border="0" alt="Assign Detentions (2)" src="http://myspexp.files.wordpress.com/2011/06/assign-detentions-2_thumb.png?w=600&#038;h=401" width="600" height="401" /></a></p>
<p>I really suggest this application to anyone who is a BA or Developer.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1187/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1187&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/06/10/microsoft-sketchflowgreat-for-wire-framing-uis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/06/assign-detentions-2_thumb.png" medium="image">
			<media:title type="html">Assign Detentions (2)</media:title>
		</media:content>
	</item>
		<item>
		<title>Kanban Kick-start Example</title>
		<link>http://myspexp.com/2011/06/10/kanban-kick-start-example/</link>
		<comments>http://myspexp.com/2011/06/10/kanban-kick-start-example/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 20:54:34 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/?p=1184</guid>
		<description><![CDATA[All, SCRUM is GREAT with Agile programming, however; sometimes you need to change things up a bit.&#160; Sometimes, you have a small enough team that you may need to combine SCRUM with Kanban. Please see this site for Kanban starting material: http://www.crisp.se/kanban/ and Kanban kick-start example – Crisp &#160; As you can see below, we [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1184&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>All,</p>
<p>SCRUM is GREAT with Agile programming, however; sometimes you need to change things up a bit.&#160; Sometimes, you have a small enough team that you may need to combine SCRUM with Kanban. </p>
<p>Please see this site for Kanban starting material:</p>
<p><a title="http://www.crisp.se/kanban/" href="http://www.crisp.se/kanban/">http://www.crisp.se/kanban/</a></p>
<p>and</p>
<p><a title="Kanban kick-start example - Crisp" href="http://www.google.com/url?sa=t&amp;source=web&amp;cd=1&amp;ved=0CDEQFjAA&amp;url=http%3A%2F%2Fwww.crisp.se%2Fkanban%2Fkanban-example.pdf&amp;ei=3YHyTdrgPJCltwf-vZyIBw&amp;usg=AFQjCNFyqy2Q8pTnCz3s0xh-ZVenBNLiUA&amp;sig2=6MaLvPGPteWWMtmiYSISWg">Kanban kick-start example – Crisp</a></p>
<p>&#160;</p>
<p>As you can see below, we have expanded our use of Kanban and have the “Great Ideas” board…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/06/img_0067.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="" border="0" alt="" src="http://myspexp.files.wordpress.com/2011/06/img_0067_thumb.jpg?w=600&#038;h=367" width="600" height="367" /></a></p>
<p>Next we use the Product Backlog as well as the development kanban board…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/06/img_0068.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="" border="0" alt="" src="http://myspexp.files.wordpress.com/2011/06/img_0068_thumb.jpg?w=599&#038;h=557" width="599" height="557" /></a></p>
<p>Taken from the PDF referenced above, see the following examples and rules.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/06/image6.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/06/image_thumb6.png?w=597&#038;h=449" width="597" height="449" /></a></p>
<p>And now the rules…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/06/image7.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/06/image_thumb7.png?w=599&#038;h=445" width="599" height="445" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1184&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/06/10/kanban-kick-start-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/06/img_0067_thumb.jpg" medium="image" />

		<media:content url="http://myspexp.files.wordpress.com/2011/06/img_0068_thumb.jpg" medium="image" />

		<media:content url="http://myspexp.files.wordpress.com/2011/06/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/06/image_thumb7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Massive Document Management in SharePoint 2010</title>
		<link>http://myspexp.com/2011/06/03/massive-document-management-in-sharepoint-2010/</link>
		<comments>http://myspexp.com/2011/06/03/massive-document-management-in-sharepoint-2010/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 21:59:45 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/06/03/massive-document-management-in-sharepoint-2010/</guid>
		<description><![CDATA[I get so many folks contacting me asking what do I recommend when storing massive amounts of files in SharePoint.&#160; Using SP as a document management tool.&#160; As a developer I recommend creating an application that will do this for them.&#160; However I know the answer is “We have to use SharePoint” and that’s very [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1153&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I get so many folks contacting me asking what do I recommend when storing massive amounts of files in SharePoint.&#160; Using SP as a document management tool.&#160; As a developer I recommend creating an application that will do this for them.&#160; However I know the answer is “We have to use SharePoint” and that’s very true because of all of the built in features.</p>
<p>For this reason, I would like to recommend this approach to everyone:</p>
<ol>
<li>Have a staging document library that implements all the possible content types.</li>
<li>Create many sites with its own content database, design this structure with the idea in mind that you will want to evenly split up your files</li>
<li>Create a workflow that moves those files from a staging document library to one of the document libraries in another content database</li>
<li>Design a new search screen and configure search to enable searching these libraries with the different content types as a drop down.&#160; To do this, you may need to modify the XSLT</li>
<li>Create several front end application servers (web apps) that will do nothing but crawl the site, leaving the other front end(s) usable and ready for user interaction.</li>
</ol>
<p>Now, determine the size requirements for your content DB for now, and the length of your retention schedule in years but no more than 7 years.&#160; Add up the length of all of your files, and ensure that you multiply that number by 10 if you have versioning turned on.</p>
<p>Because SharePoint 2010’s recommend content database size should be &lt; 200 GB you might want to consider remote storage by using SQL’s FILESTREAM provider.&#160; You will have to get it working and it’s a small chore.&#160; Please reference this link to get started: <a title="http://technet.microsoft.com/en-us/library/ee748631.aspx" href="http://technet.microsoft.com/en-us/library/ee748631.aspx">http://technet.microsoft.com/en-us/library/ee748631.aspx</a></p>
<p>Build an application that will COPY <strong>(not move)</strong> your files from the old system to the new system.&#160; Make sure you throttle the files.&#160; Also make sure that you keep a detailed log about every file you COPY over.</p>
<p>It is also a great idea to keep the old system in place and for the life of the retention just in case you find any immediate issues in the future.&#160; Maybe create a new DNS name for the legacy file server, but move the DNS to the new system if needed.</p>
<p>That’s my two cents.&#160; <strike>If</strike> When I do something like this, I will blog about it!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1153&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/06/03/massive-document-management-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Cascading Drop Downs in SharePoint Lists</title>
		<link>http://myspexp.com/2011/05/09/cascading-drop-downs-in-sharepoint-lists/</link>
		<comments>http://myspexp.com/2011/05/09/cascading-drop-downs-in-sharepoint-lists/#comments</comments>
		<pubDate>Mon, 09 May 2011 22:25:25 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/05/09/cascading-drop-downs-in-sharepoint-lists/</guid>
		<description><![CDATA[In this video I will create a set of cascading drop down fields using two other SharePoint lists.&#160; This is a pretty common request, and it is fairly simple task to accomplish.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1152&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this video I will create a set of cascading drop down fields using two other SharePoint lists.&#160; This is a pretty common request, and it is fairly simple task to accomplish.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/05/image12.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb12.png?w=745&#038;h=401" width="745" height="401" /></a></p>
<p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:0292bee3-710e-4a83-aa81-604063cd7403" class="wlWriterEditableSmartContent">
<div><span style="text-align:center; display: block;"><a href="http://myspexp.com/2011/05/09/cascading-drop-downs-in-sharepoint-lists/"><img src="http://img.youtube.com/vi/-HnLhXVQf-M/2.jpg" alt="" /></a></span></div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1152&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/05/09/cascading-drop-downs-in-sharepoint-lists/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb12.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating an InfoPath SharePoint List connecting to a Web Service</title>
		<link>http://myspexp.com/2011/05/06/creating-an-infopath-sharepoint-list-connecting-to-a-web-service/</link>
		<comments>http://myspexp.com/2011/05/06/creating-an-infopath-sharepoint-list-connecting-to-a-web-service/#comments</comments>
		<pubDate>Fri, 06 May 2011 22:02:43 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/05/06/creating-an-infopath-sharepoint-list-connecting-to-a-web-service/</guid>
		<description><![CDATA[In this blog posting, I will take you step by step on creating an InfoPath Form that connects to a web service stored on another server (normally causing cross-domain issues). The business need: SharePoint List - A SharePoint List to hold SoE documents (Separation of Employment) Employee’s Location Drop Down Box &#8211; The employees have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1149&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this blog posting, I will take you step by step on creating an InfoPath Form that connects to a web service stored on another server (normally causing cross-domain issues).</p>
<p>The business need: </p>
<ul>
<li><strong>SharePoint List </strong>- A SharePoint List to hold SoE documents (Separation of Employment)</li>
<li><strong>Employee’s Location Drop Down Box</strong> &#8211; The employees have different locations, but there are many locations they work at.&#160; So we need a drop down box for the Employee’s Location, but this has to come from a database, I chose to create a web service as a proxy.</li>
<li><strong>Employee’s List Populated </strong>- Based on the employee’s location, the list of employees should populate.</li>
<li><strong>Auto Staff ID filled Out </strong>- When the employee is selected, the Staff ID should be filled out.</li>
</ul>
<p>Here is the final result.&#160; </p>
<p><a href="http://myspexp.files.wordpress.com/2011/05/image1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb1.png?w=737&#038;h=472" width="737" height="472" /></a></p>
<p>&#160;</p>
<p>Web Service Methods:</p>
<p><a href="http://myspexp.files.wordpress.com/2011/05/image2.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb2.png?w=646&#038;h=230" width="646" height="230" /></a></p>
<p>I created an ASMX service because I knew for sure that it would be compatible with Microsoft InfoPath for sure.&#160; I didn’t want to create a WCF service that did this just to find out it didn’t work with InfoPath. </p>
<p>&#160;</p>
<p>Rules:</p>
<ul>
<li>When the form loads, the employee’s locations are populated using GetLocations in the web service</li>
<li>When the user selects the employee’s Location, the list of employee’s drop down box populates.</li>
<li>when the employee is selected, then the employee ID is filled out.</li>
</ul>
<ul>Steps:</ul>
<ul>First, you must select your web service after it has been deployed.</ul>
<p><a href="http://myspexp.files.wordpress.com/2011/05/image3.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb3.png?w=295&#038;h=194" width="295" height="194" /></a></p>
<p>Next, convert all of your web service to a SharePoint connections library.&#160; This will deploy all of your connections and allow your InfoPath to use it directly.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/05/image4.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb4.png?w=527&#038;h=213" width="527" height="213" /></a></p>
<p>Now, you must ensure that cross domain settings are turned to allow in InfoPath Form Services.&#160; In Central Admin, go to General Application Settings, then Configure InfoPath Form Services…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/05/image5.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb5.png?w=756&#038;h=366" width="756" height="366" /></a></p>
<p>Next, turn on Allow for Cross-Domain Access for the User Form Templates, this enables you to use a separate server for the web service.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/05/image6.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb6.png?w=877&#038;h=74" width="877" height="74" /></a></p>
<p>To enable rules, you will need to right click on one of your controls, then select Rules and Manage Rules…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/05/image7.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb7.png?w=582&#038;h=372" width="582" height="372" /></a></p>
<p>For the first field, Employee’s Location, you will have to set up rules so once it is selected your InfoPath form performs an action, and that is to:</p>
<ol>
<li>Set the GetEmployeesNameByLocation location field to the selected Employees Location field</li>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <a href="http://myspexp.files.wordpress.com/2011/05/image8.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb8.png?w=494&#038;h=305" width="494" height="305" /></a>&#160;&#160;&#160; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <a href="http://myspexp.files.wordpress.com/2011/05/image9.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb9.png?w=320&#038;h=367" width="320" height="367" /></a></p>
<li>Perform the query on GetEmployeesNameByLocation</li>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <a href="http://myspexp.files.wordpress.com/2011/05/image10.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb10.png?w=494&#038;h=305" width="494" height="305" /></a></ol>
<ol></ol>
<ol>Now, your rules should look like this:</ol>
<p> <a href="http://myspexp.files.wordpress.com/2011/05/image11.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb11.png?w=446&#038;h=289" width="446" height="289" /></a>
<p>And by this time your Employee’s drop down should be populated.</p>
<p>&#160;</p>
<p>I will not take you through the rest of the examples to get to this point, but please let me know if you have questions, I can fill out more to my blog if questions arise.</p>
<p>&#160;</p>
<p>Bill.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1149&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/05/06/creating-an-infopath-sharepoint-list-connecting-to-a-web-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb10.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb11.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Exporting all users from Active Directory.</title>
		<link>http://myspexp.com/2011/05/06/exporting-all-users-from-active-directory/</link>
		<comments>http://myspexp.com/2011/05/06/exporting-all-users-from-active-directory/#comments</comments>
		<pubDate>Fri, 06 May 2011 14:53:54 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/05/06/exporting-all-users-from-active-directory/</guid>
		<description><![CDATA[You can export all users to a CSV file from Active Directory using a tool called CSVDE, it comes with Windows Server 2003, 2003 R2, 2008, and 2008 R2.&#160; It also comes in the RSAT pack for Windows 7 (shown on my blog post here).&#160; Its really simple, Go to Start Go to RUN (if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1126&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can export all users to a CSV file from Active Directory using a tool called CSVDE, it comes with Windows Server 2003, 2003 R2, 2008, and 2008 R2.&#160; It also comes in the RSAT pack for Windows 7 (<a href="http://myspexp.com/2010/06/14/installing-hyper-v-tools-on-windows-7-pro-ent-ult-2/">shown on my blog post here</a>).&#160; </p>
<p>Its really simple, </p>
<ol>
<li>Go to Start</li>
<li>Go to RUN (if required)</li>
<li>Type in CMD to get to the command prompt</li>
<li>Type in CSVDE –f &lt;filename&gt; –S &lt;dccontroller&gt;</li>
</ol>
<ol><a href="http://myspexp.files.wordpress.com/2011/05/image.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/05/image_thumb.png?w=685&#038;h=305" width="685" height="305" /></a></ol>
<p>Now you can import this into excel.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1126&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/05/06/exporting-all-users-from-active-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/05/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>User Profile Synchronization Service&#8211;Hangs on Starting (I fixed it!)</title>
		<link>http://myspexp.com/2011/04/28/user-profile-synchronization-servicehangs-on-starting-i-fixed-it/</link>
		<comments>http://myspexp.com/2011/04/28/user-profile-synchronization-servicehangs-on-starting-i-fixed-it/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 00:43:49 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>
		<category><![CDATA["Stuck on starting"]]></category>
		<category><![CDATA["User Profile Synchronization Service"]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/04/28/user-profile-synchronization-servicehangs-on-starting-i-fixed-it/</guid>
		<description><![CDATA[I have several servers thankfully all of them are development servers that have this issue…&#160; It happens a lot, and finally instead of creating a new server every time (and I have) I decided to fix the issue.&#160; After several hundred hours of debugging, I finally decided to call Microsoft’s Premier Support.&#160; It was worth [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1119&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have several servers thankfully all of them are development servers that have this issue…&#160; It happens a lot, and finally instead of creating a new server every time (and I have) I decided to fix the issue.&#160; After several hundred hours of debugging, I finally decided to call Microsoft’s Premier Support.&#160; It was worth it in its entirety.</p>
<p>Here is what I was getting…<a href="http://myspexp.files.wordpress.com/2011/04/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb.png?w=691&#038;h=325" width="691" height="325" /></a></p>
<p>To resolve it do the following things:</p>
<ul>
<li>Stop the User Profile Synchronization Service </li>
<li>Open IIS (inetmgr) </li>
<li>Click on the server name and select Authentication </li>
<li>Selected Anonymous Authentication then choose Edit </li>
<li>Click the specific user, then enter “IUSR” </li>
<li>Add the service account to Local Admin group on the server </li>
<li>Add the service account to all the FIM groups </li>
<li>add the service account to the WSS_WSP and WSS_Admin_WPG group </li>
<li>Perform an IISRESET </li>
<li>Create a new User Profile Synchronization Service Application</li>
<li>Started the User Profile Synchronization Service</li>
</ul>
<p>&#160;</p>
<p><strong><em><u><font size="3">Stop the User Profile Synchronization Service </font></u></em></strong></p>
<p>First you have to start SharePoint PowerShell</p>
<ul>
<li>Go to Start</li>
<li>Microsoft SharePoint 2010 Products</li>
<li>Right click on SharePoint 2010 Management Shell</li>
<li>Choose “Run as Administrator” from the context menu</li>
</ul>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb1.png?w=387&#038;h=82" width="387" height="82" /></a></p>
<p>Type in <strong>Get-SPServiceInstance</strong> then capture the GUID of the User Profile Synchronization Service as shown below</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image2.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb2.png?w=676&#038;h=179" width="676" height="179" /></a></p>
<p>Now that you have the GUID, type in <strong>Stop-SPServiceInstance &lt;GUID&gt; </strong>as shown below…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image3.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb3.png?w=680&#038;h=236" width="680" height="236" /></a></p>
<p>Now your service is stopped…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image4.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb4.png?w=204&#038;h=27" width="204" height="27" /></a></p>
<p>…But we are not yet out of the woods…&#160; We have a lot left to go…</p>
<p><strong><u><em><font size="3">Open IIS (inetmgr) </font></em></u></strong></p>
<p>Go to:</p>
<ul>
<li>Start</li>
<li>Type in “<strong>inetmgr</strong>”</li>
</ul>
<p><strong><em><u><font size="3">Click on the server name and select Authentication </font></u></em></strong></p>
<p>Click on your server host name, then double click Authentication</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image5.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb5.png?w=383&#038;h=345" width="383" height="345" /></a></p>
<p>&#160;</p>
<p><u><strong><em><font size="3">Selected Anonymous Authentication then choose Edit </font></em></strong></u></p>
<p>Click on Anonymous Authentication then click Edit…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image6.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb6.png?w=429&#038;h=247" width="429" height="247" /></a></p>
<p>&#160;</p>
<p><u><strong><em><font size="3">Click the specific user, then enter “IUSR” </font></em></strong></u></p>
<p>Add IUSR to the specific user account</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image7.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb7.png?w=379&#038;h=191" width="379" height="191" /></a></p>
<p>&#160;</p>
<p><u><strong><em><font size="3">Add the service account to Local Admin group on the server </font></em></strong></u></p>
<p>Go to:</p>
<ul>
<li>Start type in “<strong>compmgmt.msc</strong>”</li>
<li>Go to Local Users and Groups</li>
<li>Go to Groups</li>
<li>Double Click Administrators</li>
</ul>
<p> <a href="http://myspexp.files.wordpress.com/2011/04/image8.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb8.png?w=551&#038;h=627" width="551" height="627" /></a>
<p>&#160;</p>
<p>Add the service account to your computer</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image9.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb9.png?w=407&#038;h=453" width="407" height="453" /></a></p>
<p>Click “OK” then keep the Computer Management window open</p>
<p>&#160;</p>
<p><u><strong><em><font size="3">Add the service account to all the FIM groups </font></em></strong></u></p>
<p>Do the exact same to all of the FIM groups as you did above</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image10.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb10.png?w=551&#038;h=627" width="551" height="627" /></a></p>
<p>&#160;</p>
<p><u><em><strong><font size="3">Add the service account to the WSS_WSP and WSS_Admin_WPG group</font></strong></em></u></p>
<p>Again, do the same as you did above but for all the WSS_WSP and WSS_Admin_WPG groups</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image11.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb11.png?w=551&#038;h=627" width="551" height="627" /></a>&#160;</p>
<p>&#160;</p>
<p><font size="3"><u><em><strong>Perform an IISRESET </strong></em></u></font></p>
<p>Go to:</p>
<ul>
<li>Start</li>
<li>Type in “<strong>cmd</strong>”</li>
<li>In the command shell type in “<strong>IISRESET”</strong></li>
</ul>
<p><strong></strong></p>
<ul>
<p><u><strong><em><font size="3">Create a new User Profile Synchronization Service Application</font></em></strong></u></p>
<p>   <a href="http://myspexp.files.wordpress.com/2011/04/image12.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb12.png?w=528&#038;h=127" width="528" height="127" /></a></ul>
<ul>Choose User Profile Service Application</ul>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image13.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb13.png?w=310&#038;h=294" width="310" height="294" /></a></p>
<p>Add the following fields (I added 2 to any of the database table names as shown below)</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image14.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb14.png?w=793&#038;h=2236" width="793" height="2236" /></a></p>
<p>Click Create</p>
<p>Perform an IISReset</p>
<p>Make sure you can get to this new application with out errors.&#160; It is very important that you can access this and that you know you can at this point.&#160; If you can not, then you will have to do further trouble shooting…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image15.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb15.png?w=652&#038;h=304" width="652" height="304" /></a></p>
<p>&#160;</p>
<p><u><em><strong><font size="3">Note: If still unable to get to the User Profile Application…</font></strong></em></u></p>
<p>If you are still unable to get to the User Profile Application service, you will want to check one more thing. That is to ensure that your WCF services are still running in IIS Manager, you will need to make sure the site has been started</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image16.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb16.png?w=611&#038;h=237" width="611" height="237" /></a></p>
<p>Perform another IISReset then try again.</p>
<p>&#160;</p>
<p><u><strong><em><font size="3">Open ULS Log Viewer to get ready…</font></em></strong></u></p>
<p>At this point in time, you will want to be ready to start tracing the User Profiles logs…</p>
<p>In ULS Log Viewer, right click on the log area and choose Filter by Item.&#160; Then choose Category and type in “<strong>User Profiles”</strong>.&#160; This will allow you to filter out only what you need at this point.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image17.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb17.png?w=451&#038;h=431" width="451" height="431" /></a></p>
<p>&#160;</p>
<p><u><strong><em><font size="3">Started the User Profile Synchronization Service</font></em></strong></u></p>
<p>Now you must restart your service with the new user profile synchronization service application that you just created.</p>
<ul>
<li>Navigate to Central Admin again</li>
<li>Under System Settings, choose Manage Services on Server</li>
</ul>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image18.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb18.png?w=832&#038;h=112" width="832" height="112" /></a></p>
<ul>
<li>Click on Start under User Profile Synchronization Service</li>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image19.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb19.png?w=585&#038;h=96" width="585" height="96" /></a></ul>
<ul>
<li>Enter your system account’s password twice</li>
<li>Click OK</li>
</ul>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image23.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb23.png?w=672&#038;h=293" width="672" height="293" /></a></p>
<ul>
<li>Now in the ULS Log Viewer you will notice the following, this is good, it is rebuilding the FIM configuration (formally called ILM, but SharePoint never updated the name)</li>
</ul>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image21.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb21.png?w=572&#038;h=347" width="572" height="347" /></a></p>
<p>And if you did everything correctly then you should see everything running as it needs to be:</p>
<p><a href="http://myspexp.files.wordpress.com/2011/04/image22.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/04/image_thumb22.png?w=642&#038;h=148" width="642" height="148" /></a></p>
<p>&#160;</p>
<p>Don’t forget to configure your MySite information in the new User Profile Service Application you created.&#160; You will need to re-run all of your profile synchronization.</p>
<p>&#160;</p>
<p>Let me know if this has helped you!</p>
<p>Bill</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1119&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/04/28/user-profile-synchronization-servicehangs-on-starting-i-fixed-it/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb10.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb11.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb12.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb13.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb14.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb15.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb16.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb17.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb18.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb19.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb23.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb21.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/04/image_thumb22.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Using the SharePoint PeopleEditor in a GridView</title>
		<link>http://myspexp.com/2011/03/23/using-the-sharepoint-peopleeditor-in-a-gridview/</link>
		<comments>http://myspexp.com/2011/03/23/using-the-sharepoint-peopleeditor-in-a-gridview/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 16:36:50 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/03/23/using-the-sharepoint-peopleeditor-in-a-gridview/</guid>
		<description><![CDATA[&#160; All I can say is WOW.&#160;&#160; If something as simple as the PeopleEditor takes me a week to implement and that is with having two Microsoft Premier Support cases open on it, than once I figure it out its worth writing an article on it. &#160; My business requirement: I need a grid view [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1068&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h4></h4>
<p>&#160;</p>
<p>All I can say is WOW.&#160;&#160; If something as simple as the PeopleEditor takes me a week to implement and that is with having two Microsoft Premier Support cases open on it, than once I figure it out its worth writing an article on it.</p>
<h4></h4>
<h4>&#160;</h4>
<h4>My business requirement:</h4>
<ul>
<li>I need a grid view to have data bound to it, but the data won’t come until after a drop down list selects what data source it needs to use.&#160; </li>
<li>The data source is created using a generics list object in the code behind.&#160; </li>
<li>The PeopleEditor object must be an object where people can enter just a single name.</li>
<li>The gridview can range in size</li>
<li>It MUST be in an AJAX Update Panel</li>
</ul>
<p>See the example below of what it should look like once it is finished.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/03/image4.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb4.png?w=386&#038;h=172" width="386" height="172" /></a></p>
<p>&#160;</p>
<h4>The problems I was facing… …And the solution…</h4>
<ol>
<li>JScript Error: Microsoft JScript runtime error: The value of the property ‘PickerAdjustHeight’ is null or undefined, not a Function or object.     </p>
<p><a href="http://myspexp.files.wordpress.com/2011/03/image5.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb5.png?w=531&#038;h=241" width="531" height="241" /></a>      </p>
<p><strong><font color="#0000ff">Solution:</font></strong> Add the following line to the control’s front end source above the ScriptManger      <br /><font color="#0000ff">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</font><font color="#9e7c7c">script</font> <font color="#ff0000">type</font><font color="#0000ff">=&quot;</font><font color="#0000ff">text/javascript</font><font color="#0000ff">&quot; </font><font color="#ff0000">src</font><font color="#0000ff">=&quot;/_layouts/entityeditor.js&quot;</font><font color="#0000ff">&gt;&lt;</font><font color="#0000ff">/</font><font color="#555555">script</font><font color="#0000ff">&gt;</font>      </li>
<li>JScript Error: Microsoft JScript runtime error: Thevalue of the property ‘StoreOldValue’ is null or undefined, not a Function object
<p><a href="http://myspexp.files.wordpress.com/2011/03/image6.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb6.png?w=531&#038;h=241" width="531" height="241" /></a>      </p>
<p><strong><font color="#0000ff">Solution:</font></strong> Add the following line to the control’s front end source above the ScriptManger      <br /><font color="#0000ff">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</font><font color="#9e7c7c">script</font> <font color="#ff0000">type</font><font color="#0000ff">=&quot;</font><font color="#0000ff">text/javascript</font><font color="#0000ff">&quot; </font><font color="#ff0000">src</font><font color="#0000ff">=&quot;/_layouts/entityeditor.js&quot;</font><font color="#0000ff">&gt;&lt;</font><font color="#0000ff">/</font><font color="#555555">script</font><font color="#0000ff">&gt;</font>      </li>
<li>Error with the People Editor:     <br /><font color="#ff0000">The target &#8216;ctl00$m$g_1c88d7ea_ab45_4c52_92a6_d0402a2ec996$ctl00$GridView1$ctl04$PeopleEditor2&#8242; for the callback could not be found or did not implement ICallbackEventHandler.
<p><a href="http://myspexp.files.wordpress.com/2011/03/image7.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb7.png?w=489&#038;h=248" width="489" height="248" /></a>        </p>
<p><strong><font color="#0000ff">Solution:</font></strong> <font color="#000000">The solution for this is much more complicated, I will quickly try to explain what the problem is and&#160; how to resolve it.</font></font></li>
</ol>
<p> <font color="#000000">
<p>First you have to understand that you can’t just add the PeopleEditor control to your GridView in the WYSIWYG editor, in fact, its not even in the tool box.&#160; You must instead add it in code behind on each row that exists.</p>
<p>When you start out with an empty grid, then populate it within in runtime, you will notice there are some missing javascript functions that the gridview uses.&#160; So you must first some how find a way to get those functions in the page when it renders.&#160; But there is only one path that I have found that allows you to do it.&#160; I have layed it out in VISIO so you can see what it looks like.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/03/image8.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb8.png?w=601&#038;h=673" width="601" height="673" /></a>      </p>
<p> </font>
<p><font color="#000000">This solved my issue with this, and here is the samples.&#160; If anyone wants a copy of my solution, please enter a post on it with your email, and I would be happy to send it to you.</font></p>
<p><font color="#000000"></font></p>
<p><a href="http://myspexp.files.wordpress.com/2011/03/image9.png"><font color="#000000"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb9.png?w=371&#038;h=75" width="371" height="75" /></font></a></p>
<p><font color="#000000"></font></p>
<p><a href="http://myspexp.files.wordpress.com/2011/03/image10.png"><font color="#000000"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb10.png?w=396&#038;h=164" width="396" height="164" /></font></a></p>
<p><font color="#000000"></font></p>
<p><font color="#000000"></font></p>
<p><font color="#000000"></font></p>
<p><font color="#000000"></font></p>
<p><font color="#000000"></font></p>
<p>&#160;</p>
<p>Bill.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1068/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1068/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1068/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1068&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/03/23/using-the-sharepoint-peopleeditor-in-a-gridview/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb10.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Adobe PDF Files are only allowing you to Save or Cancel, but not Open</title>
		<link>http://myspexp.com/2011/03/10/adobe-pdf-files-are-only-allowing-you-to-save-or-cancel-but-not-open/</link>
		<comments>http://myspexp.com/2011/03/10/adobe-pdf-files-are-only-allowing-you-to-save-or-cancel-but-not-open/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 23:10:12 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/03/10/adobe-pdf-files-are-only-allowing-you-to-save-or-cancel-but-not-open/</guid>
		<description><![CDATA[If you want SharePoint 2010 to open the PDF file from within Internet Explorer, follow the instructions below: From Central Administration, go to Manage Web Application under Application Management… Select your web site, then choose General Settings, and again General Settings… &#160; Select the browser file handling to Permissive. Now you can open PDF’s in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1053&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://myspexp.files.wordpress.com/2011/03/image.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb.png?w=446&#038;h=305" width="446" height="305" /></a></p>
<p>If you want SharePoint 2010 to open the PDF file from within Internet Explorer, follow the instructions below:</p>
<p>From Central Administration, go to Manage Web Application under Application Management…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/03/image1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb1.png?w=471&#038;h=226" width="471" height="226" /></a></p>
<p>Select your web site, then choose General Settings, and again General Settings…</p>
<p><a href="http://myspexp.files.wordpress.com/2011/03/image2.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb2.png?w=536&#038;h=362" width="536" height="362" /></a></p>
<p>&#160;</p>
<p>Select the browser file handling to Permissive.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/03/image3.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/03/image_thumb3.png?w=287&#038;h=394" width="287" height="394" /></a></p>
<p>Now you can open PDF’s in your browser, even after hitting F5 to refresh, I had to hit Control + F5 to hard refresh to get it all to work.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1053/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1053/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1053/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1053/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1053/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1053/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1053/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1053/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1053/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1053/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1053/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1053/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1053/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1053/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1053&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/03/10/adobe-pdf-files-are-only-allowing-you-to-save-or-cancel-but-not-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/03/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>DropDown Change Event in GridView row</title>
		<link>http://myspexp.com/2011/03/02/dropdown-change-event-in-gridview-row/</link>
		<comments>http://myspexp.com/2011/03/02/dropdown-change-event-in-gridview-row/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 23:39:33 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/03/02/dropdown-change-event-in-gridview-row/</guid>
		<description><![CDATA[I ran across a great blog that shows how to do some pretty cool stuff with the Drop Down within gridviews. http://weblogs.asp.net/vikram/archive/2008/04/17/handling-dropdown-list-inside-gridview-with-autopostback.aspx protected void dropdownlist1_SelectedIndexChanged(object sender, EventArgs e) { // get reference to the row GridViewRow gvr = (GridViewRow)(((Control)sender).NamingContainer); // Get the reference of this DropDownlist DropDownList dropdownlist1 = (DropDownList) gvr.FindControl(&#34;dropdownlist1&#34;); // Get the reference [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1044&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I ran across a great blog that shows how to do some pretty cool stuff with the Drop Down within gridviews.</p>
<p><a title="http://weblogs.asp.net/vikram/archive/2008/04/17/handling-dropdown-list-inside-gridview-with-autopostback.aspx" href="http://weblogs.asp.net/vikram/archive/2008/04/17/handling-dropdown-list-inside-gridview-with-autopostback.aspx">http://weblogs.asp.net/vikram/archive/2008/04/17/handling-dropdown-list-inside-gridview-with-autopostback.aspx</a></p>
<p>protected void dropdownlist1_SelectedIndexChanged(object sender, EventArgs e) {   <br />// get reference to the row    <br />GridViewRow gvr = (GridViewRow)(((Control)sender).NamingContainer);</p>
<p>// Get the reference of this DropDownlist   <br />DropDownList dropdownlist1 = (DropDownList) gvr.FindControl(&quot;dropdownlist1&quot;);</p>
<p>// Get the reference of other DropDownlist in the same row.   <br />DropDownList ddlParagraph = (DropDownList) gvr.FindControl(&quot;ddlParagraph&quot;);    <br />}</p>
<p>&#160;</p>
<p>Bill</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1044/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1044/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1044/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1044&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/03/02/dropdown-change-event-in-gridview-row/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint &#8211; 403 for only some users, some pages!</title>
		<link>http://myspexp.com/2011/01/04/sharepoint-403-for-only-some-users-some-pages/</link>
		<comments>http://myspexp.com/2011/01/04/sharepoint-403-for-only-some-users-some-pages/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 14:11:11 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/01/04/sharepoint-403-for-only-some-users-some-pages/</guid>
		<description><![CDATA[I have been getting the following error for only some users, and on some pages that has a web part that I created that checks for their username information. 403 Forbidden – The website declined to show this page, most likely cause, this website requires you to log in Yes, I tried logging out and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1043&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been getting the following error for only some users, and on some pages that has a web part that I created that checks for their username information.</p>
<blockquote><p>403 Forbidden – The website declined to show this page, most likely cause, this website requires you to log in</p>
</blockquote>
<p>Yes, I tried logging out and logging back in.&#160; I have tried everything….</p>
<p>Here is my code:</p>
<blockquote><p>SPSecurity.RunWithElevatedPrivileges(delegate()     <br />&#160;&#160;&#160; {</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; Microsoft.SharePoint.SPSite site = Microsoft.SharePoint.SPContext.Current.Site;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; Microsoft.SharePoint.SPServiceContext context = Microsoft.SharePoint.SPServiceContext.GetContext(site);</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; // Uses the profile manager that was set up in Central Admin     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Microsoft.Office.Server.UserProfiles.UserProfileManager profileManager = new Microsoft.Office.Server.UserProfiles.UserProfileManager(context);</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (impersonate.Length == 0)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; // Used this, but there is no difference: staffMember = SPContext.Current.Web.CurrentUser.LoginName.ToString();      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; // Used this, but there is no difference: staffMember = System.Web.HttpContext.Current.Request.ServerVariables[&quot;AUTH_USER&quot;];      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; staffMember = HttpContext.Current.User.Identity.Name;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; else      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; staffMember = impersonate;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }      <br />&#160;&#160;&#160; });</p>
</blockquote>
<p>Regardless of the different combinations I tried, I got this error only for some users, and only on some of the pages. So far my trend has only been the web part I created with this code. If I bypass that code (and I have a query string that allows me to impersonate a user) it will work just fine</p>
<p>Here is the error:</p>
<p><a href="http://myspexp.files.wordpress.com/2011/01/clip_image002.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2011/01/clip_image002_thumb.jpg?w=628&#038;h=185" width="628" height="185" /></a></p>
<p>So after about 8 hours of troubleshooting, I finally figured out it would work just fine if I added that user that was having issues to the Administrators Group on the local SharePoint server after performing an IISReset.</p>
<p>So, after playing around a bit more I added “NT Authority\Network” (a local account) as a local admin instead of the user that was having a problem, performed an IISReset, and it worked as it should now for that user and all of the affected users.</p>
<p><a href="http://myspexp.files.wordpress.com/2011/01/image.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2011/01/image_thumb.png?w=479&#038;h=923" width="479" height="923" /></a></p>
<p>I am waiting to hear back from Microsoft to see if this is a recommended solution to the issue, or if there is a better practice solution that I should be following.</p>
<p>I will keep this post updated.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1043/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1043/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1043/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1043&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/01/04/sharepoint-403-for-only-some-users-some-pages/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/01/clip_image002_thumb.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/01/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Showing a dialog in SharePoint 2010</title>
		<link>http://myspexp.com/2011/01/03/showing-a-dialog-in-sharepoint-2010/</link>
		<comments>http://myspexp.com/2011/01/03/showing-a-dialog-in-sharepoint-2010/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 18:56:54 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2011/01/03/showing-a-dialog-in-sharepoint-2010/</guid>
		<description><![CDATA[To show a dialog in SharePoint 2010 simply call the OpenPopUpPage() method with the URL as the parameter.&#160; This will look something like this… &#60;a href=&#34;javascript:OpenPopUpPage(‘/pages/test.aspx’);&#34;&#62;Show this page…&#60;/a&#62; NOTE: Be sure to specify the CSSClass “sp-notdlg” in anything that comes up that shouldn’t be coming up in your master page.&#160; My modified ribbon toolbar came [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1038&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To show a dialog in SharePoint 2010 simply call the OpenPopUpPage() method with the URL as the parameter.&#160; This will look something like this…</p>
<p>&lt;a href=&quot;javascript:OpenPopUpPage(‘/pages/test.aspx’);&quot;&gt;Show this page…&lt;/a&gt;</p>
<p><a href="http://myspexp.files.wordpress.com/2011/01/clip_image001.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="clip_image001" border="0" alt="clip_image001" src="http://myspexp.files.wordpress.com/2011/01/clip_image001_thumb.png?w=636&#038;h=388" width="636" height="388" /></a></p>
<p>NOTE: Be sure to specify the CSSClass “sp-notdlg” in anything that comes up that shouldn’t be coming up in your master page.&#160; My modified ribbon toolbar came up for me, but it was able to suppress it in dialogs by adding the sp-notdlg tag to its css class attributes.</p>
<p>&#160;</p>
<p>Happy New Year!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1038/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1038&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2011/01/03/showing-a-dialog-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2011/01/clip_image001_thumb.png" medium="image">
			<media:title type="html">clip_image001</media:title>
		</media:content>
	</item>
		<item>
		<title>Create Custom Regular Expressions&#8230;</title>
		<link>http://myspexp.com/2010/11/10/create-custom-regular-expressions/</link>
		<comments>http://myspexp.com/2010/11/10/create-custom-regular-expressions/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 21:30:30 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/11/10/create-custom-regular-expressions/</guid>
		<description><![CDATA[Check this site out… It automatically creates your regular expressions that you like. http://www.txt2re.com/index-csharp.php3 &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1035&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Check this site out…</p>
<p>It automatically creates your regular expressions that you like.</p>
<p><a title="http://www.txt2re.com/index-csharp.php3" href="http://www.txt2re.com/index-csharp.php3">http://www.txt2re.com/index-csharp.php3</a></p>
<p>&#160;</p>
<p><a href="http://myspexp.files.wordpress.com/2010/11/image.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/11/image_thumb.png?w=562&#038;h=295" width="562" height="295" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1035/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1035/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1035/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1035/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1035/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1035/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1035/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1035/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1035/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1035/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1035/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1035/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1035/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1035/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1035&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/11/10/create-custom-regular-expressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/11/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Grouping (with Expansion/Collapse) a GridView in C# and ASP.NET or SharePoint</title>
		<link>http://myspexp.com/2010/10/31/grouping-with-expansioncollapse-a-gridview-in-c-and-asp-net-or-sharepoint/</link>
		<comments>http://myspexp.com/2010/10/31/grouping-with-expansioncollapse-a-gridview-in-c-and-asp-net-or-sharepoint/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 01:18:36 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/10/31/grouping-with-expansioncollapse-a-gridview-in-c-and-asp-net-or-sharepoint/</guid>
		<description><![CDATA[Okay, so developing a UI is fun, especially when there is some challenges to it. The standard GridView is a very useful dynamic HTML table builder for your data, it can do a lot of different things.&#160; But it is very limited! For example, if you were to create list that had multiple rows of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1031&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Okay, so developing a UI is fun, especially when there is some challenges to it.</p>
<p>The standard GridView is a very useful dynamic HTML table builder for your data, it can do a lot of different things.&#160; But it is very limited!</p>
<p>For example, if you were to create list that had multiple rows of data, and you wanted to group them by a category, you can’t… …unless that is you add some code.</p>
<p>I took about 3 full days trying to come up with different ways that I can get this done, but I was finally able to figure it out.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image5.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb5.png?w=571&#038;h=610" width="571" height="610" /></a></p>
<p>Now, because I find it better practice, I always find it better to bind the data from the code-behind, rather than pulling in a database directly using the DataSourceObject from the UI.&#160; This makes your application more expandable.</p>
<p><strong><em>Example:</em></strong></p>
<p>Sorry, the examples are in images mostly, I will try to format the code so that I can paste it in this form.&#160; But this example I find it important to show where the code should be pasted.</p>
<p>First, make a private list of a string, i called it ItemsToExpand, then initiate it.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image6.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb6.png?w=608&#038;h=215" width="608" height="215" /></a> </p>
<p>Next, you will want to save the state of the items expand, and recall them if they contain any values…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image7.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb7.png?w=592&#038;h=142" width="592" height="142" /></a> </p>
<p>Before saving the values, you will want to check if it is a postback, and if so, get the values from the EventArguments var that is passed back from the JavaScript client side.</p>
<p>&#160;<a href="http://myspexp.files.wordpress.com/2010/10/image8.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb8.png?w=504&#038;h=422" width="504" height="422" /></a> </p>
<p>Sort the list, set the data source to the DataGrid, then save the state of the ViewState “ItemsToExpand”</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image9.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb9.png?w=457&#038;h=146" width="457" height="146" /></a> </p>
<p>Here is what I used to sort the list…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image10.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb10.png?w=522&#038;h=183" width="522" height="183" /></a> </p>
<p>Here is the code to create the columns and does all of the magic..</p>
<p>protected override void Render(HtmlTextWriter writer)    <br />{     <br />&#160;&#160;&#160; Table table = (Table)this.GridView1.Controls[0]; </p>
<p>&#160;&#160;&#160; string lastCategory = string.Empty; </p>
<p>&#160;&#160;&#160; foreach (GridViewRow row in GridView1.Rows)    <br />&#160;&#160;&#160; {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; int realIndex = table.Rows.GetRowIndex(row);     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; string currentCategory = this.GridView1.DataKeys[row.RowIndex].Values[0].ToString();     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (currentCategory != lastCategory)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; GridViewRow groupHeaderRow =     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; new GridViewRow(realIndex, realIndex, DataControlRowType.Separator,     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; DataControlRowState.Normal); </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; TableCell newCell = new TableCell();    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; newCell.ColumnSpan = this.GridView1.Columns.Count; // &lt;&#8212; Is not working&#8230;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; newCell.BackColor = System.Drawing.Color.FromArgb(233, 229, 229);     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; newCell.ForeColor = System.Drawing.Color.DarkGray;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; newCell.Font.Bold = true;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; newCell.ColumnSpan = 4; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; bool itemFound = false;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; foreach (string item in this.ItemsToExpand)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (item.Trim() == currentCategory.Trim())     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; itemFound = true;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; break;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; } </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; string image = string.Empty;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (itemFound)     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; image = &quot;&lt;img src=\&quot;http:\\\\csapp2\\Discipline\\images\\nav_minus.gif\&quot;&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; + &quot; style=\&quot;cursor:hand;\&quot; onMouseUp=\&quot;__doPostBack(&#8216;__Page&#8217;, &#8216;Show|&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; + currentCategory + &quot;&#8217;);\&quot;&gt;&amp;nbsp;&quot;;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; else     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; image = &quot;&lt;img src=\&quot;http:\\\\csapp2\\Discipline\\images\\nav_plus.gif\&quot;&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; + &quot; style=\&quot;cursor:hand;\&quot; onMouseUp=\&quot;__doPostBack(&#8216;__Page&#8217;, &#8216;Show|&quot;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; + currentCategory + &quot;&#8217;);\&quot;&gt;&amp;nbsp;&quot;;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; } </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; newCell.Text = image + this.GridView1.DataKeys[row.RowIndex].Values[1].ToString(); </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; groupHeaderRow.Cells.Add(newCell); </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; table.Controls.AddAt(realIndex, groupHeaderRow);    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; lastCategory = currentCategory;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160; } </p>
<p>&#160;&#160;&#160; base.Render(writer);    <br />}</p>
<p>&#160;</p>
<p>Now, create a RowDataBound Event, and use the example code…</p>
</p>
</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image11.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb11.png?w=580&#038;h=489" width="580" height="489" /></a> </p>
<p>You can have multiple data key names, I used two of them in the aspx code.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image12.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb12.png?w=761&#038;h=212" width="761" height="212" /></a> </p>
<p>Hope this helps!</p>
<p>&#160;</p>
<p>Bill</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1031/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1031/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1031/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1031/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1031/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1031/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1031/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1031/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1031/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1031/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1031/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1031/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1031/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1031/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1031&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/10/31/grouping-with-expansioncollapse-a-gridview-in-c-and-asp-net-or-sharepoint/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb10.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb11.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb12.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Caching SSRS Reports</title>
		<link>http://myspexp.com/2010/10/18/caching-ssrs-reports/</link>
		<comments>http://myspexp.com/2010/10/18/caching-ssrs-reports/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 15:20:41 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/10/18/caching-ssrs-reports/</guid>
		<description><![CDATA[This article explains how to have your SQL Server Reporting Service cache the report results. http://msdn.microsoft.com/en-us/library/bb283188.aspx I didn’t even know this was possible until I thought to myself how great it would be to see SSRS cache reports that run just a bit longer than normal. Here are the easy steps to do it. First, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1014&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This article explains how to have your SQL Server Reporting Service cache the report results.</p>
<p><a title="http://msdn.microsoft.com/en-us/library/bb283188.aspx" href="http://msdn.microsoft.com/en-us/library/bb283188.aspx">http://msdn.microsoft.com/en-us/library/bb283188.aspx</a></p>
<p>I didn’t even know this was possible until I thought to myself how great it would be to see SSRS cache reports that run just a bit longer than normal.</p>
<p>Here are the easy steps to do it.</p>
<p>First, go to your reports application in your server…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb.png?w=529&#038;h=314" width="529" height="314" /></a> </p>
<p>&#160;</p>
<p>Next select the reporting solution.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image1.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb1.png?w=405&#038;h=139" width="405" height="139" /></a> </p>
<p>Now click on the dropdown to show the context menu, click Manage</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image2.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb2.png?w=429&#038;h=396" width="429" height="396" /></a> </p>
<p>Next click on the Processing Options:</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image3.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb3.png?w=882&#038;h=439" width="882" height="439" /></a> </p>
<p>Finally, set up the cache settings as you wish, I usually set the cache settings to every 30 minutes, this makes a huge difference.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/10/image4.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/10/image_thumb4.png?w=628&#038;h=573" width="628" height="573" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/1014/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/1014/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/1014/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/1014/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/1014/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/1014/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/1014/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/1014/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/1014/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/1014/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/1014/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/1014/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/1014/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/1014/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=1014&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/10/18/caching-ssrs-reports/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/10/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint User Group Presentation</title>
		<link>http://myspexp.com/2010/09/18/sharepoint-user-group-presentation/</link>
		<comments>http://myspexp.com/2010/09/18/sharepoint-user-group-presentation/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 15:54:16 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/09/18/sharepoint-user-group-presentation/</guid>
		<description><![CDATA[There is a national users group meeting event monthly, and they asked if i could speak at it.  Here is a copy of the live meeting video from the SharePoint user group. I showed the old SharePoint site, and the New. http://s977.photobucket.com/albums/ae253/billsecond1/Professional/?action=view&#38;current=livemeeting.mp4<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=999&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There is a national users group meeting event monthly, and they asked if i could speak at it.  Here is a copy of the live meeting video from the SharePoint user group.</p>
<p>I showed the old SharePoint site, and the New.</p>
<p><a href="http://s977.photobucket.com/albums/ae253/billsecond1/Professional/?action=view&amp;current=livemeeting.mp4">http://s977.photobucket.com/albums/ae253/billsecond1/Professional/?action=view&amp;current=livemeeting.mp4</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/999/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/999/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/999/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/999/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/999/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/999/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/999/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=999&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/09/18/sharepoint-user-group-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Storing a connection string safely</title>
		<link>http://myspexp.com/2010/08/16/storing-a-connection-string-safely/</link>
		<comments>http://myspexp.com/2010/08/16/storing-a-connection-string-safely/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 03:08:26 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/08/16/storing-a-connection-string-safely/</guid>
		<description><![CDATA[Okay, first, I wanted to say a few things. Weather or not your connection string contains passwords: DO NOT EVER store your connection string in your code… …not even for just a moment!&#160; Even if what you are coding is a web part.&#160; In some companies this will lead to write ups and possible termination!&#160; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=993&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Okay, first, I wanted to say a few things. </p>
<ol>
<li>Weather or not your connection string contains passwords: <strong><font color="#ff0000">DO NOT EVER </font></strong>store your connection string in your code… …not even for just a moment!&#160; Even if what you are coding is a web part.&#160; In some companies this will lead to write ups and possible termination!&#160; </li>
<li>You must guard the web.config file by giving this area special access because often times it will contain really critical passwords. </li>
</ol>
<p>As you can tell from the above statements, that I have some experience things going wrong.&#160; I have lost my temper so many times regarding people hard coding their connection string in the source code because it often contains passwords and the passwords are linked to so many other areas.&#160; This is even bad if you have a source control system where once you change and remove the password from your code and do it the right way, it will still be in older versions of your code.</p>
<p>You can use .NET Reflector to decompile source code, and here is a sample of what it looks like:</p>
<p><a href="http://myspexp.files.wordpress.com/2010/08/image2.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/08/image_thumb2.png?w=1014&#038;h=538" width="1014" height="538" /></a></p>
<p>&#160;</p>
<p>I wanted to show you the right way to do this.</p>
<p>First navigate to your web config file…</p>
<p>C:\inetpub\wwwroot\wss\VirtualDirectories\&lt;sp site name:port name&gt;</p>
<p><a href="http://myspexp.files.wordpress.com/2010/08/image.png"><img style="display:inline;border-width:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/08/image_thumb.png?w=626&#038;h=329" width="626" height="329" /></a></p>
<p>&#160;</p>
<p>Add your configurationstring in your appSettings location under its own key/value pair:</p>
<p><a href="http://myspexp.files.wordpress.com/2010/08/image1.png"><img style="display:inline;border-width:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/08/image_thumb1.png?w=583&#038;h=203" width="583" height="203" /></a></p>
<p>&#160;</p>
<p>Add the following to your code to get connectionstring.</p>
<blockquote><p>string connectionString = GetConnectoinString(&quot;YourDataConnectionStringKeyName&quot;);</p>
<p>private string GetConnectoinString(string key)      <br />{       <br />&#160;&#160;&#160; string connectionString = string.Empty;</p>
<p>&#160;&#160;&#160; SPSite site = SPContext.Current.Site;</p>
<p>&#160;&#160;&#160; System.Configuration.Configuration      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; config = WebConfigurationManager.OpenWebConfiguration(&quot;/&quot;, site.WebApplication.Name);       <br />&#160;&#160;&#160; AppSettingsSection appSettings = config.AppSettings;</p>
<p>&#160;&#160;&#160; connectionString = appSettings.Settings[key].Value;</p>
<p>&#160;&#160;&#160; return connectionString;      <br />}       </p>
<p>&#160;</p>
<p>&#160;</p>
</blockquote>
<p> 
<p>Additional security measures you can take is to encrypt your connection string, however I don’t really see the point because if a programmer wants your connectionstring they will get it via a unit test, or a breakpoint.&#160; So if you don’t want your connection string to become parent to the programmers, you will want to use a different username password in the production environment, and only the person who should know the password should also have exclusive access to the SP Server.</p>
<p>Hope this helps.&#160; I really am not a mean guy as I may have sounded above, however this is one of my major pet peeves.</p>
<p>&#160;</p>
<p>Bill</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/993/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/993/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/993/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/993/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/993/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/993/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/993/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/993/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=993&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/08/16/storing-a-connection-string-safely/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/08/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/08/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/08/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Web Parts: Get Current User with Impersonation</title>
		<link>http://myspexp.com/2010/08/15/web-parts-get-current-user-with-impersonation/</link>
		<comments>http://myspexp.com/2010/08/15/web-parts-get-current-user-with-impersonation/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 18:18:10 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/08/15/web-parts-get-current-user-with-impersonation/</guid>
		<description><![CDATA[Here is some code that I find myself using in all of my web parts.&#160; You are also free to use it.&#160; I simply reuse it in all of my web parts. It returns “DOMAIN\\USERNAME” &#160; private string GetUserAccount() { &#160;&#160;&#160; // Normally used with all web parts &#160;&#160;&#160; // By: Bill Daugherty II &#160;&#160;&#160; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=988&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is some code that I find myself using in all of my web parts.&#160; You are also free to use it.&#160; I simply reuse it in all of my web parts.</p>
<p>It returns “DOMAIN\\USERNAME”</p>
<p>&#160;</p>
<blockquote><p>private string GetUserAccount()     <br />{      <br />&#160;&#160;&#160; // Normally used with all web parts      <br />&#160;&#160;&#160; // By: Bill Daugherty II      <br />&#160;&#160;&#160; // Date Modified: 08/15/2010</p>
<p>&#160;&#160;&#160; string impersonate = string.Empty;     <br />&#160;&#160;&#160; try      <br />&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (Request.QueryString[&quot;impersonate&quot;].Length &gt; 0) impersonate = Request.QueryString[&quot;impersonate&quot;];      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (Request.QueryString[&quot;i&quot;].Length &gt; 0) impersonate = Request.QueryString[&quot;i&quot;];      <br />&#160;&#160;&#160; }      <br />&#160;&#160;&#160; catch      <br />&#160;&#160;&#160; {</p>
<p>&#160;&#160;&#160; }     <br />&#160;&#160;&#160; string staffMember = string.Empty;</p>
<p>&#160;&#160;&#160; // Gets the staff SAM account     <br />&#160;&#160;&#160; SPSite site = SPContext.Current.Site;</p>
<p>&#160;&#160;&#160; SPServiceContext context = SPServiceContext.GetContext(site);</p>
<p>&#160;&#160;&#160; // Uses the profile manager that was set up in Central Admin     <br />&#160;&#160;&#160; UserProfileManager profileManager = new UserProfileManager(context);</p>
<p>&#160;&#160;&#160; if (impersonate.Length == 0)      <br />&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; // staffMember = SPContext.Current.Web.CurrentUser.LoginName.ToString();      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; staffMember = HttpContext.Current.Request.ServerVariables[&quot;AUTH_USER&quot;];      <br />&#160;&#160;&#160; }      <br />&#160;&#160;&#160; else      <br />&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; staffMember = impersonate;      <br />&#160;&#160;&#160; }</p>
<p>&#160;&#160;&#160; return staffMember;</p>
<p>}</p>
</blockquote>
<p><font>If you find that you use this also, please just add a comment.</font></p>
<p>Bill</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/988/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/988/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/988/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/988/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/988/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/988/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/988/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=988&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/08/15/web-parts-get-current-user-with-impersonation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Error setting up MySite</title>
		<link>http://myspexp.com/2010/07/07/error-setting-up-mysite/</link>
		<comments>http://myspexp.com/2010/07/07/error-setting-up-mysite/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 02:44:04 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/07/07/error-setting-up-mysite/</guid>
		<description><![CDATA[When setting up a test site (one of our many) before we set up our production environment, I have come across this lovely error: An error has occurred in the claim providers configured from this site collection When I went to create the MySite, I scrolled down a bit to the Read Permission Level configuration [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=985&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When setting up a test site (one of our many) before we set up our production environment, I have come across this lovely error:</p>
<p>An error has occurred in the claim providers configured from this site collection</p>
<p><a href="http://myspexp.files.wordpress.com/2010/07/image9.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/07/image_thumb9.png?w=411&#038;h=193" width="411" height="193" /></a></p>
<p>When I went to create the MySite, I scrolled down a bit to the Read Permission Level configuration and found the users were not being found.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/07/image10.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/07/image_thumb10.png?w=444&#038;h=118" width="444" height="118" /></a></p>
<p>So when I click on the “Browse” icon, I get this wonderful message…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/07/image11.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/07/image_thumb11.png?w=856&#038;h=563" width="856" height="563" /></a></p>
<p>So, here is how I resolved the issue.&#160; For what ever reason, my machine name was longer than the NetBIOS recommends (I have learned my lesions, don’t worry), and so the access mappings were not showing the full name of my machine (http://cssp01-testphase1:&lt;port&gt;/).&#160; so I found out that this is simply why the error is occurring.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/07/image12.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/07/image_thumb12.png?w=695&#038;h=263" width="695" height="263" /></a></p>
<p>&#160;</p>
<p>Tada!!! &#8212; No errors…   </p>
<p>   <a href="http://myspexp.files.wordpress.com/2010/07/image13.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/07/image_thumb13.png?w=450&#038;h=124" width="450" height="124" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/985/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/985/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/985/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/985/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/985/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/985/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/985/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/985/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/985/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/985/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/985/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/985/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/985/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/985/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=985&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/07/07/error-setting-up-mysite/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/07/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/07/image_thumb10.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/07/image_thumb11.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/07/image_thumb12.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/07/image_thumb13.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>New CodePlex Web Part&#8211;PollWebPart (for the lack of a better name)</title>
		<link>http://myspexp.com/2010/07/05/cast-your-vote/</link>
		<comments>http://myspexp.com/2010/07/05/cast-your-vote/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 02:12:40 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/07/05/cast-your-vote/</guid>
		<description><![CDATA[So, this is how I decided to spend half of one of my days off.&#160; Isn’t this sad?&#160; I am addicted to development. I created a new voting web part that will allow users to vote once, and it will add a cookie to the users computer that will expire in 14 days, or until [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=956&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://pollwebpart.codeplex.com/"><img src="http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=pollwebpart&amp;DownloadId=130822&amp;Build=16821" width="619" height="170" /></a></p>
<p>So, this is how I decided to spend half of one of my days off.&#160; Isn’t this sad?&#160; I am addicted to development.</p>
<p>I created a new voting web part that will allow users to vote once, and it will add a cookie to the users computer that will expire in 14 days, or until a new question comes around.</p>
<p>It allows the user to use more than one list to store your question allowing for multiple concurrent polls at once.</p>
<p>I first tried to download and install: <a title="http://pollingwebpart.codeplex.com/releases/view/25358" href="http://pollingwebpart.codeplex.com/releases/view/25358">http://pollingwebpart.codeplex.com/</a> however I could not get it to work with SharePoint 2010 even after I made the configuration changes.&#160; I decided to create my own at this point.</p>
<p>The project will be stored here: <a title="http://pollwebpart.codeplex.com" href="http://pollwebpart.codeplex.com">http://pollwebpart.codeplex.com</a>.&#160; I will upload it shortly.</p>
<p><strong>Here are the screenshots: </strong></p>
<p>Before Vote (supports up to 70 questions):</p>
<p><a href="http://myspexp.files.wordpress.com/2010/07/image3.png"><img style="display:inline;border-width:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/07/image_thumb3.png?w=317&#038;h=478" width="317" height="478" /></a></p>
<p>After Vote (Only shows the answered questions)</p>
<p><a href="http://myspexp.files.wordpress.com/2010/07/image4.png"><img style="display:inline;border-width:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/07/image_thumb4.png?w=330&#038;h=538" width="330" height="538" /></a></p>
<p>And here is the configuration…&#160; You just enter the name of the list.&#160; The list will be stored at the root site.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/07/image2.png"><img style="display:inline;border-width:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/07/image_thumb2.png?w=230&#038;h=214" width="230" height="214" /></a></p>
<p>And here you can add items to the list.&#160; The poll only shows the last item in the list.&#160; </p>
<p> <a href="http://myspexp.files.wordpress.com/2010/07/image5.png"><img style="display:inline;border-width:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/07/image_thumb5.png?w=618&#038;h=772" width="618" height="772" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/956/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/956/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/956/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=956&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/07/05/cast-your-vote/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=pollwebpart&#38;DownloadId=130822&#38;Build=16821" medium="image" />

		<media:content url="http://myspexp.files.wordpress.com/2010/07/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/07/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/07/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/07/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>One of my other yet older blogs&#8230;</title>
		<link>http://myspexp.com/2010/07/05/one-of-my-other-yet-older-blogs/</link>
		<comments>http://myspexp.com/2010/07/05/one-of-my-other-yet-older-blogs/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 06:01:13 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/07/05/one-of-my-other-yet-older-blogs/</guid>
		<description><![CDATA[This site is to act as a “code repository” for all of my source code that I use quite frequently. http://helperclass.com/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=948&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This site is to act as a “code repository” for all of my source code that I use quite frequently.</p>
<p><a title="http://helperclass.com/" href="http://helperclass.com/">http://helperclass.com/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/948/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/948/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/948/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/948/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/948/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/948/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/948/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/948/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/948/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/948/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/948/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/948/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/948/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/948/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=948&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/07/05/one-of-my-other-yet-older-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Another great SP2010 reference&#8230;</title>
		<link>http://myspexp.com/2010/07/02/another-great-sp2010-reference/</link>
		<comments>http://myspexp.com/2010/07/02/another-great-sp2010-reference/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 00:10:06 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/07/02/another-great-sp2010-reference/</guid>
		<description><![CDATA[Here is a great reference from Microsoft regarding some of the SharePoint development tools: http://www.microsoft.com/downloads/details.aspx?familyid=C010FC68-B47F-4DB6-B8A8-AD4BA33A35C5&#38;displaylang=en#filelist<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=946&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a great reference from Microsoft regarding some of the SharePoint development tools:</p>
<p><a title="http://www.microsoft.com/downloads/details.aspx?familyid=C010FC68-B47F-4DB6-B8A8-AD4BA33A35C5&amp;displaylang=en#filelist" href="http://www.microsoft.com/downloads/details.aspx?familyid=C010FC68-B47F-4DB6-B8A8-AD4BA33A35C5&amp;displaylang=en#filelist">http://www.microsoft.com/downloads/details.aspx?familyid=C010FC68-B47F-4DB6-B8A8-AD4BA33A35C5&amp;displaylang=en#filelist</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/946/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/946/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/946/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/946/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/946/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/946/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/946/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/946/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/946/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/946/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/946/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/946/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/946/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/946/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=946&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/07/02/another-great-sp2010-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuration within SharePoint 2010 Web Parts</title>
		<link>http://myspexp.com/2010/06/30/configuration-within-sharepoint-2010-web-parts/</link>
		<comments>http://myspexp.com/2010/06/30/configuration-within-sharepoint-2010-web-parts/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 22:20:56 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/30/configuration-within-sharepoint-2010-web-parts/</guid>
		<description><![CDATA[When building SharePoint 2010 web parts, I have stumbled across the fact that there are really no easy ways to add a configuration file such as a web.config or an app.config.&#160; So I decided to add a new project to my solution that I will eventually detach.&#160; I expect it to build as a .DLL [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=945&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When building SharePoint 2010 web parts, I have stumbled across the fact that there are really no easy ways to add a configuration file such as a web.config or an app.config.&#160; So I decided to add a new project to my solution that I will eventually detach.&#160; I expect it to build as a .DLL file and I can package it up with all of my solutions.&#160; It will contain my connection string (with no passwords of course), also URL’s etc…</p>
<p>I hope to find a better way of doing this, but for now I think this is really the way to go.&#160; You can eventually swap out .DLL’s for use when testing, or switching environments.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image70.png"><img style="display:inline;border-width:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb69.png?w=381&#038;h=312" width="381" height="312" /></a></p>
<p>Additionally, here is another way.&#160; You can add the configuration to the root SharePoint site’s web.config file.&#160; <a href="http://msdn.microsoft.com/en-us/library/ms178411.aspx" target="_blank">Reference this link for further instructions</a>.</p>
<p> If you come up with any better ways, I would like to hear about them.&#160; For now, this is the safest way and most secure way.   </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/945/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/945/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/945/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/945/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/945/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/945/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/945/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/945/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=945&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/30/configuration-within-sharepoint-2010-web-parts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb69.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>SilverLight WCF Web Service</title>
		<link>http://myspexp.com/2010/06/28/silverlight-wcf-web-service/</link>
		<comments>http://myspexp.com/2010/06/28/silverlight-wcf-web-service/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 01:45:00 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SilverLight]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/?p=835</guid>
		<description><![CDATA[When using SilverLight 4.0 along with WCF, many are often trying to figure out why you are getting an error as such: An error occurred while trying to make a request to URI &#8216;http://localhost:8732/Design_Time_Addresses/MyService/Service1/&#8217;&#60;/a&#62;. This could be due to attempting to access a service in a cross-domain way without a proper cross-domain policy in place, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=835&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When using SilverLight 4.0 along with WCF, many are often trying to figure out why you are getting an error as such:</p>
<blockquote><p>An error occurred while trying to make a request to URI &#8216;http://localhost:8732/Design_Time_Addresses/MyService/Service1/&#8217;&lt;/a&gt;. This could be due to attempting to access a service in a cross-domain way without a proper cross-domain policy in place, or a policy that is unsuitable for SOAP services. You may need to contact the owner of the service to publish a cross-domain policy file and to ensure it allows SOAP-related HTTP headers to be sent. This error may also be caused by using internal types in the web service proxy without using the InternalsVisibleToAttribute attribute. Please see the inner exception for more details.</p>
</blockquote>
<p>Well, for me, I got that error, but I was able to resolve it rather quickly.</p>
<p>If you are like me, you will create your solution including a Web Service Layer (WCF), a Data Access Layer, Presentation Layer (SilverLight), and even more layers…</p>
<p>…To put it simple, you can’t call your WCF Service unless it is deployed to an IIS Server because you must have a &quot;Cross Domain Policy” in place.&#160; And to add a cross domain policy you must add a file to your IIS Root path.</p>
<p>So in short, as far as I can tell, you can’t debug your WCF service and your SilverLight application very well.&#160; So this is where writing a bunch of unit tests will come in very well with your web service.</p>
<p>I hope that I have explained the problem and the solution well enough above, below I will take you trough a small walk through below so you can see how I was able to accomplish the task as described above. </p>
<p>Create a whole new solution in Visual Studio 2010.&#160; Select SilverLight, SilverLight Application, and provide a name. Then select OK.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image1.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb1.png?w=524&#038;h=364" width="524" height="364" /></a>&#160;</p>
<p>The next part is up to you, we simply have no need to have a separate host for the SilverLight application.&#160; But if you would like one created, you are more than welcome to at this point.&#160; For my demo, I will not, I will deselect it, ensure I have SilverLight 4 selected, then click OK.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image2.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb2.png?w=521&#038;h=419" width="521" height="419" /></a> </p>
<p>Add a new project to your solution.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image101.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image10_thumb.png?w=600&#038;h=265" width="600" height="265" /></a> </p>
<p>Select WCF, and WCF Service Library, I called my project MyService, select OK</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image141.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image14_thumb.png?w=599&#038;h=416" width="599" height="416" /></a> </p>
<p>Rename your IService1 to something else by refactoring it.&#160; You can do so with F2, or you can do a Control+H (I usually end up going this route)</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image5.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb5.png?w=528&#038;h=89" width="528" height="89" /></a> </p>
<p>If you did the F2 route (The refactoring route), you can select the new name, add search in comments, and click OK.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image6.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb6.png?w=520&#038;h=312" width="520" height="312" /></a> </p>
<p>Check out your changes, then click Apply</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image7.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb7.png?w=519&#038;h=415" width="519" height="415" /></a> </p>
<p>Create your first Operation Contract as shown below…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image8.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb8.png?w=412&#038;h=239" width="412" height="239" /></a> </p>
<p>Be sure to change your web service and interface file names.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image9.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb9.png?w=368&#038;h=356" width="368" height="356" /></a> </p>
<p>Repeat the refactoring for the service application as well…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image10.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb10.png?w=512&#038;h=89" width="512" height="89" /></a> </p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image11.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb11.png?w=515&#038;h=311" width="515" height="311" /></a> </p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image12.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb12.png?w=517&#038;h=419" width="517" height="419" /></a> </p>
<p>&#160;</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image13.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb13.png?w=309&#038;h=368" width="309" height="368" /></a> </p>
<p><font color="#ff0000"><strong><u>Important Step:</u></strong></font> Be sure to change <strong>wsHttpBinding</strong> to <strong>basicHttpBinding</strong> in your app.config file.&#160; This step is 100% required because SilverLight does not allow any other type of binding.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image14.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb14.png?w=311&#038;h=277" width="311" height="277" /></a> </p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image15.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb15.png?w=460&#038;h=128" width="460" height="128" /></a> </p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image16.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb16.png?w=459&#038;h=114" width="459" height="114" /></a> </p>
<p>Next add a few controls as shown below to your WCF application</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image20.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb20.png?w=496&#038;h=180" width="496" height="180" /></a> </p>
<p>Double click your Call Service button to access the code behind</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image21.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb21.png?w=494&#038;h=151" width="494" height="151" /></a> </p>
<p>Add the following code…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image97.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image97_thumb.png?w=600&#038;h=143" width="600" height="143" /></a> </p>
<p>&#160;<font color="#ff0000"><strong><u>Important Step:</u></strong></font> This step is the step that requires your WCF application to be hosted when building your SilverLight application. </p>
<p>Create a directory in your wwwroot folder as I did below…</p>
<p>C:\INETPUB\WWWROOT\wcfhost</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image56.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb55.png?w=600&#038;h=237" width="600" height="237" /></a></p>
<p>In the WCFHOST directory create two new XML files as shown below…</p>
<p><strong>clientaccesspolicy.xml</strong></p>
<blockquote><p>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;     <br />&lt;access-policy&gt;      <br />&#160; &lt;cross-domain-access&gt;      <br />&#160;&#160;&#160; &lt;policy&gt;      <br />&#160;&#160;&#160;&#160;&#160; &lt;allow-from http-request-headers=&quot;*&quot;&gt;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;domain uri=&quot;*&quot;/&gt;      <br />&#160;&#160;&#160;&#160;&#160; &lt;/allow-from&gt;      <br />&#160;&#160;&#160;&#160;&#160; &lt;grant-to&gt;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;resource path=&quot;/&quot; include-subpaths=&quot;true&quot;/&gt;      <br />&#160;&#160;&#160;&#160;&#160; &lt;/grant-to&gt;      <br />&#160;&#160;&#160; &lt;/policy&gt;      <br />&#160; &lt;/cross-domain-access&gt;      <br />&lt;/access-policy&gt;</p>
</blockquote>
<p><strong>crossdomain.xml</strong></p>
<blockquote><p>&lt;?xml version=&quot;1.0&quot;?&gt;     <br />&lt;!DOCTYPE cross-domain-policy SYSTEM &quot;http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd&quot;&lt;/a&gt;      <br />&lt;cross-domain-policy&gt;      <br />&#160; &lt;allow-http-request-headers-from domain=&quot;*&quot; headers=&quot;*&quot;/&gt;      <br />&lt;/cross-domain-policy&gt;</p>
</blockquote>
<p>&#160;</p>
<p>In IIS create a new web site calling it wcfhost as shown below…&#160; I did this so that I can use port 88 as SharePoint happens to be installed on my 80 port.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image57.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb56.png?w=498&#038;h=486" width="498" height="486" /></a></p>
<p>You will see the new site as shown below…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image58.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb57.png?w=287&#038;h=347" width="287" height="347" /></a></p>
<p>Now its time to deploy your new web service…&#160; Right click on MyService and click Publish…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image59.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb58.png?w=442&#038;h=219" width="442" height="219" /></a></p>
<p>Select your new web service site, then click publish.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image60.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb59.png?w=600&#038;h=446" width="600" height="446" /></a></p>
<p>Back in IIS, select your new web site and then refresh   </p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image61.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb60.png?w=335&#038;h=426" width="335" height="426" /></a></p>
<p>Right click on your new MyService then select “Convert to Application”, this will enable it to run as an application</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image62.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb61.png?w=251&#038;h=81" width="251" height="81" /></a></p>
<p>Be sure the application pool for the wcfhost site is actually .NET Framework 4.0.&#160; This by default is 2.0, and it will not work.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image63.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb62.png?w=599&#038;h=331" width="599" height="331" /></a></p>
<p>Now test your WCF web service application…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image64.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb63.png?w=600&#038;h=270" width="600" height="270" /></a></p>
<p>Now right click on Service References in your SilverLight application, select Add Service Reference…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image65.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb64.png?w=480&#038;h=99" width="480" height="99" /></a></p>
<p>Select your new service location URL, then click GO to select your service, enter a namespace as shown below, then click OK</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image66.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb65.png?w=586&#038;h=477" width="586" height="477" /></a></p>
<p>Hit F5 to run the SilverLight application, once you do this, you will be presented with this wonderful dialog.&#160; Well, the web service is not hosted within the project, but it is now hosted, so even though the message box below does indicate it will not work, it will…&#160; …Click Yes…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image67.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb66.png?w=600&#038;h=235" width="600" height="235" /></a></p>
<p>Enter your name, then click Call Service, cross your fingers…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image68.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb67.png?w=600&#038;h=436" width="600" height="436" /></a></p>
<p>And hopefully you will be presented with a dialog box as you indicated with the code above to show when it gets a string from the web service.</p>
<p>   <a href="http://myspexp.files.wordpress.com/2010/06/image69.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" class="wlDisabledImage" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb68.png?w=600&#038;h=369" width="600" height="369" /></a>  </p>
<p>   I hope this posting helped if you found it from your favorite search engine.&#160; </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/835/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/835/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/835/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/835/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/835/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/835/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/835/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/835/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/835/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/835/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/835/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/835/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/835/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/835/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=835&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/28/silverlight-wcf-web-service/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image10_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image14_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb9.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb10.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb11.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb12.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb13.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb14.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb15.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb16.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb20.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb21.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image97_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb55.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb56.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb57.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb58.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb59.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb60.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb61.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb62.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb63.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb64.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb65.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb66.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb67.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb68.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Deploying a WSP solution to SharePoint 2010</title>
		<link>http://myspexp.com/2010/06/24/deploying-a-wsp-solution-to-sharepoint-2010/</link>
		<comments>http://myspexp.com/2010/06/24/deploying-a-wsp-solution-to-sharepoint-2010/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 21:33:53 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/24/deploying-a-wsp-solution-to-sharepoint-2010/</guid>
		<description><![CDATA[To Deploy a WSP solution to SharePoint 2010 follow the simple steps below: &#160; Set up your path in your environmental table&#8230; SET PATH=%PATH%;C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\BIN Locate Your DEBUG or RELEASE folder CD\DEPLOY Add your solution stsadm -o addsolution -filename YESPrep_Redirection.wsp Deploy your solution stsadm -o deploysolution -name YESPrep_Redirection.wsp -url http://nav-test.yesprep.local -allowgacdeployment [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=905&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To Deploy a WSP solution to SharePoint 2010 follow the simple steps below:</p>
<p>&#160;</p>
<p><em><strong>Set up your path in your environmental table&#8230;</strong></em></p>
<p>SET PATH=%PATH%;C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\BIN </p>
<p><em><strong>Locate Your DEBUG or RELEASE folder</strong></em></p>
<p>CD\DEPLOY </p>
<p><em><strong>Add your solution</strong></em></p>
<p>stsadm -o addsolution -filename YESPrep_Redirection.wsp </p>
<p><em><strong>Deploy your solution</strong></em></p>
<p>stsadm -o deploysolution -name YESPrep_Redirection.wsp -url http://nav-test.yesprep.local -allowgacdeployment -immediate </p>
<p>pause</p>
<p><strong></strong></p>
<p><strong>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</strong></p>
<p>&#160;</p>
<p>To Remove it before deploying another solution follow the steps below:</p>
<p>&#160;</p>
<p><em><strong>Set up your path in your environmental table&#8230;</strong></em> </p>
<p>SET PATH=%PATH%;C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\BIN </p>
<p><em><strong>Locate Your DEBUG or RELEASE folder</strong></em> </p>
<p>CD\DEPLOY</p>
<p><em><strong>Remove your solution</strong></em> </p>
<p>stsadm -o retractsolution -name YESPrep_Redirection.wsp -URL http://cssp02-staging -immediate</p>
<p><em><strong>Remove your solution</strong></em> </p>
<p>stsadm -o deletesolution -name YESPrep_Redirection.wsp</p>
<p>&#160;</p>
<p>&#160;</p>
<p>Lastly make sure that you add the web part into the gallery (upload the *.webpart file)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/905/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/905/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/905/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=905&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/24/deploying-a-wsp-solution-to-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>YES Prep&#8217;s 2010 Migration&#8217;s Status</title>
		<link>http://myspexp.com/2010/06/23/yes-preps-2010-migrations-status/</link>
		<comments>http://myspexp.com/2010/06/23/yes-preps-2010-migrations-status/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 06:10:13 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/23/yes-preps-2010-migrations-status/</guid>
		<description><![CDATA[All, I just wanted to let the viewers of this blog know that our migration to SharePoint 2010&#8242;s second of three milestones have become a huge success.&#160; I was able to implement MySite and it has become a huge success.&#160; I will keep notes on here to see how the progress goes. &#160; Bill.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=904&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>All,</p>
<p>I just wanted to let the viewers of this blog know that our migration to SharePoint 2010&#8242;s second of three milestones have become a huge success.&#160; I was able to implement MySite and it has become a huge success.&#160; I will keep notes on here to see how the progress goes.</p>
<p>&#160;</p>
<p>Bill.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/904/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=904&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/23/yes-preps-2010-migrations-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Read Only Site</title>
		<link>http://myspexp.com/2010/06/22/read-only-site/</link>
		<comments>http://myspexp.com/2010/06/22/read-only-site/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 04:24:34 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/22/read-only-site/</guid>
		<description><![CDATA[After SharePoint 2007 SP2 it is easy to make a SharePoint site Read Only. &#160; Simple go to the Content Database that you want to make read only, and right click it, go to Properties&#8230; Under Options, select True for the Database Read Only attribute&#8230; Select Yes&#8230; Your Content DB is now &#34;Read Only&#34; &#160; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=903&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After SharePoint 2007 SP2 it is easy to make a SharePoint site Read Only.</p>
<p>&#160;</p>
<p>Simple go to the Content Database that you want to make read only, and right click it, go to Properties&#8230;</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image50.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb49.png?w=486&#038;h=470" width="486" height="470" /></a> </p>
<p>Under Options, select True for the Database Read Only attribute&#8230;</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image51.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb50.png?w=487&#038;h=439" width="487" height="439" /></a> </p>
<p>Select Yes&#8230;</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image52.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb51.png?w=494&#038;h=102" width="494" height="102" /></a> </p>
<p>Your Content DB is now &quot;Read Only&quot;</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image53.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb52.png?w=244&#038;h=124" width="244" height="124" /></a>&#160;</p>
<p>Here are before and after pictures of SharePoint, in my case it was our &quot;MySite&quot;</p>
<p>Before&#8230;</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image54.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb53.png?w=491&#038;h=335" width="491" height="335" /></a> </p>
<p>After&#8230;</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image55.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb54.png?w=491&#038;h=347" width="491" height="347" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/903/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/903/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/903/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=903&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/22/read-only-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb49.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb50.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb51.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb52.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb53.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb54.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Great SharePoint 2010 MySite Promotional Material</title>
		<link>http://myspexp.com/2010/06/22/great-sharepoint-2010-mysite-promotional-material/</link>
		<comments>http://myspexp.com/2010/06/22/great-sharepoint-2010-mysite-promotional-material/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 03:55:40 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/22/great-sharepoint-2010-mysite-promotional-material/</guid>
		<description><![CDATA[Here is some information from Microsoft: http://office2010.microsoft.com/en-us/sharepoint-server-help/basic-tasks-in-sharepoint-server-2010-HA101839175.aspx?origin=HA010371435 I am going to re-use it in our organization to help promote the new MySites.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=890&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is some information from Microsoft:</p>
<p><a title="http://office2010.microsoft.com/en-us/sharepoint-server-help/basic-tasks-in-sharepoint-server-2010-HA101839175.aspx?origin=HA010371435" href="http://office2010.microsoft.com/en-us/sharepoint-server-help/basic-tasks-in-sharepoint-server-2010-HA101839175.aspx?origin=HA010371435">http://office2010.microsoft.com/en-us/sharepoint-server-help/basic-tasks-in-sharepoint-server-2010-HA101839175.aspx?origin=HA010371435</a></p>
<p>I am going to re-use it in our organization to help promote the new MySites.</p>
<p><a href="http://office2010.microsoft.com/en-us/sharepoint-server-help/basic-tasks-in-sharepoint-server-2010-HA101839175.aspx?origin=HA010371435"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image49.png?w=453&#038;h=736" width="453" height="736" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/890/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=890&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/22/great-sharepoint-2010-mysite-promotional-material/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image49.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Moving Just the MySite from SharePoint 2007 to 2010</title>
		<link>http://myspexp.com/2010/06/21/moving-just-the-mysite-from-sharepoint-2007-to-2010/</link>
		<comments>http://myspexp.com/2010/06/21/moving-just-the-mysite-from-sharepoint-2007-to-2010/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 03:07:17 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/21/moving-just-the-mysite-from-sharepoint-2007-to-2010/</guid>
		<description><![CDATA[As part of our migration plan, I would like to move just our MySite first. By doing this first, this will allow users to still reach their MySite as the rest of the intranet is down for several hours or days. In addition we have been really promoting our MySite’s, so we don’t want our [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=888&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As part of our migration plan, I would like to move just our MySite first.</p>
<p>By doing this first, this will allow users to still reach their MySite as the rest of the intranet is down for several hours or days.</p>
<p>In addition we have been really promoting our MySite’s, so we don’t want our users to be with out their shared and private data including documents while we are in this migration transition.</p>
<p>We will also move our a record of “navigation.yesprep.local” to temporary intranet site to show the status of the upgrade.&#160; It will also provide a link to their MySite.</p>
<p>I wanted to be able to do this days/weeks before we do the final full migration.</p>
<p>I have fully configured MySite in SharePoint 2010 with everything it needs to be fully functional.</p>
<p>&#160;</p>
<p>In our test SP 2007 environment I decided to test and make sure we can make the default mysite in 07 point to 2010.&#160; And with much doubt from other SharePoint guru’s, it worked!</p>
<p>Here is what I did to make it work.</p>
<p>In the Shared Services in Central Administration, i went to My Site Settings…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image44.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb44.png?w=497&#038;h=314" width="497" height="314" /></a> </p>
<p>&#160;</p>
<p>I pointed the Personal Site Provider to my staging/test My Site, I also added the dynamically created site based on my settings in my SharePoint 2010 environment…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image45.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb45.png?w=493&#038;h=346" width="493" height="346" /></a>&#160;</p>
<p>&#160;</p>
<p>IMPORTANT: Be sure that you select “Enable My Site to support global deployments,” otherwise this simply will not work, and you will get an error message saying that this didn’t work and you won’t have any indication as to what didn’t work…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image46.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb46.png?w=492&#038;h=362" width="492" height="362" /></a> </p>
<p>&#160;</p>
<p>To test it, go to the SharePoint 2010’s home page, and click “My Site”</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image47.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb47.png?w=473&#038;h=100" width="473" height="100" /></a> </p>
<p>&#160;</p>
<p>Your new MySite should now point to SharePoint 2010!!!</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image48.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb48.png?w=475&#038;h=100" width="475" height="100" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/888/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/888/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/888/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=888&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/21/moving-just-the-mysite-from-sharepoint-2007-to-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb44.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb45.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb46.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb47.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb48.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Upgrade Checklist</title>
		<link>http://myspexp.com/2010/06/21/sharepoint-upgrade-checklist/</link>
		<comments>http://myspexp.com/2010/06/21/sharepoint-upgrade-checklist/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 02:11:46 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/21/sharepoint-upgrade-checklist/</guid>
		<description><![CDATA[We are getting close to that point where we will turn down the old SharePoint site and bring up the new. I found this from Microsoft: http://technet.microsoft.com/en-us/library/ff607537.aspx.&#160; It is a checklist to go over what is needed and required to upgrade. &#160; Pre-upgrade steps for a database attach upgrade Prepare for upgrade [ ] Run [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=876&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We are getting close to that point where we will turn down the old SharePoint site and bring up the new.</p>
<p>I found this from Microsoft: <a href="http://technet.microsoft.com/en-us/library/ff607537.aspx" target="_blank">http://technet.microsoft.com/en-us/library/ff607537.aspx</a>.&#160; It is a checklist to go over what is needed and required to upgrade.</p>
<p>&#160;</p>
<p><strong><font color="#ff0000">Pre-upgrade steps for a database attach upgrade </font></strong></p>
<p><strong>Prepare for upgrade</strong></p>
<p>[ ] <strong>Run the pre-upgrade checker</strong></p>
<p>[ ] <strong>Create an inventory of server-side customizations in the environment</strong></p>
<p>[ ] <strong>Clean up your environment</strong></p>
<p><strong></strong></p>
<p><strong>Prepare the new environment</strong></p>
<p>[ ] <strong>Install and configure SharePoint Foundation 2010 and any language packs</strong></p>
<p>[ ] <strong>Configure general farm settings</strong></p>
<p>[ ] <strong>Create and configure Web applications</strong></p>
<p>[ ] <strong>Reapply server-side customizations</strong></p>
<p>[ ] <strong>Verify the new environment</strong></p>
<p>[ ] <strong>Run the pre-upgrade checker</strong></p>
<p>[ ] <strong>Set the previous version databases to be read-only (database attach with read-only databases)</strong></p>
<p>[ ] <strong>Back up databases</strong></p>
<p>[ ] <strong>Detach the previous version databases (standard database attach)</strong></p>
<p>[ ] <strong>Restore a backup copy of the database (database attach with read-only databases)</strong></p>
<p>[ ] <strong>Verify custom components</strong></p>
<p>[ ] <strong>Verify permissions</strong></p>
<p>[ ] <strong>Attach a content database to a Web application</strong></p>
<p>[ ] <strong>Verify upgrade for the first database</strong></p>
<p>[ ] <strong><strong>Attach remaining databases</strong> </strong></p>
<p>[ ] <strong>Monitor upgrade progress</strong></p>
<p>[ ] <strong>Verify upgrade for the remaining database</strong></p>
<p>&#160;</p>
<p><strong><font color="#ff0000">Post upgrade steps for database attach upgrade</font>&#160;</strong> </p>
<p>[ ] <strong>Verify upgrade and review upgraded sites</strong></p>
<p><strong></strong></p>
<p><strong><font color="#ff0000"> Additional Steps I like to add…</font></strong></p>
<p>[ ] <strong>Add My Site</strong></p>
<p>[ ] <strong>Update Old/Missing Web Parts</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/876/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/876/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/876/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/876/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/876/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/876/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/876/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/876/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=876&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/21/sharepoint-upgrade-checklist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Performance Point Viewer to render SSRS (Reporting Server) Reports</title>
		<link>http://myspexp.com/2010/06/21/using-performance-point-viewer-to-render-ssrs-reporting-server-reports/</link>
		<comments>http://myspexp.com/2010/06/21/using-performance-point-viewer-to-render-ssrs-reporting-server-reports/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 22:01:29 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/21/using-performance-point-viewer-to-render-ssrs-reporting-server-reports/</guid>
		<description><![CDATA[When adding SSRS Reports to SharePoint 2010 using the new Performance Point Services Report Viewer Web Part, do the following… Under Site Actions, select More Options… &#160; Select Performance Point Content Lists &#160; Select “Add new item”… That will load up a “Click Once” application that will show Performance Point Dashboard Designer… &#160; Click the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=875&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When adding SSRS Reports to SharePoint 2010 using the new Performance Point Services Report Viewer Web Part, do the following…</p>
<p>Under Site Actions, select More Options…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image27.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb27.png?w=359&#038;h=448" width="359" height="448" /></a></p>
<p>&#160;</p>
<p>Select Performance Point Content Lists</p>
</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image28.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb28.png?w=503&#038;h=214" width="503" height="214" /></a> </p>
<p>&#160;</p>
<p>Select “Add new item”…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image29.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb29.png?w=506&#038;h=447" width="506" height="447" /></a> </p>
<p>That will load up a “Click Once” application that will show Performance Point Dashboard Designer… </p>
<p>&#160;</p>
<p>Click the Create Tab…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image30.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb30.png?w=508&#038;h=197" width="508" height="197" /></a> </p>
<p>&#160;</p>
<p>Type in the Server Name, then click Browse….</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image31.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb31.png?w=508&#038;h=554" width="508" height="554" /></a> </p>
<p>&#160;</p>
<p>Select the report that you have selected…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image32.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb32.png?w=440&#038;h=378" width="440" height="378" /></a>&#160;</p>
<p>&#160;</p>
<p>Select Preview…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image33.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb33.png?w=508&#038;h=534" width="508" height="534" /></a> </p>
<p>&#160;</p>
<p>Select the Properties tab, then give your report a name by entering the name in the name field…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image34.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb34.png?w=508&#038;h=222" width="508" height="222" /></a> </p>
<p>(I did not fill anything else out)</p>
<p>Click the Save in the toolbar…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image35.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb35.png?w=506&#038;h=537" width="506" height="537" /></a> </p>
<p>&#160;</p>
<p>Refresh your browser, and you should see your report in this list…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image36.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb36.png?w=511&#038;h=357" width="511" height="357" /></a> </p>
<p>&#160;</p>
<p>Go to the page where you wish to add your report, then click Edit…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image37.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb37.png?w=390&#038;h=253" width="390" height="253" /></a>&#160;</p>
<p>&#160;</p>
<p>This is optional, but i wanted to switch the column to a single column…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image38.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb38.png?w=496&#038;h=156" width="496" height="156" /></a> </p>
<p>&#160;</p>
<p>Add a new web part, select Performance Point, Performance Point Report, then click Add…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image39.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb39.png?w=499&#038;h=233" width="499" height="233" /></a> </p>
<p>Click “Click here to open the toll pane.”</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image40.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb40.png?w=500&#038;h=167" width="500" height="167" /></a> </p>
<p>Click on the List icon…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image41.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb41.png?w=270&#038;h=531" width="270" height="531" /></a> </p>
<p>Select the report from the list you want to add, click OK…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image42.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb42.png?w=439&#038;h=379" width="439" height="379" /></a> </p>
<p>And you should have the report displayed that you would like to see….</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image43.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb43.png?w=446&#038;h=210" width="446" height="210" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/875/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/875/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/875/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/875/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/875/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/875/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/875/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/875/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/875/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/875/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/875/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/875/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/875/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/875/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=875&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/21/using-performance-point-viewer-to-render-ssrs-reporting-server-reports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb27.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb28.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb29.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb30.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb31.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb32.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb33.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb34.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb35.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb36.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb37.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb38.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb39.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb40.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb41.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb42.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb43.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Upgrading a MySite from 2007 to 2010</title>
		<link>http://myspexp.com/2010/06/21/upgrading-a-mysite-from-2007-to-2010/</link>
		<comments>http://myspexp.com/2010/06/21/upgrading-a-mysite-from-2007-to-2010/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 19:34:26 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/21/upgrading-a-mysite-from-2007-to-2010/</guid>
		<description><![CDATA[Okay, so I just wanted to say that I upgraded our My Site into our staging environment to test and to see how it will work.&#160; I will say it worked out well. This worked out well.&#160; I just combined the two items that I blogged about before: Set up your My Site as a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=840&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Okay, so I just wanted to say that I upgraded our My Site into our staging environment to test and to see how it will work.&#160; I will say it worked out well.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image25.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb25.png?w=528&#038;h=251" width="528" height="251" /></a> </p>
<p>This worked out well.&#160; I just combined the two items that I blogged about before:</p>
<ol>
<li><a href="http://myspexp.com/2010/06/14/setting-up-mysite-as-a-different-application-2/" target="_blank">Set up your My Site as a different application</a></li>
<li><a href="http://myspexp.com/2010/06/14/upgrading-sharepoint-2007-to-2010-2/" target="_blank">Upgrading your 2007 Data Content DB to 2010</a></li>
</ol>
<p>Except this time I did not preserve the theme.</p>
<p><em><strong>stsadm -o addcontentdb -url</strong> http://my-test.yesprep.local <strong>-databasename </strong>SharepointMySitesContent<strong> -databaseserver</strong> cssql03-staging <strong>-preserveolduserexperience</strong> false</em></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/image26.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image" border="0" alt="image" src="http://myspexp.files.wordpress.com/2010/06/image_thumb26.png?w=518&#038;h=259" width="518" height="259" /></a> </p>
<p>&#160;</p>
<p>Worked great!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/840/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/840/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/840/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/840/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/840/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/840/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/840/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/840/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/840/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/840/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/840/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/840/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/840/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/840/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=840&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/21/upgrading-a-mysite-from-2007-to-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb25.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/image_thumb26.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Changing the look of your Global Navigation (Top Menu Bar)</title>
		<link>http://myspexp.com/2010/06/15/changing-the-look-of-your-global-navigation-top-menu-bar-2/</link>
		<comments>http://myspexp.com/2010/06/15/changing-the-look-of-your-global-navigation-top-menu-bar-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 05:05:05 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/15/changing-the-look-of-your-global-navigation-top-menu-bar-2/</guid>
		<description><![CDATA[Changing the look of your top menu navigation bar is rather simple.&#160; I will demonstrate here how to accomplish this. Here is the example below… &#160; In SharePoint Designer 2010, and your site open, go to All Files, then Style Library &#160; From File, create a new CSS file calling it Style… &#160; Open the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=781&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">
<p class="MsoNormal">
</p>
<p> Changing the look of your top menu navigation bar is rather simple.&#160; I will demonstrate here how to accomplish this.
</p>
<p class="MsoNormal">
<p> Here is the example below… </p>
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00220.jpg"><img style="display:inline;border-width:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb19.jpg?w=328&#038;h=204" width="328" height="204" /></a> </p>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">In SharePoint Designer 2010, and your site open, go to All Files, then Style Library </p>
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00418.jpg"><img style="display:inline;border-width:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb18.jpg?w=536&#038;h=370" width="536" height="370" /></a> </p>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">From File, create a new CSS file calling it Style… </p>
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00611.jpg"><img style="display:inline;border-width:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb11.jpg?w=253&#038;h=248" width="253" height="248" /></a> </p>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Open the file style.css that you just created… </p>
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00811.jpg"><img style="display:inline;border-width:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb11.jpg?w=293&#038;h=109" width="293" height="109" /></a> </p>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Apply the following: </p>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* Non text menu */</span><span style="font-family:consolas;font-size:9.5pt;"> </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:maroon;font-size:9.5pt;">.s4-tn</span><span style="font-family:consolas;font-size:9.5pt;">{ </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">padding</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">0px</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">margin</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">0px</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">background-color</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">#B0C5FF</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">color</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">navy</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">} </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:maroon;font-size:9.5pt;">.s4-tn</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:maroon;">ul.static</span>{ </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">white-space</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">nowrap</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">} </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* Top Menu */</span><span style="font-family:consolas;font-size:9.5pt;"> </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:maroon;font-size:9.5pt;">.s4-tn</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:maroon;">li.static</span> <span style="color:maroon;">&gt;</span> <span style="color:maroon;">.menu-item</span>{ </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* [ReplaceColor(themeColor:&quot;Dark2&quot;)] */</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:red;">color</span>:<span style="color:blue;">#3b4f65</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">white-space</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">nowrap</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">border</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">1px</span> <span style="color:blue;">solid</span> <span style="color:blue;">transparent</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">padding</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">4px</span> <span style="color:blue;">10px</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">display</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">inline-block</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">height</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">15px</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">vertical-align</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">middle</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">background-color</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">#B0C5FF</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">color</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">navy</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">} </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* Border around the menu sub items */</span><span style="font-family:consolas;font-size:9.5pt;"> </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:maroon;font-size:9.5pt;">.s4-tn</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:maroon;">ul.dynamic</span>{ </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* [ReplaceColor(themeColor:&quot;Light2&quot;)] */</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:red;">background-color</span>:<span style="color:blue;">white</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* [ReplaceColor(themeColor:&quot;Dark2-Lighter&quot;)] */</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:red;">border</span>:<span style="color:blue;">1px</span> <span style="color:blue;">solid</span> <span style="color:blue;">#003399</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">} </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* Actual Menu Item */</span><span style="font-family:consolas;font-size:9.5pt;"> </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:maroon;font-size:9.5pt;">.s4-tn</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:maroon;">li.dynamic</span> <span style="color:maroon;">&gt;</span> <span style="color:maroon;">.menu-item</span>{ </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">display</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">block</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">padding</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">4px</span> <span style="color:blue;">10px</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">white-space</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">nowrap</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">font-weight</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">normal</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">background-color</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">#B0C5FF</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">width</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">200px</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">color</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">navy</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">} </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* Menu Item Hover Over */</span><span style="font-family:consolas;font-size:9.5pt;"> </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:maroon;font-size:9.5pt;">.s4-tn</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:maroon;">li.dynamic</span> <span style="color:maroon;">&gt;</span> <span style="color:maroon;">a:hover</span>{ </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">font-weight</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">normal</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">color</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">navy</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* [ReplaceColor(themeColor:&quot;Light2-Lighter&quot;)] */</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:red;">background-color</span>:<span style="color:blue;">#D9D9D9</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">} </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* Hover over top menu */</span><span style="font-family:consolas;font-size:9.5pt;"> </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:maroon;font-size:9.5pt;">.s4-tn</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:maroon;">li.static</span> <span style="color:maroon;">&gt;</span> <span style="color:maroon;">a:hover</span> </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">{ </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* [ReplaceColor(themeColor:&quot;Accent1&quot;)] */</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:red;">color</span>:<span style="color:blue;">#44aff6</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">text-decoration</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">underline</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:red;font-size:9.5pt;">color</span><span style="font-family:consolas;font-size:9.5pt;">:<span style="color:blue;">navy</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">} </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:darkgreen;font-size:9.5pt;">/* hide arrows for top level items with flyouts */</span><span style="font-family:consolas;font-size:9.5pt;"> </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:maroon;font-size:9.5pt;">.menu-horizontal</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:maroon;">a.dynamic-children</span> <span style="color:maroon;">span.additional-background</span>, </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;color:maroon;font-size:9.5pt;">.menu-horizontal</span><span style="font-family:consolas;font-size:9.5pt;"> <span style="color:maroon;">span.dynamic-children</span> <span style="color:maroon;">span.additional-background</span>{ </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">&#160;&#160;&#160; <span style="color:red;">padding-right</span>:<span style="color:blue;">0px</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">&#160;&#160;&#160; <span style="color:red;">background-image</span>:<span style="color:blue;">none</span>; </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;">} </span>
</p>
</p>
<p class="MsoNormal"><span style="font-family:consolas;font-size:9.5pt;"></span>
<p>&#160;</p>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Within your active master page, make the following change: Remove “sitename” </p>
</p>
<p class="MsoNormal"><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;SharePoint:CssRegistration name=&quot;/Style Library/<b>sitename</b>/style.css&quot;&#160; After=&quot;corev4.css&quot; runat=&quot;server&quot;/&gt; </i>
</p>
</p>
<p class="MsoNormal">To </p>
</p>
<p class="MsoNormal"><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;SharePoint:CssRegistration name=&quot;/Style Library/style.css&quot;&#160; After=&quot;corev4.css&quot; runat=&quot;server&quot;/&gt; </i>
</p>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0107.jpg"><img style="display:inline;border-width:0;" title="clip_image010" border="0" alt="clip_image010" src="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb7.jpg?w=598&#038;h=262" width="598" height="262" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/781/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/781/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/781/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/781/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/781/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/781/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/781/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/781/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/781/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/781/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/781/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/781/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/781/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/781/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=781&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/15/changing-the-look-of-your-global-navigation-top-menu-bar-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb19.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb18.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb11.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb11.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb7.jpg" medium="image">
			<media:title type="html">clip_image010</media:title>
		</media:content>
	</item>
		<item>
		<title>Web Part Headers</title>
		<link>http://myspexp.com/2010/06/15/web-part-headers-2/</link>
		<comments>http://myspexp.com/2010/06/15/web-part-headers-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 05:01:51 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/15/web-part-headers-2/</guid>
		<description><![CDATA[The web part headers out of the box are very boring and add a lot of white space. I wanted to show you how to fix that.&#160; I created a gradient image in Adobe Photoshop (2 minute project): Here is the image in case you wanted it: I saved the file to a location that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=769&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The web part headers out of the box are very boring and add a lot of white space.</p>
<p>I wanted to show you how to fix that.&#160; I created a gradient image in Adobe Photoshop (2 minute project):</p>
<p>Here is the image in case you wanted it: <a href="http://myspexp.files.wordpress.com/2010/06/clip_image00219.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb18.jpg?w=130&#038;h=27" width="130" height="27" /></a></p>
<p>I saved the file to a location that everyone will be able to access at least in read only mode.</p>
<p>Then I wanted to apply it to the headers for all of my web parts (if they are something other than a hidden web part):</p>
<p><b><i>.ms-WPHeader{</i></b></p>
<p><b><i>/* [ReplaceColor(themeColor:&quot;Light1&quot;)] */ /* background-color:#FFFFFF; */</i></b></p>
<p><b><i>background:url(&quot;/_catalogs/masterpage/en-us/Preview Images/YESLogo/TitleBarBack.png&quot;); /* ***Added: 06-14-2010 *** */</i></b></p>
<p><b><i>}</i></b></p>
<p><b><i></i></b></p>
<p><b><i>.ms-WPHeader .ms-wpTdSpace{</i></b></p>
<p><b><i>width:5px;</i></b></p>
<p><b><i>border-bottom:1px solid transparent;</i></b></p>
<p><b><i>background:url(&quot;/_catalogs/masterpage/en-us/Preview Images/YESLogo/TitleBarBack.png&quot;); /* ***Added: 06-14-2010 *** */</i></b></p>
<p><b><i>}</i></b></p>
<p><b><i></i></b></p>
<p><b><i>.ms-WPHeaderTdMenu{</i></b></p>
<p><b><i>width:20px;&#160; /* ***Changed: 06-14-2010 *** Removed old value from 21px; to 20px; */</i></b></p>
<p><b><i>cursor:pointer;</i></b></p>
<p><b><i>word-wrap:normal;</i></b></p>
<p><b><i>white-space:nowrap;</i></b></p>
<p><b><i>border:0px solid transparent;</i></b></p>
<p><b><i>}</i></b></p>
<p>Here is the end result</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00417.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb17.jpg?w=465&#038;h=317" width="465" height="317" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/769/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/769/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/769/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/769/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/769/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/769/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/769/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/769/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/769/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/769/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/769/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/769/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/769/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/769/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=769&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/15/web-part-headers-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb18.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb17.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>
	</item>
		<item>
		<title>Troubleshooting SharePoint Errors&#8230;</title>
		<link>http://myspexp.com/2010/06/15/troubleshooting-sharepoint-errors-2/</link>
		<comments>http://myspexp.com/2010/06/15/troubleshooting-sharepoint-errors-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 05:00:36 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/15/troubleshooting-sharepoint-errors-2/</guid>
		<description><![CDATA[For those of you who are getting errors in SharePoint and can’t figure out what is going on and how to troubleshoot them?&#160; To the SharePoint Administrator and Developer they are pretty worthless errors.&#160; So I wanted to show you how to further troubleshoot them. You will see the following screens as such: Or the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=764&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For those of you who are getting errors in SharePoint and can’t figure out what is going on and how to troubleshoot them?&#160; </p>
<p>To the SharePoint Administrator and Developer they are pretty worthless errors.&#160; So I wanted to show you how to further troubleshoot them.</p>
<p>You will see the following screens as such:</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00218.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb17.jpg?w=588&#038;h=277" width="588" height="277" /></a></p>
<p>Or the message might show up like this: </p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00416.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb16.jpg?w=491&#038;h=288" width="491" height="288" /></a></p>
<p>You have two options that can be used in combination if you wanted.</p>
<p><b>ULS Viewer</b></p>
<p>1. Download the <a href="http://code.msdn.microsoft.com/ULSViewer/Release/ProjectReleases.aspx?ReleaseId=3308">ULS Viewer</a> from Microsoft Code</p>
<p>2. Open the ULS Viewer application</p>
<p>3. Go to <b>File</b> then <b>Open From</b> select <b>ULS</b>    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00610.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb10.jpg?w=391&#038;h=300" width="391" height="300" /></a></p>
<p>4. Select the file that you wish to open, in my case I wanted a UNC Path folder   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00810.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb10.jpg?w=588&#038;h=225" width="588" height="225" /></a></p>
<p>5. From the toolbar, unselect all of the warning types except for Critical/Error   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0106.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image010" border="0" alt="clip_image010" src="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb6.jpg?w=255&#038;h=65" width="255" height="65" /></a></p>
<p>6. Have the user duplicate the error once again, make sure you get the new GUID from them</p>
<p>7. Right click on the GUID once you found it in the list below and select “Filter By This Item”   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0125.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image012" border="0" alt="clip_image012" src="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb5.jpg?w=588&#038;h=202" width="588" height="202" /></a></p>
<p>8. Select Correlation, and ensure the GUID is entered in there:   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0145.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image014" border="0" alt="clip_image014" src="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb5.jpg?w=457&#038;h=442" width="457" height="442" /></a></p>
<p>9. Now you should have enough to work with.&#160; Ensure that you are not looking at the message, but that you are looking at the stack trace   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0165.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image016" border="0" alt="clip_image016" src="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb5.jpg?w=588&#038;h=255" width="588" height="255" /></a></p>
<p>If the error was recent enough, you can go back in time and look at the specific log file by going to File Open From &gt;&gt; File</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0186.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image018" border="0" alt="clip_image018" src="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb6.jpg?w=358&#038;h=234" width="358" height="234" /></a></p>
<p>Open the file when the error occurred</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0205.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image020" border="0" alt="clip_image020" src="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb5.jpg?w=588&#038;h=386" width="588" height="386" /></a></p>
<p>Select Filter from the toolbar</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0224.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image022" border="0" alt="clip_image022" src="http://myspexp.files.wordpress.com/2010/06/clip_image022_thumb4.jpg?w=143&#038;h=104" width="143" height="104" /></a></p>
<p>Type in the first part of the GUID select OK</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0244.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image024" border="0" alt="clip_image024" src="http://myspexp.files.wordpress.com/2010/06/clip_image024_thumb4.jpg?w=588&#038;h=315" width="588" height="315" /></a></p>
<p>And you should have details about that log.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0263.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image026" border="0" alt="clip_image026" src="http://myspexp.files.wordpress.com/2010/06/clip_image026_thumb3.jpg?w=588&#038;h=303" width="588" height="303" /></a></p>
<p>Another great feature is the Correlation Tree Button.&#160; This allows you to view the unique Names or Correlation ID’s</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0283.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image028" border="0" alt="clip_image028" src="http://myspexp.files.wordpress.com/2010/06/clip_image028_thumb3.jpg?w=309&#038;h=87" width="309" height="87" /></a></p>
<p>Alternately you can go into the web configuration file C:\\INETPUB\\WWWROOT\WSS\\VIRTUAL DIRECTORIES\\80\\web.config and find the string:</p>
<p><b><i>&lt;SafeMode MaxControls=&quot;200&quot; CallStack=&quot;false&quot; DirectFileDependencies=&quot;10&quot; TotalFileDependencies=&quot;50&quot; AllowPageLevelTrace=&quot;false&quot;&gt;</i></b></p>
<p>Modify it to show:</p>
<p><b><i>&lt;SafeMode MaxControls=&quot;200&quot; CallStack=&quot;true&quot; DirectFileDependencies=&quot;10&quot; TotalFileDependencies=&quot;50&quot; AllowPageLevelTrace=&quot;false&quot;&gt;</i></b></p>
<p>Also find the string: </p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;customErrors mode=&quot;Off&quot; /&gt;</i></b></p>
<p>Modify it to show:</p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;customErrors mode=&quot;On&quot; /&gt;</i></b></p>
<p>The last part is okay to use, however it is not as elegant.&#160; I will use it in our Staging/Testing/Development environment to save time from looking at the ULS Logs (unless I have the logger running), however I will not enable it in the production.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/764/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/764/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/764/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/764/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/764/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/764/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/764/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/764/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/764/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/764/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/764/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/764/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/764/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/764/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=764&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/15/troubleshooting-sharepoint-errors-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb17.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb16.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb10.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb10.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb6.jpg" medium="image">
			<media:title type="html">clip_image010</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb5.jpg" medium="image">
			<media:title type="html">clip_image012</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb5.jpg" medium="image">
			<media:title type="html">clip_image014</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb5.jpg" medium="image">
			<media:title type="html">clip_image016</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb6.jpg" medium="image">
			<media:title type="html">clip_image018</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb5.jpg" medium="image">
			<media:title type="html">clip_image020</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image022_thumb4.jpg" medium="image">
			<media:title type="html">clip_image022</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image024_thumb4.jpg" medium="image">
			<media:title type="html">clip_image024</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image026_thumb3.jpg" medium="image">
			<media:title type="html">clip_image026</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image028_thumb3.jpg" medium="image">
			<media:title type="html">clip_image028</media:title>
		</media:content>
	</item>
		<item>
		<title>Upgrading SharePoint 2007 to 2010</title>
		<link>http://myspexp.com/2010/06/14/upgrading-sharepoint-2007-to-2010-2/</link>
		<comments>http://myspexp.com/2010/06/14/upgrading-sharepoint-2007-to-2010-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 04:52:09 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/upgrading-sharepoint-2007-to-2010-2/</guid>
		<description><![CDATA[In this entry, I wanted to show you how we decided to upgrade our SharePoint environment.&#160; As you can tell this is something that you should carefully plan out.&#160; I would like to point out a few links to read up on while planning out your migration: http://technet.microsoft.com/en-us/sharepoint/ee517214.aspx http://msdn.microsoft.com/en-us/sharepoint/ee514557.aspx http://blogs.technet.com/b/tothesharepoint/archive/2009/11/10/3292072.aspx We decided to take a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=735&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this entry, I wanted to show you how we decided to upgrade our SharePoint environment.&#160; As you can tell this is something that you should carefully plan out.&#160; </p>
<p>I would like to point out a few links to read up on while planning out your migration:</p>
<p><a href="http://technet.microsoft.com/en-us/sharepoint/ee517214.aspx">http://technet.microsoft.com/en-us/sharepoint/ee517214.aspx</a></p>
<p><a href="http://msdn.microsoft.com/en-us/sharepoint/ee514557.aspx">http://msdn.microsoft.com/en-us/sharepoint/ee514557.aspx</a></p>
<p><a href="http://blogs.technet.com/b/tothesharepoint/archive/2009/11/10/3292072.aspx">http://blogs.technet.com/b/tothesharepoint/archive/2009/11/10/3292072.aspx</a></p>
<p>We decided to take a hybrid approach that is not really even listed in any of the above links:</p>
<p>1. Make a backup of all the content databases in production SharePoint’s SQL Server(s)</p>
<p>2. We create a new virtual (Hyper V) machine of SQL Server 2008 R2 (our server name so that you can follow below is called “CSSQL03-STAGING”)</p>
<p>3. We create a new virtual (Hyper V) machine of SharePoint 2010 Enterprise pointing it to the newly created SQL Server (our server is called “CSSP02-STAGING”)</p>
<p>4. We restored the content databases from step 1 into the newly created server</p>
<p>5. Removed the new default content database</p>
<p>6. Add the recently restored content databases in SharePoint</p>
<p>7. Make a backup of the content databases and restore them into a production environment once you are ready.   <br />(All of this will have to be done while your site is in a read only mode)</p>
<p>I will assume you will get through the first portion of this (if not, I will blog further about that).</p>
<p>So, when I went to this step, I removed the old content database, then went to add the new one….</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00217.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb16.jpg?w=588&#038;h=70" width="588" height="70" /></a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00415.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb15.jpg?w=588&#038;h=138" width="588" height="138" /></a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0069.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb9.jpg?w=588&#038;h=50" width="588" height="50" /></a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0089.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb9.jpg?w=415&#038;h=169" width="415" height="169" /></a></p>
<p>However when I went to add the new one, I go this message:<b></b></p>
<p><b></b></p>
<p><b><i>This content database requires upgrade and could not be attached in this operation. Use either the [stsadm -o addcontentdb] command or [Mount-SPContentDatabase] cmdlet instead.</i></b></p>
<p>There was very little (as in no) documentation anywhere showing how to resolve this with the command that it gave me.&#160; So I figured I would just wing it…</p>
<p>Under Command Prompt (with elevated permission) navigate to the SharePoint hive directory…</p>
<p><b>cd &quot;\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN</b></p>
<p>Enter the following command in (changing your database name and new SharePoint website’s URL to the new one…</p>
<p><b>stsadm -o addcontentdb -url <a href="http://cssp02-staging">http://cssp02-staging</a> -databasename sharepoint.navigation.content -databaseserver cssql03-staging -preserveolduserexperience true</b></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0092.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image009" border="0" alt="clip_image009" src="http://myspexp.files.wordpress.com/2010/06/clip_image009_thumb2.jpg?w=588&#038;h=294" width="588" height="294" /></a></p>
<p>In my case, I had to add a few more content databases, so I just re-ran the same command but changed the content databases each time for all the different content databases.</p>
<p>Test your site, and it should work!&#160; </p>
<p>(old site)</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0112.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image011" border="0" alt="clip_image011" src="http://myspexp.files.wordpress.com/2010/06/clip_image011_thumb2.jpg?w=588&#038;h=223" width="588" height="223" /></a></p>
<p>(new site)</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0132.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image013" border="0" alt="clip_image013" src="http://myspexp.files.wordpress.com/2010/06/clip_image013_thumb2.jpg?w=588&#038;h=223" width="588" height="223" /></a></p>
<p>Next steps are you will have to go through and remove all absolute URL’s and replace them with relative URL’s.</p>
<p>You will have to also create y our <a href="http://myspexp.com/2010/06/03/setting-up-mysite-as-a-different-application/">MySite as I show you how in another blog</a>, then perform the same action with that.&#160; I have not done this part yet however, but if I do find any differences there, I will blog about that as it happens.</p>
<p>Now when users are able to start moving their site to the new look, all they have to do will be to go to the SharePoint site and under Site Actions, point to Visual Upgrade</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0152.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image015" border="0" alt="clip_image015" src="http://myspexp.files.wordpress.com/2010/06/clip_image015_thumb2.jpg?w=588&#038;h=340" width="588" height="340" /></a></p>
<p><b>WARNING</b>: This may cause issues that are difficult to recover from, so be sure you can roll back.&#160; In my case I use Hyper-V and snapshots a lot for this scenario mostly so that I can apply the previous snapshot instance.&#160; Also use Preview just in case first</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0171.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image017" border="0" alt="clip_image017" src="http://myspexp.files.wordpress.com/2010/06/clip_image017_thumb1.jpg?w=588&#038;h=352" width="588" height="352" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/735/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/735/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/735/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=735&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/upgrading-sharepoint-2007-to-2010-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb16.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb15.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb9.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb9.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image009_thumb2.jpg" medium="image">
			<media:title type="html">clip_image009</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image011_thumb2.jpg" medium="image">
			<media:title type="html">clip_image011</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image013_thumb2.jpg" medium="image">
			<media:title type="html">clip_image013</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image015_thumb2.jpg" medium="image">
			<media:title type="html">clip_image015</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image017_thumb1.jpg" medium="image">
			<media:title type="html">clip_image017</media:title>
		</media:content>
	</item>
		<item>
		<title>Making a copy of SharePoint 2007 for Test</title>
		<link>http://myspexp.com/2010/06/14/making-a-copy-of-sharepoint-2007-for-test-2/</link>
		<comments>http://myspexp.com/2010/06/14/making-a-copy-of-sharepoint-2007-for-test-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 04:46:31 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/making-a-copy-of-sharepoint-2007-for-test-2/</guid>
		<description><![CDATA[When creating an environment for SharePoint 2007 for testing I had found a lot of messy documentation out there.&#160; The real point is that I was unable to find great and through documentation. &#160; Here is my situation. ·&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; I have about 3 sites in SharePoint 2007 that I require to be moved into a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=716&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">When creating an environment for SharePoint 2007 for testing I had found a lot of messy documentation out there.&#160; The real point is that I was unable to find great and through documentation.
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Here is my situation.
</p>
<p style="text-indent:-.25in;" class="MsoListParagraph"><span style="font-family:symbol;"><span>·<span style="font:7pt &quot;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </span></span></span>I have about 3 sites in SharePoint 2007 that I require to be moved into a testing/staging environment.
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal"><b><span style="font-size:12pt;">Here are the steps that I took.
</p>
<p>     </span></b></p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">First, backup all of
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">In the SQL Server (my server is called cssql02-staging), restore all of the content databases.
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Right click on Database in SSMS, click Restore Database
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00216.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb15.jpg?w=360&#038;h=377" width="360" height="377" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Enter the name of the database name…
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00414.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb14.jpg?w=513&#038;h=120" width="513" height="120" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Select From Device, then click the ellipse button.
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0068.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb8.jpg?w=512&#038;h=136" width="512" height="136" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Click Add…
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0088.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb8.jpg?w=503&#038;h=366" width="503" height="366" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Locate the database you backed up, and click OK
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0105.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image010" border="0" alt="clip_image010" src="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb5.jpg?w=368&#038;h=359" width="368" height="359" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Select OK
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0124.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image012" border="0" alt="clip_image012" src="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb4.jpg?w=505&#038;h=365" width="505" height="365" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Select the database backup, and click OK
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0144.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image014" border="0" alt="clip_image014" src="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb4.jpg?w=509&#038;h=332" width="509" height="332" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Click OK after your database was restored
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0164.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image016" border="0" alt="clip_image016" src="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb4.jpg?w=571&#038;h=119" width="571" height="119" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">In the production Central Administration, select Application Management &gt;&gt; Content Databases
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0184.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image018" border="0" alt="clip_image018" src="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb4.jpg?w=418&#038;h=383" width="418" height="383" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Take note of the web applications you have, and the different database names (aka content db’s)
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0204.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image020" border="0" alt="clip_image020" src="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb4.jpg?w=586&#038;h=189" width="586" height="189" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Back in your new staging/test server, and under Applicaton Management, select Create or Extend Web Application
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0223.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image022" border="0" alt="clip_image022" src="http://myspexp.files.wordpress.com/2010/06/clip_image022_thumb3.jpg?w=465&#038;h=322" width="465" height="322" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Choose Create a new Web Application
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0243.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image024" border="0" alt="clip_image024" src="http://myspexp.files.wordpress.com/2010/06/clip_image024_thumb3.jpg?w=223&#038;h=82" width="223" height="82" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Enter the name of the web site as you would have seen it in the production server, but don’t enter a host header unless you created an a-record already in DNS.
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0262.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image026" border="0" alt="clip_image026" src="http://myspexp.files.wordpress.com/2010/06/clip_image026_thumb2.jpg?w=525&#038;h=213" width="525" height="213" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Enter your application pool information, use your service account.
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0282.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image028" border="0" alt="clip_image028" src="http://myspexp.files.wordpress.com/2010/06/clip_image028_thumb2.jpg?w=572&#038;h=220" width="572" height="220" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Select to restart IIS
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0301.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image030" border="0" alt="clip_image030" src="http://myspexp.files.wordpress.com/2010/06/clip_image030_thumb1.jpg?w=199&#038;h=78" width="199" height="78" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Select OK
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0321.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image032" border="0" alt="clip_image032" src="http://myspexp.files.wordpress.com/2010/06/clip_image032_thumb1.jpg?w=208&#038;h=59" width="208" height="59" /></a>
</p>
<p class="MsoNormal">You should see the Application Created screen, <b>don’t</b> create a site collection at this point.
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0341.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image034" border="0" alt="clip_image034" src="http://myspexp.files.wordpress.com/2010/06/clip_image034_thumb1.jpg?w=588&#038;h=263" width="588" height="263" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Under Central Administration, select Application Management, and Content Databases
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0185.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image018" border="0" alt="clip_image018" src="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb5.jpg?w=418&#038;h=383" width="418" height="383" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Select the new web application you created, then select WSS_Content
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0361.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image036" border="0" alt="clip_image036" src="http://myspexp.files.wordpress.com/2010/06/clip_image036_thumb1.jpg?w=588&#038;h=154" width="588" height="154" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Next, you will want to take this database off line, and remove the content DB, select OK after you made these changes…
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0381.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image038" border="0" alt="clip_image038" src="http://myspexp.files.wordpress.com/2010/06/clip_image038_thumb1.jpg?w=588&#038;h=424" width="588" height="424" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Now that you do not have any content databases, you can select to Add a content database
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0401.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image040" border="0" alt="clip_image040" src="http://myspexp.files.wordpress.com/2010/06/clip_image040_thumb1.jpg?w=588&#038;h=94" width="588" height="94" /></a>
</p>
<p class="MsoNormal">Recall and Take note of what you had in your production server…
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0422.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image042" border="0" alt="clip_image042" src="http://myspexp.files.wordpress.com/2010/06/clip_image042_thumb2.jpg?w=588&#038;h=91" width="588" height="91" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Also, it’s a good idea to have SSMS open so you can ensure the names of the databases are going to be correct for the next step.
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0441.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image044" border="0" alt="clip_image044" src="http://myspexp.files.wordpress.com/2010/06/clip_image044_thumb1.jpg?w=466&#038;h=376" width="466" height="376" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">When you add the content database, you can reuse an existing database (this is the trick).&#160; Enter the first database you restored that is in the application list above…
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0461.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image046" border="0" alt="clip_image046" src="http://myspexp.files.wordpress.com/2010/06/clip_image046_thumb1.jpg?w=588&#038;h=316" width="588" height="316" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Select OK
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0322.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image032" border="0" alt="clip_image032" src="http://myspexp.files.wordpress.com/2010/06/clip_image032_thumb2.jpg?w=208&#038;h=59" width="208" height="59" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Once you add all of your databases to your application, then you should be all set.&#160; You will be able to test your site.
</p>
<p class="MsoNormal"><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0481.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image048" border="0" alt="clip_image048" src="http://myspexp.files.wordpress.com/2010/06/clip_image048_thumb1.jpg?w=588&#038;h=204" width="588" height="204" /></a>
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">You are done!   </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/716/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/716/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/716/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=716&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/making-a-copy-of-sharepoint-2007-for-test-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb15.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb14.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb8.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb8.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb5.jpg" medium="image">
			<media:title type="html">clip_image010</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb4.jpg" medium="image">
			<media:title type="html">clip_image012</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb4.jpg" medium="image">
			<media:title type="html">clip_image014</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb4.jpg" medium="image">
			<media:title type="html">clip_image016</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb4.jpg" medium="image">
			<media:title type="html">clip_image018</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb4.jpg" medium="image">
			<media:title type="html">clip_image020</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image022_thumb3.jpg" medium="image">
			<media:title type="html">clip_image022</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image024_thumb3.jpg" medium="image">
			<media:title type="html">clip_image024</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image026_thumb2.jpg" medium="image">
			<media:title type="html">clip_image026</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image028_thumb2.jpg" medium="image">
			<media:title type="html">clip_image028</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image030_thumb1.jpg" medium="image">
			<media:title type="html">clip_image030</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image032_thumb1.jpg" medium="image">
			<media:title type="html">clip_image032</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image034_thumb1.jpg" medium="image">
			<media:title type="html">clip_image034</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb5.jpg" medium="image">
			<media:title type="html">clip_image018</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image036_thumb1.jpg" medium="image">
			<media:title type="html">clip_image036</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image038_thumb1.jpg" medium="image">
			<media:title type="html">clip_image038</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image040_thumb1.jpg" medium="image">
			<media:title type="html">clip_image040</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image042_thumb2.jpg" medium="image">
			<media:title type="html">clip_image042</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image044_thumb1.jpg" medium="image">
			<media:title type="html">clip_image044</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image046_thumb1.jpg" medium="image">
			<media:title type="html">clip_image046</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image032_thumb2.jpg" medium="image">
			<media:title type="html">clip_image032</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image048_thumb1.jpg" medium="image">
			<media:title type="html">clip_image048</media:title>
		</media:content>
	</item>
		<item>
		<title>WCF Allowing more than the default 10 connections.</title>
		<link>http://myspexp.com/2010/06/14/wcf-allowing-more-than-the-default-10-connections-3/</link>
		<comments>http://myspexp.com/2010/06/14/wcf-allowing-more-than-the-default-10-connections-3/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 04:34:10 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/wcf-allowing-more-than-the-default-10-connections-3/</guid>
		<description><![CDATA[Again, not really a SharePoint topic, however more of a developer topic. &#160; When building WCF web services, you will want to be sure that you allow enough concurrent connections.&#160; The default concurrent connections to your WCF web service is 10. &#160; When you think about it, you may have 3 or 4 calls when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=663&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">
<p class="MsoNormal">
</p>
<p> Again, not really a SharePoint topic, however more of a developer topic.
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">When building WCF web services, you will want to be sure that you allow enough concurrent connections.&#160; The default concurrent connections to your WCF web service is <b>10</b>.
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">When you think about it, you may have 3 or 4 calls when the client application loads, and another 3 or 4 calls when the program is interacting with the web service.&#160; This becomes an issue quite quickly.&#160; The GC’s in the client application may not release the web service in time for the next calls, and more importantly the web service is a service, so the whole idea is to have many clients concurrently call the web service.
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal">Below, I replaced my application name from “CMS” to “&lt;appname&gt;”, so be sure to replace that, but this will go in the &lt;configuration&gt; section of your web.config file.&#160; Everything highlighted in yellow is items you may want to just swap your existing values for.&#160;&#160; Once this is done you will want to perform an IISRESET as sometimes just changing the web.config may not be enough.&#160; (because existing connections)
</p>
<p class="MsoNormal">
<p>&#160;</p>
</p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">system.serviceModel</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">bindings</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">wsHttpBinding</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">binding</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">name</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="color:blue;">NewBinding0</span>&quot;<span style="color:blue;"> </span><span style="color:red;">closeTimeout</span><span style="color:blue;">=</span>&quot;<span style="background:yellow;color:blue;">23:59:00</span>&quot;<span style="color:blue;"> </span><span style="color:red;">openTimeout</span><span style="color:blue;">=</span>&quot;<span style="background:yellow;color:blue;">23:59:00</span>&quot;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </span><span style="font-family:&quot;color:red;font-size:10pt;">receiveTimeout</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="background:yellow;color:blue;">23:59:00</span>&quot;<span style="color:blue;"> </span><span style="color:red;">sendTimeout</span><span style="color:blue;">=</span>&quot;<span style="background:yellow;color:blue;">00:10:00</span>&quot;<span style="color:blue;"> </span><span style="color:red;">maxReceivedMessageSize</span><span style="color:blue;">=</span>&quot;<span style="background:yellow;color:blue;">2147483647</span>&quot;<span style="color:blue;">&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">readerQuotas</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">maxStringContentLength</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="background:yellow;color:blue;">2147483647</span>&quot;<span style="color:blue;"> </span><span style="color:red;">maxArrayLength</span><span style="color:blue;">=</span>&quot;<span style="background:yellow;color:blue;">2147483647</span>&quot;<span style="color:blue;"> /&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">reliableSession</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">inactivityTimeout</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="background:yellow;color:blue;">23:59:00</span>&quot;<span style="color:blue;"> /&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">binding</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">wsHttpBinding</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">bindings</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">services</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">service</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">behaviorConfiguration</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="color:blue;">&lt;appname&gt;.Service.ServiceBehavior</span>&quot;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; </span><span style="font-family:&quot;color:red;font-size:10pt;">name</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="color:blue;">&lt;appname&gt;.Service.Service</span>&quot;<span style="color:blue;">&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">endpoint</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">address</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;&quot;<span style="color:blue;"> </span><span style="color:red;">binding</span><span style="color:blue;">=</span>&quot;<span style="color:blue;">wsHttpBinding</span>&quot;<span style="color:blue;"> </span><span style="color:red;">bindingConfiguration</span><span style="color:blue;">=</span>&quot;<span style="color:blue;">NewBinding0</span>&quot;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </span><span style="font-family:&quot;color:red;font-size:10pt;">contract</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="color:blue;">&lt;appname&gt;.Service.IService</span>&quot;<span style="color:blue;">&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">identity</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">dns</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">value</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="color:blue;">localhost</span>&quot;<span style="color:blue;"> /&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">identity</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">endpoint</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">endpoint</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">address</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="background:yellow;color:blue;">mex</span>&quot;<span style="color:blue;"> </span><span style="color:red;">binding</span><span style="color:blue;">=</span>&quot;<span style="color:blue;">mexHttpBinding</span>&quot;<span style="color:blue;"> </span><span style="color:red;">contract</span><span style="color:blue;">=</span>&quot;<span style="color:blue;">IMetadataExchange</span>&quot;<span style="color:blue;"> /&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">service</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">services</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">behaviors</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">serviceBehaviors</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">behavior</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">name</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="color:blue;">CMS.Service.ServiceBehavior</span>&quot;<span style="color:blue;">&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">serviceThrottling</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">maxConcurrentCalls</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="background:yellow;color:blue;">10000</span>&quot;<span style="color:blue;"> </span><span style="color:red;">maxConcurrentSessions</span><span style="color:blue;">=</span>&quot;<span style="background:yellow;color:blue;">10000</span>&quot;<span style="color:blue;"> </span><span style="color:red;">maxConcurrentInstances</span><span style="color:blue;">=</span>&quot;<span style="background:yellow;color:blue;">10000</span>&quot;<span style="color:blue;">/&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">serviceMetadata</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">httpGetEnabled</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="background:yellow;color:blue;">true</span>&quot;<span style="color:blue;"> /&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">serviceDebug</span><span style="font-family:&quot;color:blue;font-size:10pt;"> </span><span style="font-family:&quot;color:red;font-size:10pt;">includeExceptionDetailInFaults</span><span style="font-family:&quot;color:blue;font-size:10pt;">=</span><span style="font-family:&quot;font-size:10pt;">&quot;<span style="background:yellow;color:blue;">true</span>&quot;<span style="color:blue;"> /&gt;
</p>
<p>     </span></span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">behavior</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160;&#160;&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">serviceBehaviors</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160;&#160;&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">behaviors</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;
</p>
<p>   </span></p>
<p class="MsoNormal"><span style="font-family:&quot;color:blue;font-size:10pt;">&#160; &lt;/</span><span style="font-family:&quot;color:#a31515;font-size:10pt;">system.serviceModel</span><span style="font-family:&quot;color:blue;font-size:10pt;">&gt;</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/663/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/663/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/663/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/663/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/663/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/663/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/663/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/663/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/663/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/663/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/663/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/663/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/663/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/663/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=663&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/wcf-allowing-more-than-the-default-10-connections-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Expanding the scrollbar past the ribbon.</title>
		<link>http://myspexp.com/2010/06/14/expanding-the-scrollbar-past-the-ribbon-2/</link>
		<comments>http://myspexp.com/2010/06/14/expanding-the-scrollbar-past-the-ribbon-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 04:31:49 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/expanding-the-scrollbar-past-the-ribbon-2/</guid>
		<description><![CDATA[As you can see from the first image below, the out of the box scrolling functionality is somewhat limited, it keeps the ribbon (and possible titles above the scroll bar).&#160; My organization requires that I expand this scroll bar to the full height of the screen because all of our staff for the most part [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=662&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As you can see from the first image below, the out of the box scrolling functionality is somewhat limited, it keeps the ribbon (and possible titles above the scroll bar).&#160; My organization requires that I expand this scroll bar to the full height of the screen because all of our staff for the most part spends their time looking at SharePoint with lower to middle resolution laptops screens.&#160; So the bottom line is real estate is really important, and we don’t need the ribbon to be static.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00215.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb14.jpg?w=576&#038;h=416" width="576" height="416" /></a></p>
<p>In the v4 master page (or any v4 master page including any of the starter pages you may have downloaded) do the following:</p>
<p>1. Remove the tag “_fV4UI” variable all together from the javascript in the header….&#160; In this case you can remove the whole script if that is all that is in there…   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00413.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb13.jpg?w=319&#038;h=172" width="319" height="172" /></a></p>
<p>2. Remove the scroll attribute in the body tag…   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0067.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb7.jpg?w=486&#038;h=181" width="486" height="181" /></a></p>
<p>3. Change the name of the s4-workspace, in my case, I just added “-custom” to the ID.   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0087.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb7.jpg?w=400&#038;h=88" width="400" height="88" /></a></p>
<p>4. Locate the body CSS rule (attribute)…&#160;&#160;&#160; &#8230;(mine was located in the v4.master as I got my master page from the <a href="http://startermasterpages.codeplex.com/">CodePlex</a> site.</p>
<p>a. C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\1033\STYLES\Themable\COREV4.CSS</p>
<p>b. Your Master Page (i.e, v4.master)</p>
<p>5. Lastly change the name of the body by removing the width, height, and overflow attributes from the “body” CSS rule from the above location (either your corev4.css file or in the master page)</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0104.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image010" border="0" alt="clip_image010" src="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb4.jpg?w=560&#038;h=402" width="560" height="402" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/662/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/662/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/662/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=662&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/expanding-the-scrollbar-past-the-ribbon-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb14.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb13.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb7.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb7.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb4.jpg" medium="image">
			<media:title type="html">clip_image010</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing the Quick Launch Bar in SharePoint 2010&#8242;s Master Page</title>
		<link>http://myspexp.com/2010/06/14/removing-the-quick-launch-bar-in-sharepoint-2010s-master-page-2/</link>
		<comments>http://myspexp.com/2010/06/14/removing-the-quick-launch-bar-in-sharepoint-2010s-master-page-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 04:28:14 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/removing-the-quick-launch-bar-in-sharepoint-2010s-master-page-2/</guid>
		<description><![CDATA[Removing the left navigation bar (the Quick Launch) all together in SharePoint 2010. In the master page (or even in a web part), add the following to the header (or within the HTML view of the content editor web part) &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;style type=&#34;text/css&#34;&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; /* removes the left quick launch */ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #s4-leftpanel{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; display:none [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=650&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Removing the left navigation bar (the Quick Launch) all together in SharePoint 2010.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00214.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb13.jpg?w=515&#038;h=517" width="515" height="517" /></a></p>
<p>In the master page (or even in a web part), add the following to the header (or within the HTML view of the content editor web part)</p>
<p><b><i></i></b></p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;style type=&quot;text/css&quot;&gt;</i></b></p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; /* removes the left quick launch */</i></b></p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; #s4-leftpanel{</i></b></p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; display:none</i></b></p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</i></b></p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; .s4-ca{</i></b></p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; margin-left:0px</i></b></p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</i></b></p>
<p><b><i>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/style&gt;</i></b></p>
<p>And villa… You should be all set..</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00412.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb12.jpg?w=353&#038;h=523" width="353" height="523" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/650/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/650/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/650/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/650/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/650/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/650/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/650/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/650/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=650&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/removing-the-quick-launch-bar-in-sharepoint-2010s-master-page-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb13.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb12.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up the User Profile Synchronization Services</title>
		<link>http://myspexp.com/2010/06/14/setting-up-the-user-profile-synchronization-services-2/</link>
		<comments>http://myspexp.com/2010/06/14/setting-up-the-user-profile-synchronization-services-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 04:23:24 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/setting-up-the-user-profile-synchronization-services-2/</guid>
		<description><![CDATA[I couldn’t have said it any better than they did in this article… http://www.sharepointdevwiki.com/display/spadmin2010/15+-+Configure+User+Profile+Synchronization+Service Go to Central Admin, and Central Administration, (It is recommended to do this in the server that you installed SharePoint, however I was unable to when doing so, so I went to my local machine. Start the service User Profile Services [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=644&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I couldn’t have said it any better than they did in this article…</p>
<p><a href="http://www.sharepointdevwiki.com/display/spadmin2010/15+-+Configure+User+Profile+Synchronization+Service">http://www.sharepointdevwiki.com/display/spadmin2010/15+-+Configure+User+Profile+Synchronization+Service</a></p>
<p>Go to Central Admin, and Central Administration, (It is recommended to do this in the server that you installed SharePoint, however I was unable to when doing so, so I went to my local machine.</p>
<p>Start the service User Profile Services</p>
<p>The rest I got from the <a href="http://www.sharepointdevwiki.com/display/spadmin2010/15+-+Configure+User+Profile+Synchronization+Service">link</a> from above</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image002.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb.gif?w=587&#038;h=369" width="587" height="369" /></a>    <br />Click &quot;start&quot; on &quot;User Profile Synchronization Service&quot;    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image004.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb.gif?w=593&#038;h=372" width="593" height="372" /></a>    <br />Click &quot;OK&quot;    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image006.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb.gif?w=594&#038;h=373" width="594" height="373" /></a>    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image008.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb.gif?w=597&#038;h=375" width="597" height="375" /></a>    <br />Click on &quot;monitoring&quot; on left hand side and then click on &quot;Review Job Definitions&quot;    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image010.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image010" border="0" alt="clip_image010" src="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb.gif?w=594&#038;h=373" width="594" height="373" /></a>    <br />Click on &quot;Running Jobs&quot; on left hand side    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image012.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image012" border="0" alt="clip_image012" src="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb.gif?w=599&#038;h=376" width="599" height="376" /></a>    <br />You should now see ProfileSynchronizationSetupJob running    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image014.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image014" border="0" alt="clip_image014" src="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb.gif?w=595&#038;h=373" width="595" height="373" /></a>    <br />Keep refreshing until it disappears and then you&#8217;ll notice it&#8217;ll disappear. Click on &quot;Job History&quot; on left hand side, you should see the job with status of Successful.    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image016.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image016" border="0" alt="clip_image016" src="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb.gif?w=595&#038;h=373" width="595" height="373" /></a>    <br />In Windows Services you should now see Forefront Services both started and running under your administrator account.    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image018.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image018" border="0" alt="clip_image018" src="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb.gif?w=598&#038;h=375" width="598" height="375" /></a>    <br />Click on &quot;Application Management&quot; then click on &quot;Manage service applications&quot;    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image020.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image020" border="0" alt="clip_image020" src="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb.gif?w=576&#038;h=361" width="576" height="361" /></a>    <br />Scroll down and click on &quot;User Profile Service Application&quot;    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image022.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image022" border="0" alt="clip_image022" src="http://myspexp.files.wordpress.com/2010/06/clip_image022_thumb.gif?w=572&#038;h=359" width="572" height="359" /></a>    <br />Click on &quot;Configure Synchronization Connections&quot;    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image024.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image024" border="0" alt="clip_image024" src="http://myspexp.files.wordpress.com/2010/06/clip_image024_thumb.gif?w=567&#038;h=356" width="567" height="356" /></a>    <br />NOTE: you may see the below error, if you do simply do an IISRESET    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image026.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image026" border="0" alt="clip_image026" src="http://myspexp.files.wordpress.com/2010/06/clip_image026_thumb.gif?w=567&#038;h=356" width="567" height="356" /></a>    <br />Click Create New Connection    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image028.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image028" border="0" alt="clip_image028" src="http://myspexp.files.wordpress.com/2010/06/clip_image028_thumb.gif?w=564&#038;h=354" width="564" height="354" /></a>    <br />Fill in details    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image030.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image030" border="0" alt="clip_image030" src="http://myspexp.files.wordpress.com/2010/06/clip_image030_thumb.gif?w=567&#038;h=356" width="567" height="356" /></a>    <br />Click &quot;Populate Containers&quot; button then expand tree and select &quot;Users&quot; OU tree node and then click &quot;OK&quot;.    <br />NOTE: Clicking &quot;Select All&quot; does not work in this build!    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image032.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image032" border="0" alt="clip_image032" src="http://myspexp.files.wordpress.com/2010/06/clip_image032_thumb.gif?w=576&#038;h=362" width="576" height="362" /></a>    <br />You should now see a connection in this list.    <br />NOTE: if you get to next screen and nothing shows, please ensure both Forefront Windows Services are started.    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image034.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image034" border="0" alt="clip_image034" src="http://myspexp.files.wordpress.com/2010/06/clip_image034_thumb.gif?w=582&#038;h=365" width="582" height="365" /></a>    <br />Go back to &quot;User Profile Service Application&quot; page from &quot;Manage Service Applications&quot;    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image036.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image036" border="0" alt="clip_image036" src="http://myspexp.files.wordpress.com/2010/06/clip_image036_thumb.gif?w=585&#038;h=367" width="585" height="367" /></a>    <br />Click &quot;Start Profile Synchronization&quot;    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image038.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image038" border="0" alt="clip_image038" src="http://myspexp.files.wordpress.com/2010/06/clip_image038_thumb.gif?w=585&#038;h=367" width="585" height="367" /></a>    <br />Select &quot;Start Full Synchronization&quot; then click &quot;OK&quot;.    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image040.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image040" border="0" alt="clip_image040" src="http://myspexp.files.wordpress.com/2010/06/clip_image040_thumb.gif?w=585&#038;h=367" width="585" height="367" /></a>    <br />NOTE: this will take a few minutes as a job is scheduled to do this.    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0421.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image042" border="0" alt="clip_image042" src="http://myspexp.files.wordpress.com/2010/06/clip_image042_thumb1.jpg?w=589&#038;h=370" width="589" height="370" /></a>    <br />Now if you click &quot;Manage User Profiles&quot; you&#8217;ll see the User Profiles coming through    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image044.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image044" border="0" alt="clip_image044" src="http://myspexp.files.wordpress.com/2010/06/clip_image044_thumb.gif?w=584&#038;h=366" width="584" height="366" /></a>    <br />In Beta 2 it is normal to see these warning errors in the Event Log.    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image046.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image046" border="0" alt="clip_image046" src="http://myspexp.files.wordpress.com/2010/06/clip_image046_thumb.gif?w=580&#038;h=364" width="580" height="364" /></a>    <br />Also note that you cannot edit the connections because of a JavaScript error.    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image048.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image048" border="0" alt="clip_image048" src="http://myspexp.files.wordpress.com/2010/06/clip_image048_thumb.gif?w=583&#038;h=366" width="583" height="366" /></a>    <br />For more information on the User Profile imports go to:    <br />C:\Program Files\Microsoft Office Servers\14.0\Synchronization Service\UIShell\ and run MSIISClient.exe    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image050.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image050" border="0" alt="clip_image050" src="http://myspexp.files.wordpress.com/2010/06/clip_image050_thumb.gif?w=582&#038;h=365" width="582" height="365" /></a>    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image052.gif"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image052" border="0" alt="clip_image052" src="http://myspexp.files.wordpress.com/2010/06/clip_image052_thumb.gif?w=585&#038;h=367" width="585" height="367" /></a>    <br />If you get this error:    <br />&quot;Cannot navigate to the requested page while User Profile Synchronization is running. Please wait for the current Sychronization run to finish.&quot;    <br />You will need to restart the machine (you can most likely just restart the services too)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/644/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/644/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/644/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/644/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/644/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/644/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/644/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/644/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=644&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/setting-up-the-user-profile-synchronization-services-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb.gif" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb.gif" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb.gif" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb.gif" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb.gif" medium="image">
			<media:title type="html">clip_image010</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb.gif" medium="image">
			<media:title type="html">clip_image012</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb.gif" medium="image">
			<media:title type="html">clip_image014</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb.gif" medium="image">
			<media:title type="html">clip_image016</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb.gif" medium="image">
			<media:title type="html">clip_image018</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb.gif" medium="image">
			<media:title type="html">clip_image020</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image022_thumb.gif" medium="image">
			<media:title type="html">clip_image022</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image024_thumb.gif" medium="image">
			<media:title type="html">clip_image024</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image026_thumb.gif" medium="image">
			<media:title type="html">clip_image026</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image028_thumb.gif" medium="image">
			<media:title type="html">clip_image028</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image030_thumb.gif" medium="image">
			<media:title type="html">clip_image030</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image032_thumb.gif" medium="image">
			<media:title type="html">clip_image032</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image034_thumb.gif" medium="image">
			<media:title type="html">clip_image034</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image036_thumb.gif" medium="image">
			<media:title type="html">clip_image036</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image038_thumb.gif" medium="image">
			<media:title type="html">clip_image038</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image040_thumb.gif" medium="image">
			<media:title type="html">clip_image040</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image042_thumb1.jpg" medium="image">
			<media:title type="html">clip_image042</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image044_thumb.gif" medium="image">
			<media:title type="html">clip_image044</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image046_thumb.gif" medium="image">
			<media:title type="html">clip_image046</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image048_thumb.gif" medium="image">
			<media:title type="html">clip_image048</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image050_thumb.gif" medium="image">
			<media:title type="html">clip_image050</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image052_thumb.gif" medium="image">
			<media:title type="html">clip_image052</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Hyper-V Tools on Windows 7 (Pro, Ent, Ult)</title>
		<link>http://myspexp.com/2010/06/14/installing-hyper-v-tools-on-windows-7-pro-ent-ult-2/</link>
		<comments>http://myspexp.com/2010/06/14/installing-hyper-v-tools-on-windows-7-pro-ent-ult-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 04:17:58 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/installing-hyper-v-tools-on-windows-7-pro-ent-ult-2/</guid>
		<description><![CDATA[Installing HyperV Tools on your Windows 7 is easy.  Simply download the RSAT (Remote Server Administration Tools) from Microsoft.  Once you have installed the MSI, you will then need to go to “Turn Windows features on or off” from the Add and Remove Programs screen. Select Remote Server Administration Services Under Role Administration Tools, select [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=591&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Installing HyperV Tools on your Windows 7 is easy.  Simply download the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7d2f6ad7-656b-4313-a005-4e344e43997d&amp;displaylang=en">RSAT</a> (Remote Server Administration Tools) from Microsoft.  Once you have installed the MSI, you will then need to go to “Turn Windows features on or off” from the Add and Remove Programs screen.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00213.jpg"><img style="display:inline;border:0;" title="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb12.jpg?w=251&#038;h=172" border="0" alt="clip_image002" width="251" height="172" /></a></p>
<p>Select Remote Server Administration Services</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00411.jpg"><img style="display:inline;border:0;" title="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb11.jpg?w=434&#038;h=506" border="0" alt="clip_image004" width="434" height="506" /></a></p>
<p>Under Role Administration Tools, select Hyper-V Tools</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0066.jpg"><img style="display:inline;border:0;" title="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb6.jpg?w=436&#038;h=509" border="0" alt="clip_image006" width="436" height="509" /></a></p>
<p>After this, you should be set up.  Go to Start, Administrative Tools, and select Hyper-V Manager.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0086.jpg"><img style="display:inline;border:0;" title="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb6.jpg?w=519&#038;h=116" border="0" alt="clip_image008" width="519" height="116" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/591/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=591&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/installing-hyper-v-tools-on-windows-7-pro-ent-ult-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb12.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb11.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb6.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb6.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>
	</item>
		<item>
		<title>Access Denied when browsing from server to SharePoint 2010</title>
		<link>http://myspexp.com/2010/06/14/access-denied-when-browsing-from-server-to-sharepoint-2010-2/</link>
		<comments>http://myspexp.com/2010/06/14/access-denied-when-browsing-from-server-to-sharepoint-2010-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 04:15:52 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/access-denied-when-browsing-from-server-to-sharepoint-2010-2/</guid>
		<description><![CDATA[In SharePoint (2007 or 2010) I had an issue where I can’t be RDP’ed in the machine and browse to the site.&#160; While I was on a Microsoft Call talking with a tech regarding a ticket that I had opened on another topic, I mentioned this as an issue, and he said we could fix [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=582&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[</p>
<p>In SharePoint (2007 or 2010) I had an issue where I can’t be RDP’ed in the machine and browse to the site.&#160; While I was on a Microsoft Call talking with a tech regarding a ticket that I had opened on another topic, I mentioned this as an issue, and he said we could fix it right now, so here is what we did:</p>
<p>Go to Start, type in REGEDIT and hit enter.</p>
<p>Then go to Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\LSA and create a new DWORD “DisableLoopBackCheck” set it to a decimal and set to 1.&#160; This will allow you to brows to your own site.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00212.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb11.jpg?w=599&#038;h=294" width="599" height="294" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/582/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=582&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/access-denied-when-browsing-from-server-to-sharepoint-2010-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb11.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>
	</item>
		<item>
		<title>Issue sending emails to a document library!</title>
		<link>http://myspexp.com/2010/06/14/issue-sending-emails-to-a-document-library-2/</link>
		<comments>http://myspexp.com/2010/06/14/issue-sending-emails-to-a-document-library-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 04:05:52 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/issue-sending-emails-to-a-document-library-2/</guid>
		<description><![CDATA[I ran into an issue where I was sending emails to a document library, and though I had everything set up correctly, I was getting the following message: Delivery has failed to these recipients or groups: test@nav.yesprep.local The recipient e-mail system can&#8217;t process this message now. Please try resending the message later. This was a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=579&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I ran into an issue where I was sending emails to a document library, and though I had everything set up correctly, I was getting the following message: </p>
<p><b></b></p>
<p><b>Delivery has failed to these recipients or groups:</b></p>
<p><a href="mailto:test@nav.yesprep.local">test@nav.yesprep.local</a>    <br />The recipient e-mail system can&#8217;t process this message now. Please try resending the message later.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0012.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image001" border="0" alt="clip_image001" src="http://myspexp.files.wordpress.com/2010/06/clip_image001_thumb2.jpg?w=568&#038;h=462" width="568" height="462" /></a></p>
<p>This was a very simple fix.&#160; I added an A record to the site, and called it nav.yesprep.local pointing it to my server, however I didn’t add it as a binding in IIS as it seemed like everything else worked.&#160; So I added it, and it worked ASAP:</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0031.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image003" border="0" alt="clip_image003" src="http://myspexp.files.wordpress.com/2010/06/clip_image003_thumb1.jpg?w=569&#038;h=465" width="569" height="465" /></a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0051.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image005" border="0" alt="clip_image005" src="http://myspexp.files.wordpress.com/2010/06/clip_image005_thumb1.jpg?w=492&#038;h=231" width="492" height="231" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/579/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=579&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/issue-sending-emails-to-a-document-library-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image001_thumb2.jpg" medium="image">
			<media:title type="html">clip_image001</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image003_thumb1.jpg" medium="image">
			<media:title type="html">clip_image003</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image005_thumb1.jpg" medium="image">
			<media:title type="html">clip_image005</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuration of Inbound Email</title>
		<link>http://myspexp.com/2010/06/14/configuration-of-inbound-email-4/</link>
		<comments>http://myspexp.com/2010/06/14/configuration-of-inbound-email-4/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 04:02:41 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/configuration-of-inbound-email-4/</guid>
		<description><![CDATA[Within the SharePoint’s Front End Web Server box, you must enable the SMTP Service along with the IIS Manager for 6.0 to manage and configure it… Select SMTP Server Select Add Required Role Services Select Next Select Next Select Install After Installation, select Finish Still in the SP Server, and from Start, select Administrative Tools [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=571&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Within the SharePoint’s Front End Web Server box, you must enable the SMTP Service along with the IIS Manager for 6.0 to manage and configure it…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00210.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb10.jpg?w=599&#038;h=165" width="599" height="165" /></a></p>
<p>Select SMTP Server</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00410.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb10.jpg?w=587&#038;h=453" width="587" height="453" /></a></p>
<p>Select Add Required Role Services</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0065.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb5.jpg?w=584&#038;h=282" width="584" height="282" /></a></p>
<p>Select Next</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0085.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb5.jpg?w=574&#038;h=424" width="574" height="424" /></a></p>
<p>Select Next</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0103.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image010" border="0" alt="clip_image010" src="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb3.jpg?w=585&#038;h=432" width="585" height="432" /></a></p>
<p>Select Install</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0123.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image012" border="0" alt="clip_image012" src="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb3.jpg?w=593&#038;h=438" width="593" height="438" /></a></p>
<p>After Installation, select Finish</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0143.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image014" border="0" alt="clip_image014" src="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb3.jpg?w=596&#038;h=441" width="596" height="441" /></a></p>
<p>Still in the SP Server, and from Start, select Administrative Tools &gt;&gt; Internet Information Services (IIS) 6.0 Manager</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0163.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image016" border="0" alt="clip_image016" src="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb3.jpg?w=595&#038;h=533" width="595" height="533" /></a></p>
<p>From IIS6.0, select the name of the server, then right click on SMTP Virtual Server #1 choose Properties…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0183.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image018" border="0" alt="clip_image018" src="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb3.jpg?w=585&#038;h=653" width="585" height="653" /></a></p>
<p>Select “All except the list below” then choose OK</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0203.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image020" border="0" alt="clip_image020" src="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb3.jpg?w=557&#038;h=543" width="557" height="543" /></a></p>
<p>In Exchange Server you must create a Send Connector, go to the following path in the Exchange Management Console:</p>
<p>Organization Configuration &gt;&gt; Hub Transport &gt;&gt; Send Connectors &gt;&gt; New Send Connector</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0222.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image022" border="0" alt="clip_image022" src="http://myspexp.files.wordpress.com/2010/06/clip_image022_thumb2.jpg?w=561&#038;h=197" width="561" height="197" /></a></p>
<p>Enter a name of your SharePoint incoming mail connector, and select Internal</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0242.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image024" border="0" alt="clip_image024" src="http://myspexp.files.wordpress.com/2010/06/clip_image024_thumb2.jpg?w=595&#038;h=519" width="595" height="519" /></a></p>
<p>Click Add</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0261.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image026" border="0" alt="clip_image026" src="http://myspexp.files.wordpress.com/2010/06/clip_image026_thumb1.jpg?w=600&#038;h=230" width="600" height="230" /></a></p>
<p>Select the address…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0281.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image028" border="0" alt="clip_image028" src="http://myspexp.files.wordpress.com/2010/06/clip_image028_thumb1.jpg?w=426&#038;h=250" width="426" height="250" /></a></p>
<p>Click Next</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image030.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image030" border="0" alt="clip_image030" src="http://myspexp.files.wordpress.com/2010/06/clip_image030_thumb.jpg?w=533&#038;h=531" width="533" height="531" /></a></p>
<p>Click Add, then enter the IP Address</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image032.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image032" border="0" alt="clip_image032" src="http://myspexp.files.wordpress.com/2010/06/clip_image032_thumb.jpg?w=519&#038;h=277" width="519" height="277" /></a></p>
<p>Click Next…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image034.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image034" border="0" alt="clip_image034" src="http://myspexp.files.wordpress.com/2010/06/clip_image034_thumb.jpg?w=559&#038;h=564" width="559" height="564" /></a></p>
<p>Ensure None is selected, then click Next…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image036.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image036" border="0" alt="clip_image036" src="http://myspexp.files.wordpress.com/2010/06/clip_image036_thumb.jpg?w=579&#038;h=565" width="579" height="565" /></a></p>
<p>Click Add, and add the name of the transport server…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image038.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image038" border="0" alt="clip_image038" src="http://myspexp.files.wordpress.com/2010/06/clip_image038_thumb.jpg?w=581&#038;h=514" width="581" height="514" /></a></p>
<p>Click New…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image040.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image040" border="0" alt="clip_image040" src="http://myspexp.files.wordpress.com/2010/06/clip_image040_thumb.jpg?w=589&#038;h=516" width="589" height="516" /></a></p>
<p>Click Finish…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image042.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image042" border="0" alt="clip_image042" src="http://myspexp.files.wordpress.com/2010/06/clip_image042_thumb.jpg?w=589&#038;h=516" width="589" height="516" /></a></p>
<p>In AD, add a new organizational unit</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image044.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image044" border="0" alt="clip_image044" src="http://myspexp.files.wordpress.com/2010/06/clip_image044_thumb.jpg?w=584&#038;h=560" width="584" height="560" /></a></p>
<p>Call it something such as “SharePoint Contacts”</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image046.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image046" border="0" alt="clip_image046" src="http://myspexp.files.wordpress.com/2010/06/clip_image046_thumb.jpg?w=484&#038;h=408" width="484" height="408" /></a></p>
<p>After creating it, select Delegate Control…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image048.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image048" border="0" alt="clip_image048" src="http://myspexp.files.wordpress.com/2010/06/clip_image048_thumb.jpg?w=393&#038;h=75" width="393" height="75" /></a></p>
<p>Click Next…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image050.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image050" border="0" alt="clip_image050" src="http://myspexp.files.wordpress.com/2010/06/clip_image050_thumb.jpg?w=480&#038;h=369" width="480" height="369" /></a></p>
<p>Click Add, and add the new service account</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image052.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image052" border="0" alt="clip_image052" src="http://myspexp.files.wordpress.com/2010/06/clip_image052_thumb.jpg?w=487&#038;h=374" width="487" height="374" /></a></p>
<p>Select “Create a custom task to delegate…”&#160; Click Next</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image054.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image054" border="0" alt="clip_image054" src="http://myspexp.files.wordpress.com/2010/06/clip_image054_thumb.jpg?w=493&#038;h=379" width="493" height="379" /></a></p>
<p>Select “This folder, existing objects in this folder, and creation of new objects in this folder”, then choose Next…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image056.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image056" border="0" alt="clip_image056" src="http://myspexp.files.wordpress.com/2010/06/clip_image056_thumb.jpg?w=500&#038;h=384" width="500" height="384" /></a></p>
<p>Ensure the Create All Child Objects and Delete All Child Objects are selected, then choose Next…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image058.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image058" border="0" alt="clip_image058" src="http://myspexp.files.wordpress.com/2010/06/clip_image058_thumb.jpg?w=510&#038;h=394" width="510" height="394" /></a></p>
<p>Click Finish…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image060.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image060" border="0" alt="clip_image060" src="http://myspexp.files.wordpress.com/2010/06/clip_image060_thumb.jpg?w=507&#038;h=389" width="507" height="389" /></a></p>
<p>Under AD, select View, and choose Advanced Features…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image062.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image062" border="0" alt="clip_image062" src="http://myspexp.files.wordpress.com/2010/06/clip_image062_thumb.jpg?w=513&#038;h=316" width="513" height="316" /></a></p>
<p>Select Properties…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image064.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image064" border="0" alt="clip_image064" src="http://myspexp.files.wordpress.com/2010/06/clip_image064_thumb.jpg?w=414&#038;h=329" width="414" height="329" /></a></p>
<p>Click on Advanced….</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image066.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image066" border="0" alt="clip_image066" src="http://myspexp.files.wordpress.com/2010/06/clip_image066_thumb.jpg?w=419&#038;h=463" width="419" height="463" /></a></p>
<p>Select the service account for your SharePoint Central Admin App Pool User, click on Edit..</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image068.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image068" border="0" alt="clip_image068" src="http://myspexp.files.wordpress.com/2010/06/clip_image068_thumb.jpg?w=570&#038;h=294" width="570" height="294" /></a></p>
<p>Enable Delete Subtree…, choose OK</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image070.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image070" border="0" alt="clip_image070" src="http://myspexp.files.wordpress.com/2010/06/clip_image070_thumb.jpg?w=431&#038;h=546" width="431" height="546" /></a></p>
<p>Perform an IISReset in the primary SharePoint System.</p>
<p>In Central Admin, go to System Settings, then under E-Mail and Text Messages (SMS) select Configure Incoming&#160; Email Settings</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image072.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image072" border="0" alt="clip_image072" src="http://myspexp.files.wordpress.com/2010/06/clip_image072_thumb.jpg?w=586&#038;h=184" width="586" height="184" /></a></p>
<p>Enable “Receive Email”, and enter the name of your server.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image074.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image074" border="0" alt="clip_image074" src="http://myspexp.files.wordpress.com/2010/06/clip_image074_thumb.jpg?w=594&#038;h=481" width="594" height="481" /></a></p>
<p>Now, add an MX Record in your primary DNS Server:</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image076.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image076" border="0" alt="clip_image076" src="http://myspexp.files.wordpress.com/2010/06/clip_image076_thumb.jpg?w=413&#038;h=318" width="413" height="318" /></a></p>
<p>Enter the name of your MX Record host, as well as the FQDN (the name of the machine) </p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image078.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image078" border="0" alt="clip_image078" src="http://myspexp.files.wordpress.com/2010/06/clip_image078_thumb.jpg?w=503&#038;h=553" width="503" height="553" /></a></p>
<p>Next, test it, and you should be okay.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/571/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=571&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/configuration-of-inbound-email-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb10.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb10.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb5.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb5.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb3.jpg" medium="image">
			<media:title type="html">clip_image010</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb3.jpg" medium="image">
			<media:title type="html">clip_image012</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb3.jpg" medium="image">
			<media:title type="html">clip_image014</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb3.jpg" medium="image">
			<media:title type="html">clip_image016</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb3.jpg" medium="image">
			<media:title type="html">clip_image018</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb3.jpg" medium="image">
			<media:title type="html">clip_image020</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image022_thumb2.jpg" medium="image">
			<media:title type="html">clip_image022</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image024_thumb2.jpg" medium="image">
			<media:title type="html">clip_image024</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image026_thumb1.jpg" medium="image">
			<media:title type="html">clip_image026</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image028_thumb1.jpg" medium="image">
			<media:title type="html">clip_image028</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image030_thumb.jpg" medium="image">
			<media:title type="html">clip_image030</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image032_thumb.jpg" medium="image">
			<media:title type="html">clip_image032</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image034_thumb.jpg" medium="image">
			<media:title type="html">clip_image034</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image036_thumb.jpg" medium="image">
			<media:title type="html">clip_image036</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image038_thumb.jpg" medium="image">
			<media:title type="html">clip_image038</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image040_thumb.jpg" medium="image">
			<media:title type="html">clip_image040</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image042_thumb.jpg" medium="image">
			<media:title type="html">clip_image042</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image044_thumb.jpg" medium="image">
			<media:title type="html">clip_image044</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image046_thumb.jpg" medium="image">
			<media:title type="html">clip_image046</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image048_thumb.jpg" medium="image">
			<media:title type="html">clip_image048</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image050_thumb.jpg" medium="image">
			<media:title type="html">clip_image050</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image052_thumb.jpg" medium="image">
			<media:title type="html">clip_image052</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image054_thumb.jpg" medium="image">
			<media:title type="html">clip_image054</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image056_thumb.jpg" medium="image">
			<media:title type="html">clip_image056</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image058_thumb.jpg" medium="image">
			<media:title type="html">clip_image058</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image060_thumb.jpg" medium="image">
			<media:title type="html">clip_image060</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image062_thumb.jpg" medium="image">
			<media:title type="html">clip_image062</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image064_thumb.jpg" medium="image">
			<media:title type="html">clip_image064</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image066_thumb.jpg" medium="image">
			<media:title type="html">clip_image066</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image068_thumb.jpg" medium="image">
			<media:title type="html">clip_image068</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image070_thumb.jpg" medium="image">
			<media:title type="html">clip_image070</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image072_thumb.jpg" medium="image">
			<media:title type="html">clip_image072</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image074_thumb.jpg" medium="image">
			<media:title type="html">clip_image074</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image076_thumb.jpg" medium="image">
			<media:title type="html">clip_image076</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image078_thumb.jpg" medium="image">
			<media:title type="html">clip_image078</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuration of Outbound Email</title>
		<link>http://myspexp.com/2010/06/14/configuration-of-outbound-email-2/</link>
		<comments>http://myspexp.com/2010/06/14/configuration-of-outbound-email-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:48:33 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/configuration-of-outbound-email-2/</guid>
		<description><![CDATA[In Central Admin, go to System Settings, then under E-Mail and Text Messages (SMS) select Configure Outgoing Email Settings Enter your Outbound SMT Server and From and Reply To address, then choose OK Now under your Exchange Server, open up your Exchange Management Console and choose Hub Transport under Server Configuration, and double click Anonymous… [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=463&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In Central Admin, go to System Settings, then under E-Mail and Text Messages (SMS) select Configure Outgoing Email Settings</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0028.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb8.jpg?w=565&#038;h=176" width="565" height="176" /></a></p>
<p>Enter your Outbound SMT Server and From and Reply To address, then choose OK</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0048.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb8.jpg?w=577&#038;h=197" width="577" height="197" /></a></p>
<p>Now under your Exchange Server, open up your Exchange Management Console and choose Hub Transport under Server Configuration, and double click Anonymous…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0063.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb3.jpg?w=566&#038;h=507" width="566" height="507" /></a></p>
<p>Now select the Network Tab, and select Add…</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0083.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb3.jpg?w=77&#038;h=37" width="77" height="37" /></a></p>
<p>Enter the IP Address of your SharePoint server.</p>
<p>And then you should be finished!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/463/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=463&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/configuration-of-outbound-email-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb8.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb8.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb3.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb3.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up MySite as a different Application</title>
		<link>http://myspexp.com/2010/06/14/setting-up-mysite-as-a-different-application-2/</link>
		<comments>http://myspexp.com/2010/06/14/setting-up-mysite-as-a-different-application-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:43:46 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/setting-up-mysite-as-a-different-application-2/</guid>
		<description><![CDATA[To correctly set up the “My Site” you should put it in a different application domain.&#160; You will get the following message: Validate the My Site Host and Individual My Sites are on a dedicated Web application and separate URL Domain Here is how to go about doing this: Under Central Administration, select New to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=433&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To correctly set up the “My Site” you should put it in a different application domain.&#160; You will get the following message: Validate the My Site Host and Individual My Sites are on a dedicated Web application and separate URL Domain</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0027.jpg"><img style="display:inline;border-width:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb7.jpg?w=579&#038;h=192" width="579" height="192" /></a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0047.jpg"><img style="display:inline;border-width:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb7.jpg?w=580&#038;h=551" width="580" height="551" /></a></p>
<p>Here is how to go about doing this:</p>
<p>Under Central Administration, select New to create a new site from the ribbon</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0062.jpg"><img style="display:inline;border-width:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb2.jpg?w=407&#038;h=241" width="407" height="241" /></a></p>
<p>Ensure that you have created an A record for “my” (or My Site)</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0082.jpg"><img style="display:inline;border-width:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb2.jpg?w=350&#038;h=351" width="350" height="351" /></a></p>
<p>Enter the following information as such:</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0091.jpg"><img style="display:inline;border-width:0;" title="clip_image009" border="0" alt="clip_image009" src="http://myspexp.files.wordpress.com/2010/06/clip_image009_thumb1.jpg?w=476&#038;h=2048" width="476" height="2048" /></a></p>
<p>You will get this message:</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0111.jpg"><img style="display:inline;border-width:0;" title="clip_image011" border="0" alt="clip_image011" src="http://myspexp.files.wordpress.com/2010/06/clip_image011_thumb1.jpg?w=504&#038;h=325" width="504" height="325" /></a></p>
<p>Now, create the site collection as a My Site Host</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0131.jpg"><img style="display:inline;border-width:0;" title="clip_image013" border="0" alt="clip_image013" src="http://myspexp.files.wordpress.com/2010/06/clip_image013_thumb1.jpg?w=577&#038;h=655" width="577" height="655" /></a></p>
<p>Ensure that you have Self Service Site Creation enabled</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0151.jpg"><img style="display:inline;border-width:0;" title="clip_image015" border="0" alt="clip_image015" src="http://myspexp.files.wordpress.com/2010/06/clip_image015_thumb1.jpg?w=567&#038;h=251" width="567" height="251" /></a></p>
<p>Click OK</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image017.jpg"><img style="display:inline;border-width:0;" title="clip_image017" border="0" alt="clip_image017" src="http://myspexp.files.wordpress.com/2010/06/clip_image017_thumb.jpg?w=507&#038;h=370" width="507" height="370" /></a></p>
<p>You should be set!</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0191.jpg"><img style="display:inline;border-width:0;" title="clip_image019" border="0" alt="clip_image019" src="http://myspexp.files.wordpress.com/2010/06/clip_image019_thumb1.jpg?w=595&#038;h=296" width="595" height="296" /></a></p>
<p>The next step is to let SharePoint know that is where your default MySite is going to be located.</p>
<p>In Central Administration point to: Manage Service Applications under Application Management.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0211.jpg"><img style="display:inline;border-width:0;" title="clip_image021" border="0" alt="clip_image021" src="http://myspexp.files.wordpress.com/2010/06/clip_image021_thumb1.jpg?w=560&#038;h=427" width="560" height="427" /></a></p>
<p>Select User Profile Service Application</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image023.jpg"><img style="display:inline;border-width:0;" title="clip_image023" border="0" alt="clip_image023" src="http://myspexp.files.wordpress.com/2010/06/clip_image023_thumb.jpg?w=290&#038;h=59" width="290" height="59" /></a></p>
<p>Select Setup My Sites in My Site Settings</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0251.jpg"><img style="display:inline;border-width:0;" title="clip_image025" border="0" alt="clip_image025" src="http://myspexp.files.wordpress.com/2010/06/clip_image025_thumb1.jpg?w=588&#038;h=319" width="588" height="319" /></a></p>
<p>One last bit of configuration that I am noticing is that I cannot add new “My Content”.&#160; Here is how to fix that:</p>
<table border="0" cellpadding="0">
<tbody>
<tr>
<td>
<p>Your personal site cannot be created because the managed path &quot;personal&quot; has not been created for this site. Contact your site administrator for more information.</p>
</td>
</tr>
</tbody>
</table>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0271.jpg"><img style="display:inline;border-width:0;" title="clip_image027" border="0" alt="clip_image027" src="http://myspexp.files.wordpress.com/2010/06/clip_image027_thumb1.jpg?w=593&#038;h=117" width="593" height="117" /></a></p>
<p>Select your application, then choose Managed Paths in the ribbion</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0291.jpg"><img style="display:inline;border-width:0;" title="clip_image029" border="0" alt="clip_image029" src="http://myspexp.files.wordpress.com/2010/06/clip_image029_thumb1.jpg?w=606&#038;h=232" width="606" height="232" /></a></p>
<p>Type in “personal” in your path.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image031.jpg"><img style="display:inline;border-width:0;" title="clip_image031" border="0" alt="clip_image031" src="http://myspexp.files.wordpress.com/2010/06/clip_image031_thumb.jpg?w=506&#038;h=525" width="506" height="525" /></a></p>
<p>Select OK and you can test it now.</p>
<p>Works for me now!</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0331.jpg"><img style="display:inline;border-width:0;" title="clip_image033" border="0" alt="clip_image033" src="http://myspexp.files.wordpress.com/2010/06/clip_image033_thumb1.jpg?w=609&#038;h=427" width="609" height="427" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/433/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/433/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/433/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/433/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/433/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/433/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/433/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/433/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/433/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/433/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/433/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/433/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/433/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/433/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=433&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/setting-up-mysite-as-a-different-application-2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb7.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb7.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb2.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb2.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image009_thumb1.jpg" medium="image">
			<media:title type="html">clip_image009</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image011_thumb1.jpg" medium="image">
			<media:title type="html">clip_image011</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image013_thumb1.jpg" medium="image">
			<media:title type="html">clip_image013</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image015_thumb1.jpg" medium="image">
			<media:title type="html">clip_image015</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image017_thumb.jpg" medium="image">
			<media:title type="html">clip_image017</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image019_thumb1.jpg" medium="image">
			<media:title type="html">clip_image019</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image021_thumb1.jpg" medium="image">
			<media:title type="html">clip_image021</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image023_thumb.jpg" medium="image">
			<media:title type="html">clip_image023</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image025_thumb1.jpg" medium="image">
			<media:title type="html">clip_image025</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image027_thumb1.jpg" medium="image">
			<media:title type="html">clip_image027</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image029_thumb1.jpg" medium="image">
			<media:title type="html">clip_image029</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image031_thumb.jpg" medium="image">
			<media:title type="html">clip_image031</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image033_thumb1.jpg" medium="image">
			<media:title type="html">clip_image033</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding a Sub Domain (A Record) to your site</title>
		<link>http://myspexp.com/2010/06/14/adding-a-sub-domain-a-record-to-your-site-2/</link>
		<comments>http://myspexp.com/2010/06/14/adding-a-sub-domain-a-record-to-your-site-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:40:56 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/adding-a-sub-domain-a-record-to-your-site-2/</guid>
		<description><![CDATA[Often it is needed that you set up an A Record (or a sub domain) to your new SharePoint site, here is how you do it.&#160; I am looking to add nav.yesprep.local to access our new intranet site. · I added the A Record in DNS and pointed it to the correct IP Address. · [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=398&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Often it is needed that you set up an A Record (or a sub domain) to your new SharePoint site, here is how you do it.&#160; </p>
<p>I am looking to add nav.yesprep.local to access our new intranet site.</p>
<p>· I added the A Record in DNS and pointed it to the correct IP Address.</p>
<p>· Next you need to configure the alternate access mappings.&#160; From Central Administration, and under Application Management &gt;&gt; Web Applications &gt;&gt; Configure Alternate Access Mappings…   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0011.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image001" border="0" alt="clip_image001" src="http://myspexp.files.wordpress.com/2010/06/clip_image001_thumb1.jpg?w=895&#038;h=300" width="895" height="300" /></a></p>
<p>· Click Add Internal URLs   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image003.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image003" border="0" alt="clip_image003" src="http://myspexp.files.wordpress.com/2010/06/clip_image003_thumb.jpg?w=497&#038;h=188" width="497" height="188" /></a></p>
<p>· Now select a site collection   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image005.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image005" border="0" alt="clip_image005" src="http://myspexp.files.wordpress.com/2010/06/clip_image005_thumb.jpg?w=868&#038;h=92" width="868" height="92" /></a></p>
<p>· Select you’re A Record (sub-domain name)   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image007.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image007" border="0" alt="clip_image007" src="http://myspexp.files.wordpress.com/2010/06/clip_image007_thumb.jpg?w=868&#038;h=82" width="868" height="82" /></a></p>
<p>· For the Zone, you want to make sure this says Intranet   <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image009.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image009" border="0" alt="clip_image009" src="http://myspexp.files.wordpress.com/2010/06/clip_image009_thumb.jpg?w=104&#038;h=47" width="104" height="47" /></a></p>
<p>After everything propagates you should be all set to go.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image011.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image011" border="0" alt="clip_image011" src="http://myspexp.files.wordpress.com/2010/06/clip_image011_thumb.jpg?w=461&#038;h=283" width="461" height="283" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/398/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=398&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/adding-a-sub-domain-a-record-to-your-site-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image001_thumb1.jpg" medium="image">
			<media:title type="html">clip_image001</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image003_thumb.jpg" medium="image">
			<media:title type="html">clip_image003</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image005_thumb.jpg" medium="image">
			<media:title type="html">clip_image005</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image007_thumb.jpg" medium="image">
			<media:title type="html">clip_image007</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image009_thumb.jpg" medium="image">
			<media:title type="html">clip_image009</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image011_thumb.jpg" medium="image">
			<media:title type="html">clip_image011</media:title>
		</media:content>
	</item>
		<item>
		<title>AdventureWorks Master Page&#8230; Yes, you have it!</title>
		<link>http://myspexp.com/2010/06/14/adventureworks-master-page-yes-you-have-it-2/</link>
		<comments>http://myspexp.com/2010/06/14/adventureworks-master-page-yes-you-have-it-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:39:23 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/adventureworks-master-page-yes-you-have-it-2/</guid>
		<description><![CDATA[Over the last two weeks I have been trying to find the Adventure Works site theme… It was under my knows the whole time.&#160; I found it, and here is how.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=385&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Over the last two weeks I have been trying to find the Adventure Works site theme… It was under my knows the whole time.&#160; I found it, and here is how.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0025.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb5.jpg?w=690&#038;h=575" width="690" height="575" /></a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0045.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb5.jpg?w=1215&#038;h=864" width="1215" height="864" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/385/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=385&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/adventureworks-master-page-yes-you-have-it-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb5.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb5.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>
	</item>
		<item>
		<title>Another great developers blog.</title>
		<link>http://myspexp.com/2010/06/14/another-great-developers-blog-2/</link>
		<comments>http://myspexp.com/2010/06/14/another-great-developers-blog-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:38:26 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/another-great-developers-blog-2/</guid>
		<description><![CDATA[Here is a great friend of mine’s blog: http://mstecharchitect.blogspot.com/ I RSS his feeds every day, and I have learned a lot of LINQ, C#, and a lot of other development stuff. Please check it out!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=380&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a great friend of mine’s blog: <a href="http://mstecharchitect.blogspot.com/">http://mstecharchitect.blogspot.com/</a></p>
<p>I RSS his feeds every day, and I have learned a lot of LINQ, C#, and a lot of other development stuff. </p>
<p>Please check it out!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/380/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/380/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=380&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/another-great-developers-blog-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing projects from Team Foundation Server</title>
		<link>http://myspexp.com/2010/06/14/removing-projects-from-team-foundation-server-2/</link>
		<comments>http://myspexp.com/2010/06/14/removing-projects-from-team-foundation-server-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:37:28 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/removing-projects-from-team-foundation-server-2/</guid>
		<description><![CDATA[I am in the process of moving all of my projects from the old TFS2008 to the new TFS2010, and I am in need of removing the old projects so that none of my developers use them. To do this, first backup your TFS Database as you should have a maintenance plan for it anyway [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=379&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am in the process of moving all of my projects from the old TFS2008 to the new TFS2010, and I am in need of removing the old projects so that none of my developers use them.</p>
<p>To do this, first backup your TFS Database as you should have a maintenance plan for it anyway to backup, but be sure to double check for that.</p>
<p>Next, run navigate to the IDE location in the Command Prompt:</p>
<p>· x86 Systems – Enter: cd &quot;Program Files\Microsoft Visual Studio 9.0\Common7\IDE&quot;</p>
<p>· x64 Systems – Enter: cd &quot;Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE&quot;</p>
<p>· Type in: c:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE&gt;TFSDeleteProject.exe /server:[TFSServer] &quot;[ProjectName]&quot;   <br />For example: c:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE&gt;TFSDeleteProject.exe /server:cstfs1 &quot;Business Intelligence&quot;    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0024.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb4.jpg?w=673&#038;h=133" width="673" height="133" /></a></p>
<p>· Next you will see this message:   <br />Warning: Deleting a team project is an irrecoverable operation. All version control, work item tracking and Team Foundation build data will be destroyed from the system. The only way to recover this data is by restoring a stored backup of the databases. Are you sure you want to delete the team project and all of its data (Y/N)?</p>
<p>· Select Y if you are 100% sure you want to do this</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0044.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb4.jpg?w=672&#038;h=357" width="672" height="357" /></a></p>
<p>Done!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/379/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=379&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/removing-projects-from-team-foundation-server-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb4.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb4.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>
	</item>
		<item>
		<title>Moving a TFS 2008 Project to TFS 2010</title>
		<link>http://myspexp.com/2010/06/14/moving-a-tfs-2008-project-to-tfs-2010-2/</link>
		<comments>http://myspexp.com/2010/06/14/moving-a-tfs-2008-project-to-tfs-2010-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:36:13 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/moving-a-tfs-2008-project-to-tfs-2010-2/</guid>
		<description><![CDATA[Okay, so it’s not directly related to SharePoint, but it is related to Team Foundation Server 2010.&#160; I am in charge of our software development team, and we use to be on TFS 2008 Workgroup Edition limiting 5 users.&#160; I had to remove myself and have a few folks share a user ID because a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=374&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Okay, so it’s not directly related to SharePoint, but it is related to Team Foundation Server 2010.&#160; I am in charge of our software development team, and we use to be on TFS 2008 Workgroup Edition limiting 5 users.&#160; I had to remove myself and have a few folks share a user ID because a BI project we had (SSIS, SSRS, SSAS) was still on the 2008 TFS Server, and we have more than the 5 developers.&#160; I eventually added myself back, and decided that it is time to move projects to the new TFS2010.</p>
<p>I decided to move it all, however when I unbind, and rebind, I get the following message:</p>
<p>The solution is in a directory mapped to team server <var><a href="http://%3cOriginal_TFS_server_name%3e:%3cport">http://&lt;Original_TFS_server_name&gt;:&lt;port</a>&gt;</var>.     <br />Continuing will close the existing team server <var>Target_TFS_Server</var> and open team server <var><a href="http://%3cOriginal_TFS_Server_name%3e:%3cport%3e/">http://&lt;Original_TFS_Server_name&gt;:&lt;port&gt;/</a></var> Continue?</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0023.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb3.jpg?w=354&#038;h=208" width="354" height="208" /></a></p>
<p>Okay, this is not cool!&#160; Why would I like to re bind to the old server, and why doesn’t it give me the option to connect to the new server?</p>
<p>Answer: Because VS 2008 is looking at the old Team Foundation Cache.&#160; Here are the steps to solve this issue that will connect your old project to the new team foundation server:</p>
<p>First with your Visual Studio project open, go to File, Source Control, and Change Source Control…    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0043.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb3.jpg?w=456&#038;h=558" width="456" height="558" /></a></p>
<p>Next, unbind all of he projects…    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0061.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb1.jpg?w=559&#038;h=186" width="559" height="186" /></a></p>
<p>Continued…    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0081.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb1.jpg?w=695&#038;h=157" width="695" height="157" /></a></p>
<p>All of your projects inside of your solution should now be unbound.    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0101.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image010" border="0" alt="clip_image010" src="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb1.jpg?w=579&#038;h=194" width="579" height="194" /></a></p>
<p>Next, from the Tools Menu in Visual Studio 2008, select Connect To Team Foundation Server…    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0121.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image012" border="0" alt="clip_image012" src="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb1.jpg?w=326&#038;h=250" width="326" height="250" /></a></p>
<p>Select the new 2010 server    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0141.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image014" border="0" alt="clip_image014" src="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb1.jpg?w=367&#038;h=81" width="367" height="81" /></a></p>
<p>Close Visual Studio 2008.</p>
<p>Next, navigate in Explorer to the following path:</p>
<p>%userprofile%\AppData\Local\Microsoft\Team Foundation\2.0\Cache</p>
<p>Create a new folder called OldCache (or what ever you would like)    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0161.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image016" border="0" alt="clip_image016" src="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb1.jpg?w=497&#038;h=358" width="497" height="358" /></a></p>
<p>Move all of the files and folders from %userprofile%\AppData\Local\Microsoft\Team Foundation\2.0\Cache to the new folder you just created.    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0181.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image018" border="0" alt="clip_image018" src="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb1.jpg?w=540&#038;h=214" width="540" height="214" /></a></p>
<p>Open Visual Studio, while you are now connected to the new Team Foundation Server, open the new solution.&#160; From the File menu, select Source Control, then point to Add Solution to Source Control…    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0201.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image020" border="0" alt="clip_image020" src="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb1.jpg?w=491&#038;h=450" width="491" height="450" /></a></p>
<p>Walla, you can now connect to your 2010 projects, and add this solution to the new TFS Server.    <br /><a href="http://myspexp.files.wordpress.com/2010/06/clip_image022.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image022" border="0" alt="clip_image022" src="http://myspexp.files.wordpress.com/2010/06/clip_image022_thumb.jpg?w=478&#038;h=473" width="478" height="473" /></a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image024.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image024" border="0" alt="clip_image024" src="http://myspexp.files.wordpress.com/2010/06/clip_image024_thumb.jpg?w=951&#038;h=266" width="951" height="266" /></a></p>
<p>You can reference this link from Microsoft for more information:    <br /><a href="http://support.microsoft.com/kb/957110/en-us">http://support.microsoft.com/kb/957110/en-us</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/374/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=374&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/moving-a-tfs-2008-project-to-tfs-2010-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb3.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb3.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb1.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb1.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb1.jpg" medium="image">
			<media:title type="html">clip_image010</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb1.jpg" medium="image">
			<media:title type="html">clip_image012</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb1.jpg" medium="image">
			<media:title type="html">clip_image014</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb1.jpg" medium="image">
			<media:title type="html">clip_image016</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb1.jpg" medium="image">
			<media:title type="html">clip_image018</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb1.jpg" medium="image">
			<media:title type="html">clip_image020</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image022_thumb.jpg" medium="image">
			<media:title type="html">clip_image022</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image024_thumb.jpg" medium="image">
			<media:title type="html">clip_image024</media:title>
		</media:content>
	</item>
		<item>
		<title>Connecting Visual Studio 2008 to TFS 2010</title>
		<link>http://myspexp.com/2010/06/14/connecting-visual-studio-2008-to-tfs-2010-2/</link>
		<comments>http://myspexp.com/2010/06/14/connecting-visual-studio-2008-to-tfs-2010-2/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 03:26:57 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/connecting-visual-studio-2008-to-tfs-2010-2/</guid>
		<description><![CDATA[Though unrelated to SharePoint 2010, I felt it needed to discuss my unique findings with TFS 2010 implementation with others.  With the new TFS 2010 out, and as robust and great as it is, you still have old projects that you still need to maintain in VS2008.  The problem is getting connected to TFS 2010 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=349&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Though unrelated to SharePoint 2010, I felt it needed to discuss my unique findings with TFS 2010 implementation with others.  With the new TFS 2010 out, and as robust and great as it is, you still have old projects that you still need to maintain in VS2008.  The problem is getting connected to TFS 2010 isn’t that easy because you now have a forward slash in your path.  I will show you what I did to connect my VS2008 environment to TFS 2010 (Binding existing projects is a different story and the next blog)</p>
<p>Our Environment:</p>
<p>We have two TFS servers:</p>
<p>· CSTFS1 – Visual Studio Team Foundation Server 2008</p>
<p>· CSTFS01 – Visual Studio Team Foundation Server 2010</p>
<p>· CSDEV1 – Our Development Environment with Remote Desktop Services (Formally Terminal Services) running VS2008 (and soon 2010)</p>
<p>We tried to connect just simply, however we got the following message:</p>
<p>TF31002: Unable to connect to this Team Foundation Server: CSTFS01 Team Foundation Server URL: <a href="http://cstfs01:8080">http://cstfs01:8080</a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image001.jpg"><img style="display:inline;border:0;" title="clip_image001" src="http://myspexp.files.wordpress.com/2010/06/clip_image001_thumb.jpg?w=505&#038;h=384" border="0" alt="clip_image001" width="505" height="384" /></a></p>
<p>To resolve this:</p>
<p>· Close Visual Studio! (Any and all versions)</p>
<p>· Ensure that you are running VS 2008 with Service Pack 1</p>
<p>· Download <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=cf13ea45-d17b-4edc-8e6c-6c5b208ec54d&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=cf13ea45-d17b-4edc-8e6c-6c5b208ec54d&amp;displaylang=en</a></p>
<p>· You must specify the URL as such: <a href="http://cstfs01:8080/tfs">http://cstfs01:8080/tfs</a> (or <a href="http://[TFSServer]:8080/%5bVirtualDirectory%5d/%5bProjectCollection">http://[TFSServer]:8080/[VirtualDirectory]/[ProjectCollection</a>])</p>
<p>· Open regedit.exe and navigate to: [HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\TeamFoundation\Servers]</p>
<p>o Add this string: &#8220;cstfs01&#8243;=http://cstfs01:8080/tfs (replacing your server names with your own)</p>
<p>· Open Visual Studio 2008, and point to your new TFS Server, and select your projects.</p>
<p>I created a text file (c:\add_tfs2010.reg) with the following text, and had all of my users execute it with administrative privliges:</p>
<p><strong>Windows Registry Editor Version 5.00</strong></p>
<p><strong> </strong></p>
<p><strong>[HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\TeamFoundation\Servers]</strong></p>
<p><strong>&#8220;cstfs01&#8243;=&#8221;<a href="http://cstfs01:8080/tfs">http://cstfs01:8080/tfs</a>&#8220;</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/349/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/349/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=349&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/06/14/connecting-visual-studio-2008-to-tfs-2010-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image001_thumb.jpg" medium="image">
			<media:title type="html">clip_image001</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuration Failed when installing SP 2010 on Windows 7 (Failed Big time!)</title>
		<link>http://myspexp.com/2010/05/31/configuration-failed-when-installing-sp-2010-on-windows-7-failed-big-time-3/</link>
		<comments>http://myspexp.com/2010/05/31/configuration-failed-when-installing-sp-2010-on-windows-7-failed-big-time-3/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 03:25:53 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/configuration-failed-when-installing-sp-2010-on-windows-7-failed-big-time-3/</guid>
		<description><![CDATA[You can install SharePoint 2010 on your Windows 7 computer. In my attempt to install SharePoint 2010 on my laptop computer for development reasons, I ran into quite a few issues.&#160; But I was determined. But guess what…&#160; I was able to resolve it. The Problems! When installing SharePoint 2010 on Windows 7, even if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=346&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><b>You can install SharePoint 2010 on your Windows 7 computer.</b></p>
<p>In my attempt to install SharePoint 2010 on my laptop computer for development reasons, I ran into quite a few issues.&#160; But I was determined.</p>
<p>But guess what…&#160; I was able to resolve it.</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0022.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002" border="0" alt="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb2.jpg?w=562&#038;h=485" width="562" height="485" /></a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0042.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image004" border="0" alt="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb2.jpg?w=555&#038;h=477" width="555" height="477" /></a></p>
<p><b></b></p>
<p><b>The Problems!</b></p>
<p>When installing SharePoint 2010 on Windows 7, even if you install all of its prerequisites that it says to install, you get one of these two errors:</p>
<p><b><i>An exception of type System.IO.FileNotFoundException was thrown.&#160; Additional exception information: Could not load file or assembly &#8216;Microsoft.IdentityModel, Version 3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&#8242; or one of its dependencies.&#160; The system cannot find the file specified.</i></b></p>
<p><b></b></p>
<p><b>-OR-</b></p>
<p><b><i>An exception oftype Microsoft.SharePoint.Upgrade.SPUpgradeException was thrown. Additional exception information: Failed to call GetTypes on assembly Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c. Could not load file or assembly ‘System.Web.DataVisualition, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35’ or one of its dependencies. The system cannot find thefile specified.</i></b></p>
<p><b></b></p>
<p><b>-OR-</b></p>
<p><b></b></p>
<p><b><i>Failed to create the configuration database.</i></b><b><i></i></b></p>
<p><b><i>An exception of the type Microsoft.SharePoint.SPException was thrown.&#160; Additional exception information: User cannot be found</i></b></p>
<p><b></b></p>
<p><b>(See both possible solutions below)</b></p>
<p>Below are the steps that I took to get these errors.</p>
<p>Installed SQL Server 2008 R2,&#160; Installed SharePoint 2010 (with its prerequisites first).</p>
<p>Went to Start,&#160; SharePoint 2010 Central Administraton</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image006.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image006" border="0" alt="clip_image006" src="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb.jpg?w=466&#038;h=114" width="466" height="114" /></a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image008.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image008" border="0" alt="clip_image008" src="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb.jpg?w=470&#038;h=204" width="470" height="204" /></a></p>
<p>Clicked Yes</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image010.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image010" border="0" alt="clip_image010" src="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb.jpg?w=546&#038;h=471" width="546" height="471" /></a></p>
<p>Clicked Next</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image012.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image012" border="0" alt="clip_image012" src="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb.jpg?w=542&#038;h=226" width="542" height="226" /></a></p>
<p>WARNING: you are installing on windows vista or windows 7, which are unsupported configurations intended for use on developer workstations only.&#160; This configuration should not be used as a production environment, or host any user content.</p>
<p>Clicked OK</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image014.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image014" border="0" alt="clip_image014" src="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb.jpg?w=483&#038;h=281" width="483" height="281" /></a></p>
<p>Clicked Yes</p>
<p>You might get one of the errors below:</p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image016.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image016" border="0" alt="clip_image016" src="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb.jpg?w=604&#038;h=522" width="604" height="522" /></a></p>
<p><b><i>An exception of type System.IO.FileNotFoundException was thrown.&#160; Additional exception information: Could not load file or assembly &#8216;Microsoft.IdentityModel, Version 3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&#8242; or one of its dependencies.&#160; The system cannot find the file specified.</i></b></p>
<p>Click Finish.</p>
<p>The problem is that the Windows Identity Foundation pack was not installed.&#160; This can be fixed here: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=eb9c345f-e830-40b8-a5fe-ae7a864c4d76&amp;displaylang=en#filelist">http://www.microsoft.com/downloads/details.aspx?FamilyID=eb9c345f-e830-40b8-a5fe-ae7a864c4d76&amp;displaylang=en#filelist</a></p>
<p><b>-OR-</b></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image018.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image018" border="0" alt="clip_image018" src="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb.jpg?w=599&#038;h=517" width="599" height="517" /></a></p>
<p><b><i>An exception oftype Microsoft.SharePoint.Upgrade.SPUpgradeException was thrown. Additional exception information: Failed to call GetTypes on assembly Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c. Could not load file or assembly ‘System.Web.DataVisualition, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35’ or one of its dependencies. The system cannot find thefile specified.</i></b></p>
<p>Click Finish.</p>
<p>The problem is that the Chart Controls cannot be found, you can download them here: <a href="http://go.microsoft.com/fwlink/?LinkID=122517">http://go.microsoft.com/fwlink/?LinkID=122517</a></p>
<p><b>-OR-</b></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image020.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image020" border="0" alt="clip_image020" src="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb.jpg?w=607&#038;h=524" width="607" height="524" /></a><b></b></p>
<p><b><i>Failed to create the configuration database.An exception of the type Microsoft.SharePoint.SPException was thrown.&#160; Additional exception information: User cannot be found</i></b></p>
<p>Alright, this one is rather funny.&#160; You can get this message if you are working from home, not connected to the network via VPN.&#160; That was my case.&#160; The user just cannot be found that is part of the domain for creating the SQL Server connection.</p>
<p><b><i>SUCCESS!!!</i></b></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image00211.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="clip_image002[1]" border="0" alt="clip_image002[1]" src="http://myspexp.files.wordpress.com/2010/06/clip_image0021_thumb.jpg?w=603&#038;h=521" width="603" height="521" /></a><b><i></i></b></p>
<p>That all worked for me, hope it works for you!</p>
<p>If you have more errors, then you can follow this: <a href="http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx">http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx</a>, however some of the links are broken.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/346/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/346/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/346/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=346&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/05/31/configuration-failed-when-installing-sp-2010-on-windows-7-failed-big-time-3/feed/</wfw:commentRss>
		<slash:comments>47</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb2.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb2.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image006_thumb.jpg" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image008_thumb.jpg" medium="image">
			<media:title type="html">clip_image008</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image010_thumb.jpg" medium="image">
			<media:title type="html">clip_image010</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image012_thumb.jpg" medium="image">
			<media:title type="html">clip_image012</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image014_thumb.jpg" medium="image">
			<media:title type="html">clip_image014</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image016_thumb.jpg" medium="image">
			<media:title type="html">clip_image016</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image018_thumb.jpg" medium="image">
			<media:title type="html">clip_image018</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image020_thumb.jpg" medium="image">
			<media:title type="html">clip_image020</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image0021_thumb.jpg" medium="image">
			<media:title type="html">clip_image002[1]</media:title>
		</media:content>
	</item>
		<item>
		<title>My Project!</title>
		<link>http://myspexp.com/2010/05/31/my-project-2/</link>
		<comments>http://myspexp.com/2010/05/31/my-project-2/#comments</comments>
		<pubDate>Mon, 31 May 2010 01:52:33 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">http://myspexp.com/2010/05/31/my-project-2/</guid>
		<description><![CDATA[So, I have a project that I am working on, and I felt because there is always a lack of documentation out there for SharePoint (especially 2010) I felt that I should publish my own blog as I go. I will be posting all of my content here. I am moving our Intranet system from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=18&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, I have a project that I am working on, and I felt because there is always a lack of documentation out there for SharePoint (especially 2010) I felt that I should publish my own blog as I go. I will be posting all of my content here. I am moving our Intranet system from SharePoint 2007 to SharePoint 2010. We are starting fresh, I will be building a series of applications to move old content to our new site, however the site map will change a little bit, so there will be quite a few challenges.</p>
<p>I will also be adding my own branding, so as I work on our intranet site, getting it all up and done, I hope to help you out with yours by posting my experiences.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=18&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/05/31/my-project-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome to MySPExp (Experience)</title>
		<link>http://myspexp.com/2010/05/31/welcome-to-myspexp-experience/</link>
		<comments>http://myspexp.com/2010/05/31/welcome-to-myspexp-experience/#comments</comments>
		<pubDate>Mon, 31 May 2010 01:23:40 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">http://myspexp.com/?p=9</guid>
		<description><![CDATA[Hello all, Welcome to one of my blogs talking about my SharePoint Experiences.  I am planning on posting all of my experience and tools in my SharePoint Development here.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=9&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello all,</p>
<p>Welcome to one of my blogs talking about my SharePoint Experiences.  I am planning on posting all of my experience and tools in my SharePoint Development here.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=9&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/05/31/welcome-to-myspexp-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>
	</item>
		<item>
		<title>Centering the body of SharePoint 2010 in a fixed width</title>
		<link>http://myspexp.com/2010/05/30/centering-the-body-of-sharepoint-2010-in-a-fixed-width-3/</link>
		<comments>http://myspexp.com/2010/05/30/centering-the-body-of-sharepoint-2010-in-a-fixed-width-3/#comments</comments>
		<pubDate>Sun, 30 May 2010 05:06:00 +0000</pubDate>
		<dc:creator>Bill Daugherty II</dc:creator>
				<category><![CDATA[SharePoint or Custom Development]]></category>

		<guid isPermaLink="false">https://myspexp.wordpress.com/2010/06/14/centering-the-body-of-sharepoint-2010-in-a-fixed-width-3/</guid>
		<description><![CDATA[Here is how to center the width of the body in SharePoint 2010, you use the nosetwidth class for the workspace. &#60;div id=&#8221;s4-workspace&#8221; class=&#8221;s4-nosetwidth&#8221; style=&#8221;position:relative; width:1024px; margin-right:auto; margin-left:auto; background:white;&#8221;&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=293&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is how to center the width of the body in SharePoint 2010, you use the nosetwidth class for the workspace.</p>
<p><strong>&lt;div id=&#8221;s4-workspace&#8221; class=&#8221;s4-nosetwidth&#8221; style=&#8221;position:relative; width:1024px; margin-right:auto; margin-left:auto; background:white;&#8221;&gt;</strong></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0021.jpg"><img style="display:inline;border-width:0;" title="clip_image002" src="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb1.jpg?w=593&#038;h=169" border="0" alt="clip_image002" width="593" height="169" /></a></p>
<p><a href="http://myspexp.files.wordpress.com/2010/06/clip_image0041.jpg"><img style="display:inline;border-width:0;" title="clip_image004" src="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb1.jpg?w=591&#038;h=276" border="0" alt="clip_image004" width="591" height="276" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/myspexp.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/myspexp.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/myspexp.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/myspexp.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/myspexp.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/myspexp.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/myspexp.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/myspexp.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/myspexp.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/myspexp.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/myspexp.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/myspexp.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/myspexp.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/myspexp.wordpress.com/293/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myspexp.com&amp;blog=13946457&amp;post=293&amp;subd=myspexp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myspexp.com/2010/05/30/centering-the-body-of-sharepoint-2010-in-a-fixed-width-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/25550c320ca01cdd9adb37ee20da0716?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">billsecond22</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image002_thumb1.jpg" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://myspexp.files.wordpress.com/2010/06/clip_image004_thumb1.jpg" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>
	</item>
	</channel>
</rss>
