<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>WebARJ</title>
	<atom:link href="http://webarj.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webarj.wordpress.com</link>
	<description>Delving into SharePoint 2007</description>
	<lastBuildDate>Thu, 06 Nov 2008 04:52:02 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='webarj.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/b102102112a44ba7e670495569d807b5?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>WebARJ</title>
		<link>http://webarj.wordpress.com</link>
	</image>
			<item>
		<title>Code Snippet: Calculating the first date of the week for a given date &amp; a given week start</title>
		<link>http://webarj.wordpress.com/2008/11/06/code-snippet-calculating-the-first-date-of-the-week-for-a-given-date-a-given-week-start/</link>
		<comments>http://webarj.wordpress.com/2008/11/06/code-snippet-calculating-the-first-date-of-the-week-for-a-given-date-a-given-week-start/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 04:52:02 +0000</pubDate>
		<dc:creator>Andrea Roceal James</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://webarj.wordpress.com/?p=17</guid>
		<description><![CDATA[I know I&#8217;m going to need to use this again at some point &#38; it took me an hour and a half to figure this one out. I can&#8217;t believe .NET 2.0 doesn&#8217;t have a built-in method to do this&#8230;?

// C#
public DateTime GetStartOfWeek(DateTime date, DayOfWeek WeekStartDay) {
double daysToStart = (Convert.ToDouble(today.DayOfWeek) - Convert.ToDouble(WeekStartDay) + 7) % [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=17&subd=webarj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I know I&#8217;m going to need to use this again at some point &amp; it took me an hour and a half to figure this one out. I can&#8217;t believe .NET 2.0 doesn&#8217;t have a built-in method to do this&#8230;?</p>
<p><code><br />
// C#<br />
public DateTime GetStartOfWeek(DateTime date, DayOfWeek WeekStartDay) {<br />
double daysToStart = (Convert.ToDouble(today.DayOfWeek) - Convert.ToDouble(WeekStartDay) + 7) % 7;<br />
DateTime weekStartDate = date.AddDays(0 - daysToStart);<br />
return weekStartDate;<br />
}<br />
</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webarj.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webarj.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webarj.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webarj.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webarj.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webarj.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webarj.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webarj.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webarj.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webarj.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=17&subd=webarj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://webarj.wordpress.com/2008/11/06/code-snippet-calculating-the-first-date-of-the-week-for-a-given-date-a-given-week-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b079729e9c70b81396452bbe0c50b6eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Andrea Roceal James</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Admin Tip: starting the Windows Services Web Application Service</title>
		<link>http://webarj.wordpress.com/2007/10/17/sharepoint-admin-tip-starting-the-windows-services-web-application-service/</link>
		<comments>http://webarj.wordpress.com/2007/10/17/sharepoint-admin-tip-starting-the-windows-services-web-application-service/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 07:40:05 +0000</pubDate>
		<dc:creator>Andrea Roceal James</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://webarj.wordpress.com/2007/10/17/sharepoint-admin-tip-starting-the-windows-services-web-application-service/</guid>
		<description><![CDATA[I reconnected a disconnected server to a SharePoint farm, and after the Configuration Wizard finished running, I checked the Services on Server page to verify that everything was OK and start up the Search and Excel services. Much to my consternation, the &#8220;Window SharePoint Services Web Application&#8221; service was stuck on &#8220;Starting&#8221; and none of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=15&subd=webarj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I reconnected a disconnected server to a SharePoint farm, and after the Configuration Wizard finished running, I checked the Services on Server page to verify that everything was OK and start up the Search and Excel services. Much to my consternation, the &#8220;Window SharePoint Services Web Application&#8221; service was stuck on &#8220;Starting&#8221; and none of my web applications had appeared in IIS. Argh.</p>
<p><a href="http://blogs.msdn.com/joelo/archive/2006/07/11/microsoft-it-upgrade-learnings.aspx">Fortunately, Joel Oleson&#8217;s blog came to the rescue</a>. The correct stsadm command to use to force this sucker to start is:</p>
<blockquote><p>stsadm -o provisionservice -action start -servicetype SPWebService</p></blockquote>
<p>It took a while for the command to complete, but that seemed to fix everything up nicely.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/webarj.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/webarj.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webarj.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webarj.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webarj.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webarj.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webarj.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webarj.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webarj.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webarj.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webarj.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webarj.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=15&subd=webarj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://webarj.wordpress.com/2007/10/17/sharepoint-admin-tip-starting-the-windows-services-web-application-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b079729e9c70b81396452bbe0c50b6eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Andrea Roceal James</media:title>
		</media:content>
	</item>
		<item>
		<title>Bookmarked for Future Reading: Content Deployment Deep Dive</title>
		<link>http://webarj.wordpress.com/2007/09/04/bookmarked-for-future-reading-content-deployment-deep-dive/</link>
		<comments>http://webarj.wordpress.com/2007/09/04/bookmarked-for-future-reading-content-deployment-deep-dive/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 06:45:06 +0000</pubDate>
		<dc:creator>Andrea Roceal James</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://webarj.wordpress.com/2007/09/04/bookmarked-for-future-reading-content-deployment-deep-dive/</guid>
		<description><![CDATA[I know I&#8217;m going to need to read this shortly:
 Deep Dive into the SharePoint Content Deployment and Migration API &#8211; Part 1
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=12&subd=webarj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I know I&#8217;m going to need to read this shortly:</p>
<blockquote><p><a href="http://blogs.technet.com/stefan_gossner/archive/2007/08/30/deep-dive-into-the-sharepoint-content-deployment-and-migration-api-part-1.aspx"> Deep Dive into the SharePoint Content Deployment and Migration API &#8211; Part 1</a></p></blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/webarj.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/webarj.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webarj.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webarj.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webarj.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webarj.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webarj.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webarj.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webarj.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webarj.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webarj.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webarj.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=12&subd=webarj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://webarj.wordpress.com/2007/09/04/bookmarked-for-future-reading-content-deployment-deep-dive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b079729e9c70b81396452bbe0c50b6eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Andrea Roceal James</media:title>
		</media:content>
	</item>
		<item>
		<title>Using WSE in SharePoint Context</title>
		<link>http://webarj.wordpress.com/2007/08/22/using-wse-in-sharepoint-context/</link>
		<comments>http://webarj.wordpress.com/2007/08/22/using-wse-in-sharepoint-context/#comments</comments>
		<pubDate>Wed, 22 Aug 2007 04:35:44 +0000</pubDate>
		<dc:creator>Andrea Roceal James</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://webarj.wordpress.com/2007/08/22/using-wse-in-sharepoint-context/</guid>
		<description><![CDATA[I am currently working on integrating some existing ASP.NET forms into the /_layouts/ folder in SharePoint as they will need to run in SharePoint context. These forms call web services using Microsoft&#8217;s Web Services Enhancements add-on. The add-on creates a config file with the WSE settings for your project, but it needs to be stored [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=10&subd=webarj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I am currently working on integrating some existing ASP.NET forms into the /_layouts/ folder in SharePoint as they will need to run in SharePoint context. These forms call web services using Microsoft&#8217;s <a href="http://msdn2.microsoft.com/en-us/webservices/Aa740663.aspx">Web Services Enhancements add-on</a>. The add-on creates a config file with the WSE settings for your project, but it needs to be stored in the root of the web application, so you need to make sure to put a copy of this config file in the web root of the SharePoint site (e.g. c:\Inetpub\wwwroot\wss\VirtualDirectories\&lt;site&gt;).</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/webarj.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/webarj.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webarj.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webarj.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webarj.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webarj.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webarj.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webarj.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webarj.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webarj.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webarj.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webarj.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=10&subd=webarj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://webarj.wordpress.com/2007/08/22/using-wse-in-sharepoint-context/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b079729e9c70b81396452bbe0c50b6eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Andrea Roceal James</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating ASP.NET pages that run in a SharePoint site context</title>
		<link>http://webarj.wordpress.com/2007/08/17/creating-aspnet-pages-that-run-in-a-sharepoint-site-context/</link>
		<comments>http://webarj.wordpress.com/2007/08/17/creating-aspnet-pages-that-run-in-a-sharepoint-site-context/#comments</comments>
		<pubDate>Fri, 17 Aug 2007 03:03:03 +0000</pubDate>
		<dc:creator>Andrea Roceal James</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://webarj.wordpress.com/2007/08/17/creating-aspnet-pages-that-run-in-a-sharepoint-site-context/</guid>
		<description><![CDATA[Because I keep losing this link &#38; keep needing to perform 800 searches to find it again, I am bookmarking it here:
SharePoint 2007 &#8211; /_layouts and how to create pages that run in site context &#8211; Serge van den Oever
It is also a very useful link if you are doing any kind of custom development [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=9&subd=webarj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Because I keep losing this link &amp; keep needing to perform 800 searches to find it again, I am bookmarking it here:</p>
<p><a href="http://weblogs.asp.net/soever/archive/2006/11/09/SharePoint-2007-_2D00_-_2F005F00_layouts-and-how-to-create-pages-that-run-in-site-context.aspx">SharePoint 2007 &#8211; /_layouts and how to create pages that run in site context</a> &#8211; Serge van den Oever</p>
<p>It is also a very useful link if you are doing any kind of custom development that requires a custom &#8220;settings&#8221; type page (for instance, if you are writing a custom workflow without InfoPath to handle the forms).</p>
<p>I also found that you may need to <a href="http://go.microsoft.com/fwlink/?LinkId=73863">install a hotfix</a> on your Windows 2003 VPC in order to install SP1 for Visual Studio in order to get the <a href="http://msdn2.microsoft.com/en-us/asp.net/Aa336618.aspx">web application project type</a> mentioned in that blog post. The hard way. After wasting many valuable hours.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/webarj.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/webarj.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webarj.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webarj.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webarj.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webarj.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webarj.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webarj.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webarj.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webarj.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webarj.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webarj.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=9&subd=webarj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://webarj.wordpress.com/2007/08/17/creating-aspnet-pages-that-run-in-a-sharepoint-site-context/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b079729e9c70b81396452bbe0c50b6eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Andrea Roceal James</media:title>
		</media:content>
	</item>
		<item>
		<title>Online Map Technologies</title>
		<link>http://webarj.wordpress.com/2007/08/12/online-map-technologies/</link>
		<comments>http://webarj.wordpress.com/2007/08/12/online-map-technologies/#comments</comments>
		<pubDate>Sun, 12 Aug 2007 02:10:47 +0000</pubDate>
		<dc:creator>Andrea Roceal James</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://webarj.wordpress.com/2007/08/12/online-map-technologies/</guid>
		<description><![CDATA[The current web site project I&#8217;m on has a requirement around using live maps for showing location information. On my last day at TechEd I sat in on a session on Virtual Earth so I could get a better idea of the technology and compare it with what I knew about Google Maps. It was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=8&subd=webarj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The current web site project I&#8217;m on has a requirement around using live maps for showing location information. On my last day at TechEd I sat in on a session on <a href="http://www.microsoft.com/virtualearth/overview.mspx">Virtual Earth</a> so I could get a better idea of the technology and compare it with what I knew about <a href="http://www.google.com/apis/maps/index.html">Google Maps</a>. It was a very nicely done demo, and also included integration with other Live technologies, like messaging. It seemed like a very straightforward JavaScript library with a pile of useful features. Pulling together a quick POC for either platform for a proper comparison should be a snap.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/webarj.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/webarj.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webarj.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webarj.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webarj.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webarj.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webarj.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webarj.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webarj.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webarj.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webarj.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webarj.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=8&subd=webarj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://webarj.wordpress.com/2007/08/12/online-map-technologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b079729e9c70b81396452bbe0c50b6eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Andrea Roceal James</media:title>
		</media:content>
	</item>
		<item>
		<title>Workflow Tip</title>
		<link>http://webarj.wordpress.com/2007/08/09/workflow-tip/</link>
		<comments>http://webarj.wordpress.com/2007/08/09/workflow-tip/#comments</comments>
		<pubDate>Thu, 09 Aug 2007 06:59:40 +0000</pubDate>
		<dc:creator>Andrea Roceal James</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://webarj.wordpress.com/2007/08/09/workflow-tip/</guid>
		<description><![CDATA[Mick Badran reckons that you should always be developing workflows based on WF that are state machine based instead of sequential workflows. Since I&#8217;ve never done a state machine workflow, I&#8217;ll need to investigate them more and find out what the major advantages are; I think the main thing would be flexibility &#38; extensibility of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=7&subd=webarj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://blogs.breezetraining.com.au/mickb/">Mick Badran</a> reckons that you should always be developing workflows based on <a href="http://wf.netfx3.com/">WF </a>that are state machine based instead of sequential workflows. Since I&#8217;ve never done a state machine workflow, I&#8217;ll need to investigate them more and find out what the major advantages are; I think the main thing would be flexibility &amp; extensibility of the workflow. Google is indicating I might want to start <a href="http://www.microsoft.com/belux/msdn/nl/community/columns/kurtclaeys/wf.mspx">here</a> and <a href="http://www.odetocode.com/Articles/460.aspx">here</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/webarj.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/webarj.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webarj.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webarj.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webarj.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webarj.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webarj.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webarj.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webarj.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webarj.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webarj.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webarj.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=7&subd=webarj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://webarj.wordpress.com/2007/08/09/workflow-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b079729e9c70b81396452bbe0c50b6eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Andrea Roceal James</media:title>
		</media:content>
	</item>
		<item>
		<title>Non-SharePoint Stuff</title>
		<link>http://webarj.wordpress.com/2007/08/09/non-sharepoint-stuff/</link>
		<comments>http://webarj.wordpress.com/2007/08/09/non-sharepoint-stuff/#comments</comments>
		<pubDate>Thu, 09 Aug 2007 02:29:25 +0000</pubDate>
		<dc:creator>Andrea Roceal James</dc:creator>
				<category><![CDATA[TechEd 2007]]></category>

		<guid isPermaLink="false">http://webarj.wordpress.com/2007/08/09/non-sharepoint-stuff/</guid>
		<description><![CDATA[TechEd has been a good opportunity to pop my head up out of the Sea of SharePoint and check out some of the interesting new/other technologies coming out from Microsoft. Since the conference this year has been not as SharePoint centric now that 2007 is an established product, there have been plenty of opportunities to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=6&subd=webarj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>TechEd has been a good opportunity to pop my head up out of the Sea of SharePoint and check out some of the interesting new/other technologies coming out from Microsoft. Since the conference this year has been not as SharePoint centric now that 2007 is an established product, there have been plenty of opportunities to have a look at all kinds of stuff. Here&#8217;s a quick overview of things I wouldn&#8217;t mind checking out in my free (ha! yeah, right) time.</p>
<ul>
<li><a href="http://msdn2.microsoft.com/en-us/netframework/aa904594.aspx">LINQ</a><br />
Extends the .NET framework for easy data query &amp; transformation operations in a functional programming type approach. LINQ will be integrated into Visual Studio 2008, but you can use it now. I also found this very nifty <a href="http://www.codeplex.com/LINQtoSharePoint/">LINQ to SharePoint provider</a> on CodePlex that I will need to check out (could it be the end of having to manually compose CAML? Oh I hope so)!</li>
<li><a href="http://quickstarts.asp.net/Futures/dynamicdatacontrols/default.aspx">Dynamic Data Controls</a><br />
This ASP.NET library provides a set of web controls that bind to data sources and cut out a lot of the typical, repetitive drudgery of setting up a rich, data-driven web application with data listings, views, insert, update &amp; delete operations &amp; UI. And, even better, combine them with LINQ for some really simple, clean, maintainable code. We got a demo of the library that will be ready in the August ASP.NET futures download.</li>
<li><a href="http://wpf.netfx3.com/">WPF/XAML</a><br />
The Windows Presentation Foundation is a framework for developing rich applications using a declarative XML format (XAML) to control UI, and .NET managed code to handle the business logic/functionality. Having seen the demos, I think XAML is what XHTML should be! Well formed and with tons of functionality (like, *gasp* columns!). Better still, WPF applications will be able to work as web applications as well as Windows client applications.</li>
</ul>
<p>Veerrry interesting&#8230; Is it especially geeky of me to contemplate chucking a sickie just so I can play around with new development technologies?</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/webarj.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/webarj.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webarj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webarj.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webarj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webarj.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webarj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webarj.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webarj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webarj.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webarj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webarj.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=6&subd=webarj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://webarj.wordpress.com/2007/08/09/non-sharepoint-stuff/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b079729e9c70b81396452bbe0c50b6eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Andrea Roceal James</media:title>
		</media:content>
	</item>
		<item>
		<title>Feature Stapling &#8211; the Best Thing Since Sliced Bread</title>
		<link>http://webarj.wordpress.com/2007/08/08/feature-stapling-the-best-thing-since-sliced-bread/</link>
		<comments>http://webarj.wordpress.com/2007/08/08/feature-stapling-the-best-thing-since-sliced-bread/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 07:37:14 +0000</pubDate>
		<dc:creator>Andrea Roceal James</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://webarj.wordpress.com/2007/08/08/feature-stapling-the-best-thing-since-sliced-bread/</guid>
		<description><![CDATA[OK, that may be a mild exaggeration, but the best thing I learned today was in a session co-presented by SharePoint genius, and my co-worker, Ishai Sagi.
If you don&#8217;t know how SharePoint Features work, take a quick look at the SDK as it can explain it far better than I can. Essentially what feature stapling [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=5&subd=webarj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>OK, that may be a mild exaggeration, but the best thing I learned today was in a session co-presented by SharePoint genius, and my co-worker, <a href="http://www.sharepoint-tips.com/" title="Ishai's blog - SharePoint Tips &amp; Tricks">Ishai Sagi</a>.</p>
<p>If you don&#8217;t know how SharePoint Features work, take a <a href="http://msdn2.microsoft.com/en-us/library/ms460318.aspx">quick look at the SDK</a> as it can explain it far better than I can. Essentially what feature stapling allows you to do is piggyback features into a specific existing site definition without actually altering that site definition. Since you can implement just about any type of SharePoint functionality as a feature, including creating lists, content types, content, changing site settings, adding UI elements, and so on, that means you can easily customise out of the box site definitions.</p>
<p>SHEESH! I wish I had payed more attention to this six months ago&#8211; it would have saved me so many headaches.</p>
<p>I did a quick search and found this very thorough <a href="http://blogs.msdn.com/cjohnson/archive/2006/11/01/feature-stapling-in-wss-v3.aspx">blog post by Chris Johnson</a> from November last year that covers how to do it. A big thank you to Ishai and Milan Gross for introducing this concept to me.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/webarj.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/webarj.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webarj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webarj.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webarj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webarj.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webarj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webarj.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webarj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webarj.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webarj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webarj.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=5&subd=webarj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://webarj.wordpress.com/2007/08/08/feature-stapling-the-best-thing-since-sliced-bread/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b079729e9c70b81396452bbe0c50b6eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Andrea Roceal James</media:title>
		</media:content>
	</item>
		<item>
		<title>Meta meta: Liveblogging the Bloggers Lunch at TechEd 2007</title>
		<link>http://webarj.wordpress.com/2007/08/08/meta-meta-liveblogging-the-bloggers-lunch-at-teched-2007/</link>
		<comments>http://webarj.wordpress.com/2007/08/08/meta-meta-liveblogging-the-bloggers-lunch-at-teched-2007/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 07:21:34 +0000</pubDate>
		<dc:creator>Andrea Roceal James</dc:creator>
				<category><![CDATA[TechEd 2007]]></category>

		<guid isPermaLink="false">http://webarj.wordpress.com/2007/08/08/meta-meta-liveblogging-the-bloggers-lunch-at-teched-2007/</guid>
		<description><![CDATA[Our illustrious panel consists of:

Phil Sim
Michael Platt
Darren Neimke
Jane O&#8217;Connell (can&#8217;t find a better link?)
 Des Walsh

Caution: rambling on will get you whistled at by our illustrious moderator Frank.
Mental note: eating salad &#38; liveblogging do not work well together.
Disclaimer: words in this blog entry are paraphrased versions of the author&#8217;s impressions and may not so accurately [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=4&subd=webarj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Our illustrious panel consists of:</p>
<ul>
<li><a href="http://squash.wordpress.com/" title="Squash">Phil Sim</a></li>
<li><a href="http://michaelplatt.net/blogs/architecture/default.aspx">Michael Platt</a></li>
<li><a href="http://markitup.com/">Darren Neimke</a></li>
<li><a href="http://help.ninemsn.com.au/support/releases/networkdirector_150702.asp">Jane O&#8217;Connell</a> (can&#8217;t find a better link?)</li>
<li> <a href="http://www.deswalsh.com/">Des Walsh</a></li>
</ul>
<p>Caution: rambling on will get you whistled at by our illustrious moderator Frank.</p>
<p>Mental note: eating salad &amp; liveblogging do not work well together.</p>
<p>Disclaimer: words in this blog entry are paraphrased versions of the author&#8217;s impressions and may not so accurately reflect the speaker&#8217;s intent. Please don&#8217;t get mad at the panel members for something I wrote here! I was trying to eat lunch, listen, and blog at the same time &amp; I could have misinterpreted or been lazy typing stuff down.</p>
<hr />
<h2>Question: What is the value of blogging?</h2>
<p>Phil: Depends on how much time you put into it. The best form of social networking.</p>
<p>Darren: Access to people within Microsoft &amp; get insider thoughts. Conversations are good &#8211; swarming over problems.</p>
<p>Des: Business opportunities, especially for small businesses. The case for utility of blogging has been made.</p>
<p>Jane: Passion, grass roots expertise. Tapping into sentiments to generate content.</p>
<p>Michael: A diary, a resume. Transparency. Provides an insight into decision making process. Channel for feedback to cut down on stupid decisions.</p>
<h2>Question: How do you handle the information overload?</h2>
<p>Phil: That&#8217;s half the problem.</p>
<p>Darren: Web application are tools that I can use when I need to&#8211; I can choose which to use to help manage info.</p>
<p>Des: Gets a bit overwhelmed, but you don&#8217;t have to use them all.</p>
<p>Jane: Agreed.</p>
<p>Michael: Information overload is getting worse, but there&#8217;s an opportunities for tools to allow you to find what you want. We are just starting to scratch the surface of search &amp; info navigation.</p>
<h2>Question:  How do you manage censorship?</h2>
<p>Jane: We&#8217;re not moderating internally, but we have to pre-moderate before we publish to prevent libel. It&#8217;s a bit different to blogging, more commentary.  &#8220;I think the web provides a platform for lunatics.&#8221;</p>
<p>Michael: &#8220;Blog smart&#8221;. We don&#8217;t have censorship, but there are times when it doesn&#8217;t work.</p>
<h2>Question: Where do you see the line between blogging &amp; &#8220;proper&#8221; journalism?</h2>
<p>Jane: Blogging is unpolished, stream of consciousness, e.g. &#8220;Reality TV&#8221; vs. something structured, polished, e.g. &#8220;Produced TV&#8221;. Blogging is prolific &amp; has access to places where journos can&#8217;t reach.</p>
<p>Phil: It&#8217;s pointless to make a distinction; it&#8217;s more about professionals vs. amateurs.</p>
<p>Des: More important to have a comment button, even if it&#8217;s a professional journalist.</p>
<p>Jane: Blogging allows you to know your audience.</p>
<h2>Question: Can you tell me what Web 2.0 is? Is your web application compatible? What&#8217;s a layman definition?</h2>
<p>Phil: It&#8217;s not about a product/offering, it&#8217;s a tipping point/period in time. Can&#8217;t label a web site as 2.0 or 1.0</p>
<p>Darren: It&#8217;s a site that you get a &#8220;feeling&#8221; from &#8211; colour thing, name thing. An excitement.</p>
<p>Frank: &#8220;Is the Delicate Genius blog Web 2.0?&#8221; &#8220;Yes&#8221; HUG!</p>
<p>Des: Technology more readily available to make it easier to develop web sites with participation/interaction with consumers.</p>
<p>Jane: The stuff that helps you use the web better/interact.</p>
<p>Michael: The social aspect, technology affecting society. Using the web in ways we haven&#8217;t thought of before. Ideas around privacy &amp; property changing.</p>
<h2>Question: &lt;Waffling on about privacy &amp; anonymous blogging&gt;</h2>
<p>Des: Dick Smith case about an anonymous commenter badmouthing him. Court cases about anonymous commenting.</p>
<p>Darren: Content management problem.</p>
<p>Phil: Start putting together dirt files on uni students on Facebook/MySpace and use against them after they become famous.</p>
<p>Frank: Russian mail order brides on MySpace &#8211; Russian Mafia</p>
<h2>Question: How much is the law playing into blogging?</h2>
<p>Michael: Former employees blogging about company they just left: issues around accountability of companies so they can&#8217;t do dodgy things quietly. International law &amp; trying to control what&#8217;s on the internet. We could learn from China &amp; the way they control the internet.</p>
<p>- The End -</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/webarj.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/webarj.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webarj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webarj.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webarj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webarj.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webarj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webarj.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webarj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webarj.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webarj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webarj.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webarj.wordpress.com&blog=917752&post=4&subd=webarj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://webarj.wordpress.com/2007/08/08/meta-meta-liveblogging-the-bloggers-lunch-at-teched-2007/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b079729e9c70b81396452bbe0c50b6eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Andrea Roceal James</media:title>
		</media:content>
	</item>
	</channel>
</rss>