<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Data Source &#187; Sitecore</title>
	<atom:link href="http://www.webdatasource.com/category/sitecore/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdatasource.com</link>
	<description>your link to better business solutions</description>
	<lastBuildDate>Wed, 03 Aug 2011 19:22:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Exporting and Importing packages from Sitecore through Code using Sitecore API</title>
		<link>http://www.webdatasource.com/2011/08/exporting-and-importing-packages-from-sitecore-through-code-using-sitecore-api/</link>
		<comments>http://www.webdatasource.com/2011/08/exporting-and-importing-packages-from-sitecore-through-code-using-sitecore-api/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 19:17:40 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[BehaviourOptions]]></category>
		<category><![CDATA[CreateInstallationContext]]></category>
		<category><![CDATA[DefaultItemInstallerEvents]]></category>
		<category><![CDATA[document sources]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[environments]]></category>
		<category><![CDATA[ExplicitItemSource]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[exporting]]></category>
		<category><![CDATA[Factory]]></category>
		<category><![CDATA[GetDatabase]]></category>
		<category><![CDATA[IFileInstallerEvents]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[importing]]></category>
		<category><![CDATA[Master]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[PACKAGE]]></category>
		<category><![CDATA[PackageGenerator]]></category>
		<category><![CDATA[PackageProject]]></category>
		<category><![CDATA[PackageWriter]]></category>
		<category><![CDATA[Per]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[ProxyDisabler]]></category>
		<category><![CDATA[SaveProject]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SecurityDisabler]]></category>
		<category><![CDATA[SES]]></category>
		<category><![CDATA[SetActiveSite]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[Simple]]></category>
		<category><![CDATA[SimpleProcessingContext]]></category>
		<category><![CDATA[sitecore api]]></category>
		<category><![CDATA[sitecore packages]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[source document]]></category>
		<category><![CDATA[source entries]]></category>
		<category><![CDATA[source name]]></category>
		<category><![CDATA[SPECIFY]]></category>
		<category><![CDATA[SyncOperationContext]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16878</guid>
		<description><![CDATA[If you ever needed to export or import Sitecore packages dynamically through code, this is the article for you. You could be integrating it into automated build process or simply trying to move items between two environments. Here is the Export Code: using (new Sitecore.SecurityModel.SecurityDisabler()) { Sitecore.Data.Database db = Sitecore.Configuration.Factory.GetDatabase("master"); Sitecore.Install.PackageProject document = new Sitecore.Install.PackageProject(); [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever needed to export or import Sitecore packages dynamically through code, this is the article for you. You could be integrating it into automated build process or simply trying to move items between two environments.</p>
<p>Here is the Export Code:</p>
<pre name="code" class="c-sharp">            using (new Sitecore.SecurityModel.SecurityDisabler())
            {
                Sitecore.Data.Database db = Sitecore.Configuration.Factory.GetDatabase("master");
                Sitecore.Install.PackageProject document = new Sitecore.Install.PackageProject();

                document.Metadata.PackageName = "INSERT PACKAGE NAME";
                document.Metadata.Author = "INSERT AUTHOR NAME";

                Sitecore.Install.Items.ExplicitItemSource source = new Sitecore.Install.Items.ExplicitItemSource(); //Create source – source should be based on BaseSource
                source.Name = "INSERT SOURCE NAME";
                Sitecore.Data.Items.Item[] items = db.Items.Database.SelectItems("SPECIFY THE SITECORE ITEM PATH TO EXPORT FROM");

                foreach (Sitecore.Data.Items.Item item in items)
                {
                    source.Entries.Add(new Sitecore.Install.Items.ItemReference(item.Uri, false).ToString());
                }

                document.Sources.Add(source);
                document.SaveProject = true;

                //path where the zip file package is saved
                using (Sitecore.Install.Zip.PackageWriter writer = new Sitecore.Install.Zip.PackageWriter("/data/packages/"  + " INSERT ZIP FILE NAME " + DateTime.Now.Ticks.ToString() + ".zip"))
                {
                    Sitecore.Context.SetActiveSite("shell");

                    writer.Initialize(Sitecore.Install.Installer.CreateInstallationContext());

                    Sitecore.Install.PackageGenerator.GeneratePackage(document, writer);

                    Sitecore.Context.SetActiveSite("website");
                }

            }</pre>
<p>Here is the Import Code:</p>
<pre name="code" class="c-sharp">                using (new SecurityDisabler())
                {
                    using (new ProxyDisabler())
                    {
                        using (new SyncOperationContext())
                        {
                            IProcessingContext context = new SimpleProcessingContext();
                            IItemInstallerEvents events = new DefaultItemInstallerEvents(new BehaviourOptions(InstallMode.Overwrite, MergeMode.Undefined));
                            context.AddAspect(events);
                            IFileInstallerEvents events1 = new DefaultFileInstallerEvents(true);
                            context.AddAspect(events1);

                            Sitecore.Install.Installer installer = new Sitecore.Install.Installer();
                            installer.InstallPackage(MainUtil.MapPath("INSERT PACKAGE PATH INCLUDING THE FILE NAME"), context);
                        }
                    }
                }</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2011/08/exporting-and-importing-packages-from-sitecore-through-code-using-sitecore-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitecore Lucene Search Index</title>
		<link>http://www.webdatasource.com/2011/07/sitecore-lucene-search-index/</link>
		<comments>http://www.webdatasource.com/2011/07/sitecore-lucene-search-index/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 15:53:51 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[AddCrawler]]></category>
		<category><![CDATA[AddIndex]]></category>
		<category><![CDATA[Basic]]></category>
		<category><![CDATA[CES]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Crawlers]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[DatabaseCrawler]]></category>
		<category><![CDATA[definition]]></category>
		<category><![CDATA[ExcludeTemplate]]></category>
		<category><![CDATA[GOOG]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google search]]></category>
		<category><![CDATA[GUID]]></category>
		<category><![CDATA[IncludeTemplate]]></category>
		<category><![CDATA[index definitions]]></category>
		<category><![CDATA[index id]]></category>
		<category><![CDATA[indexes]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[Lucene]]></category>
		<category><![CDATA[Manage]]></category>
		<category><![CDATA[master content]]></category>
		<category><![CDATA[namespace]]></category>
		<category><![CDATA[need]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[SDN]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[search classes]]></category>
		<category><![CDATA[search crawlers]]></category>
		<category><![CDATA[SearchConfiguration]]></category>
		<category><![CDATA[section]]></category>
		<category><![CDATA[SES]]></category>
		<category><![CDATA[Tags]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16882</guid>
		<description><![CDATA[Sitecore has been using Lucene search since version 5, which used the Sitecore.Data.Indexing namespace and Sitecore -&#62; Indexes section in the Web.Config. Starting in Sitecore 6.4, they introduced a new Search namespace &#8211; Sitecore.Search, this uses the Sitecore -&#62; Search -&#62; Configuration -&#62; Indexes section in Web.Config. From what I know, Sitecore recommends using the [...]]]></description>
			<content:encoded><![CDATA[<p>Sitecore has been using Lucene search since version 5, which used the Sitecore.Data.Indexing namespace and Sitecore -&gt; Indexes section in the Web.Config.</p>
<p>Starting in Sitecore 6.4, they introduced a new Search namespace &#8211; Sitecore.Search, this uses the Sitecore -&gt; Search -&gt; Configuration -&gt; Indexes section in Web.Config.</p>
<p>From what I know, Sitecore recommends using the new namespace and the old namespace is going to be deprecated starting Sitecore 6.5. The following is a blurb from Sitecore 6.5 Release notes from SDN:<br />
&#8220;The Sitecore.Data.Indexing namespace has been deprecated and will be removed in a future version of the CMS in favor of the more powerful and flexible Sitecore.Search classes and corresponding index definitions. &#8220;</p>
<p>Since there is only one document on this new namespace, it&#8217;s difficult to get more information when you find yourself in a bind. I had to google search to find bits and pieces and so I am writing this post.</p>
<p>Here is the link to the PDF on this site. <a href="http://www.webdatasource.com/pdf/sitecore_search_and_indexing-a4.pdf" target="_blank">Click Here</a> (NO SDN access needed)</p>
<p>The basic configuration is given below:</p>
<pre name="code"  class="xml">      &lt;configuration type="Sitecore.Search.SearchConfiguration, Sitecore.Kernel" singleInstance="true"&gt;
        &lt;indexes hint="list:AddIndex"&gt;
          ... ... ...
          &lt;index id="IndexNAME" type="Sitecore.Search.Index, Sitecore.Kernel"&gt;
            &lt;param desc="name"&gt;$(id)&lt;/param&gt;
            &lt;param desc="folder"&gt;im_index&lt;/param&gt;
            &lt;Analyzer ref="search/analyzer"/&gt;
            &lt;locations hint="list:AddCrawler"&gt;
              &lt;master type="Sitecore.Search.Crawlers.DatabaseCrawler, Sitecore.Kernel"&gt;
                &lt;Database&gt;master&lt;/Database&gt;
                &lt;Tags&gt;master content&lt;/Tags&gt;
                &lt;Root&gt;/sitecore/content&lt;/Root&gt;
                &lt;IndexAllFields&gt;true&lt;/IndexAllFields&gt;
                &lt;include hint="list:IncludeTemplate"&gt;
                  &lt;template comment="Template1"&gt;{8917CADF-2148-4328-B595-217C5A9CCA7D}&lt;/template&gt;
                  &lt;template comment="Template2"&gt;{2A18027D-CA51-4E5D-A7C1-51096E09C16C}&lt;/template&gt;
                &lt;/include&gt;
                &lt;include hint="list:ExcludeTemplate"&gt;
                  &lt;template&gt;{8C18027D-CA51-4E5D-A7C1-510965555C}&lt;/template&gt;
                &lt;/include&gt;
                &lt;!--&lt;include hint="list:IncludeField"&gt;
                  &lt;fieldId&gt;{GUID}&lt;/fieldId&gt;
                &lt;/include&gt;--&gt;
              &lt;/master&gt;
            &lt;/locations&gt;
          &lt;/index&gt;
        &lt;/indexes&gt;
      &lt;/configuration&gt;</pre>
<p>Here is a piece of sample code to query the index:</p>
<pre name="code"  class="c-sharp">    Sitecore.Search.Index searchIndex = Sitecore.Search.SearchManager.GetIndex("Search Index Name"); //replace string with the name of the search index
    using (IndexSearchContext context = searchIndex.CreateSearchContext())
    {
        SearchHits hits = context.Search("search string");  //replace string with the actual search string
        SomeRepeater.DataSource = hits.FetchResults(0, 25); //first param is the start item, second is the count
        SomeRepeater.DataBind();
        ResultsCount = hits.FetchResults(0, hits.Length).Count();
    }</pre>
<p>Here are some useful links:</p>
<p><a href="http://sitecoreblog.alexshyba.com/2011/04/search-index-troubleshooting.html" target="_blank">Search Index Troubleshooting</a> by Alex Shyba</p>
<p><a href="http://trac.sitecore.net/IndexViewer" target="_blank">Index Viewer</a> in Sitecore Shared Source</p>
<p>&nbsp;</p>
<p>I hope this is useful. If you have any questions please don&#8217;t hesitate to get in touch!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2011/07/sitecore-lucene-search-index/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sitecore &#8211; Upload to Media Library Issue/Problem</title>
		<link>http://www.webdatasource.com/2010/09/sitecore-upload-to-media-library-issueproblem/</link>
		<comments>http://www.webdatasource.com/2010/09/sitecore-upload-to-media-library-issueproblem/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 20:11:35 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[checkout]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Creator]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Determines]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[difference]]></category>
		<category><![CDATA[dll]]></category>
		<category><![CDATA[filesystem]]></category>
		<category><![CDATA[FileSystemWatcher]]></category>
		<category><![CDATA[FileSystemWatcherâ]]></category>
		<category><![CDATA[FileSystemWatcherBufferSize]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[FolderCreated]]></category>
		<category><![CDATA[internalBuffer]]></category>
		<category><![CDATA[media library]]></category>
		<category><![CDATA[MediaManager]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[parameter]]></category>
		<category><![CDATA[SitecoreUploadWatcher]]></category>
		<category><![CDATA[structure]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[task]]></category>
		<category><![CDATA[upload files]]></category>
		<category><![CDATA[upload to media library]]></category>
		<category><![CDATA[UploadAsFiles]]></category>
		<category><![CDATA[URLs]]></category>
		<category><![CDATA[usage]]></category>
		<category><![CDATA[UseItemPaths]]></category>
		<category><![CDATA[webServer]]></category>
		<category><![CDATA[webservice]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16865</guid>
		<description><![CDATA[Recently I had an issue while importing few thousand images and documents into the Sitecore Media Library. I had the following settings in Web.Config: &#60;!--  UPLOAD AS FILES Determines if media should be uploaded as files or as database blobs. Default: false --&#62; &#60;setting name="Media.UploadAsFiles" value="false" /&#62; &#60;!--  MEDIA - USE ITEM PATHS FOR URLS [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had an issue while importing few thousand images and documents into the Sitecore Media Library. I had the following settings in Web.Config:</p>
<pre name="code"  class="xml">

&lt;!--  UPLOAD AS FILES
Determines if media should be uploaded as files or as database blobs.
Default: false
--&gt;

&lt;setting name="Media.UploadAsFiles" value="false" /&gt;

&lt;!--  MEDIA - USE ITEM PATHS FOR URLS
This setting controls if item paths are used for constructing media URLs.
If false, short ids will be used.
Default value: true
--&gt;

&lt;setting name="Media.UseItemPaths" value="true" /&gt;
</pre>
<p>Each time, it would import only a few files and it would stop. I tried killing all processes, lower the CPU and Memory usage but that didn&#8217;t make any difference.</p>
<p>According to the friendly and helpful Sitecore Customer Service Rep, Upload folder is managed by Sitecore.Resources.Media.UploadWatcher. Each time a file is added to the upload folder, UploadWatcher creates similar structure in media library. It is not a  separate task or webservice, just simple uploading job started by  &#8220;Created&#8221; event on filesystem.</p>
<p>The reason for this issue is that Sitecore uses System.IO.FileSystemWatcher object for file uploading (Sitecore use  it to watch changes); when a lot of files are added at once, the  FileSystemWatcher’s internalBuffer fills up and starts skipping files.</p>
<p>Checkout this article <a href="http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx</a></p>
<p>As a result of my Ticket, they created a workaround which is available at <a href="http://sdn.sitecore.net/scrapbook/sitecore%20doesn%E2%80%99t%20upload%20files%20from%20upload%20folder.aspx" target="_blank" class="broken_link">http://sdn.sitecore.net/scrapbook/sitecore%20doesn%E2%80%99t%20upload%20files%20from%20upload%20folder.aspx</a>. You would need a Sitecore developer account to login.</p>
<p>As  a workaround you need to use Sitecore.Support.322918.dll file.  The workaround increases the InternalBuffer to avoid the unexpected  skipping of files.</p>
<p>1. Add the string &lt;add  type=&#8221;Sitecore.Support.UploadWatcher,Sitecore.Support.322918&#8243;  name=&#8221;SitecoreUploadWatcher&#8221;/&gt; before each occurrence of the string  &lt;add type=&#8221;Sitecore.Resources.Media.UploadWatcher, Sitecore.Kernel&#8221;  name=&#8221;SitecoreUploadWatcher&#8221;/&gt;</p>
<p>(see &lt;system.webServer&gt;/&lt;modules&gt; section and &lt;system.web&gt;/&lt;httpModules&gt; section)</p>
<p>2.  Comment out all such lines: &lt;add  type=&#8221;Sitecore.Resources.Media.UploadWatcher, Sitecore.Kernel&#8221;  name=&#8221;SitecoreUploadWatcher&#8221;/&gt;</p>
<p>3. Put the Sitecore.Support.322918.dll file into the /bin folder of your web site</p>
<p>4. In the web.config file, add the following string under the &lt;settings&gt; section</p>
<p>&lt;setting name=&#8221;FileSystemWatcherBufferSize&#8221; value=&#8221;4096000&#8243;/&gt;</p>
<p>Such  value seems to be enough for 5000 files, but you can increase it  further to be sure that even files with very long names are uploaded.</p>
<p>For example:</p>
<p>If the full file path contains 100 symbols, it takes 200 bytes, 32000  files will take 6400000 bytes (6250 kb), so the setting value should  be:</p>
<p>&lt;setting name=&#8221;FileSystemWatcherBufferSize&#8221; value=&#8221;6400000 &#8220;/&gt;</p>
<p><strong>As always, please backup before making any significant changes.</strong></p>
<p>P.S.: UploadWatcher calls MediaManager.Creator.FileCreated(filePath); &#8211; you  can try to fire the same method with path to the missing folder as  parameter. There is another methos for FolderCreated as well.</p>
<p>Hope this helps. Credit goes to Sitecore and its Customer Service Reps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2010/09/sitecore-upload-to-media-library-issueproblem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gartner Ranks Sitecore as a Leader in Content Management</title>
		<link>http://www.webdatasource.com/2010/04/gartner-ranks-sitecore-as-a-leader-in-content-management/</link>
		<comments>http://www.webdatasource.com/2010/04/gartner-ranks-sitecore-as-a-leader-in-content-management/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 14:16:18 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[business organization]]></category>
		<category><![CDATA[CES]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[customer experience]]></category>
		<category><![CDATA[evaluation]]></category>
		<category><![CDATA[gartner]]></category>
		<category><![CDATA[gartner's]]></category>
		<category><![CDATA[gartner's marketscope]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[marketscope]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web content management]]></category>
		<category><![CDATA[WebDatamation]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16836</guid>
		<description><![CDATA[At WebDatamation, we made the decision several years ago to partner with the Sitecore web content management (WCM) system to provide web services. We find that Sitecore offers flexibility, power, ease of use and constant innovation that serves our clients well. In the fast-changing and evolving world of web content, it can be difficult to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">At <a href="http://www.webdatamation.com/en/Sitecore.aspx" target="_blank">WebDatamation</a>, we made the decision several years ago to partner with the Sitecore web content management (WCM) system to provide web services.</p>
<p style="text-align: justify;">We find that Sitecore offers flexibility, power, ease of use and constant innovation that serves our clients well.</p>
<p style="text-align: justify;">In the fast-changing and evolving world of web content, it can be difficult to know if a particular WCM product is keeping up with the changes and spearheading innovative solutions.</p>
<p style="text-align: justify;">However, a <a href="http://www.gartner.com/technology/media-products/reprints/sitecore/vol2/article1/article1.html" target="_blank">Gartner&#8217;s MarketScope</a> analysis has again confirmed that Sitecore is not only a solid performer in the world of WCM, but is in fact a visionary and a leader in the market.</p>
<p style="text-align: justify;">Gartner&#8217;s analysis examines factors such as the core services and products offered in a content management system, including the features and feature groupings, the quality of the offerings, and whether or not the features are native or offered through agreements with third party vendors.</p>
<p style="text-align: justify;">They also consider the overall business stability of the organization, their financial vision and strategy and likelihood of continued support for their WCM product.</p>
<p style="text-align: justify;">Other factors taken into consideration in the equation are market responsiveness, the product&#8217;s track record in the past, the quality and execution of the product&#8217;s marketing program, actual customer experiences with the product, and the functionality of the business organization itself.</p>
<p style="text-align: justify;">In a comparison to 17 other content management systems, no other system beats Sitecore for its completeness of vision or its ability to execute it&#8217;s vision and make it happen in the real world.</p>
<p style="text-align: justify;">Take a look at Gartners evaluation, and see if you&#8217;d like to put the Sitecore system to work for your online business. If so, our Sitecore specialists at <a href="http://www.webdatamation.com/en/Sitecore.aspx" target="_blank">WebDatamation</a> can make it happen for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2010/04/gartner-ranks-sitecore-as-a-leader-in-content-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitecore Recognized as Top Content Management System (CMS)</title>
		<link>http://www.webdatasource.com/2009/10/sitecore-recognized-as-top-content-management-system-cms/</link>
		<comments>http://www.webdatasource.com/2009/10/sitecore-recognized-as-top-content-management-system-cms/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 02:35:19 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[analytic tools]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[business software]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[contexts]]></category>
		<category><![CDATA[dynamic environment]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[ecommerce products]]></category>
		<category><![CDATA[enjoyable experience]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[flexibility]]></category>
		<category><![CDATA[forecasting]]></category>
		<category><![CDATA[forrester research]]></category>
		<category><![CDATA[functionality]]></category>
		<category><![CDATA[global approach]]></category>
		<category><![CDATA[independent research firm]]></category>
		<category><![CDATA[knowledge]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[marketing departments]]></category>
		<category><![CDATA[multilingual]]></category>
		<category><![CDATA[own website]]></category>
		<category><![CDATA[powerful solution]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Recognized]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[separation]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[technical knowledge]]></category>
		<category><![CDATA[using graphics]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[WebDatamation]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16806</guid>
		<description><![CDATA[For businesses that use websites as a key strategic component of their business, a Content Management System or CMS is a vital. We at Webdatamation have long pointed to the power and flexibility of Sitecore as an outstanding solution in the CMS arena. We&#8217;ve been using Sitecore for our own website and for client&#8217;s websites [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">For businesses that use websites as a key strategic component of their business, a Content Management System or CMS is a vital. We at <a href="http://www.webdatamation.com" target="_blank">Webdatamation</a> have long pointed to the power and flexibility of Sitecore as an outstanding solution in the CMS arena.</p>
<p style="text-align: justify;">We&#8217;ve been using Sitecore for our own website and for client&#8217;s websites because of its incredible power and functionality. Now Sitecore has also been recognized by independent research firm <a href="http://www.sitecore.net/en/News/Press-releases/2009/Sitecore-included-in-Forrester-Report.aspx?mobile=0" target="_blank">Forrester Research</a> as a top CMS.</p>
<p style="text-align: justify;">Forrester Research points out what the experts at Webdatamation could tell you &#8212; the flexibility and power of Sitecore make it strong in areas where competitors are weak.</p>
<p style="text-align: justify;">The system is excellent for ease in creating content and integrating the content into a site, managing the workflow, and integrating content.</p>
<p style="text-align: justify;">Sitecore also gets high marks for its ability to effectively target sites and content, having a global approach, integrating numerous sites, and for its community controls.</p>
<p style="text-align: justify;">Sitecore leads out in multilingual content and in providing the means for making a separation between content and the presentation. This creates a dynamic environment for delivering the message and for using graphics and text in other contexts for different purposes.</p>
<p style="text-align: justify;"><a href="http://www.webdatamation.com/" target="_blank">Webdatamation</a> chose Sitecore in part because it is a powerful solution for both simple websites as well as complex, fully powered sites.</p>
<p style="text-align: justify;">The features of Sitecore allow for a highly flexible website that can integrate all of the Web 2.0 features.  Marketing departments can add website content or sales information to a company site easily without a great deal of technical knowledge, and still maintain a professional and responsive site.</p>
<p style="text-align: justify;">It&#8217;s simple to integrate any analytic tools  and other business software into the Sitecore system, and it&#8217;s compatible with ecommerce products so that customers and site visitors have a seamless and enjoyable experience on your site.</p>
<p style="text-align: justify;">We also like Sitecore because of their constant updates, research and trend forecasting. We know that our customers will have all the latest tools at their fingertips as soon as they are available.</p>
<p style="text-align: justify;">If you haven&#8217;t yet seen what Sitecore can do for you, contact us at <a href="http://www.webdatamation.com/Contact%20Us.aspx" target="_blank">Webdatamation</a> and let us give you a glimpse.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/10/sitecore-recognized-as-top-content-management-system-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitecore &#8211; Custom Provider to integrate External SQL Server data</title>
		<link>http://www.webdatasource.com/2009/10/sitecore-custom-provider-to-integrate-external-sql-server-data/</link>
		<comments>http://www.webdatasource.com/2009/10/sitecore-custom-provider-to-integrate-external-sql-server-data/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 22:47:48 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[connection string]]></category>
		<category><![CDATA[Constructor]]></category>
		<category><![CDATA[content editor]]></category>
		<category><![CDATA[desc]]></category>
		<category><![CDATA[externals sql data]]></category>
		<category><![CDATA[server servername]]></category>
		<category><![CDATA[sitecore cms]]></category>
		<category><![CDATA[sitecore content management system]]></category>
		<category><![CDATA[sitecore custom provider]]></category>
		<category><![CDATA[sitecore external data]]></category>
		<category><![CDATA[sql data]]></category>
		<category><![CDATA[string filter]]></category>
		<category><![CDATA[string table]]></category>
		<category><![CDATA[template name]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16794</guid>
		<description><![CDATA[Here is the solution I found to integrate external SQL data into Sitecore. Although the data loads into Sitecore, it is extremely slow. I ended up organizing the data alphabetically, which helped. Follow the steps below: Download the NorthwindDataProvider source from HERE. Create a template for the external SQL data you are trying to use. [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the solution I found to integrate external SQL data into Sitecore. Although the data loads into Sitecore, it is extremely slow. I ended up organizing the data alphabetically, which helped.</p>
<p>Follow the steps below:</p>
<ol>
<li>Download the NorthwindDataProvider source from <a href="http://sdn.sitecore.net/Resources/Shared%20Source/Shared%20Source%205,-d-,3/Data%20Providers/SQL%20Data%20Provider/Downloads.aspx" target="_blank">HERE</a>.</li>
<li>Create a template for the external SQL data you are trying to use.</li>
<li>Modify the NortwindDataProvider,  by commenting ModifyBase(); in the constructor as shown below:
<pre name="code" class="c-sharp">
      #region ctor

      public NorthwindDataProvider(
       string connection,  // Connection string
       string table,       // Table name
       string fieldsNames,  // Fields name divided by pipe separator
       string idField,     // ID Field name (primary key)
       string nameField,   // Name field name (name for content editor)
       string filter,      // "Where" clause
       string templateID,// Template name
       string parentItemID, //Parent item ID
       string hostDatabase // Database into which we integrate
       )
      {
         prefix = this.ToString();

         this.connectionString = connection;
         this.table = table;
         this.fieldsNames = fieldsNames;
         this.idField = idField;
         this.nameField = nameField;
         this.filter = filter;
         this.templateID = templateID;
         this.parentItemID = parentItemID;
         this.fieldNames = StringUtil.Split(string.Concat(this.idField, ",", this.fieldsNames), ',', true);
         this.hostDatabase = hostDatabase;
         //ModifyBase();
         CacheOptions.DisableAll = true;
         countRecords = 0;
      }

      #endregion</pre>
</li>
<li>Add the following to the DataProviders section of the Web.Config:
<pre name="code" class="xml">
 &lt;dataProviders&gt;
...
&lt;northwindDataProvider type="Sitecore.Data.DataProviders.NorthwindDataProvider, Sitecore.NorthwindDataProvider"&gt;
 &lt;param desc="connection"&gt;<strong>server=SERVERNAME\SQLEXPRESS;User=abc123;password=1234;database=TestingDB</strong>&lt;/param&gt;
 &lt;param desc="table"&gt;<strong>ENTERTABLENAMEHERE</strong>&lt;/param&gt;
 &lt;param desc="fieldsNames"&gt;<strong>id,description,col3</strong>&lt;/param&gt;
&lt;!-- list the columns corresponding with the template --&gt;
 &lt;param desc="idField"&gt;id&lt;/param&gt;
 &lt;!-- the name of the primary key field --&gt;
 &lt;param desc="nameField"&gt;description&lt;/param&gt;
 &lt;!-- the name of the field which will be used as the name of the node in Sitecore --&gt;
 &lt;param desc="filter"&gt;&lt;/param&gt;
 &lt;param desc="templateID"&gt;{3353B4C9-CD55-41DA-9A2E-140522E6185B}&lt;/param&gt;
 &lt;!-- the id of the template which was created to mimic the query/table --&gt;
 &lt;param desc="parentItemID"&gt;{AB466059-A6DE-4D3A-87CF-8FBB09680997}&lt;/param&gt;
 &lt;!-- the id of the folder/parent item where the data will be loaded --&gt;
 &lt;param desc="hostDatabase"&gt;master&lt;/param&gt;
 &lt;/northwindDataProvider&gt;
...
 &lt;/dataProviders&gt;</pre>
</li>
<li>Add the DataProvider to the Database section:
<pre name="code" class="xml">
&lt;database id="master" singleInstance="true" type="Sitecore.Data.Database, Sitecore.Kernel"&gt;
 &lt;param desc="name"&gt;$(id)&lt;/param&gt;
 &lt;icon&gt;People/16x16/cubes_blue.png&lt;/icon&gt;
 &lt;dataProviders hint="list:AddDataProvider"&gt;
<strong> &lt;dataProvider ref="dataProviders/northwindDataProvider"/&gt;
</strong> &lt;dataProvider ref="dataProviders/main" param1="$(id)"&gt;
 &lt;prefetch hint="raw:AddPrefetch"&gt;
 &lt;sc.include file="/App_Config/Prefetch/Common.config" /&gt;
 &lt;sc.include file="/App_Config/Prefetch/Master.config" /&gt;
 &lt;/prefetch&gt;
 &lt;/dataProvider&gt;
 &lt;/dataProviders&gt;</pre>
</li>
</ol>
<p>Once all of this is done, you can restart the Sitecore server and client. Open the content editor and you will see the data loaded under the parent item. If you have any questions please feel free to get in touch with me at asura @ webdatamation . com</p>
<p>Sitecore support was helpful in guiding me. Here are a couple of useful links:</p>
<p><a href="http://sdn.sitecore.net/Resources/Shared%20Source/Shared%20Source%205,-d-,3/Data%20Providers/SQL%20Data%20Provider/Downloads.aspx" target="_blank">http://sdn.sitecore.net/Resources/Shared%20Source/Shared%20Source%205,-d-,3/Data%20Providers/SQL%20Data%20Provider/Downloads.aspx</a></p>
<p><a href="http://sdn.sitecore.net/Developer/Integrating%20External%20Data%20Sources/Examples/Hello%20World.aspx" target="_blank">http://sdn.sitecore.net/Developer/Integrating%20External%20Data%20Sources/Examples/Hello%20World.aspx</a></p>
<p><a href="http://sdn5.sitecore.net/Articles/API/Creating%20a%20Composite%20Custom%20Field/Adding%20a%20Custom%20Field%20to%20Sitecore%20Client.aspx" target="_blank">http://sdn5.sitecore.net/Articles/API/Creating%20a%20Composite%20Custom%20Field/Adding%20a%20Custom%20Field%20to%20Sitecore%20Client.aspx</a></p>
<p><a href="http://sdn5.sitecore.net/faq/api/populate%20lookup%20field%20with%20field%20values.aspx" target="_blank">http://sdn5.sitecore.net/faq/api/populate%20lookup%20field%20with%20field%20values.aspx</a></p>
<p>Some of the source in the above links might not work as intended or cause minor compiler errors.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/10/sitecore-custom-provider-to-integrate-external-sql-server-data/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Content Management System</title>
		<link>http://www.webdatasource.com/2009/03/content-management-system/</link>
		<comments>http://www.webdatasource.com/2009/03/content-management-system/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 15:53:32 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[content providers]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[customer experience]]></category>
		<category><![CDATA[customer relationship management]]></category>
		<category><![CDATA[customer relationship management software]]></category>
		<category><![CDATA[design elements]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[ecommerce products]]></category>
		<category><![CDATA[enterprise resource planning]]></category>
		<category><![CDATA[enterprise resource planning software]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[intuitive system]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[marketing department]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[part]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[performance features]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[programming expertise]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[seamless integration]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[tailor]]></category>
		<category><![CDATA[trend]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16666</guid>
		<description><![CDATA[<p style="text-align: justify;">The current explosion in eCommerce has highlighted the advantages of and excellent Content Management System (CMS) like Sitecore.</p>
<p style="text-align: justify;">For businesses that consider their website and their customers who contact them online to be an integral part of their business, using a content management system is only logical. It will allow those businesses to provide a seamless, high quality online experience that open source or low-end solutions simply can't provide.</p>
<p style="text-align: justify;">For many of our customers, their website is a strategic part of their business. The added security and performance features of a CMS allow these businesses to focus the website and the usability features that make the customer experience truly superior.</p>
<p style="text-align: justify;">By giving developers and content providers a simple to use and intuitive system, a CMS allows the marketing department or the sales department to create website content and design elements of the site. These professionals understand the customers and their needs better than developers or IT departments.  With a CMS, the control goes to the people with the ideas, not only to the people with the programming expertise</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The current explosion in eCommerce has highlighted the advantages of and excellent Content Management System (CMS) like <a href="http://www.sitecore.net" target="_blank">Sitecore</a>.</p>
<p style="text-align: justify;">For businesses that consider their website and their customers who contact them online to be an integral part of their business, using a content management system is only logical. It will allow those businesses to provide a seamless, high quality online experience that open source or low-end solutions simply can&#8217;t provide.</p>
<p style="text-align: justify;">For many of our customers, their website is a strategic part of their business. The added security and performance features of a CMS allow these businesses to focus the website and the usability features that make the customer experience truly superior.</p>
<p style="text-align: justify;">By giving developers and content providers a simple to use and intuitive system, a CMS allows the marketing department or the sales department to create website content and design elements of the site. These professionals understand the customers and their needs better than developers or IT departments.  With a CMS, the control goes to the people with the ideas, not only to the people with the programming expertise</p>
<p style="text-align: justify;">The easy integration with business applications also provides a great opportunity for businesses to provide a better integration of Customer Relationship Management software and Enterprise Resource Planning software, as well as any analytics tools.</p>
<p style="text-align: justify;">Because you, the company, are in control of the content and the programs and tools that you use on your site, you are able to better tailor your customers&#8217; experience on your website, offer them seamless integration of eCommerce products and Web 2.0 feature, and fully optimize your site for search engines, so current and new customers can find you easily.</p>
<p style="text-align: justify;">With so many advantages for developers and for the end customers, its easy to see why Content Management Systems are increasingly popular.</p>
<p style="text-align: justify;">We think we offer you the best possible CMS with Sitecore. While there are still features they can improve, as we&#8217;ve mentioned here before, overall they provide a powerful program that is fully scalable so it can grow with your company. It&#8217;s also easy to use and forward thinking, constantly updating the product and forecasting the next trend, then responding to it.</p>
<p style="text-align: justify;">Their &#8220;Gold&#8221; partner status with Microsoft ensures continuing support for all its best features.</p>
<p style="text-align: justify;">If you haven&#8217;t utilized the power of a great CMS to provide your customer with the best possible experience online, I&#8217;d suggest giving it a <a href="http://www.webdatamation.com">try today</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/03/content-management-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sitecore Keeps Ahead of Web Trends</title>
		<link>http://www.webdatasource.com/2009/03/sitecore-keeps-ahead-of-web-trends/</link>
		<comments>http://www.webdatasource.com/2009/03/sitecore-keeps-ahead-of-web-trends/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 13:01:46 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[Ahead]]></category>
		<category><![CDATA[business trends]]></category>
		<category><![CDATA[compatibility]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[conversation]]></category>
		<category><![CDATA[curve]]></category>
		<category><![CDATA[ecommerce solution]]></category>
		<category><![CDATA[ecommerce tools]]></category>
		<category><![CDATA[flexibility]]></category>
		<category><![CDATA[important information]]></category>
		<category><![CDATA[integration tools]]></category>
		<category><![CDATA[intuitive tools]]></category>
		<category><![CDATA[Keeps]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft commerce server]]></category>
		<category><![CDATA[mobile computing]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[Partner]]></category>
		<category><![CDATA[percent]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[public websites]]></category>
		<category><![CDATA[seamless integration]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web content management]]></category>
		<category><![CDATA[WebDatamation]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16657</guid>
		<description><![CDATA[<p style="text-align: justify;">One of the many reasons we choose to <a href="http://www.sitecore.net/en/Partners/North-America/WebDatamation.aspx?nav=s">partner </a>with <a href="http://www.sitecore.net">Sitecore </a>for our content management system is that they keep ahead of business trends, and are ready for the future.</p>
<p style="text-align: justify;">Sitecore recently identified the three key web content management trends for 2009 – do any of these sound like goals for your company this year? If so, let us help you implement them using the seamless integration tools Sitecore provides.</p>
<p style="text-align: justify;">The first trend is the growth of ecommerce elements. Companies want to integrate more and more ecommerce tools into their websites. One of the most popular tools for businesses to implement is InSite Commerce, a program that integrates ecommerce solutions. It allows a business to manage multiple websites and allows a great deal of flexibility for customers.</p>
<p style="text-align: justify;">The other top ecommerce solution used by businesses is Microsoft Commerce Server, which offers intuitive tools for integrating ecommerce solutions including an out of the box shopping solution.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">One of the many reasons we choose to <a href="http://www.sitecore.net/en/Partners/North-America/WebDatamation.aspx?nav=s">partner </a>with <a href="http://www.sitecore.net">Sitecore </a>for our content management system is that they keep ahead of business trends, and are ready for the future.</p>
<p style="text-align: justify;">Sitecore recently identified the three key web content management trends for 2009 – do any of these sound like goals for your company this year? If so, let us help you implement them using the seamless integration tools Sitecore provides.</p>
<p style="text-align: justify;">The first trend is the growth of ecommerce elements. Companies want to integrate more and more ecommerce tools into their websites. One of the most popular tools for businesses to implement is InSite Commerce, a program that integrates ecommerce solutions. It allows a business to manage multiple websites and allows a great deal of flexibility for customers.</p>
<p style="text-align: justify;">The other top ecommerce solution used by businesses is Microsoft Commerce Server, which offers intuitive tools for integrating ecommerce solutions including an out of the box shopping solution.</p>
<p style="text-align: justify;">The second major trend for web content management is integrating portals into public websites.  Microsoft&#8217;s SharePoint was the most frequently used type of portal.  Using portals on a public website allows a company to provide the customers with quick, easy access to important information. These portals can be customized according to the needs of your customers and your business.</p>
<p style="text-align: justify;">The final trend for 2009 in web content management is increased implementation of Web 2.0 functionalities. Sitecore&#8217;s content management system is uniquely situated to effortlessly add applications like wikis, blogs, forums, and surveys to a website. While Web 2.0 is an ongoing topic of conversation, Sitecore found that companies have increased integration of Web 2.0 functionalities at a rate that is 250 percent higher than last year, so the pace of Web 2.0 integration is growing rapidly.</p>
<p style="text-align: justify;">Other trends that are continuing from 2008 are continuing compatibility with the .NET network and making websites compatible with mobile computing.</p>
<p style="text-align: justify;">With Sitecore, <a href="http://www.webdatamation.com">Webdatamation </a>can keep your website ahead of the curve in implementing and integrating any elements you&#8217;d like into your company website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/03/sitecore-keeps-ahead-of-web-trends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Required Sitecore Improvements</title>
		<link>http://www.webdatasource.com/2009/02/required-sitecore-improvement/</link>
		<comments>http://www.webdatasource.com/2009/02/required-sitecore-improvement/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 17:38:02 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[Assign]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[folders]]></category>
		<category><![CDATA[improvement]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[note]]></category>
		<category><![CDATA[pain]]></category>
		<category><![CDATA[place holders]]></category>
		<category><![CDATA[renderings]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server 2008]]></category>
		<category><![CDATA[way]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows 2008]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16650</guid>
		<description><![CDATA[Here are a few things Sitecore can improve on: Sitecore Admin needs to load faster Need an easier way to assign renderings to place holders Need an easier way to Assign roles &#38; users to folders and content items Right now it is a pain to get it setup on Windows 2008 with SQL Server [...]]]></description>
			<content:encoded><![CDATA[<p>Here are a few things Sitecore can improve on:</p>
<ol>
<li>Sitecore Admin needs to load faster</li>
<li>Need an easier way to assign renderings to place holders</li>
<li>Need an easier way to Assign roles &amp; users to folders and content items</li>
<li>Right now it is a pain to get it setup on Windows 2008 with SQL Server 2008, it would be nice to get an installer which does this for you (Sitecore posted a note saying that this is in the works).</li>
</ol>
<p>I don&#8217;t know if I say it enough, I love Sitecore.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/02/required-sitecore-improvement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitecore CMS 6 Fundamental Concepts</title>
		<link>http://www.webdatasource.com/2009/02/sitecore-cms-6-fundamental-concepts/</link>
		<comments>http://www.webdatasource.com/2009/02/sitecore-cms-6-fundamental-concepts/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 02:20:15 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[fundamental concepts]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16645</guid>
		<description><![CDATA[Here is a PDF about Sitecore CMS 6 Fundamental Concepts. I hope you find it useful.]]></description>
			<content:encoded><![CDATA[<p>Here is a <a href="http://www.webdatamation.com/docs/Fundamental%20Concepts%20Sitecore%206.pdf" target="_blank"><span style="color: #3366ff;">PDF</span></a> about Sitecore CMS 6 Fundamental Concepts. I hope you find it useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/02/sitecore-cms-6-fundamental-concepts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

