<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.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>Armen Kirakosyan's blog</title><link>http://blogs.msdn.com/b/armenk/</link><description /><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>How dangerous can be “public const” while upgrading or fixing a component.</title><link>http://blogs.msdn.com/b/armenk/archive/2013/03/01/how-dangerous-can-be-public-const-while-upgrading-or-fixing-a-component.aspx</link><pubDate>Fri, 01 Mar 2013 14:09:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10398507</guid><dc:creator>Armen Kirakosyan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/armenk/rsscomments.aspx?WeblogPostID=10398507</wfw:commentRss><comments>http://blogs.msdn.com/b/armenk/archive/2013/03/01/how-dangerous-can-be-public-const-while-upgrading-or-fixing-a-component.aspx#comments</comments><description>&lt;p&gt;During my investigation I have noticed a source of potential problem for product upgrade where dev team should fix a bug or upgrade a component and distribute it.&lt;/p&gt;
&lt;p&gt;So what will happen when during fix/upgrade process (I will call it upgrade) a value which was declared as &lt;strong&gt;public const&lt;/strong&gt; was changed. For clear understanding we should see how build process is done. Actually during build process all variables which consume &lt;strong&gt;const&lt;/strong&gt; will be hardcoded. It is not a problem when it is references from the same project, component will be rebuilt anyway. But what if it is referenced from another dll? The value will remain hardcoded and will contain old value.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Tools.dll MyConstants.cs&lt;br /&gt; public const int DEFAULT_PORT = 80;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Service.dll Host.cs&lt;br /&gt; StartService(DEFAULT_PORT);&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;So after upgrade of Tools.dll and change of the DEFAULT_PORT to 8080, Service.dll still will try to start service on 80 port! That is easy to test, just build a solution, copy components to another folder, change &lt;strong&gt;const&lt;/strong&gt; value, rebuild and copy only updated DLL, run an application. You will see that application will show the old value.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/4186.01_2D00_03_2D00_2013-14_2D00_46_2D00_08.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/4186.01_2D00_03_2D00_2013-14_2D00_46_2D00_08.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To avoid troubles with component upgrade and constants it is strongly recommended to mark all constants as internal, or use them inside &lt;strong&gt;private&lt;/strong&gt; or &lt;strong&gt;internal&lt;/strong&gt; classes, classes which are not visible from the outside.&lt;/p&gt;
&lt;p&gt;Another solution if you still want to use the same style of constant definition &lt;strong&gt;const&lt;/strong&gt; should be changed to &lt;strong&gt;static readonly&lt;/strong&gt;, which will create reference and value will not be hardcoded.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;public static readonly int DEFAULT_PORT = 80;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Which will work correctly after component upgrade.&lt;/p&gt;
&lt;p&gt;Happy coding.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10398507" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/armenk/archive/tags/public/">public</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/upgrade/">upgrade</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/const/">const</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/bug/">bug</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/internal/">internal</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/-net/">.net</category></item><item><title>SharePoint 2013. How to force whole list or library to be re-crawled by search</title><link>http://blogs.msdn.com/b/armenk/archive/2013/02/12/how-to-force-whole-list-or-library-to-be-re-crawled-by-search.aspx</link><pubDate>Tue, 12 Feb 2013 12:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10392946</guid><dc:creator>Armen Kirakosyan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/armenk/rsscomments.aspx?WeblogPostID=10392946</wfw:commentRss><comments>http://blogs.msdn.com/b/armenk/archive/2013/02/12/how-to-force-whole-list-or-library-to-be-re-crawled-by-search.aspx#comments</comments><description>&lt;p&gt;It is a new feature which was presented in SharePoint 2013 which allows to force search service to re-crawl whole list or library regardless if items where changed or not. Items will be picked up by full crawl any way but if will be marked for re-crawl they will be crawled also during incremental crawl.&lt;/p&gt;
&lt;p&gt;This feature is very useful when new managed property is configured or site column is modified so as a result search schema needs to be updated and list owner who initially has not access to central admin to fire full crawl which will be very expensive step for large deployment and will affect a lot of content.&lt;/p&gt;
&lt;p&gt;So this cool feature can be found in list (I will not mention library anymore) settings under &lt;strong&gt;Advanced Settings&lt;/strong&gt; link.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/5824.12_2D00_02_2D00_2013-13_2D00_37_2D00_12.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/200x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/5824.12_2D00_02_2D00_2013-13_2D00_37_2D00_12.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Scroll a little &lt;strong&gt;Advanced Settings&lt;/strong&gt; page and pay attention to &lt;strong&gt;Search&lt;/strong&gt; block where you can enable the list to appear in search results. This option should be enabled otherwise &lt;strong&gt;Reindex Document&lt;/strong&gt; feature will not have any sense.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/8662.12_2D00_02_2D00_2013-13_2D00_40_2D00_23.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/8662.12_2D00_02_2D00_2013-13_2D00_40_2D00_23.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Only then you can press &lt;strong&gt;Reindex Document Library&lt;/strong&gt; or &lt;strong&gt;Reindex List&lt;/strong&gt; button&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/2480.12_2D00_02_2D00_2013-13_2D00_42_2D00_35.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/2480.12_2D00_02_2D00_2013-13_2D00_42_2D00_35.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In popup dialog just confirm that you are sure and want to re-index list.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6712.12_2D00_02_2D00_2013-13_2D00_44_2D00_43.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6712.12_2D00_02_2D00_2013-13_2D00_44_2D00_43.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Now your list will be picked up by next continuous or incremental crawl. Make a note that you do not need to scroll down on &lt;strong&gt;Advanced Settings&lt;/strong&gt; page and press &lt;strong&gt;OK&lt;/strong&gt;, list already marked as dirty.&lt;/p&gt;
&lt;p&gt;I am not sure if someone will need to make the same using PowerShell or OM, but anyway drop a line in comment then we can discuss it.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10392946" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/armenk/archive/tags/search/">search</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/crawl/">crawl</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/2013/">2013</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/sharepoint/">sharepoint</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/list/">list</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/index/">index</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/library/">library</category></item><item><title>Teched 2013 days are announced</title><link>http://blogs.msdn.com/b/armenk/archive/2013/02/05/teched-2013-days-are-announced.aspx</link><pubDate>Tue, 05 Feb 2013 17:29:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10391280</guid><dc:creator>Armen Kirakosyan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/armenk/rsscomments.aspx?WeblogPostID=10391280</wfw:commentRss><comments>http://blogs.msdn.com/b/armenk/archive/2013/02/05/teched-2013-days-are-announced.aspx#comments</comments><description>&lt;p&gt;&lt;span style="font-size: medium;"&gt;&lt;strong&gt;Great news! Teched Europe and North America are announced&amp;nbsp;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;and registration will start from Feb 12 2013&lt;/p&gt;
&lt;p&gt;So TechEd North America will be in &lt;strong&gt;New Orleans, LA, June 3 - 6&lt;/strong&gt; and&lt;/p&gt;
&lt;p&gt;TechEd Europe in &lt;strong&gt;Madrid Spain, June 25 - 28&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For more info visit&amp;nbsp;&lt;a href="http://www.msteched.com/"&gt;http://www.msteched.com/&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Stay connected&amp;nbsp;&lt;a href="https://www.facebook.com/TechEdEurope"&gt;https://www.facebook.com/TechEdEurope&lt;/a&gt;&amp;nbsp;and&lt;a href="https://www.facebook.com/teched"&gt;&amp;nbsp;https://www.facebook.com/teched&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10391280" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/armenk/archive/tags/2013/">2013</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/north+america/">north america</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/madrid/">madrid</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/teched/">teched</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/spain/">spain</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/europe/">europe</category></item><item><title>Valid HTML markup automation, leads to better cross browser compatibility </title><link>http://blogs.msdn.com/b/armenk/archive/2013/01/24/valid-html-markup-automation-leads-to-better-cross-browser-compatibility.aspx</link><pubDate>Thu, 24 Jan 2013 12:26:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10387916</guid><dc:creator>Armen Kirakosyan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/armenk/rsscomments.aspx?WeblogPostID=10387916</wfw:commentRss><comments>http://blogs.msdn.com/b/armenk/archive/2013/01/24/valid-html-markup-automation-leads-to-better-cross-browser-compatibility.aspx#comments</comments><description>&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;In short: Having bad HTML to look nice needs more efforts than creating valid HTML which will look nice and &amp;nbsp;be compatible.&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;It took some time for me to investigate how to force development process to increase the&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;quality of HTML markup and minimize cross browser&amp;nbsp;compatibility issues in web UI development.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;HTML validation process always left by developer for the last point and has lowest priority.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;It is almost not done during development process and only when page or probably in many cases&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;whole web site is ready for production.&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;Compatibility and accessibility testing is another duty of testers but looks like they are in general&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;more busy with other things and markup left as is with low priority and extremely high number of errors&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;and&amp;nbsp;warnings&amp;nbsp;in production code. So looks like it is rendered, then no one cares.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;For manual testing there are some tools available for devs and tests but I think that&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;W3C's online validator is out of&amp;nbsp;competition. Just open&amp;nbsp;&lt;a href="http://validator.w3.org/"&gt;http://validator.w3.org/&lt;/a&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;online validator&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;and try to validate some popular resources.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;I will be surprised if any one of them will have low number of validation errors.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;I will not publish some numbers here and will try to avoid validating software/hardware and IT service providers.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;Try some popular news portals like cnn.com and&amp;nbsp;nytimes.com .&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;Number of errors is extremely high I think. To be true I do not see any reason to keep that so high&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;and the only reason it is so just web UI was not designed and developed with compatibility in mind.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;Some will tell but it is rendered and looks nice. I will agree that it is working, but we should understand the price of it.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;Making bad html to look good leads to extra coding and development pain.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;That means more code we need, more testing we need and more UI bugs we have.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;Just some words about automation testing. There is manual tests which is well known when tester&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;tests unit like feature or page&amp;nbsp;manually&amp;nbsp;executing or opening it to check&amp;nbsp;functionality.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;Automation test is done using some tools which checks functionality&amp;nbsp;problematically&amp;nbsp; like browser simulating,&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;clicking, creating resources, managing them and disposing. Automation test just a step after small development&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;milestone which should check if feature works as expected and none of dependencies are broken.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;Spend some time using your favorite search engine to find more about "Automation testing"&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;like&amp;nbsp;&lt;a href="http://en.wikipedia.org/wiki/Test_automation"&gt;http://en.wikipedia.org/wiki/Test_automation&lt;/a&gt;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;Solution is not new and it is web ui automation test. Automation tests will force devs to keep HTML&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;clear and valid from the first steps of development. It will minimize tester's efforts and save a lot of time for big portal testing.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;Code can be as simple as&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px 0px 20px; padding: 0px; outline: 0px; border: 0px currentColor; color: #253340; line-height: 19.01px; font-family: 'Segoe UI', Tahoma, Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: baseline;"&gt;&lt;em style="margin: 0px; padding: 0px; outline: 0px; border: 0px currentColor; vertical-align: baseline;"&gt;[TestMethod]&lt;br /&gt;&lt;em style="margin: 0px; padding: 0px; outline: 0px; border: 0px currentColor; vertical-align: baseline;"&gt;..............&lt;br /&gt;var result = Validator.Client.Check(new Uri("http://www.cnn.com", UriKind.Absolute));&lt;/em&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p style="margin: 0px 0px 20px; padding: 0px; outline: 0px; border: 0px currentColor; color: #253340; line-height: 19.01px; font-family: 'Segoe UI', Tahoma, Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: baseline;"&gt;&lt;em style="margin: 0px; padding: 0px; outline: 0px; border: 0px currentColor; vertical-align: baseline;"&gt;if(!result.Validity)&lt;/em&gt;&lt;br /&gt;&lt;em style="margin: 0px; padding: 0px; outline: 0px; border: 0px currentColor; vertical-align: baseline;"&gt;{&lt;/em&gt;&lt;br /&gt;&lt;em style="margin: 0px; padding: 0px; outline: 0px; border: 0px currentColor; vertical-align: baseline;"&gt;&amp;nbsp; &amp;nbsp;.... Show errors.... result.Errors&lt;/em&gt;&lt;br /&gt;&lt;em style="margin: 0px; padding: 0px; outline: 0px; border: 0px currentColor; vertical-align: baseline;"&gt;&lt;span style="margin: 0px; padding: 0px; outline: 0px; border: 0px currentColor; font-size: 10pt; vertical-align: baseline;"&gt;}&amp;nbsp;&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;W3C provides API (web service) for testing. More information can be found here&amp;nbsp;&lt;a href="http://validator.w3.org/docs/api.html"&gt;http://validator.w3.org/docs/api.html&lt;/a&gt;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;API will check for markup validity and will return a list of errors with HTML fragments and comments with suggestions.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;So you can consume that API from your test code for HTML validation or use sample library which I am using for my projects,&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;it is published with sources under&amp;nbsp;&lt;a href="http://w3cvalidatorclient.codeplex.com/"&gt;http://w3cvalidatorclient.codeplex.com&lt;/a&gt;/&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;So the only thing you need now is to create Test project and implement some lines of code.&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p style="margin: 0px; color: #000000; text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10387916" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/armenk/archive/tags/validator/">validator</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/markup/">markup</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/campatibility/">campatibility</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/html/">html</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/w3c/">w3c</category></item><item><title>JavaScript scoping confuses other language developers.</title><link>http://blogs.msdn.com/b/armenk/archive/2012/12/12/javascript-scoping-confuses-other-language-developers.aspx</link><pubDate>Wed, 12 Dec 2012 10:41:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10376764</guid><dc:creator>Armen Kirakosyan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/armenk/rsscomments.aspx?WeblogPostID=10376764</wfw:commentRss><comments>http://blogs.msdn.com/b/armenk/archive/2012/12/12/javascript-scoping-confuses-other-language-developers.aspx#comments</comments><description>&lt;pre&gt;Developers who is writing in C#,C ++ and some other languages probably will &lt;br /&gt;face some bugs and uncommon behavior when will develop in JavaScript.&lt;br /&gt;&lt;br /&gt;For me it was very confusing the scoping strategy in JavaScript so &lt;br /&gt;I have decided to drop some lines here.&lt;br /&gt;&lt;br /&gt;First small sample about scoping in C#, this sample even will &lt;br /&gt;not compile since MyValue local variable declaration is not allowed &lt;br /&gt;when there is a global &lt;br /&gt;&lt;br /&gt;variable with the same name.&lt;br /&gt;&lt;br /&gt;namespace ConsoleApplication3&lt;br /&gt;{&lt;br /&gt;    using System;&lt;br /&gt;&lt;br /&gt;    class Program&lt;br /&gt;    {&lt;br /&gt;        static int MyValue = 10;&lt;br /&gt;        &lt;br /&gt;        static void Main(string[] args)&lt;br /&gt;        {&lt;br /&gt;            if (true)&lt;br /&gt;            {&lt;br /&gt;                int MyValue = 20;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            Console.WriteLine("Final value: {0}", MyValue);&lt;br /&gt;            Console.ReadKey();&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;But equivalent in JavaScript surprisingly will work and you &lt;br /&gt;can see that locally defined variable will have influence on global one, and&lt;br /&gt;surprisingly (I think so) the output will be 20.&amp;nbsp;&lt;/pre&gt;
&lt;pre&gt;&lt;br /&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta content="text/html; charset=utf-8" http-equiv="Content-Type"&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;Scope test&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;input type="button" onclick="TestScope()" value="Test" /&amp;gt;&lt;br /&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt;var MyValue = 10;&lt;br /&gt;function TestScope()&lt;br /&gt;{&lt;br /&gt;	if(true)&lt;br /&gt;	{&lt;br /&gt;		var MyValue = 20;&lt;br /&gt;	}&lt;br /&gt;	&lt;br /&gt;	alert('Final value: ' + MyValue);&lt;br /&gt;}&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;br /&gt; &lt;br /&gt;So scopes in JavaScript sometime can be more confusing if &lt;br /&gt;developer does not clearly understand the usage of var keyword.&lt;br /&gt;I saw previously that developers just skip declaration of the variable &lt;br /&gt;and use it. Sure may be that worked but what is the price of omitting var?  &lt;br /&gt;So variable which was used without var keyword will become global variable! &lt;br /&gt;Example will show that variable defined in Scope3 method will not &lt;br /&gt;affect global MyValue &lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;
&lt;pre&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta content="text/html; charset=utf-8" http-equiv="Content-Type"&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;Scope test&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt;function TestScope1()&lt;br /&gt;{&lt;br /&gt;	MyValue = 'Scope 1,';&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;function TestScope2()&lt;br /&gt;{&lt;br /&gt;	MyValue += 'Scope 2';&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;function TestScope3()&lt;br /&gt;{&lt;br /&gt;	var MyValue = 'Scope 3';&lt;br /&gt;}&lt;br /&gt;TestScope1();&lt;br /&gt;TestScope2();&lt;br /&gt;TestScope3();&lt;br /&gt;alert(MyValue);&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10376764" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/armenk/archive/tags/JavaScript/">JavaScript</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/scopes/">scopes</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/C_2300_/">C#</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/global+variables/">global variables</category></item><item><title>SharePoint Server 2013 seminar in Armenia</title><link>http://blogs.msdn.com/b/armenk/archive/2012/11/26/sharepoint-server-2013-seminar-in-armenia.aspx</link><pubDate>Mon, 26 Nov 2012 20:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10371723</guid><dc:creator>Armen Kirakosyan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/armenk/rsscomments.aspx?WeblogPostID=10371723</wfw:commentRss><comments>http://blogs.msdn.com/b/armenk/archive/2012/11/26/sharepoint-server-2013-seminar-in-armenia.aspx#comments</comments><description>&lt;div&gt;
&lt;table cellspacing="0" cellpadding="0" align="left"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td align="left" valign="top"&gt;
&lt;p&gt;Microsoft Armenia invites to seminar!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Microsoft SharePoint 2013&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;The seminar will take place on &lt;strong&gt;November 30, 2012 at 17:30&lt;/strong&gt; in Microsoft Innovation Center Armenia &lt;br /&gt;(105 Teryan str., State Engineering University of Armenia, Building #10, 6th Floor).&lt;/p&gt;
&lt;p&gt;The presentations will be conducted by&lt;strong&gt; Michael Noel, Joel Oleson &lt;/strong&gt;and&lt;strong&gt; Paul J. Swider&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;The language of the event: &lt;strong&gt;English&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;To register, please send a &lt;a href="mailto:v-dakoch@microsoft.com?subject=SharePoint%202013%20Seminar"&gt;confirmation email&lt;/a&gt; to &lt;a href="mailto:v-dakoch@microsoft.com"&gt;v-dakoch@microsoft.com&lt;/a&gt; with the subject: SharePoint 2013 Seminar&lt;strong&gt;. &lt;br /&gt;&lt;/strong&gt;Registration is on a &lt;strong&gt;first-come first-served&lt;/strong&gt; basis.&lt;/p&gt;
&lt;p&gt;Agenda&lt;/p&gt;
&lt;div align="center"&gt;
&lt;table style="width: 642px;" border="0" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="103"&gt;
&lt;p align="center"&gt;&lt;strong&gt;Time&lt;/strong&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="352"&gt;
&lt;p align="center"&gt;&lt;strong&gt;Topic&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="187"&gt;
&lt;p align="center"&gt;&lt;strong&gt;Speaker&lt;/strong&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="103"&gt;
&lt;p align="center"&gt;17:30 &amp;ndash; 18:30&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="352"&gt;
&lt;p&gt;Overview of What&amp;rsquo;s New and Compelling in SharePoint 2013&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;Michael Noel&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="103"&gt;
&lt;p align="center"&gt;18:30 &amp;ndash; 18:45&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="352"&gt;
&lt;p&gt;Coffee Break&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="103"&gt;
&lt;p align="center"&gt;18:45 &amp;ndash; 19:45&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="352"&gt;
&lt;p&gt;Preparing for SharePoint 2013 Intranets &amp;ndash; Real World&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;Joel Oleson&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="103"&gt;
&lt;p align="center"&gt;19:45 &amp;ndash; 20:00&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="352"&gt;
&lt;p&gt;Coffee Break&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="103"&gt;
&lt;p align="center"&gt;20:00 &amp;ndash; 21:00&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="352"&gt;
&lt;p&gt;Data Visualization with SharePoint and SQL Server 2012&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;Paul J. Swider&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="103"&gt;
&lt;p align="center"&gt;21:00 &amp;ndash; 21:15&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="352"&gt;
&lt;p&gt;Q&amp;amp;A and Closing&lt;/p&gt;
&lt;/td&gt;
&lt;td valign="top" width="187"&gt;
&lt;p&gt;Michael Noel, Joel Oleson, &lt;br /&gt;Paul J. Swider&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Sessions&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Overview of What&amp;rsquo;s New and Compelling in SharePoint 2013&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The &amp;lsquo;latest and greatest&amp;rsquo; version of SharePoint is released, and it is time once again for SharePoint &lt;br /&gt;architects to examine the new features in the software and how they change the best practices around design and implementation. &lt;br /&gt;During this session, we cover the major architectural changes, including the integration of FAST Search, &lt;br /&gt;new service applications, and how SQL 2012 changes data tier architecture for SharePoint 2013.&amp;nbsp; &lt;br /&gt;Enhanced claims-based authentication options and new best practices around SharePoint extranet models are covered, &lt;br /&gt;and the new Site Mailbox integration options with Exchange 2013 are discussed. SharePoint architects, &lt;br /&gt;administrators, and developers will gain valuable insight into this new, powerful version of SharePoint and &lt;br /&gt;will be able to immediately use the best practices presented within their own environments.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Preparing for SharePoint 2013 Intranets &amp;ndash; Real World&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ll show you some of the recent updates we&amp;rsquo;ve performed in preparing for SharePoint 2013 and mobile Intranets.&amp;nbsp; &lt;br /&gt;I&amp;rsquo;ll also share some of the top productivity enhancements we plan to take advantage including drag and drop, enhanced search, and SkyDrive Pro.&lt;/p&gt;
&lt;p&gt;&amp;bull;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mobile Enhancements&lt;/p&gt;
&lt;p&gt;&amp;bull;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SkyDrive Pro with Document Sync&lt;/p&gt;
&lt;p&gt;&amp;bull;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Document Library Enhancements for cross browser and multi devices&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Data Visualization with SharePoint and SQL Server 2012&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Content Focus: Dashboards, Business Intelligence, Developer Tools&lt;/p&gt;
&lt;p&gt;Session Angle: Customization and Development&lt;/p&gt;
&lt;p&gt;One key factor driving the self-service BI market is the growing volume and complexity of data. &lt;br /&gt;As a result, enterprises will adopt new interactive reporting tools designed to put more data analytics capabilities into the hands of business users. &lt;br /&gt;In this session you will learn what self-service reporting tools are available in SharePoint 2010 &lt;br /&gt;and how they can be used to create business solutions to visualize and navigate data. &lt;br /&gt;Learn how to meet your business needs and discover best practices implementing data visualizations.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Speakers&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;
&lt;table border="0" cellspacing="0" cellpadding="0"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td valign="top" width="152"&gt;&amp;nbsp;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/0876.1.jpg"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/0876.1.jpg" alt="" width="150" height="150" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td valign="top" width="547"&gt;
&lt;p&gt;&lt;strong&gt;Michael Noel &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Michael Noel is an internationally recognized technology expert, bestselling author, and well known public speaker on a broad range of IT topics.&amp;nbsp; He has authored several major industry books that have been translated into over a dozen languages worldwide. Significant titles include SharePoint 2013 Unleashed, Exchange Server 2013 Unleashed, Windows Server 2012 Unleashed, SharePoint 2010 Unleashed, and many more.&amp;nbsp; Currently a partner at Convergent Computing (&lt;a href="http://www.cco.com"&gt;www.cco.com&lt;/a&gt;) in the San Francisco Bay Area, Michael's writings and extensive public speaking experience across all seven continents leverage his real-world expertise helping organizations realize business value from Information Technology infrastructure.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="152"&gt;&amp;nbsp;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/8524.2.jpg"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/150x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/8524.2.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td valign="top" width="547"&gt;
&lt;p&gt;&lt;strong&gt;Joel Oleson&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Joel was the first dedicated SharePoint Administrator ever. He's been working with SharePoint nearly 12 years and worked at Microsoft in both IT and the product teams including Architecting the first rollout of Microsoft's own global search, upgrading the intranet, deploying enterprise deployments of team sites and my sites. On the Microsoft SharePoint Product Team was Sr. Product Manager and managed the IT Pro Audience in the SharePoint 2007 release. Joel has travelled over 100 countries in his quest to connect the global SharePoint community.&amp;nbsp; He has spoken in hundreds of events flying nearly 1 million miles reaching all corners of the globe. He currently manages a large SharePoint team in Salt Lake City at The Church of Jesus Christ of Latter-day Saints.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td valign="top" width="152"&gt;&amp;nbsp;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/1057.3.jpg"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/1057.3.jpg" alt="" width="176" height="150" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td valign="top" width="547"&gt;
&lt;p&gt;&lt;strong&gt;Paul J. Swider &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Paul J. Swider is the CTO of RealActivity (&lt;a href="http://www.theactivityproject.com"&gt;www.theactivityproject.com&lt;/a&gt;) an organization focused on improving collaboration, compliance and fiscal responsibility in healthcare. He has two decades of proven software and healthcare experience and is involved in many community and philanthropic efforts including a founding member of Sharing the Point, an international effort which offers free training opportunities in emerging markets. Paul is an accomplished technology entrepreneur straight from a barrier Island near Charleston, SC where he occasionally gets to chase the tides and winds as an avid boater and sailor.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10371723" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/armenk/archive/tags/armenia/">armenia</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/sharepoint+2013/">sharepoint 2013</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/seminar/">seminar</category></item><item><title>Consuming Web API using JavaScript and XMLHttpRequest method</title><link>http://blogs.msdn.com/b/armenk/archive/2012/11/23/cross-site-calls-with-javascript-using-xmlhttprequest-jquery-mvc-ajax-and-webapi.aspx</link><pubDate>Fri, 23 Nov 2012 21:40:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10371211</guid><dc:creator>Armen Kirakosyan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/armenk/rsscomments.aspx?WeblogPostID=10371211</wfw:commentRss><comments>http://blogs.msdn.com/b/armenk/archive/2012/11/23/cross-site-calls-with-javascript-using-xmlhttprequest-jquery-mvc-ajax-and-webapi.aspx#comments</comments><description>&lt;p&gt;Using JavaScript with remote services by calling REST, JSON, WCF or other web service will&amp;nbsp;decrease&amp;nbsp;data round trips and will allow to create reach web interfaces.&lt;/p&gt;
&lt;p&gt;For demo I will use Visual Studio 2012 and MVC4. Client call will be hosted in MVC4 page and service will be provided by WebAPI which is also based on MVC4.&lt;/p&gt;
&lt;p&gt;Lets first see how it works in one server environment, more complex scenario will be in next posts.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Start Visual Studio 2012 and create a web site using &lt;strong&gt;ASP.NET MVC4 Web Application&lt;/strong&gt; template.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/8816.23_2D00_11_2D00_2012-23_2D00_02_2D00_26.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/8816.23_2D00_11_2D00_2012-23_2D00_02_2D00_26.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Then choose &lt;strong&gt;Basic&lt;/strong&gt; template without creating test project.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/3005.24_2D00_11_2D00_2012-00_2D00_02_2D00_00.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/3005.24_2D00_11_2D00_2012-00_2D00_02_2D00_00.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Create HomeController and corresponding View which will response to root address&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/7608.24_2D00_11_2D00_2012-00_2D00_04_2D00_39.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/7608.24_2D00_11_2D00_2012-00_2D00_04_2D00_39.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I want to skip details about creating controllers and views, you can find a lot of samples and blog posts about it.&lt;/p&gt;
&lt;p&gt;On next step I will create another controller which will response to JavaScript calls. To create WebAPI page right click on &lt;strong&gt;Controllers&lt;/strong&gt; folder and click on &lt;strong&gt;Add / Web API Controller class&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;In new window just edit &lt;strong&gt;ValuesController1&lt;/strong&gt; by removing trailing 1.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/0876.24_2D00_11_2D00_2012-00_2D00_12_2D00_45.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/200x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/0876.24_2D00_11_2D00_2012-00_2D00_12_2D00_45.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Controller with default methods will be created and that is enough for demo. To confirm and check what is created just build project and run it. Add &lt;strong&gt;/api/values&lt;/strong&gt; which is Web API address by default and confirm response from the server.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/2438.24_2D00_11_2D00_2012-00_2D00_17_2D00_15.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/2438.24_2D00_11_2D00_2012-00_2D00_17_2D00_15.png" alt="" border="0" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The only thing we need is to create a script which will call this web service and show results.&lt;br /&gt;Modify Index view and add to it script block, button and div which will contain the response.&lt;/p&gt;
&lt;pre class="scroll"&gt;&lt;em&gt;&lt;code class="html"&gt; &amp;lt;div&amp;gt;&lt;br /&gt; &amp;lt;div id="response"&amp;gt;&lt;br /&gt; &lt;br /&gt; &amp;lt;/div&amp;gt;&lt;br /&gt; &amp;lt;input type="button" value="Call Web API" onclick="javascript:CallWebAPI();" /&amp;gt;&lt;br /&gt; &amp;lt;/div&amp;gt;&lt;br /&gt; &amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt; function CallWebAPI()&lt;br /&gt; {&lt;br /&gt; var responseContainer = document.getElementById('response');&lt;br /&gt; var request = new XMLHttpRequest();&lt;br /&gt; request.open("get", "/api/values", false);&lt;br /&gt; request.send();&lt;br /&gt; &lt;br /&gt; response.innerHTML = request.responseText;&lt;br /&gt; }&lt;br /&gt; &amp;lt;/script&amp;gt;&lt;/code&gt;&lt;/em&gt;&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;So as a result you will see injected JSON response. You can manipulate and request response to be in XMLor JSON format.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/1031.24_2D00_11_2D00_2012-00_2D00_34_2D00_22.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/1031.24_2D00_11_2D00_2012-00_2D00_34_2D00_22.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In the next post I will show how to make cross site requests and what kind of difficulties can occur.&lt;/p&gt;
&lt;p&gt;Happy coding!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10371211" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/armenk/archive/tags/JavaScript/">JavaScript</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/WebApi/">WebApi</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/XMLHttpRequest/">XMLHttpRequest</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/MVC/">MVC</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/Ajax/">Ajax</category></item><item><title>The Microsoft Bing Advertising Engineering Team will be hosting a recruiting event in Yerevan March 1-5!</title><link>http://blogs.msdn.com/b/armenk/archive/2012/11/18/the-microsoft-bing-advertising-engineering-team-will-be-hosting-a-recruiting-event-in-yerevan-march-1-5.aspx</link><pubDate>Sun, 18 Nov 2012 09:09:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10369633</guid><dc:creator>Armen Kirakosyan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/armenk/rsscomments.aspx?WeblogPostID=10369633</wfw:commentRss><comments>http://blogs.msdn.com/b/armenk/archive/2012/11/18/the-microsoft-bing-advertising-engineering-team-will-be-hosting-a-recruiting-event-in-yerevan-march-1-5.aspx#comments</comments><description>&lt;p&gt;&lt;span&gt;The Microsoft Bing Advertising Engineering Team will be hosting a recruiting event in Yerevan March 1-5! (travel &amp;amp; accommodations for qualified applicants included) If you or anyone you know is interested in a Software Development Engineering career with Bing Advertising at Microsoft in the U.S. please reach out to me directly via LinkedIn for email contact!&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10369633" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/armenk/archive/tags/yerevan/">yerevan</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/armenia/">armenia</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/career/">career</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/bing/">bing</category></item><item><title>Crawl transparency in SharePoint Server 2013. How to find when a list was crawled.</title><link>http://blogs.msdn.com/b/armenk/archive/2012/11/08/sharepoint_2D00_2013_2D00_crawl_2D00_transparency.aspx</link><pubDate>Thu, 08 Nov 2012 08:31:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10366815</guid><dc:creator>Armen Kirakosyan</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.msdn.com/b/armenk/rsscomments.aspx?WeblogPostID=10366815</wfw:commentRss><comments>http://blogs.msdn.com/b/armenk/archive/2012/11/08/sharepoint_2D00_2013_2D00_crawl_2D00_transparency.aspx#comments</comments><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In this blog post, I will present a new feature in SharePoint 2013 &amp;ndash; &lt;strong&gt;Crawl transparency&lt;/strong&gt;. I will show you how it works with a step-by-step installation, from Site Collection deployment to crawl results check.&lt;/p&gt;
&lt;p&gt;Goal: Information panel will show crawler status, so that you don&amp;rsquo;t have to access and filter data in Search Service Application log.&lt;/p&gt;
&lt;p&gt;Before you start this procedure, make sure you have installed and configured SharePoint Server 2013. For more details how to install and configure SharePoint Server please , see &lt;a href="http://technet.microsoft.com/en-us/library/ee667264(v=office.15).aspx"&gt;Overview of SharePoint 2013 installation and configuration&lt;/a&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Create a site collection by using the Product Catalog template.&lt;br /&gt;&lt;br /&gt; The Product Catalog is a new site collection template in SharePoint 2013. To create a new site collection, open Central Administration site and click &lt;strong&gt;Create Site Collection&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/0310.1.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/0310.1.png" alt="" border="0" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Type site name and URL you want to give this site collection, and ensure you have selected &lt;strong&gt;Product Catalog&amp;nbsp;&lt;/strong&gt;from the &lt;strong&gt;Publishing&lt;/strong&gt; tab. Type admin&amp;rsquo;s login in &lt;strong&gt;User Login&lt;/strong&gt; text box.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/0027.2.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/0027.2.png" alt="" border="0" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;When the site collection has been created, browse to the site and create a new List by clicking on on &lt;strong&gt;Add an&lt;/strong&gt; &lt;strong&gt;app&lt;/strong&gt; from the Site Settings menu&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/7840.3.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/7840.3.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Click on &lt;strong&gt;Custom List&lt;/strong&gt; template and create new list with the name &lt;strong&gt;My List&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6052.4.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6052.4.png" alt="" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Navigate to the newly created My List, and click on List Settings&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/8880.5.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/8880.5.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;From list settings, select Catalog Settings&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6215.6.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6215.6.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;On the Catalog Settings&amp;nbsp; Page you can see information about crawler status and when the list was crawled last time. The page also contains other features, which I will describe in other posts. Since My List was just created, &amp;nbsp;it is not crawled and that you can read in note.&lt;br /&gt;The panel also contains information about incremental, full and continuous crawl schedules.&lt;br /&gt;&amp;nbsp;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/4527.7.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/4527.7.png" alt="" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Go back to the list and, add some items&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/0647.8.png" alt="" border="0" /&gt;&lt;/li&gt;
&lt;li&gt;Now, let&amp;rsquo;s go back to the, Manage Service Applications page in Central Administration, and select &lt;strong&gt;Search Service Application&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt; &lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/2742.9.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/2742.9.png" alt="" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;From Content Sources, click on &lt;strong&gt;Local SharePoint sites&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt; &lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6052.10.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6052.10.png" alt="" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Scroll to the bottom of the page and create incremental and full crawl schedules&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/4478.11.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/4478.11.png" alt="" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Click OK to save changes, and then click on &lt;strong&gt;Local SharePoint&lt;/strong&gt; &lt;strong&gt;sites&lt;/strong&gt; and select &lt;strong&gt;Start Full Crawl&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/1680.12.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/1680.12.png" alt="" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;The crawling process will take some time. When it has finished, browse your list (My List), then go to &amp;nbsp;My List settings, Catalog Settings. Now you can see that the Search Information panel shows full and incremental schedules have been setup, and last crawl time shows the time when the list was crawled. The information reflects time when last item from list was picked up by crawler.&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/7534.13.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/7534.13.png" alt="" border="0" /&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;The same information is accessible in Central Administration, from Search Service Application =&amp;gt; Crawl Log&lt;strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/2620.14.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/2620.14.png" alt="" border="0" /&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;In the Crawl Log you can see information about &amp;nbsp;all items that were crawled &lt;br /&gt; &lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6445.15.png"&gt;&lt;img src="http://blogs.msdn.com/resized-image.ashx/__size/550x0/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6445.15.png" alt="" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;a href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-56-46/6445.15.png"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
&lt;p&gt;That is all for this post, feel free to post questions and feedback is welcome.&lt;/p&gt;
&lt;p&gt;In my next post, I will &amp;nbsp;introduce the &amp;nbsp;&lt;strong&gt;Enable Anonymous access&lt;/strong&gt; feature, and also other options from the Catalog Settings.&lt;/p&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10366815" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/b/armenk/archive/tags/search/">search</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/transparency/">transparency</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/crawl/">crawl</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/fast/">fast</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/2013/">2013</category><category domain="http://blogs.msdn.com/b/armenk/archive/tags/sharepoint/">sharepoint</category></item></channel></rss>