<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://msmvps.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>Angus Logan : SharePoint Portal Server</title><link>http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx</link><description>Tags: SharePoint Portal Server</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP2 (Build: 40407.4157)</generator><item><title>Validating Sharepoint filenames on upload</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/11/17/75846.aspx</link><pubDate>Fri, 18 Nov 2005 02:39:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:75846</guid><dc:creator>anguslogan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=75846</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/11/17/75846.aspx#comments</comments><description>This is Crazy! I was just talking with Joseph Mortimer @ &lt;a href="http://www.data3.com.au" target="_blank"&gt;Data#3&lt;/a&gt; about building an application to clean file names before uploading to SharePoint. Funny!
&lt;hr&gt;
Via &lt;a href="http://weblogs.asp.net/mnissen/archive/2005/11/17/430785.aspx"&gt;Mads&lt;/a&gt;
&lt;br/ &gt;&lt;br /&gt;
&lt;p&gt;Some characters are legal for FAT or NTFS files but illegal for files in Sharepoint documentlibraries. Using the regular upload UI for Sharepoint you'll encounter a rather unpleasant validation error when uploading a file with funky characters. Using the object model will give you a good ole' exception.&lt;/p&gt; &lt;p&gt;I've seen a lot of approaches to solving this problem, and implemented a couple myself. Last night I noticed a method on the SPEncode static class that enabled a clean approach to the problem:&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;private&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt; &lt;span style="COLOR: blue"&gt;string&lt;/span&gt; CleanFileName(&lt;span style="COLOR: blue"&gt;string&lt;/span&gt; dirtyFileName)&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;{&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="COLOR: blue"&gt;char&lt;/span&gt;[] dirtyChars = dirtyFileName.ToCharArray();&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="COLOR: blue"&gt;foreach&lt;/span&gt; (&lt;span style="COLOR: blue"&gt;char&lt;/span&gt; c &lt;span style="COLOR: blue"&gt;in&lt;/span&gt; dirtyChars)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="COLOR: blue"&gt;if&lt;/span&gt; (!&lt;span style="COLOR: teal"&gt;SPEncode&lt;/span&gt;.IsLegalCharInUrl(c))&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;dirtyFileName = dirtyFileName.Replace(c.ToString(), &lt;span style="COLOR: maroon"&gt;""&lt;/span&gt;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="COLOR: blue"&gt;return&lt;/span&gt; dirtyFileName; &lt;span style="COLOR: green"&gt;// now clean:-)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; mso-layout-grid-align: none"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'; mso-ansi-language: EN-US; mso-no-proof: yes"&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src ="http://weblogs.asp.net/mnissen/aggbug/430785.aspx" width = "1" height = "1" /&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=75846" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>reating a Site Definition from an Existing Site Definition (Custom Templates)</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/10/20/71755.aspx</link><pubDate>Fri, 21 Oct 2005 03:09:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:71755</guid><dc:creator>anguslogan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=71755</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/10/20/71755.aspx#comments</comments><description>Via &lt;a href="http://net.bloggix.com/PermaLink,guid,f2874b33-37c4-44f9-95b3-23c2b3e34051.aspx"&gt;Alex's Blog about SharePoint&lt;/a&gt;
&lt;br/ &gt;&lt;br /&gt;
I got a lot of questions of colleages regarding custom templates. Custom templates in SharePoint are...&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=71755" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>CMSVNext and Windows SharePoint Services 3.0 - another braindump and a stroll through some blogs...</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/09/22/67331.aspx</link><pubDate>Thu, 22 Sep 2005 14:05:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:67331</guid><dc:creator>anguslogan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=67331</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/09/22/67331.aspx#comments</comments><description>Via &lt;a href="http://jopx.blogspot.com/2005/09/cmsvnext-and-windows-sharepoint.html"&gt;JOPX&lt;/a&gt;
&lt;blockquote&gt;
One of the pillars of Microsoft's new &lt;a href="http://www.microsoft.com/office/preview/ecm.mspx" target="_blank"&gt;ECM (Enterprise Content Management Offering)&lt;/a&gt; is web content management, previously Microsoft had its own server product for it, &lt;a href="http://www.microsoft.com/cmserver/default.mspx" target="_blank"&gt;Microsoft Content Management Server&lt;/a&gt;. At PDC05, Microsoft finally revealed some technical details about the next version of CMS - here's a list of the things I noticed:&lt;br /&gt;&lt;li&gt;CMSVNext is built on top of Windows SharePoint Services 3.0 - a name mentionned was Office Web Content Management Server. One of the main goals of this new architecture was to take away the divide between functionality in SharePoint and CMS since customers basically require both&lt;/li&gt;&lt;br /&gt;&lt;li&gt;The equivalent of a channel in MCMS2002 will be a WSS3.0 web - there will be a special type of document library for webpages called "Pages library". This library will contain a page layout column which will contain the URL to the template. All the content will be stored in the fields in this page library. On a page request, a page will be assembled dynamically from the content in the different fields. You can use all the functionality of standard WSS libraries such as checkin, checkout, versioning,...&lt;/li&gt;&lt;br /&gt;&lt;li&gt;CMS Template = Page Layout column&lt;/li&gt;&lt;br /&gt;&lt;li&gt;CMS placeholder control = WSS field controls&lt;/li&gt;&lt;br /&gt;&lt;li&gt;CMSVNext will offer some extra WSS field controls e.g PublishingWebControls:AuthoringContainer with  better support for table layout, server side spell checking, ...&lt;/li&gt;&lt;br /&gt;&lt;li&gt;A custom ASP.Net 2.0 navigation provider for CMSVNext, you just have to write your own navigation control and use the provider as a datasource&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Membership providers to write your own authentication mechanisms&lt;/li&gt;&lt;br /&gt;&lt;li&gt;While MCMS2002 basically is a toolbox - it offered an API but you still had to write a lot of code. CMSVNext will offer more functionality out of the box and will require less custom code&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Support for multilingual scenarios through a core website which will have multiple variations,  with a certain replication mechanism built in... not a lot of details known about it yet&lt;/li&gt;&lt;br /&gt;&lt;li&gt;A migration tool for CMS2002 content will be provided, all the templates and custom code you will have to rewrite&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Support for smart client authoring of webpages  - extends on Document Conversion Services - this will allow you to plug in your own code to automatically generate webpages from different applications&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Extra security added typically needed for CMS - e.g. a viewer role, which allows you to view pages but not to view the WSS UI (e.g. allitems.aspx), no remote API possible, no minor or historic versions visible&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Define master pages on the level of the web - can be easily changed from within the SharePoint UI&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Extra deployment options - OOB deployment through the UI&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Better support for anonymous access&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Extra caching options: ASP.Net caching, binary caching, use cache profiles,...&lt;/li&gt; &lt;br /&gt;&lt;li&gt;Can use the search of SharePoint&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Built in summary pages available - Query by Content controls (e.g. all news postings), Summary links, TOC&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Better OOB workflow through the same mechanism that WSS3.0 based on &lt;a href="http://www.windowsworkflow.net/Default.aspx?tabindex=0&amp;tabid=1" target="_blank"&gt;WWF &lt;/a&gt;- approval of webpages will be similar to approval of documents in document libraries.&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Some interesting resources:&lt;/b&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://msmvps.com/anguslogan/archive/2005/09/17/66814.aspx" target="_blank"&gt;Web Content Management information from PDC (Braindump) - Angus Logan&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://blogs.technet.com/stefan_gossner/archive/2005/09/16/410979.aspx" target="_blank"&gt;MCMS v.Next - The curtain has been lifted at PDC - Stefan Gossner&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/library/en-us/dnmscms02/html/CMSDesigningCMS2002Sol.asp" target="_blank"&gt;Designing Your MCMS 2002 Solution for Reusability&lt;/a&gt; -  Use best-practice design recommendations for Microsoft Content Management Server 2002 applications and Web sites to help you create your site in a way that prepares it for future versions of &lt;a title="Microsoft Content Management Server" href="http://www.microsoft.com/cmserver" &gt;MCMS&lt;/a&gt; technology.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/arpans/archive/2005/09/18/471088.aspx" target="_blank"&gt;Posting from Arpan Shah about the confusion surrounding CMSVNext&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href=""&gt;OFF313 Web Content Management Application Development and Engine Extensibility - &lt;a href="http://commnet.microsoftpdc.com/content/downloads.aspx" target="_blank"&gt;slide deck from PDC&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://blogs.tamtam.nl/mart/PermaLink,guid,f8b8b5df-1e4a-4dcb-8cc0-f235d1a25ace.aspx" target="_blank"&gt;[PDC05] What about MCMS? SharePoint, yes!&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://technorati.com/tag/mscms" style="color:#ffffff"&gt;mscms&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.technorati.com/search/pdc05" rel="tag"&gt;pdc05&lt;/a&gt;&lt;br /&gt;&lt;a href="http://technorati.com/tag/sharepoint" rel="tag" style="color:#ffffff"&gt;sharepoint&lt;/a&gt;
&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=67331" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>A look at SharePoint Version 3 Features</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/09/18/66822.aspx</link><pubDate>Sun, 18 Sep 2005 22:08:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:66822</guid><dc:creator>anguslogan</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=66822</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/09/18/66822.aspx#comments</comments><description>Via &lt;a href="http://feeds.feedburner.com/HeathersBlog?m=156"&gt;&lt;font color="#000000" size=2&gt;Heather&lt;/font&gt;&lt;/a&gt;
&lt;blockquote&gt;
&lt;P&gt;Via &lt;A href="http://sharepointblogs.com/dustin/archive/2005/09/14/3503.aspx"&gt;Dustin&lt;/A&gt;:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT size=4&gt;
&lt;HR id=null&gt;
UI / UX&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;WSS will have an entirely new user interface that includes better navigation controls and built-in breadcrumb trails. 
&lt;LI&gt;Pages will derive from &amp;#8220;master pages&amp;#8220;, meaning that you could re-skin an entire SharePoint site by modifying just one template file 
&lt;LI&gt;More professional out of the box themes 
&lt;LI&gt;FrontPage can directly edit each site's CSS file(s) 
&lt;LI&gt;Workflow built-in all over SharePoint, with tight integration with Outlook 12 tasks 
&lt;LI&gt;Individual documents can have document-specific workflows 
&lt;LI&gt;Item-level security on lists and libraries 
&lt;LI&gt;FrontPage has evolved further into a SharePoint designer tool (I read that as: the &lt;EM&gt;only&lt;/EM&gt; SharePoint designer tool), and apparently, ghosted/unghosted pages won't be a problem any longer 
&lt;LI&gt;Recycle bin with user and administrator restore features for document libraries and list items 
&lt;LI&gt;InfoPath forms can be filled out with only a browser when published as (to?) a SharePoint site (even with FireFox) 
&lt;LI&gt;Customizable and extensible search (and search API), including &amp;#8220;did you mean&amp;#8220;-type search term corrections 
&lt;LI&gt;Lists can be viewed on mobile devices&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;FONT size=4&gt;&lt;STRONG&gt;Integration&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;All lists and libraries have RSS feeds, and each list's feed can be customized to include whatever fields you'd like 
&lt;LI&gt;Event list RSS feeds include iCal files as enclosures 
&lt;LI&gt;Each site has a master &amp;#8220;aggregating&amp;#8220; RSS feed 
&lt;LI&gt;Outlook 12 can perform 2-way online/offline syncronization of the following list types: 
&lt;UL&gt;
&lt;LI&gt;Contacts 
&lt;LI&gt;Events 
&lt;LI&gt;Tasks 
&lt;LI&gt;Discussion Lists 
&lt;LI&gt;Document Libraries (!)&lt;/LI&gt;&lt;/UL&gt;
&lt;LI&gt;Discussion lists can create their own e-mail alias in Active Directory, allowing you to e-mail that alias to automatically archive that e-mail (and its attachments) to a SharePoint discussion list 
&lt;LI&gt;ALL lists and libraries have version history capability, and only &amp;#8220;diffs&amp;#8220; are stored (differences from one change to the next) 
&lt;LI&gt;Access treats SharePoint sites as honest-to-goodness data sources&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT size=4&gt;Developer-oriented news&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Existing web parts will &amp;#8220;just work&amp;#8220; in the new SharePoint web part page framework 
&lt;LI&gt;Site definitions/templates will ship in the box for blogs and wikis (blogs can be built directly on your &amp;#8220;My Site&amp;#8220;!) 
&lt;LI&gt;All lists and libraries will have synchronous event handlers (not sure how these work with other interfaces to SharePoint data, like OM, WEBDAV, SOAP, etc., if the event handler has to raise an exception) 
&lt;LI&gt;List/library version history is exposed programmatically by way of the OM 
&lt;LI&gt;Multiple &amp;#8220;content types&amp;#8221; (sets of metadata, or &amp;#8220;metadata templates&amp;#8220;, if you will) for document libraries and lists, that include view information, workflows, bound events. 
&lt;LI&gt;FrontPage can edit workflows 
&lt;LI&gt;Business Data Catalog (datasource catalog on steroids, apparently).&amp;nbsp; This doesn't seem all that new to me, so I'll reserve commentary until more details emerge after the expected PDC sessions)
&lt;HR id=null&gt;
&lt;/LI&gt;&lt;/UL&gt;&lt;/BLOCKQUOTE&gt;&lt;img src ="http://heathersolomon.com/blog/aggbug/2024.aspx" width = "1" height = "1" /&gt;&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=66822" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>SharePoint vNext has security trimming (ie. context based display)</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/09/15/66431.aspx</link><pubDate>Thu, 15 Sep 2005 13:41:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:66431</guid><dc:creator>anguslogan</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=66431</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/09/15/66431.aspx#comments</comments><description>&lt;p&gt;So if you don't have the rights to delete a document you won't be able to see the delete link/action.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=66431" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>SharePoint vNext will ship with XSD's</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/09/15/66430.aspx</link><pubDate>Thu, 15 Sep 2005 13:37:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:66430</guid><dc:creator>anguslogan</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=66430</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/09/15/66430.aspx#comments</comments><description>&lt;p&gt;WOW! - There will be XSD's to validate all the XML documents - YAY&lt;/p&gt;
&lt;p&gt;In Visual Studio 2005 you get some killer intellisense from the XSD's so editing the monster XML files shouldn't be too much of a drama anymore :)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=66430" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>SharePoint vNext has a built in scheduler</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/09/15/66428.aspx</link><pubDate>Thu, 15 Sep 2005 13:34:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:66428</guid><dc:creator>anguslogan</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=66428</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/09/15/66428.aspx#comments</comments><description>&lt;p&gt;You Can use the SPSchedule object to setup some process to execute at a specified interval.&lt;/p&gt;
&lt;p&gt;YAY! - Say good bye to scheduled *.vbs files or windows services.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=66428" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>SharePoint v3 to support ASP.NET 2.0 Web Parts</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/09/15/66398.aspx</link><pubDate>Thu, 15 Sep 2005 10:46:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:66398</guid><dc:creator>anguslogan</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=66398</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/09/15/66398.aspx#comments</comments><description>When v3 aka vNext ships you will be able to build your ASP.NET web parts and automagically use them.&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=66398" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>WSS SP2 - shipping by end of month</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/09/15/66397.aspx</link><pubDate>Thu, 15 Sep 2005 10:43:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:66397</guid><dc:creator>anguslogan</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=66397</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/09/15/66397.aspx#comments</comments><description>Don't know if its true or not but it was in a PDC presentation... it must be true :)&lt;BR&gt;&lt;BR&gt;
Bring on the .NET 2.0 webparts using &lt;i&gt;Son of SmartPart&lt;/i&gt; which is being built in Jan of U2U.&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=66397" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>Office 12 brain dump from the Keynote</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/09/13/66400.aspx</link><pubDate>Tue, 13 Sep 2005 22:53:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:66400</guid><dc:creator>anguslogan</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=66400</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/09/13/66400.aspx#comments</comments><description>&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Office Keynote&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Enterprise content management (all content in your organization)&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Server Investments&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Collab.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Portal&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Search&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Content Management&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Forms with Workflow&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;BI&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;a title="Microsoft Content Management Server" href="http://www.microsoft.com/cmserver" &gt;MCMS&lt;/a&gt;&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;We will be seeing a "new content management server" which will be built on the foundation of Windows SharePoint Services.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;"I won't talk about all the cool stuff with &lt;a title="Microsoft Content Management Server" href="http://www.microsoft.com/cmserver" &gt;MCMS&lt;/a&gt; :("&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;SharePoint&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;New tab called site "Site Actions" that lets you do things like "create page" etc etfc.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;New high level chrome around the site ie. Search center.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Views are accessible from the document library on the top right hand site in a drop down list.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Create "content types" ie. an object oriented definition of the content in your site.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Type of information&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Meta data&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Behaviours of the content type (workflow / corporate policy)&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;The content types appear in the "New" menu ie. "New Spec" or "New …" almost suggests multiple document templates by Document Library.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can create a random workflow for a specific document.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;"Work offline in outlook" was in the document action pane.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Document libraries have RSS feeds.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Document libraries have "Open with database program"&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;strong&gt;SETTING ITEM LEVEL SECURITY - mentioned in passing but don’t know if true.&lt;/strong&gt;&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Workflow&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can dynamically create it.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Few OOTB workflows for Asia due to specific requirements.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can attached a workflow to a document / document library or a type.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Lots of the forms are embedded as infopath forms.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Workflow tasks are emailed around as outlook tasks.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;You can open then and close them and submit them.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Workflow appears in the document library in an additional column per document.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Front Page&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;FrontPage can be called "SharePoint Designer"&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Call the "expression family" can be considered part of the SharePoint Designer suite.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can define a workflow directly from Front Page&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Does this workflow defined in FrontPage generate a WWF workflow? If so why not generate it from VS.NET.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Views&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Access view&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Gantt View&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can create personal/public views&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;MOBILE! - Make this list avail. As a mobile view.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Lists&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can create a new column called "Business data"&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;The type is defined and you can select the columns from the LOB apps.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;LOB data is "jointed" with SharePoint data.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can validate the LOB data on the &lt;a title="" href="http://www.microsoft.com/sharepoint" &gt;SPS&lt;/a&gt; CRUD interface - if you get it wrong it gives you a picklist of data.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Example.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 2in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Use CRM to hold your contacts&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 2in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Use &lt;a title="" href="http://www.microsoft.com/sharepoint" &gt;SPS&lt;/a&gt; to get hold your data for ease of use / RAD and you can then draw on your LOB data.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;InfoPath&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;The UI doesn't look much different&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Have the ability to say "I want this form to be compatible with the Forms Server"&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Design snippets will be a part of InfoPath ie. using parts of other forms.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;A lot of the Infpath client doesn't look a lot different.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Publish it out to a network share or a webserver, or sharepoint site.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Demo'd infopath web forms using FireFox&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;When you browse to the file it created the form output as HTML.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;You can also use it from a smartphone. Including validation using a WAP based phone&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Importance of Infopath in the strategy.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Searching&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;MSFT are about to go live using vNext&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Have a new "did you mean?" functionality in the search&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can customise the search results layout.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Alert me on the serach results?&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can filter by content type ie. from search results "Documents", "People" "Customers" or then pivot on things like "Job Title" for a person.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Web part for Colleagues and Peers&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Get the Org Chart.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Excel&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;An excel calculation performed on the server.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Create a spreadsheet in excel and connect it to data.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Publish it to sharepoint&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can then be published as a web part.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;strong&gt;&lt;/strong&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Access&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Had a massive Face lift (picture)&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Can work with data stored on a sharepoint server.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Access can be used to update data in SharePoint.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;You pick the server and the site and then the list and it gives you access to the CRUD facilities.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Preparing&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Incorporate XML&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Use Interop through web services&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Use InfoPath forms&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;Use WSS as a foundation&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 1in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt;All PDC attendees will get BETA1 in a couple of months.&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0in; MARGIN-TOP: 0in; PADDING-LEFT: 0.5in; FONT-SIZE: 10pt; MARGIN-BOTTOM: 0in" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=66400" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/Content+Management+Server/default.aspx">Content Management Server</category><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>SyncToy 1.0 Released and you can use it with SharePoint</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/09/04/65164.aspx</link><pubDate>Sun, 04 Sep 2005 19:03:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:65164</guid><dc:creator>anguslogan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=65164</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/09/04/65164.aspx#comments</comments><description>&lt;p&gt;John Hodgson mentioned this in his TechEd Presentation - and you can use this to &lt;b&gt;sync file system folders with SharePoint web folders&lt;/b&gt;&lt;/p&gt;
Via &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,d2244c8d-1e2f-4bd3-9dd5-f2f34c12ae08.aspx"&gt;Crig Pringle&lt;/a&gt;
&lt;blockquote&gt;
&lt;div class=Section1&gt;
   &lt;p class=MsoNormal&gt;
      &lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt'&gt;James Kendrick &lt;a href="http://jkontherun.blogs.com/jkontherun/2005/08/synctoy 10 rele.html"&gt;writes&lt;/a&gt; that &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e0fc1154-c975-4814-9649-cce41af06eb7&amp;amp;displaylang=en&amp;amp;Hash=GW3MYFF"&gt;SyncToy
      1.0&lt;/a&gt; has been released. &amp;nbsp;New features( since beta) include:&lt;o:p&gt;&lt;/o:p&gt;
      &lt;/span&gt;&lt;/font&gt;
   &lt;/p&gt;
   &lt;p class=MsoNormal&gt;
      &lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt'&gt;
      &lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;
      &lt;/span&gt;&lt;/font&gt;
   &lt;/p&gt;
   &lt;ul type=disc&gt;
      &lt;li class=MsoNormal style='color:black;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;line-height:18.0pt;mso-list:l0 level1 lfo1'&gt;
         &lt;font size=1 color=black face=Verdana&gt;&lt;span style='font-size:8.5pt;font-family:Verdana'&gt;The
         ability to type in a UNC path; 
         &lt;o:p&gt;&lt;/o:p&gt;
         &lt;/span&gt;&lt;/font&gt;
      &lt;/li&gt;
      &lt;li class=MsoNormal style='color:black;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;line-height:18.0pt;mso-list:l0 level1 lfo1'&gt;
         &lt;font size=1 color=black face=Verdana&gt;&lt;span style='font-size:8.5pt;font-family:Verdana'&gt;Support
         for longer folder pair names and ability to widen the left pane to see those longer
         names; 
         &lt;o:p&gt;&lt;/o:p&gt;
         &lt;/span&gt;&lt;/font&gt;
      &lt;/li&gt;
      &lt;li class=MsoNormal style='color:black;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;line-height:18.0pt;mso-list:l0 level1 lfo1'&gt;
         &lt;font size=1 color=black face=Verdana&gt;&lt;span style='font-size:8.5pt;font-family:Verdana'&gt;The
         ability to support the maximum length for folder paths, and documentation was added
         to the help file about how to set up a share to be able to sync deep folder pairs; 
         &lt;o:p&gt;&lt;/o:p&gt;
         &lt;/span&gt;&lt;/font&gt;
      &lt;/li&gt;
      &lt;li class=MsoNormal style='color:black;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;line-height:18.0pt;mso-list:l0 level1 lfo1'&gt;
         &lt;font size=1 color=black face=Verdana&gt;&lt;span style='font-size:8.5pt;font-family:Verdana'&gt;Better
         handling of the difference in precision between NTFS and FAT timestamps; 
         &lt;o:p&gt;&lt;/o:p&gt;
         &lt;/span&gt;&lt;/font&gt;
      &lt;/li&gt;
      &lt;li class=MsoNormal style='color:black;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;line-height:18.0pt;mso-list:l0 level1 lfo1'&gt;
         &lt;font size=1 color=black face=Verdana&gt;&lt;span style='font-size:8.5pt;font-family:Verdana'&gt;More
         discoverable link to the help file for information on how to schedule SyncToy using
         the Windows XP Task Scheduler; 
         &lt;o:p&gt;&lt;/o:p&gt;
         &lt;/span&gt;&lt;/font&gt;
      &lt;/li&gt;
      &lt;li class=MsoNormal style='color:black;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;line-height:18.0pt;mso-list:l0 level1 lfo1'&gt;
         &lt;font size=1 color=black face=Verdana&gt;&lt;span style='font-size:8.5pt;font-family:Verdana'&gt;Support
         for 800x600 screen resolution; 
         &lt;o:p&gt;&lt;/o:p&gt;
         &lt;/span&gt;&lt;/font&gt;
      &lt;/li&gt;
      &lt;li class=MsoNormal style='color:black;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;line-height:18.0pt;mso-list:l0 level1 lfo1'&gt;
         &lt;font size=1 color=black face=Verdana&gt;&lt;span style='font-size:8.5pt;font-family:Verdana'&gt;Added
         a warning for users if the selected action will take some time to complete; 
         &lt;o:p&gt;&lt;/o:p&gt;
         &lt;/span&gt;&lt;/font&gt;
      &lt;/li&gt;
      &lt;li class=MsoNormal style='color:black;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;line-height:18.0pt;mso-list:l0 level1 lfo1'&gt;
         &lt;font size=1 color=black face=Verdana&gt;&lt;span style='font-size:8.5pt;font-family:Verdana'&gt;Added
         brief explanations of the actions in the user interface; 
         &lt;o:p&gt;&lt;/o:p&gt;
         &lt;/span&gt;&lt;/font&gt;
      &lt;/li&gt;
      &lt;li class=MsoNormal style='color:black;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;line-height:18.0pt;mso-list:l0 level1 lfo1'&gt;
         &lt;font size=1 color=black face=Verdana&gt;&lt;span style='font-size:8.5pt;font-family:Verdana'&gt;Improved
         behavior when choosing folders to include or exclude when there are large numbers
         of folders involved; 
         &lt;o:p&gt;&lt;/o:p&gt;
         &lt;/span&gt;&lt;/font&gt;
      &lt;/li&gt;
      &lt;li class=MsoNormal style='color:black;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;line-height:18.0pt;mso-list:l0 level1 lfo1'&gt;
         &lt;font size=1 color=black face=Verdana&gt;&lt;span style='font-size:8.5pt;font-family:Verdana'&gt;Improved
         support for accessibility modes. 
         &lt;o:p&gt;&lt;/o:p&gt;
         &lt;/span&gt;&lt;/font&gt;
      &lt;/li&gt;
   &lt;/ul&gt;
   &lt;p class=MsoNormal&gt;
      &lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt'&gt;
      &lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;
      &lt;/span&gt;&lt;/font&gt;
   &lt;/p&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=d2244c8d-1e2f-4bd3-9dd5-f2f34c12ae08"&gt;
