<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>BillCan's Place</title><link>http://blogs.technet.com/b/billcan/</link><description>Life at Microsoft</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>Using an F5 Load Balancer as an NLS server for DirectAccess</title><link>http://blogs.technet.com/b/billcan/archive/2013/04/26/using-an-f5-load-balancer-as-an-nls-server-for-directaccess.aspx</link><pubDate>Fri, 26 Apr 2013 14:21:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3569295</guid><dc:creator>MUTiger86</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.technet.com/b/billcan/rsscomments.aspx?WeblogPostID=3569295</wfw:commentRss><comments>http://blogs.technet.com/b/billcan/archive/2013/04/26/using-an-f5-load-balancer-as-an-nls-server-for-directaccess.aspx#comments</comments><description>&lt;p&gt;I was working on a deployment of DirectAccess for a company and of course how to deploy NLS came up.&amp;nbsp; Obviously it is important that the NLS servers always be available, so the&amp;nbsp;plan was to create two virtual IIS servers and put them behind their internal F5 load balancers.&amp;nbsp; This would allow them to take down one of the NLS servers for patching while the other stayed up, and provided the high-availability that they needed.&lt;/p&gt;
&lt;p&gt;However, this got me thinking about what a waste it was to have to provision and operate these two servers that basically did nothing but respond to HTTPS requests once in a while for DA.&amp;nbsp; We considered using other servers that were already in place but we were concerned that overloading them with NLS functionality was risky, especially if the web team needed to do major upgrades on the apps on those servers and took a full outage.&lt;/p&gt;
&lt;p&gt;Then it struck me that the ultimate solution would be to have the F5 load balancers themselves provide the NLS service.&amp;nbsp; This had many advantages:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The F5s were already in a high-availability pair&lt;/li&gt;
&lt;li&gt;As networking gear, there were monitored very closely&lt;/li&gt;
&lt;li&gt;There was almost no situation where both load balancers would need to be taken down at the same time&lt;/li&gt;
&lt;li&gt;They have the ability to terminate SSL sessions&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Having worked for a while on the Xbox Live team, I called one of my buddies on the networking team and explained the situation and what I was trying to do.&amp;nbsp; He suggested that it would be easy with an irule.&amp;nbsp; An irule is a bit of customization that you can apply to a VIP on an F5.&amp;nbsp; I'm sure that irules can do many different things, but one of the things they can do is respond to HTTP or HTTPS requests.&amp;nbsp; I believe this is primarily used to allow the F5s to redirect users to a maintenance page with the servers behind them are down for maintenance.&amp;nbsp; Whatever irules were intended to do, I was pretty sure that they would be able to do what I needed them to, so it was just a matter of getting the configuration right and testing it.&lt;/p&gt;
&lt;p&gt;I grabbed an evaluation copy of the F5 virtual load balancer and went to work.&amp;nbsp; At the time, the hardest part was getting the certificate deployed onto the load balancer,&amp;nbsp;but after a little wrangling I got it to work. &amp;nbsp;(BTW, I believe that this has gotten a lot easier in new version of the software.) &amp;nbsp;After that, I set up the VIP,&amp;nbsp;configured it to use the certificate and terminate SSL on the load balancers, whipped up an&amp;nbsp;irule that responded with a tiny bit of HTML and a 200 response code and applied the irule to the VIP.&lt;/p&gt;
&lt;p&gt;To test things, I first&amp;nbsp;hit the VIP with a request from IE and viola! it responded just as expected.&amp;nbsp; Hooray!&amp;nbsp; So then, feeling cocky,&amp;nbsp;I updated my HOSTS file to use the new VIP as my NLS server on my DA client and of course it didn't work.&amp;nbsp; I was very puzzled since IE thought it was great but DA didn't.&amp;nbsp; After a little back and forth with one of the DA gurus at Microsoft, we got to the bottom of the problem: the content type tag in my HTTP response was not exactly correct.&amp;nbsp; I had not put in a hyphen between Content and Type.&amp;nbsp; Apparently, the DA client used a much less forgiving HTTP library than IE, so while IE would ignore this problem and assume the proper content type, the DA client was choking on what it saw as a malformed HTTP response.&amp;nbsp; Anyway, we fixed the irule by changing a space to&amp;nbsp;a hyphen and it all started working.&lt;/p&gt;
&lt;p&gt;For those of you wondering, here is the irule in all its glory:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier; font-size: x-small;"&gt;when HTTP_REQUEST {&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier; font-size: x-small;"&gt;&amp;nbsp;log local0. "Request for NLS service"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new,courier; font-size: x-small;"&gt;&amp;nbsp;HTTP::respond 200 content "&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;Network Locator Service&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;&amp;lt;h2&amp;gt;You are connected to the intranet.&amp;lt;/h2&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;" "Content-Type" "text/html"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new,courier; font-size: x-small;"&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Anyway, this arrangement met the needs of the client, saved them two Windows license (sorry, Microsoft!) and left them with two less servers to worry about.&amp;nbsp; In the end I'd say it was a win!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3569295" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/b/billcan/archive/tags/Security/">Security</category></item><item><title>Me and my Verizon Jetpack 4G LTE access point</title><link>http://blogs.technet.com/b/billcan/archive/2013/04/03/me-and-my-verizon-jetpack-4g-lte-access-point.aspx</link><pubDate>Wed, 03 Apr 2013 16:11:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3563090</guid><dc:creator>MUTiger86</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.technet.com/b/billcan/rsscomments.aspx?WeblogPostID=3563090</wfw:commentRss><comments>http://blogs.technet.com/b/billcan/archive/2013/04/03/me-and-my-verizon-jetpack-4g-lte-access-point.aspx#comments</comments><description>&lt;p&gt;Recently, I got rid of my Sprint 3G/4G Overdrive access point and replaced it with a Verizon Jetpack 4G LTE access point.&amp;nbsp; This thing is really fast and seems to get great coverage in a lot of place.&amp;nbsp; However, the other day I started to have problems with it disconnecting and reconnecting repeatedly (on the order of 2 to 3 times per minute).&amp;nbsp; Each time it disconnected, my VPN connection (if I was using it) would drop and in general the device was unusable.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I did some poking around and noticed that the device enables IPv6 by default.&amp;nbsp; Since my machine is configured for DirectAccess (which uses IPv6 transition technologies) I wondered if turning off IPv6 on the device might help.&amp;nbsp; I figured that it couldn't break anything since nothing on my machine would expect IPv6 to be available, so I went into the configuration and disabled it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Sure enough, since I made that change, my connection has been rock solid and the disconnections are gone.&amp;nbsp; I am not sure what exactly was happening, but now I can connect to the Internet, DirectAccess comes up as expected and life on the road is good again.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3563090" width="1" height="1"&gt;</description></item><item><title>Holy moly, I'm back!!!</title><link>http://blogs.technet.com/b/billcan/archive/2012/12/19/holy-moly-i-m-back.aspx</link><pubDate>Wed, 19 Dec 2012 19:13:57 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3541842</guid><dc:creator>MUTiger86</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.technet.com/b/billcan/rsscomments.aspx?WeblogPostID=3541842</wfw:commentRss><comments>http://blogs.technet.com/b/billcan/archive/2012/12/19/holy-moly-i-m-back.aspx#comments</comments><description>&lt;p&gt;After taking a two year hiatus during which I moved (back) to the Phoenix area and worked for a Big 4 accounting firm, I've returned to Microsoft.&amp;nbsp; I'm working in Microsoft Consulting Services now, focusing on security and identity management.&amp;nbsp; I'm glad to be back as Microsoft is the company I've enjoyed working for most (and I've worked at a few companies, let me tell you!)&lt;/p&gt;
&lt;p&gt;Anyway, I will be posting here sporadically going forward.&amp;nbsp; I will be&amp;nbsp;focusing on security and identity topics, with a bit of miscellany thrown just to keep things interesting.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3541842" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/b/billcan/archive/tags/Working+at+Microsoft/">Working at Microsoft</category></item><item><title>Hello, Xbox Live...</title><link>http://blogs.technet.com/b/billcan/archive/2008/03/21/hello-xbox-live.aspx</link><pubDate>Fri, 21 Mar 2008 21:33:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3017671</guid><dc:creator>BillCan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.technet.com/b/billcan/rsscomments.aspx?WeblogPostID=3017671</wfw:commentRss><comments>http://blogs.technet.com/b/billcan/archive/2008/03/21/hello-xbox-live.aspx#comments</comments><description>&lt;P&gt;Well, I've been in the Xbox Live team for the past 3 days and my head is swimming!&amp;nbsp; I had never thought about all the work that goes into keeping Xbox Live up and operational, but now that I'm here and get to see it, it's pretty remarkable.&amp;nbsp; There&amp;nbsp;is a large team working around the clock to make sure that gamers around the world can get on their Xboxes and have a troublefree experience whenever they want to.&lt;/P&gt;
&lt;P&gt;Anyway, I'll have more to post down the road, but right now I'm still focusing on getting my feet underneath me so I can start contributing.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3017671" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/b/billcan/archive/tags/Working+at+Microsoft/">Working at Microsoft</category><category domain="http://blogs.technet.com/b/billcan/archive/tags/Xbox+Live/">Xbox Live</category></item><item><title>Goodbye, SA-SC!</title><link>http://blogs.technet.com/b/billcan/archive/2008/03/16/goodbye-sa-sc.aspx</link><pubDate>Mon, 17 Mar 2008 05:06:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3007714</guid><dc:creator>BillCan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.technet.com/b/billcan/rsscomments.aspx?WeblogPostID=3007714</wfw:commentRss><comments>http://blogs.technet.com/b/billcan/archive/2008/03/16/goodbye-sa-sc.aspx#comments</comments><description>&lt;P&gt;Starting this Tuesday, I will begin a new job at Microsoft: I am joining the Xbox Live Operations team as a Program Manager.&amp;nbsp; I have really enjoyed my nearly 3.5 years on the Solution Accelerators Team, but am looking forward to a new challenge.&amp;nbsp; My job on the Xbox Live team will be to help ensure that the Xbox Live network stays up and operational while we continue to add new features and capabilities.&lt;/P&gt;
&lt;P&gt;Anyway, it's been fun and I will probably continue to post, but obviously on different topics!&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3007714" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/b/billcan/archive/tags/Working+at+Microsoft/">Working at Microsoft</category></item><item><title>Released: The External Collaboration Toolkit for SharePoint!</title><link>http://blogs.technet.com/b/billcan/archive/2008/03/04/released-the-external-collaboration-toolkit-for-sharepoint.aspx</link><pubDate>Tue, 04 Mar 2008 23:32:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2960851</guid><dc:creator>BillCan</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.technet.com/b/billcan/rsscomments.aspx?WeblogPostID=2960851</wfw:commentRss><comments>http://blogs.technet.com/b/billcan/archive/2008/03/04/released-the-external-collaboration-toolkit-for-sharepoint.aspx#comments</comments><description>&lt;P&gt;I'm happy to announce that the External Collaboration Toolkit for SharePoint has been released and is now available at &lt;A href="http://www.microsoft.com/collabkit"&gt;http://www.microsoft.com/collabkit&lt;/A&gt;.&amp;nbsp; This toolkit helps you easily deploy a SharePoint-based external collaboration facility at your organization.&amp;nbsp; Once this facility is in place, end users can quickly create a new collaboration site (using a SharePoint site collection) and add internal and external users to that site.&amp;nbsp; Both these process can be workflow enabled so that an administrator must approve both site and user creation.&lt;/P&gt;
&lt;P&gt;The toolkit runs on both MOSS 2007 and Windows SharePoint Services 3.0.&amp;nbsp; It also leverages SQL Server 2005 and ADAM.&amp;nbsp; All external users are created in the ADAM directory so they are segregated from your primary user store.&lt;/P&gt;
&lt;P&gt;Please take a look at the External Collaboration Toolkit for SharePoint.&amp;nbsp; If you have any questions, please let me know.&lt;/P&gt;
&lt;P&gt;Bill&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=2960851" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/b/billcan/archive/tags/Security/">Security</category><category domain="http://blogs.technet.com/b/billcan/archive/tags/Collaboration/">Collaboration</category></item><item><title>Windows Server 2008 Security Guide Released!</title><link>http://blogs.technet.com/b/billcan/archive/2008/03/03/windows-server-2008-security-guide-released.aspx</link><pubDate>Mon, 03 Mar 2008 21:27:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2955776</guid><dc:creator>BillCan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.technet.com/b/billcan/rsscomments.aspx?WeblogPostID=2955776</wfw:commentRss><comments>http://blogs.technet.com/b/billcan/archive/2008/03/03/windows-server-2008-security-guide-released.aspx#comments</comments><description>&lt;P&gt;My buddies down the hall recently released the Windows Server 2008 Security Guide the other day.&amp;nbsp; This security guide is targeted at the latest Windows Server release (obviously!) and helps you implement the appropriate security settings based on the server's role.&lt;/P&gt;
&lt;P&gt;You can access the Windows Server 2008 Security Guide at &lt;A href="http://www.microsoft.com/wssg"&gt;http://www.microsoft.com/wssg&lt;/A&gt;.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=2955776" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/b/billcan/archive/tags/Security/">Security</category></item><item><title>Corrected URL for the Extranet Collaboration Toolkit for SharePoint Beta</title><link>http://blogs.technet.com/b/billcan/archive/2008/01/09/corrected-url-for-the-extranet-collaboration-toolkit-for-sharepoint-beta.aspx</link><pubDate>Wed, 09 Jan 2008 22:47:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2728474</guid><dc:creator>BillCan</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.technet.com/b/billcan/rsscomments.aspx?WeblogPostID=2728474</wfw:commentRss><comments>http://blogs.technet.com/b/billcan/archive/2008/01/09/corrected-url-for-the-extranet-collaboration-toolkit-for-sharepoint-beta.aspx#comments</comments><description>&lt;P&gt;In my previous post (since corrected), I included an incorrect link to get access to the beta of the Extranet Collaboration Toolkit for SharePoint.&amp;nbsp; The actual URL is &lt;A href="https://connect.microsoft.com/SelfNomination.aspx?ProgramID=1657&amp;amp;pageType=1&amp;amp;SiteID=14"&gt;https://connect.microsoft.com/SelfNomination.aspx?ProgramID=1657&amp;amp;pageType=1&amp;amp;SiteID=14&lt;/A&gt;.&amp;nbsp; Sorry about that!&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=2728474" width="1" height="1"&gt;</description></item><item><title>Please download the beta for the Extranet Collaboration Toolkit for SharePoint</title><link>http://blogs.technet.com/b/billcan/archive/2008/01/03/please-download-the-beta-for-the-extranet-collaboration-toolkit-for-sharepoint.aspx</link><pubDate>Fri, 04 Jan 2008 00:32:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2707473</guid><dc:creator>BillCan</dc:creator><slash:comments>8</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.technet.com/b/billcan/rsscomments.aspx?WeblogPostID=2707473</wfw:commentRss><comments>http://blogs.technet.com/b/billcan/archive/2008/01/03/please-download-the-beta-for-the-extranet-collaboration-toolkit-for-sharepoint.aspx#comments</comments><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;FONT face=Calibri size=3&gt;I am happy to announce the beta release for the Extranet Collaboration Toolkit for SharePoint. We are making this beta release available in order to get feedback from our customers and partners. With your help, we can ensure that the Extranet Collaboration Toolkit for SharePoint (ECTS) meets your needs.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;What is the Extranet Collaboration Toolkit for SharePoint?&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;FONT face=Calibri size=3&gt;The Extranet Collaboration Toolkit for SharePoint provides guidance and tools to deploy a pre-built, customizable SharePoint solution that teams can use to collaborate with those outside the firewall.&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/SPAN&gt;At the same time, the toolkit helps ensure that sensitive data on these systems is protected.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;FONT face=Calibri size=3&gt;Using this free toolkit, administrators can set up a secure, SharePoint-based extranet collaboration site in a short time.&amp;nbsp; End users can then use this site to easily create new site collections, posting sharable documents that are centrally located inside the firewall.&amp;nbsp; The toolkit also enables users to invite internal and external partners to collaborate on documents.&amp;nbsp; And the toolkit makes it simple for team leads to assign or revoke access rights for any team member. &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;FONT face=Calibri size=3&gt;Once the ECTS is installed, your users can be up and running with a secure, SharePoint-based team site in minutes.&amp;nbsp; They can easily invite and enable external users to collaborate with them, sharing documents that are centrally located on a SharePoint site inside the firewall.&amp;nbsp; Administrators can require administrative approval for all new sites and users, or can allow precisely control the information outsiders can access, or they can delegate this control to end users and free up time for other tasks.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;B style="mso-bidi-font-weight: normal"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Where do I access the Beta?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 10pt"&gt;&lt;FONT face=Calibri size=3&gt;To get started with the beta, please click &lt;A class="" href="https://connect.microsoft.com/SelfNomination.aspx?ProgramID=1657&amp;amp;pageType=1&amp;amp;SiteID=14" mce_href="https://connect.microsoft.com/SelfNomination.aspx?ProgramID=1657&amp;amp;pageType=1&amp;amp;SiteID=14"&gt;here&lt;/A&gt;, t&lt;/FONT&gt;&lt;FONT face=Calibri size=3&gt;hen click the Downloads link. Note that you may have to register to get access to the Connect site.&amp;nbsp; On the list of downloads, click the Extranet Collaboration Toolkit for SharePoint. From this page, download all the beta files. I recommend that you read the Release Notes first to learn about any late breaking information related to the ECTS.&lt;/FONT&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=2707473" width="1" height="1"&gt;</description></item><item><title>Thinking of using SharePoint for extranet collaboration?  Contact me!</title><link>http://blogs.technet.com/b/billcan/archive/2007/12/12/thinking-of-using-sharepoint-for-extranet-collaboration-contact-me.aspx</link><pubDate>Wed, 12 Dec 2007 21:52:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2639854</guid><dc:creator>BillCan</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.technet.com/b/billcan/rsscomments.aspx?WeblogPostID=2639854</wfw:commentRss><comments>http://blogs.technet.com/b/billcan/archive/2007/12/12/thinking-of-using-sharepoint-for-extranet-collaboration-contact-me.aspx#comments</comments><description>&lt;P&gt;We are looking for beta participants for my current project, a set of guidance and tools that makes it easier to collaborate with people outside the firewall using SharePoint.&amp;nbsp; If you are thinking about extranet collaboration, please get in touch by using the email link above.&amp;nbsp; I'd love to discuss this with you and give you a chance to participate in our beta program.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=2639854" width="1" height="1"&gt;</description></item></channel></rss>