&lt;/blockquote&gt;
&lt;hr&gt;
More blogs about &lt;a href="http://technorati.com/blogs/SharePoint" rel="tag directory"&gt;SharePoint&lt;/a&gt;.&lt;br /&gt;&lt;a href="http://technorati.com/blogs/"&gt;&lt;img src="http://static.technorati.com/pix/tbf.gif" alt="Technorati Blog Finder" border=0 /&gt;&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=65164" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>Announcing the SharePoint Portal Server 2003 Discovery Kit</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/08/24/63907.aspx</link><pubDate>Thu, 25 Aug 2005 02:10:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:63907</guid><dc:creator>anguslogan</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=63907</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/08/24/63907.aspx#comments</comments><description>Via &lt;a href="http://blogs.msdn.com/ryanrogers/archive/2005/08/23/455357.aspx"&gt;Ryan Rogers&lt;/a&gt;
&lt;blockquote&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;The SharePoint Portal Server 2003 Discovery kit &amp;acirc;&amp;euro;&amp;#8220; a set of 6 hands-on lab documents &amp;acirc;&amp;euro;&amp;#8220; just went live on Microsoft.com at the following location:&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;SharePoint Portal Server 2003 Discovery Kit&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=03607516-cbec-4724-b4a4-aa7f09304ba5&amp;amp;displaylang=en"&gt;&lt;FONT color=#6633cc&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=03607516-cbec-4724-b4a4-aa7f09304ba5&amp;amp;displaylang=en&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;Please note that there is a lab focusing on how to use the SQL Reporting Pack!&amp;nbsp; Here&amp;acirc;&amp;euro;&amp;trade;s an excerpt from the download page:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;Overview&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;The SharePoint Portal Server 2003 Discovery Kit includes a series of discovery labs that go beyond learning about a particular component of SharePoint Portal Server 2003 to understanding visional portal site solution, how to deploy Web applications that integrate tightly with the portal site environment, how to use SQL Server 2000 Reporting Services to track and analyze portal site usage, and lastly, how to customize the portal site user interface. &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;There are 6 labs in the SharePoint Portal Server 2003 Discovery Kit. The lab manuals includes a description of the business scenario that is addressed by the lab, the teaching objectives of the lab, step-by-step instructions, dependencies for each lab and the expected amount of time needed for the lab assuming a basic familiarity with Windows SharePoint Services and limited SharePoint Portal Server 2003 experience.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=455357" width="1" height="1"&gt;
&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=63907" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>SharePoint Portal Server Discovery Kit</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/08/14/62648.aspx</link><pubDate>Sun, 14 Aug 2005 21:11:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:62648</guid><dc:creator>anguslogan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=62648</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/08/14/62648.aspx#comments</comments><description>Via &lt;a href="http://blogs.msdn.com/arpans/archive/2005/08/13/451277.aspx"&gt;Arpan Shah&lt;/a&gt;
&lt;blockquote&gt;
One of the pieces of feedback that I have received from partners and customers is that they don't immediately understand the value that SharePoint Portal Server provides over Windows SharePoint Services. &lt;br&gt;&lt;br&gt;We have several whitepapers that address this topic but we always received feedback that it still wasn't crystal clear. To address this, we are releasing the &lt;U&gt;SharePoint Portal Server Discovery Kit&lt;/U&gt; very shortly that is targetted at IT Pros. &lt;br&gt;&lt;br&gt;It contains a: &lt;br&gt;1) very detailed build book to walk you through building a &lt;a title="" href="http://www.microsoft.com/sharepoint" &gt;SPS&lt;/a&gt; server, &lt;br&gt;2) a whitepaper and &lt;br&gt;3) 6 self-paced labs with detailed explanation. &lt;br&gt;&lt;br&gt;This allows you to "discover" &lt;a title="" href="http://www.microsoft.com/sharepoint" &gt;SPS&lt;/a&gt;, if you will, in a short amount of time. The other benefit is that you don't have to build a separate server. If you already have &lt;a title="" href="http://www.microsoft.com/sharepoint" &gt;SPS&lt;/a&gt; installed, you can use that. Based on the initial feedback we received, people really liked it... so if you're looking for something like this for yourself or for a customer, you'll see it very shortly.&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=451277" width="1" height="1"&gt;
&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=62648" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>Announcing The SharePoint Template Project</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/08/14/62647.aspx</link><pubDate>Sun, 14 Aug 2005 21:02:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:62647</guid><dc:creator>anguslogan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=62647</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/08/14/62647.aspx#comments</comments><description>Via &lt;a href="http://www.greghughes.net/rant/AnnouncingTheSharePointTemplateProject.aspx"&gt;Greg Hughes&lt;/a&gt;
&lt;blockquote&gt;
&lt;p&gt;
   &lt;a href="http://weblogs.asp.net/bsimser/archive/2005/08/11/422281.aspx"&gt;Bil Simser
   has taken the lead&lt;/a&gt; in creating &lt;a href="http://sourceforge.net/projects/sptemplates/"&gt;a
   place for the community to create and share SharePoint templates&lt;/a&gt;. This is terrific
   - one of the more difficult things about getting people using SharePoint has always
   been the lack of templates and general resources available to get people started building
   the custom apps people dream of (but can't necessarily create themselves).
&lt;/p&gt;
&lt;blockquote dir="ltr" style="MARGIN-RIGHT: 0px"&gt; 
&lt;p&gt;
   &lt;strong&gt;Link:&lt;/strong&gt; &lt;a href="http://sourceforge.net/projects/sptemplates/"&gt;The
   SharePoint Template Project on SourceForge&lt;/a&gt;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
   Now that we have the place to do this, all we need are participants. Microsoft &lt;a href="http://www.greghughes.net/rant/Wow30NewSharePointApplicationsFreeToDownload.aspx"&gt;recently
   released a set of 30 great site templates&lt;/a&gt;, and there are a few others out there
   as well, but this has the potential to be much bigger.
&lt;/p&gt;
&lt;p&gt;
   Bil's &lt;a href="http://weblogs.asp.net/bsimser/archive/2005/08/11/422281.aspx"&gt;own
   words&lt;/a&gt; describe the SharePoint Template Project perfectly:
&lt;/p&gt;
&lt;blockquote dir="ltr" style="MARGIN-RIGHT: 0px"&gt; 
&lt;p&gt;
   &lt;em&gt;Not having custom solutions&amp;nbsp;has been one of the&amp;nbsp;larger gaps in SharePoint
   but demonstrates that you can accomplish a lot with just a little&amp;nbsp;configuration
   and some creative thought. On numerous occasions I find myself in the newsgroups seeing
   people asking if they can build a Help Desk with SharePoint, or an Expense Tracking
   System, or a Call Board. The answer is of course yes. Always has been and always will.
   The problem however is that you don't get a lot of business solutions delivered without
   some work. Enter the SharePoint Template Project.&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;em&gt;I created a new project site on &lt;/em&gt;&lt;a href="http://sourceforge.net/"&gt;&lt;em&gt;SourceForge &lt;/em&gt;&lt;/a&gt;&lt;em&gt;(yes,
   I'm not a big fan of GotDotNet and we haven't created my utopia of SharePointForge
   just yet) to accomodate&amp;nbsp;this. The project provides an outlet for the SharePoint
   community to contribute and share list and site templates for the products under the
   Microsoft SharePoint technology banner (SharePoint Portal Server and Windows SharePoint
   Services).&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;em&gt;These templates come in the form of binary .stp files or plain text xml schema
   files (along with any additional files like images, etc.). Users create the templates
   either using SharePoint itself (saving them in .stp format) or with whatever xml/text
   editor they prefer. The templates are uploaded to a SharePoint server and used as
   a boilerplate by SharePoint&amp;nbsp;during site creation.&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
   &lt;em&gt;Templates in this project will be created by the community and packaged in a common
   installer format (MSI) so that end-users need only download the MSI and run it on
   their SharePoint server. A template MSI will be provided for contributors to the project
   which includes the template installer, full or custom selections for installation
   (users will be able to choose what templates they want to install), graphical preview
   for each template (if the developer includes them) and option to create sample sites
   based on the templates chosen.&lt;/em&gt;
&lt;/p&gt;
&lt;/blockquote&gt;&lt;img width="0" height="0" src="http://www.greghughes.net/rant/aggbug.ashx?id=d65cf92b-1327-4878-8161-4aefc26118ab" /&gt;
&lt;br /&gt;
&lt;hr /&gt;
&lt;font size="1"&gt;greghughes.net weblog - copyright 2005 - licensed under a &lt;a href="http://creativecommons.org/licenses/by-nc-sa/2.0/"&gt;Creative
Commons License&lt;/a&gt;.&lt;/font&gt;
&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=62647" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>Fixing InfoPath Forms in Application Templates</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/08/09/62142.aspx</link><pubDate>Wed, 10 Aug 2005 03:23:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:62142</guid><dc:creator>anguslogan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=62142</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/08/09/62142.aspx#comments</comments><description>Via &lt;a href="http://weblogs.asp.net/bsimser/archive/2005/08/09/421993.aspx"&gt;Bill Simser&lt;/a&gt;
&lt;br/ &gt;&lt;br /&gt;
&lt;p&gt;With the recent release of the 30 or so (have to be careful as the number&amp;nbsp;seems to change everytime you look at it)&amp;nbsp;&lt;a href="http://www.microsoft.com/technet/prodtechnol/sppt/wssapps/default.mspx"&gt;WSS site templates&lt;/a&gt; that Microsoft has provided us, some people are scratching their heads wondering why these OOTB solutions are not so out-of-the-box. Read on to find out why and how to correct these problems.&lt;/p&gt; &lt;p&gt;For the most part, the sites work fine. Install the template, create a site and you're off to the races. For some however there are parts of the sites that will challenge you for a credentials and others that ask for locations of Web Services. This is part and parcel in the way that InfoPath forms are stored and work with Windows SharePoint Services.&lt;/p&gt; &lt;p&gt;With InfoPath forms stored in a WSS site you can (with Service Pack 1 installed) consume the Web Services that WSS offers and use this to populate drop down lists, lookup tables, etc. in your InfoPath form. This is great for something like a request form where you want the lookups to be dynamic and controlled. It does however present a problem when you try to move the forms to another server like how the templates were offered up recently for download. &lt;/p&gt; &lt;p&gt;We'll walk through fixing the Travel Request site as it's one of those ones that needs some extra care before you can start using it. You can use the principles here for any of the other templates. &lt;/p&gt; &lt;p&gt;The original forms for the site were created on a specific server by the folks at &lt;a href="http://www.quilogy.net/"&gt;Quilogy&lt;/a&gt; so when you click on the Submit a New Travel Request from the home page you'll see this:&lt;/p&gt; &lt;p&gt;&lt;img src="http://www.bilsimser.com/images/infopath1.png" /&gt;&lt;/p&gt; &lt;p&gt;Why is the InfoPath form trying to connect to this Web Service? Simple. There are lists embedded in the form that are being loaded from it and need information from the site. Of course you don't have credentials for their site plus you'll want your forms to be reading from your own site. So here's how to fix this.&lt;/p&gt; &lt;p&gt;First click Cancel on the dialog above and quit InfoPath. Now return back to the site and select Travel Request Form from the side navigation bar. This is the form library that holds the form you fill out when you launch it. Select Modify settings and columns for this form library under the Actions pane. Now click on Edit Template under the General Settings. This will launch InfoPath so we can change our form to point to our own site.&lt;/p&gt; &lt;p&gt;&lt;img src="http://www.bilsimser.com/images/infopath2.png" /&gt;&lt;/p&gt; &lt;p&gt;Choose Tools then Data Connections from the main menu. You'll see the connections that this InfoPath form has back to the SharePoint site.&lt;/p&gt; &lt;p&gt;&lt;img src="http://www.bilsimser.com/images/infopath3.png" /&gt;&lt;/p&gt; &lt;p&gt;So we see Departments, Employees, currencies, and Main submit. The first three are lookups and Main submit is for sending the form back to SharePoint (the Submit to SharePoint button on the form). Select Departments and click Modify. This brings up the dialog to change the settings for this connection:&lt;/p&gt; &lt;p&gt;&lt;img src="http://www.bilsimser.com/images/infopath4.png" /&gt;&lt;/p&gt; &lt;p&gt;The first page is the URL to your SharePoint site. This is the main thing to fix because we want to point it to our own site. Enter the URL to the site here and click Next.&lt;/p&gt; &lt;p&gt;&lt;img src="http://www.bilsimser.com/images/infopath5.png" /&gt;&lt;/p&gt; &lt;p&gt;You'll notice that it took a second for the next step to come up. This is because the Wizard actually goes to your site and pulls back the lists and libraries that are available. If you have added one, it will appear here. Now select Departments and click Next.&lt;/p&gt; &lt;p&gt;&lt;img src="http://www.bilsimser.com/images/infopath6.png" /&gt;&lt;/p&gt; &lt;p&gt;Now you need to select the fields that will be available in the form. This is usually just the name but you may need to play around depending on the form you have. Also from the Data Connection screen above it tells you some details about the connection (like if it loads each time the form loads or not). Use this information to help you decide how you want things&amp;nbsp;configured. For now, click Department_Name and click Next.&lt;/p&gt; &lt;p&gt;&lt;img src="http://www.bilsimser.com/images/infopath7.png" /&gt;&lt;/p&gt; &lt;p&gt;The name will normally be filled in for you and you can choose to have it retrieve the information automatically. Click Finish and we're done with this Data Connection.&lt;/p&gt; &lt;p&gt;When you've added one, you might want to check it. Click on File | Preview | Default (or Ctrl+Shift+B, yes, just like&amp;nbsp;Visual Studio). This will launch the form and connect to the SharePoint site to fill in any initial&amp;nbsp;values. If there are any errors you'll see them or if the form challenges you then there's something that's loading from outside of your site. Continue to fix the fields until you have a form you can preview. The dropdowns should now work as expected and retrieve their values from your SharePoint site.&lt;/p&gt; &lt;p&gt;The last piece to modify is the submit part. This is the Main submit Data Connection and is currently hooked up to &lt;a href="http://wsstemplates.quilogy.net/"&gt;http://wsstemplates.quilogy.net/&lt;/a&gt;&amp;acirc;&amp;euro; so we want to change this. This one requires you to change the URL to the fully qualified path to the form library itself. So selected "&lt;a href="http://wsstemplates.quilogy.net/TravelRequest_Basic/"&gt;http://wsstemplates.quilogy.net/TravelRequest_Basic/&lt;/a&gt;" and replace that with your own URL (keeping the "Travel Agent Request Form" intact) and click Next then Finish.&lt;/p&gt; &lt;p&gt;Now click Save and close InfoPath. Return to your site and launch the form (by clicking on Fill out this form in the form library or from the main page). The form should launch correctly and you can fill it out and click on "Submit to SharePoint" where it will save the new form back to the site and you can view it there.&lt;/p&gt; &lt;p&gt;That's it. Takes about 5 or 10 minutes to clean up the template but now you're ready to use it in your own environment. Hope that helps!&lt;/p&gt;&lt;img src ="http://weblogs.asp.net/bsimser/aggbug/421993.aspx" width = "1" height = "1" /&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=62142" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>Canberra SharePoint Community &amp; any interest in a Microsoft Portals User Group in Brisbane?</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/08/08/62015.aspx</link><pubDate>Tue, 09 Aug 2005 03:32:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:62015</guid><dc:creator>anguslogan</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=62015</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/08/08/62015.aspx#comments</comments><description>&lt;p&gt;I want to get something like this happening for Microsoft Portals (SPT/MCMS) in Brisbane... Who would be interested in it? We have quite a few Govt agencies running SharePoint Products &amp; Technologies or Microsoft Content Management Server ... so Who is game?&lt;/p&gt;
Via &lt;a href="http://blogs.msdn.com/frankarr/archive/2005/08/08/448928.aspx"&gt;Frank Arrigo&lt;/a&gt;
&lt;br/ &gt;&lt;br /&gt;
&lt;P&gt;I got the following note from &lt;A href="http://www.gayanpeiris.com/"&gt;Gayan Peiris&lt;/A&gt;&amp;nbsp;about a new user group&amp;nbsp;starting in Canberra, focusing on Sharepoint.&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;&lt;EM&gt;ATT: Canberra SharePoint Community&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;The Canberra SharePoint User Group will be launching on Wednesday 17th August 2005 to give the Canberra SharePoint community, including both technical and business people alike, a chance to get to know each other&amp;nbsp;over some beer and pizzas and to share and expand their knowledge of SharePoint and its uses.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;A href="http://www.gayanpeiris.com/"&gt;Gayan Peiris&lt;/A&gt; from &lt;A href="http://www.uniqueworld.net/"&gt;Unique World&lt;/A&gt; will give two presentations, one on "Deployment Options" , and another on "Web Parts You Can' t Live Without ". The purpose of this User Group is to increase knowledge of SharePoint and its uses in the Canberra community.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Start: 6.00pm &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Date: Wednesday 17th August 2005 &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Venue: Microsoft Canberra. Walter Turnbull Building. Level 2, 44 Sydney Ave Barton, Canberra.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;For more information on the Canberra User Group, and to register your details, drop by to &lt;/EM&gt;&lt;A title=http://sps.uniqueworld.net/canberra href="http://sps.uniqueworld.net/canberra"&gt;&lt;B&gt;&lt;EM&gt;http://sps.uniqueworld.net/canberra&lt;/EM&gt;&lt;/B&gt;&lt;/A&gt;&lt;EM&gt;. You can also participate in the online discussions to help ensure that the user group focuses on the topics of interest to you.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;If you have any questions or require any further information please do not hesitate to contact us, we look forward to seeing you there.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P class=media&gt;&lt;FONT size=1&gt;&lt;FONT color=gray&gt;[ Currently Playing : Start Me Up - Folksmen - Mighty Wind: The Album (02:25) ] 
&lt;P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=62015" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/Content+Management+Server/default.aspx">Content Management Server</category><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>Wierd WSS Behaviour - Creating from Template as exceeding quota causes images to be dropped.</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/08/07/61813.aspx</link><pubDate>Sun, 07 Aug 2005 08:12:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:61813</guid><dc:creator>anguslogan</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=61813</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/08/07/61813.aspx#comments</comments><description>&lt;p&gt;I was playing with all the new templates and I managed to max out the personal site quota (100mb by default). So the site was created with no images - very wierd - I've never seen that before.&lt;/p&gt;
&lt;img src="http://msmvpsphotos.com/anguslogan/images/wss_quota_1.png" alt="" border="0"&gt;
&lt;p&gt;I had to increase the quota and then delete the site and recreat it to get all the pictures&lt;/p&gt;
&lt;img src="http://msmvpsphotos.com/anguslogan/images/wss_quota_2.png" alt="" border="0"&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=61813" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>SPS/WSS password management</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/08/05/61677.aspx</link><pubDate>Sat, 06 Aug 2005 02:05:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:61677</guid><dc:creator>anguslogan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=61677</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/08/05/61677.aspx#comments</comments><description>&lt;p&gt;This solution should even make &lt;a href="http://www.mcmsfaq.com" target="_blank"&gt;Spencer Harbar&lt;/a&gt; happy after his last &lt;a href="http://www.mcmsfaq.com/2005/06/changing-passwords.asp" target="_blank"&gt;rant about changing passwords without using IISADMPWD&lt;/a&gt;&lt;/p&gt;
&lt;i&gt;[Via &lt;a href="http://blogs.tamtam.nl/mart/PermaLink,guid,dc95adfe-23cb-4cb7-92c0-287f0d3dc220.aspx"&gt;Mart Muller's Sharepoint Weblog&lt;/a&gt;]&lt;/i&gt;
&lt;blockquote&gt;&lt;p xmlns="http://www.w3.org/1999/xhtml"&gt;
      A very usefull tip by &lt;a href="http://ipattern.com/simpleblog/" target="_blank"&gt;Maxim&lt;/a&gt; about
      how to &lt;a href="http://ipattern.com/simpleblog/PermLink.aspx?entryId=90" target="_blank"&gt;provide
      self-serviced password management for SharePoint (WSS/SPS) with 0 lines of code&lt;/a&gt;.
      Something where we&amp;acirc;&amp;euro;&amp;trade;ve been looking for a long time! &lt;img src="http://blogs.tamtam.nl/mart/content/binary/smile1.gif" /&gt; From
      Maxim&amp;acirc;&amp;euro;&amp;trade;s blog:
   &lt;/p&gt;&lt;p xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;font color="#004040"&gt;&amp;acirc;&amp;euro;&amp;oelig;The solution that I came up with solved the following issues:&lt;/font&gt;&lt;/p&gt;&lt;ol style="MARGIN-TOP: 0in" type="1" xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;li&gt;&lt;font color="#004040"&gt;In the case where the Active Directory accounts expired and
         the user were trying to log into the SharePoint (WSS/SPS) the user will now be redirected
         to a screen to change their password. &lt;/font&gt;&lt;/li&gt;&lt;li&gt;&lt;font color="#004040"&gt;With the use of Content WebPart and IISADMPWD virtual directory
         to it will provide end- users of the WSS/SPS site with self-serviced password management
         solution &lt;/font&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;table cellspacing="0" cellpadding="0" width="600" border="0"&gt;&lt;tbody&gt;&lt;tr style="HEIGHT: 12.75pt"&gt;&lt;td valign="top" width="606" height="17"&gt;&lt;p&gt;&lt;font color="#004040"&gt;&lt;font size="1"&gt;1. Find the folder &lt;b&gt;[drive]\Windows\System32\Inetsrv\Iisadmpwd&lt;/b&gt; and
                     register &lt;b&gt;iispwchg.dll&lt;/b&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="HEIGHT: 14.25pt"&gt;&lt;td valign="top" width="606" height="19"&gt;&lt;p style="MARGIN-LEFT: 0.25in"&gt;&lt;font color="#004040" size="1"&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;font color="#004040" size="1"&gt;Click &lt;b&gt;Start&lt;/b&gt;, and then click &lt;b&gt;Run&lt;/b&gt;. &lt;/font&gt;&lt;/li&gt;&lt;li&gt;&lt;font color="#004040" size="1"&gt;In the Open box type the following, and then press
                        ENTER: &lt;/font&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="FONT-FAMILY: 'Courier New'"&gt;&lt;/span&gt;&lt;font color="#004040" size="1"&gt;&lt;/font&gt;&lt;b&gt;&lt;font size="1"&gt;&lt;font color="#004040"&gt;regsvr32
                     c:\windows\system32\inetsrv\iisadmpwd\iispwchg.dll&lt;br /&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="HEIGHT: 25.4pt"&gt;&lt;td valign="top" width="606" height="34"&gt;&lt;p&gt;&lt;font color="#004040" size="1"&gt;2. &lt;/font&gt;&lt;a href="http://www.microsoft.com/resources/documentation/wss/2/all/adminguide/en-us/stse02.mspx" target="_blank"&gt;&lt;font color="#004040" size="1"&gt;Exclude
                     IISADMPWD from WSS Managed path&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="HEIGHT: 14.25pt"&gt;&lt;td valign="top" width="606" height="19"&gt;&lt;p&gt;&lt;font color="#004040" size="1"&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;div style="MARGIN-LEFT: 39pt; TEXT-INDENT: -0.25in"&gt;&lt;font size="1"&gt;&lt;font face="Verdana"&gt;&lt;font color="#004040"&gt;&lt;span style="FONT: 7pt 'Times New Roman'"&gt;&lt;/span&gt;Click &lt;b&gt;Start&lt;/b&gt;,
                           point to &lt;b&gt;All Programs&lt;/b&gt;, point to &lt;b&gt;Administrative Tools&lt;/b&gt;, and then click &lt;b&gt;SharePoint
                           Central Administration&lt;/b&gt;.&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="MARGIN-LEFT: 39pt; TEXT-INDENT: -0.25in"&gt;&lt;font size="1"&gt;&lt;font face="Verdana" color="#004040"&gt;On
                           the &lt;b&gt;Central Administration page&lt;/b&gt;, under &lt;b&gt;Virtual Server Configuration&lt;/b&gt;,
                           click &lt;b&gt;Configure virtual server settings&lt;/b&gt;.&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="MARGIN-LEFT: 39pt; TEXT-INDENT: -0.25in"&gt;&lt;font color="#004040"&gt;&lt;font size="1"&gt;&lt;/font&gt;&lt;font size="1"&gt;&lt;font face="Verdana"&gt;&lt;span style="FONT: 7pt 'Times New Roman'"&gt;&lt;/span&gt;On
                           the &lt;b&gt;Virtual Server List&lt;/b&gt; page, select the virtual server you want to configure.&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="MARGIN-LEFT: 39pt; TEXT-INDENT: -0.25in"&gt;&lt;font size="1"&gt;&lt;font face="Verdana"&gt;&lt;font color="#004040"&gt;&lt;span style="FONT: 7pt 'Times New Roman'"&gt;&lt;/span&gt;On
                           the Virtual Server Settings page, under &lt;b&gt;Virtual Server Management&lt;/b&gt;, click &lt;b&gt;Define
                           Managed Paths&lt;/b&gt;.&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="MARGIN-LEFT: 39pt; TEXT-INDENT: -0.25in"&gt;&lt;font size="1"&gt;&lt;font face="Verdana" color="#004040"&gt;Under &lt;b&gt;Included
                           Paths&lt;/b&gt; or &lt;b&gt;Excluded Paths&lt;/b&gt;, select the check box next to the path you want
                           to remove, and then click Remove selected paths.&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;font color="#004040"&gt;&lt;font size="1"&gt;&lt;/font&gt;&lt;font size="1"&gt;Or &lt;b&gt;STSADM.EXE&lt;/b&gt; can
                     be used to do the same thing as:&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style="MARGIN-LEFT: 21pt"&gt;&lt;font color="#004040" size="1"&gt;You can also remove an included or excluded path by
                     using the command line. For example, to remove an exclusion for the site at http://server1/hrweb/webapp,
                     you would use syntax like the following:&lt;/font&gt;&lt;/p&gt;&lt;p style="MARGIN-LEFT: 21pt"&gt;&lt;font color="#004040" size="1"&gt;&lt;/font&gt;&lt;b&gt;&lt;font size="1"&gt;&lt;font color="#004040"&gt;stsadm
                     -o deletepath -url &lt;/font&gt;&lt;a href="http://server1/hrweb/webapp"&gt;&lt;font color="#004040"&gt;http://server1/hrweb/webapp&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="HEIGHT: 14.25pt"&gt;&lt;td valign="top" width="606" height="19"&gt;&lt;p&gt;&lt;font color="#004040" size="1"&gt;3. Configure the &lt;b&gt;PasswordChangeFlags&lt;/b&gt; property
                     in the metabase to make sure that the Password Change functionality is enabled&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="HEIGHT: 0.5in"&gt;&lt;td valign="top" width="606" height="48"&gt;&lt;p style="MARGIN-LEFT: 21pt"&gt;&lt;font color="#004040" size="1"&gt;&lt;/font&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;div style="MARGIN-LEFT: 0.75in; TEXT-INDENT: -0.25in"&gt;&lt;font size="1"&gt;&lt;font face="Verdana" color="#004040"&gt;Open
                           command-line and Locate the &lt;b&gt;C:\Inetpub\Adminscripts&lt;/b&gt; directory.&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="MARGIN-LEFT: 0.75in; TEXT-INDENT: -0.25in"&gt;&lt;font size="1"&gt;&lt;font face="Verdana" color="#004040"&gt;Type
                           the following command, and then press ENTER: &lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="MARGIN-LEFT: 21pt"&gt;&lt;b&gt;&lt;font color="#004040" size="1"&gt; cscript.exe adsutil.vbs set w3svc/passwordchangeflags
                     0&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;&lt;p style="MARGIN-LEFT: 21pt"&gt;&lt;font color="#004040" size="1"&gt; Note: 0 = This value indicates that you must use a
                     Secure Sockets Layer (SSL) connection when you change the password.&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="HEIGHT: 28.4pt"&gt;&lt;td valign="top" width="606" height="38"&gt;&lt;p&gt;&lt;font color="#004040" size="1"&gt;4. &lt;/font&gt;&lt;a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;172138" target="_blank"&gt;&lt;font color="#004040" size="1"&gt;Configure
                     IISADMPWD virtual directory&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="HEIGHT: 0.5in"&gt;&lt;td valign="top" width="606" height="48"&gt;&lt;p style="MARGIN-LEFT: 21pt"&gt;&lt;font color="#004040" size="1"&gt;When the Virtual Directory Creation Wizard starts,
                     follow the instructions to create the virtual directory with the alias that is named
                     "IISADMPWD." Make sure that the path points to the Windows\System32\Inetsrv\Iisadmpwd
                     directory. Make sure that both "Read" permissions and "Run Scripts (such as ASP)"
                     permissions are selected&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="HEIGHT: 0.5in"&gt;&lt;td valign="top" width="606" height="48"&gt;&lt;p&gt;&lt;font color="#004040" size="1"&gt;5. Creating Self-Serviced AD Password Management WebPart&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="HEIGHT: 0.5in"&gt;&lt;td valign="top" width="606" height="48"&gt;&lt;ul&gt;&lt;li&gt;&lt;div style="MARGIN-LEFT: 0.25in"&gt;&lt;font color="#004040" size="1"&gt; Add &lt;b&gt;Content Editor
                           Web Part&lt;/b&gt; to the WebPart Page &lt;/font&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="MARGIN-LEFT: 0.25in"&gt;&lt;font color="#004040" size="1"&gt;Click on &lt;b&gt;Modified
                           Shared WebPart&lt;/b&gt; from WebPart Chrome menu then Source Editor and past URL that reflects
                           your settings for example: &lt;/font&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;b&gt;&lt;font color="#004040" size="1"&gt;&lt;a href="/iisadmpwd/aexp2.asp?https://localhost:443/default.aspx"&gt;Change
                     Password&lt;/a&gt;&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;font color="#004040"&gt;That&amp;acirc;&amp;euro;&amp;trade;s it! Congratulations, you just configured Self-Serviced
      Password Management WebPart with 0 lines of code. Of course this solution is not as
      elaborate as a custom written code but with the amount of time it takes to enable
      this functionality I think it is well worth the minimal effort.&amp;acirc;&amp;euro;&lt;/font&gt;&lt;/p&gt;&lt;img width="0" height="0" src="http://blogs.tamtam.nl/mart/aggbug.ashx?id=dc95adfe-23cb-4cb7-92c0-287f0d3dc220" xmlns="http://www.w3.org/1999/xhtml" /&gt;&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=61677" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>Mark Bower : Just how important is SharePoint to Microsoft?</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/08/05/61577.aspx</link><pubDate>Fri, 05 Aug 2005 05:23:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:61577</guid><dc:creator>anguslogan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=61577</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/08/05/61577.aspx#comments</comments><description>&lt;i&gt;[Via &lt;a href="http://sharepointerol.blogspot.com/2005/08/mark-bower-just-how-important-is.html"&gt;Erol&lt;/a&gt;]&lt;/i&gt;
&lt;blockquote&gt;
&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;Mark Bower : Just how important is SharePoint to Microsoft?: "In this morning's keynote session Steven Sinofsky told how &lt;b&gt;BillG has personally taken the role of Lead PM on the Windows SharePoint Services v3 User Experience team&lt;/b&gt;.  If you are in any doubt about how strategically important this product is to Microsoft, that should give you some clue.  And if you don't like what you see when you get to PDC, you'll know who to blame ;)&lt;/div&gt;
&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=61577" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item><item><title>Using iWay adapters for BizTalk to enable SharePoint integration</title><link>http://msmvps.com/blogs/anguslogan/archive/2005/08/03/61295.aspx</link><pubDate>Thu, 04 Aug 2005 02:29:00 GMT</pubDate><guid isPermaLink="false">d67277c4-116b-43f1-b688-e9ef184ea916:61295</guid><dc:creator>anguslogan</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://msmvps.com/blogs/anguslogan/rsscomments.aspx?PostID=61295</wfw:commentRss><comments>http://msmvps.com/blogs/anguslogan/archive/2005/08/03/61295.aspx#comments</comments><description>&lt;i&gt;[Via &lt;a href="http://blogs.tamtam.nl/mart/PermaLink,guid,5ec46bdc-9f8d-4055-bfdb-2cfeb81f33e6.aspx"&gt;Mart Muller's Sharepoint Weblog&lt;/a&gt;]&lt;/i&gt;
&lt;blockquote&gt;&lt;p xmlns="http://www.w3.org/1999/xhtml"&gt;
      A whilo ago we&amp;acirc;&amp;euro;&amp;trade;ve been doing a Proof of Concept for getting PeopleSoft data into SharePoint
      and back. In our case, we needed to get the data out of and old version of PeopleSoft,
      which was quite a challange. We used an iWay adapter to do that and that went quite
      well.
   &lt;/p&gt;&lt;p xmlns="http://www.w3.org/1999/xhtml"&gt;
      Today, Microsoft &lt;a href="http://www.microsoft.com/presspass/press/2005/aug05/08-02ApplicationAdaptersPR.mspx" target="_blank"&gt;announced&lt;/a&gt; that
      they bought eight iWay application adapters for BizTalk. The adapters Microsoft purchased
      will help BizTalk Server customers connect more easily to third-party applications
      from Amdocs, JD Edwards, Oracle Corp., PeopleSoft, Siebel Systems Inc. and TIBCO Software
      Inc. iWay customers that have purchased licenses for the .NET-based adapters will
      receive a license for the corresponding Microsoft adapter with the purchase of Software
      Assurance.
   &lt;/p&gt;&lt;p xmlns="http://www.w3.org/1999/xhtml"&gt;
      Some information about &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_SP2003_ta/html/ODC_SPSPayrollReceiptSampApp.asp" target="_blank"&gt;integration
      with SharePoint using Biztalk and iWay on MSDN can be found here&lt;/a&gt;. 
   &lt;/p&gt;&lt;img width="0" height="0" src="http://blogs.tamtam.nl/mart/aggbug.ashx?id=5ec46bdc-9f8d-4055-bfdb-2cfeb81f33e6" xmlns="http://www.w3.org/1999/xhtml" /&gt;&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://msmvps.com/aggbug.aspx?PostID=61295" width="1" height="1"&gt;</description><category domain="http://msmvps.com/blogs/anguslogan/archive/tags/SharePoint+Portal+Server/default.aspx">SharePoint Portal Server</category></item></channel></rss>