<?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; Microsoft</title>
	<atom:link href="http://www.webdatasource.com/tag/microsoft/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>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>Has Apple Become “The Man?”</title>
		<link>http://www.webdatasource.com/2009/11/has-apple-become-the-man/</link>
		<comments>http://www.webdatasource.com/2009/11/has-apple-become-the-man/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 02:49:16 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[airlines]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[Apple App]]></category>
		<category><![CDATA[Apple Become]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[bandwagon]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[breaking the mold]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[corporate policies]]></category>
		<category><![CDATA[desertion]]></category>
		<category><![CDATA[doesn]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[ethos]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[grandma]]></category>
		<category><![CDATA[ground]]></category>
		<category><![CDATA[href]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[indication]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[joe hewitt]]></category>
		<category><![CDATA[Man]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[mind]]></category>
		<category><![CDATA[new technology]]></category>
		<category><![CDATA[outsider]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[platforms]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[protectionist policies]]></category>
		<category><![CDATA[reputation]]></category>
		<category><![CDATA[smart phones]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[smartphones]]></category>
		<category><![CDATA[standard]]></category>
		<category><![CDATA[store]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[suitcase]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[thinking outside the box]]></category>
		<category><![CDATA[thought]]></category>
		<category><![CDATA[TYouch]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[week]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16817</guid>
		<description><![CDATA[Apple has built its reputation on innovation, on breaking the mold, on thinking outside the box. But can they keep their outsider ethos when they are the standard instead of the new technology on the block? If recent and continuing developments with the Apple App Store for iPhone and the iPod TYouch are any indication, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Apple has built its reputation on innovation, on breaking the mold, on thinking outside the box. But can they keep their outsider ethos when they are the standard instead of the new technology on the block?</p>
<p style="text-align: justify;">If recent and continuing developments with the Apple App Store for iPhone and the iPod TYouch are any indication, then Apple is taking on the protectionist policies more commonly associated with those big, clunky, running-scared companies that Apple has traditionally loved to hate (Think Microsoft  and IBM).</p>
<p style="text-align: justify;">The recent desertion of Joe Hewitt from the Facebook App for iPhone is a great example of how those who value open, creative and unrestricted access are being increasingly put off by Apple’s corporate policies.</p>
<p style="text-align: justify;">Hewitt is not just “one of the developers” on the Facebook for iPhone app, he is the application. And he bolted from the project – not because he doesn’t like what he was doing, but entirely because of Apple’s review policies. (See <a href="http://www.techcrunch.com/2009/11/11/joe-hewitt-developer-of-facebooks-massively-popular-iphone-app-quits-the-project/" target="_blank">http://www.techcrunch.com/2009/11/11/joe-hewitt-developer-of-facebooks-massively-popular-iphone-app-quits-the-project/</a> for more).</p>
<p style="text-align: justify;">The repressive and protectionist policies of Apple (and let’s don’t forget – AT&amp;T behind the scenes) is disturbing not only because it is so contrary to the supposed ethos of Apple and all that it stands for, but also because Apple is the standard for smart phones and application development for smartphones.</p>
<p style="text-align: justify;">If Apple is able to continue their policies that value profit over innovation, then other platforms will feel free to adopt similar models – the standard has been set. It only takes a look at how quickly airlines jumped on the bandwagon to charge customers to check a bag to see that oppressive reviews of new applications could be in the works for every smartphone platform.</p>
<p style="text-align: justify;">Don’t think it can’t happen – three years ago, did it even cross you mind that you might one day have to pay an extra $25 just to take a suitcase along when you flew to grandma’s for a week?</p>
<p style="text-align: justify;">And the other frightening thought in all of this – where does Apple’s innovation go from here? Can we expect more trendsetting and ground breaking products from a company that has joined the ranks of the “profit at all costs” behemoths? Not likely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/11/has-apple-become-the-man/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keep SEO Ready for Google&#8217;s Caffeine</title>
		<link>http://www.webdatasource.com/2009/09/keep-seo-ready-for-googles-caffeine/</link>
		<comments>http://www.webdatasource.com/2009/09/keep-seo-ready-for-googles-caffeine/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 00:04:39 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[anything]]></category>
		<category><![CDATA[billing]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Caffeine]]></category>
		<category><![CDATA[Canon]]></category>
		<category><![CDATA[Carefully]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[June]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[past]]></category>
		<category><![CDATA[Ranking]]></category>
		<category><![CDATA[Relevant]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SERP]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[World]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16790</guid>
		<description><![CDATA[<p style="text-align: justify;">Microsoft made some major strides in the search engine world when it introduced Bing in June of this year, but Google is still the number one search engine in the world.</p>
<p style="text-align: justify;">As we all know, Google is committed to retaining that top billing, and they have responded to Bing and created some innovations of their own. Bottom line for both search engines is more relevant results for their users, and that means that SEO – search engine optimization -- is even more important than ever.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Microsoft made some major strides in the search engine world when it introduced Bing in June of this year, but Google is still the number one search engine in the world.</p>
<p style="text-align: justify;">As we all know, Google is committed to retaining that top billing, and they have responded to Bing and created some innovations of their own. Bottom line for both search engines is more relevant results for their users, and that means that SEO – search engine optimization &#8212; is even more important than ever.</p>
<p style="text-align: justify;">While details will be coming forward for the next many months, many bloggers and some other sites have noticed a drop in their SERP rankings with Caffeine and Bing. This doesn’t need to happen, however.</p>
<p style="text-align: justify;">In fact, smaller websites actually have a better chance of raising their rankings, if they use carefully targeted SEO.</p>
<p style="text-align: justify;"><strong>Relevant Content</strong><br />
Good content becomes even more important than it has been in the past. If your site can match more precisely what the user wants to find, then you have a better chance of a high ranking.</p>
<p style="text-align: justify;">Be specific in your content pages, and they will have a better chance of rising to the top. Carefully choose your keywords; if anything, specific keywords have become more important.</p>
<p style="text-align: justify;">Be sure to include long tail keywords that get specific about your offerings: red mardi gras beads for parties instead of mardi gras beads or party beads. Think about brands, too: Canon digital cameras instead of digital cameras.</p>
<p style="text-align: justify;">The titles of your pages are important. Each page should have a unique title specifically matched to the content you’re featuring. And you don’t want to ignore the Meta descriptions, even though they still don’t figure into the SEO searches. But if your page lands high up on that SERP, then you want to have an engaging, accurate and catchy Meta description to encourage the click.</p>
<p style="text-align: justify;">The bottom line – although it will take more months to really see how Caffeine and Bing are going to respond, SEO continues to be highly important to web design. Money spent on SEO is money well invested, with the new search engines as much as the old.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/09/keep-seo-ready-for-googles-caffeine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Mobile</title>
		<link>http://www.webdatasource.com/2009/09/firefox-mobile/</link>
		<comments>http://www.webdatasource.com/2009/09/firefox-mobile/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 13:20:54 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[backing]]></category>
		<category><![CDATA[breath]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[Fenncec]]></category>
		<category><![CDATA[Fennec]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[licensing]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PC Firefox]]></category>
		<category><![CDATA[percent]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[RIM]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[stranglehold]]></category>
		<category><![CDATA[stutter]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Touch]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16788</guid>
		<description><![CDATA[<p style="text-align: justify;">Mozilla’s Firefox web browser is a serious competitor to Microsoft’s Internet Explorer, despite initial skepticism from techies that anyone could break the stranglehold Microsoft had developed on the browser business. Sure, it helps that Firefox is “partnered” with the mega-giant Google for some financial backing, but it takes a big shield to stop a big club.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Mozilla’s Firefox web browser is a serious competitor to Microsoft’s Internet Explorer, despite initial skepticism from techies that anyone could break the stranglehold Microsoft had developed on the browser business. Sure, it helps that Firefox is “partnered” with the mega-giant Google for some financial backing, but it takes a big shield to stop a big club.</p>
<p style="text-align: justify;">Although only about 20 percent of internet users use the Firefox browser, many of those users are the serious internet surfers. Those in the industry almost universally prefer the open source app to the Microsoft browser.</p>
<p style="text-align: justify;">So when Mozilla announced in 2008 that they would soon release a mobile version of their browser, they generated some buzz. There were some stutter steps with the first versions, but as with all Firefox products, the bugs get worked out pretty quickly.</p>
<p style="text-align: justify;">The latest release is Fennec Alpha 1, and it has been revamped with a CSS user interface. What does this mean? Well, even though the browser only works on Windows Mobile Smart Phones like the HTC Touch Pro currently, the CSS interface means that it will be easily adapted to a wide range of different devices, unlike the original version.</p>
<p style="text-align: justify;">So, if you have another operating system on your phone, no fear. Firefox is making use of  that CSS based interface to create mobile browsers for other systems. Recently, a Firefox official noted that Symbian phones make up nearly half of the smartphone sales, so Firefox will need to “have a presence on the Symbian platform.” So expect a Symbian version to be officially announced in the near future.</p>
<p style="text-align: justify;">Still, there are plenty of other smartphone owners who prefer Firefox as a browser – will Fennec be coming soon to an iPhone near you? Probably not – and you android users need not hold your breath, either.</p>
<p style="text-align: justify;">Firefox officials cite licensing and technical issues that prevent them from developing Fennec for iPhone, RIM and Android. Still, it will be great to see if all the things we love about the PC Firefox browser are integrated into Fennec quickly enough for them to gain a big market share.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/09/firefox-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seven</title>
		<link>http://www.webdatasource.com/2009/06/seven/</link>
		<comments>http://www.webdatasource.com/2009/06/seven/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 15:33:39 +0000</pubDate>
		<dc:creator>NetBee</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[destination]]></category>
		<category><![CDATA[gateways]]></category>
		<category><![CDATA[hardware vendor]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[minimum hardware requirements]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[Start]]></category>
		<category><![CDATA[statistic]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16744</guid>
		<description><![CDATA[<p style="text-align: justify;">No, I am definitely not going to write about the lucky number! I’ll talk about the most anticipated operating system of the year, yet to be released from the stables of Microsoft. Welcome to the new Windows 7.</p>
<p style="text-align: justify;">I already have 7 questions on my mind. What shall be the minimum hardware requirements for this OS? Will the support for drivers be better than the previous releases of Microsoft? Will the new OS beat Vista and rival operating systems on performance issues? What about security? Phew!</p>
]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">No, I am definitely not going to write about the lucky number! I’ll talk about the most anticipated operating system of the year, yet to be released from the stables of Microsoft. Welcome to the new Windows 7.</p>
<p style="text-align: justify;">I already have 7 questions on my mind. What shall be the minimum hardware requirements for this OS? Will the support for drivers be better than the previous releases of Microsoft? Will the new OS beat Vista and rival operating systems on performance issues? What about security? Phew!</p>
<p style="text-align: justify;">Microsoft claims that 7 include “hundreds of improvements based on your feedback” and it runs smoothly, is more reliable and responsive. To some, these promises from Microsoft wouldn’t really matter because of the fact that one size won’t fit all. Though the company is in the process of making high claims about the OS, you simply cannot satisfy each and every user. Moreover, on a lighter note, hundreds of improvements are gateways to a hundred more bugs. I guess Microsoft has taken care of that. We’ll just have to wait and watch.<br />
A fresh OS always brings about fresh thoughts on driver support. If you have been successfully using certain hardware in Vista, it will work on Windows 7. Yes, Vista and 7 drivers are compatible. This might be good news for users who are thinking about migrating from Vista to 7. But if you are using Windows XP, then your hardware vendor must explicitly provide drivers specifically written for 7, for your hardware to properly work.</p>
<p style="text-align: justify;">I had played around with the release candidate some time back and only came to the conclusion that it is slightly more stable than Windows Vista SP1. The UI and the overall navigability of 7 are not strikingly different, but quite similar to Vista SP1 with a few changes thrown around. However, the boot up time and shut down time was quicker than Vista SP1, a statistic that wouldn’t bother me much; I would be more interested in performance. I wouldn’t prefer to comment on that unless the full stable release is on the stands.<br />
Simplicity is sarcastically apparent with 7. The problem is that experienced XP users (in some cases, Vista users too) will have to bear with a few extra mouse clicks to reach to their destination. For example, the “run” option is no more on the Start Menu. You have to search for run, and then click on it from the search results to open up the run window. Moreover in the control panel, you have to put in a few extra mouse clicks to actually select what you would want to do.</p>
<p style="text-align: justify;">4 gigs of RAM is a recommended hardware requirement for Windows 7. Now that’s where things hurt.  Anyway, enthusiasts would go in for the required upgrade, I know. The free release candidate had expired on 1st June. Don’t worry if you’ve missed out. You still have the beta version to download and test.</p>
<p style="text-align: justify;">Let’s see if the guys at Microsoft get lucky with the version 7 this time!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/06/seven/feed/</wfw:commentRss>
		<slash:comments>0</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>CLOUD COMPUTING: The Next Big Thing</title>
		<link>http://www.webdatasource.com/2008/11/cloud-computing-the-next-big-thing/</link>
		<comments>http://www.webdatasource.com/2008/11/cloud-computing-the-next-big-thing/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 15:17:04 +0000</pubDate>
		<dc:creator>NetBee</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[amount]]></category>
		<category><![CDATA[App]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[basic architecture]]></category>
		<category><![CDATA[business technologies]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[corporate developers]]></category>
		<category><![CDATA[disk storage]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[entertainment centers]]></category>
		<category><![CDATA[external servers]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IEEE]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[internet computing]]></category>
		<category><![CDATA[internet service provider]]></category>
		<category><![CDATA[licensed software]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[massive network]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Organization]]></category>
		<category><![CDATA[physical location]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[raw computing power]]></category>
		<category><![CDATA[service platforms]]></category>
		<category><![CDATA[service provider companies]]></category>
		<category><![CDATA[space and time]]></category>
		<category><![CDATA[system integrators]]></category>
		<category><![CDATA[thing]]></category>
		<category><![CDATA[wall]]></category>
		<category><![CDATA[web developers]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=10688</guid>
		<description><![CDATA[<p style="text-align: justify;">Cloud computing or computing in the cloud is now one of the latest happening trends in the business world and the “next big thing” after Web 2.0. According to a 2008 paper published by IEEE Internet Computing "Cloud Computing is a paradigm in which information is permanently stored in servers on the Internet and cached temporarily on clients that include desktops, entertainment centers, table computers, notebooks, wall computers, handhelds, sensors, monitors, etc." In other words, we can say that this is about increasing an organization’s or user’s capability by using different applications from some external servers without investing much on its own infrastructure and maintenance of local servers. Rather the organization/user pays for raw computing power. Here the word “cloud” is used as a metaphor for internet.</p>
<p style="text-align: justify;">The basic architecture of this cloud computing is a massive network of interconnected servers where the web applications reside. The user accessing these applications need not be aware of the physical location of the application’s computer. This not only reduces the cost of installing licensed software at the end user’s computer but also saves the cost associated with deploying, maintaining and upgrading of different business technologies.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Cloud computing or computing in the cloud is now one of the latest happening trends in the business world and the “next big thing” after Web 2.0. According to a 2008 paper published by IEEE Internet Computing &#8220;Cloud Computing is a paradigm in which information is permanently stored in servers on the Internet and cached temporarily on clients that include desktops, entertainment centers, table computers, notebooks, wall computers, handhelds, sensors, monitors, etc.&#8221; In other words, we can say that this is about increasing an organization’s or user’s capability by using different applications from some external servers without investing much on its own infrastructure and maintenance of local servers. Rather the organization/user pays for raw computing power. Here the word “cloud” is used as a metaphor for internet.</p>
<p style="text-align: justify;">The basic architecture of this cloud computing is a massive network of interconnected servers where the web applications reside. The user accessing these applications need not be aware of the physical location of the application’s computer. This not only reduces the cost of installing licensed software at the end user’s computer but also saves the cost associated with deploying, maintaining and upgrading of different business technologies.</p>
<p style="text-align: justify;">I guess by now you have been able to understand what Cloud Computing is all about and would like to know how one can access such services. There are a number of companies who offer such services. Prominent among them are Amazon with their Elastic Compute Cloud (EC2) and Google with their Google App Engine. There are also many internet service provider companies who rent space and time on these servers. The amount they charge for this is based on processing time or disk storage. Microsoft has also launched its own recently called AZURE. Azure offers service platforms for web developers, corporate developers, ISVs, system integrators and business. Though it is still not clear about how you need to pay for it but is believed that it will be based on pay by use on processing time, disk storage and bandwidth.</p>
<p style="text-align: justify;">Cloud Computing is a relatively new concept promising the most optimal utilization of computing resources. However we are waiting in baited breadth to see the silver lining on it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/11/cloud-computing-the-next-big-thing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Gets Big &#8211; and Corporate</title>
		<link>http://www.webdatasource.com/2008/11/web-20-gets-big-and-corporate/</link>
		<comments>http://www.webdatasource.com/2008/11/web-20-gets-big-and-corporate/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 22:09:15 +0000</pubDate>
		<dc:creator>By Saul Hansell</dc:creator>
				<category><![CDATA[NYTimes Bits]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[audience]]></category>
		<category><![CDATA[aversion]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[chief executive]]></category>
		<category><![CDATA[chipper]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[Connect]]></category>
		<category><![CDATA[Dave Girouard]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[e mail]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Force]]></category>
		<category><![CDATA[girouard]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[how to make money]]></category>
		<category><![CDATA[jerry yang]]></category>
		<category><![CDATA[jerry yang yahoo]]></category>
		<category><![CDATA[key concepts]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[Marc Benioff]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[movement]]></category>
		<category><![CDATA[notion]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[rallying cry]]></category>
		<category><![CDATA[Ray Ozzie]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[social relationships]]></category>
		<category><![CDATA[start ups]]></category>
		<category><![CDATA[step]]></category>
		<category><![CDATA[taking root]]></category>
		<category><![CDATA[third parties]]></category>
		<category><![CDATA[track]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[venture capitalists]]></category>
		<category><![CDATA[vowels]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://bits.blogs.nytimes.com/?p=1827</guid>
		<description><![CDATA[<p style="text-align: justify;">As the economy totters, it’s easy to make fun of the concept of “Web 2.0” — the rallying cry of a generation of chipper start-ups spawned over the last few years with an unusual aversion to vowels.</p>
<p style="text-align: justify;">Certainly, most of the venture capitalists I’ve talked to at the Web 2.0 Summit have said they are shying away from companies that are based on the idea of growing an audience now and figuring out how to make money later. However, after listening to the presentations here over the past three days, it is clear that some of the key concepts of the Web 2.0 movement are, in fact, taking root in deep ways.</p>
<p style="text-align: justify;">One of the most significant trends is how the big companies that make very complicated systems are reworking them using the principles of Web 2.0 companies, particularly the notion of programs that talk to other programs. They are breaking up their technologies into discrete modules that can work alongside data and applications from others.</p>
<p style="text-align: justify;">Facebook can be credited with taking the first step to open up large parts of its service to third parties. Last year, it let their applications on its site. Now, through its upcoming Facebook Connect service, it will let other companies build applications that use its list of people and who their friends are to deliver new services.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">As the economy totters, it’s easy to make fun of the concept of “Web 2.0” — the rallying cry of a generation of chipper start-ups spawned over the last few years with an unusual aversion to vowels.</p>
<p style="text-align: justify;">Certainly, most of the venture capitalists I’ve talked to at the Web 2.0 Summit have said they are shying away from companies that are based on the idea of growing an audience now and figuring out how to make money later. However, after listening to the presentations here over the past three days, it is clear that some of the key concepts of the Web 2.0 movement are, in fact, taking root in deep ways.</p>
<p style="text-align: justify;">One of the most significant trends is how the big companies that make very complicated systems are reworking them using the principles of Web 2.0 companies, particularly the notion of programs that talk to other programs. They are breaking up their technologies into discrete modules that can work alongside data and applications from others.</p>
<p style="text-align: justify;">Facebook can be credited with taking the first step to open up large parts of its service to third parties. Last year, it let their applications on its site. Now, through its upcoming Facebook Connect service, it will let other companies build applications that use its list of people and who their friends are to deliver new services.</p>
<p style="text-align: justify;">Yahoo, a vastly more complex site, is restructuring to allow others to use many parts of its service: the content, the search engine, the social relationships embedded in e-mail, and such. That means that Yahoo information can be used on other sites, and developers can create applications to run on Yahoo. “If and when we can get our 500 million users on our platform, the power is huge,” Jerry Yang, Yahoo’s chief executive, told the conference. This, of course, involves reworking much of the software behind the site in order to connect politely and consistently with other companies.</p>
<p style="text-align: justify;">Not to be outdone, Dave Girouard, who manages Google’s efforts to sell services to big enterprises, said that Google, too, developing a platform. “We want to you to have the same access to Google that our internal developers do,” Mr. Girouard said. He offered no details.</p>
<p style="text-align: justify;">In a completely different market, Salesforce.com is transforming itself from service dedicated to tracking sales leads to a platform that allows many more options. Marc Benioff, its chief executive, told the conference about the company’s new platform, Force.com. Now customers can run their own applications on Salesforce’s computers, mixing its systems with those from other developers. The point is to help companies develop internal systems, Web sites for the public and even applications to run on social networks like Facebook.</p>
<p style="text-align: justify;">By far the most ambitious effort along these lines is Microsoft’s new operating system called Azure, which is being developed under the direction of Ray Ozzie.</p>
<p style="text-align: justify;">In the broadest sense, Azure is a system that enables a program to run on personal computers, on mobile devices and on Microsoft’s own data centers without losing track of important data. But as I talked to Azure’s developers here, it was clear that Microsoft is trying to incorporate both strands of Web 2.0 thinking into the new operating system.</p>
<p style="text-align: justify;">First, it is designed to interact with many other systems. It can pull in data from other places and formats and create widgets that add features to Web sites. Microsoft insists that Azure will be more respectful of the various standards used on the Internet than the company’s other products have been.</p>
<p style="text-align: justify;">Moreover, Microsoft has built what it claims are industrial-strength versions of some of the social features common to Web 2.0 applications, such as a combined list of updates modeled after the Facebook newsfeed but designed to keep track of relationships among hundreds of millions of people.</p>
<p style="text-align: justify;">It’s too early to say which, if any, of these big-company efforts to build platforms will succeed. Some may well collapse of their own complexity. Others may be attempts by their creators to chase buzzwords. In 2001, you wouldn’t have been able to predict the Web sites that would prevail.</p>
<p style="text-align: justify;">But I do think that we can count on moving into a world where very complicated computer systems are designed to talk to people and to each other, using the ideas developed in the Web 2.0 era, with or without vowels.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/11/web-20-gets-big-and-corporate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intro to DotNetNuke</title>
		<link>http://www.webdatasource.com/2008/11/intro-to-dotnetnuke/</link>
		<comments>http://www.webdatasource.com/2008/11/intro-to-dotnetnuke/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 14:51:57 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[basic knowledge]]></category>
		<category><![CDATA[Cascading]]></category>
		<category><![CDATA[cascading style sheets]]></category>
		<category><![CDATA[commerce]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[content menus]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[customization]]></category>
		<category><![CDATA[customization features]]></category>
		<category><![CDATA[daunting task]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[dotnetnuke]]></category>
		<category><![CDATA[dream]]></category>
		<category><![CDATA[dream website]]></category>
		<category><![CDATA[Duke Nukem]]></category>
		<category><![CDATA[dynamic content]]></category>
		<category><![CDATA[existence]]></category>
		<category><![CDATA[expertise]]></category>
		<category><![CDATA[extranets]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[functionalities]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[gui features]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[html files]]></category>
		<category><![CDATA[intranets]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript css]]></category>
		<category><![CDATA[mailing]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft framework]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[offering]]></category>
		<category><![CDATA[open source cms]]></category>
		<category><![CDATA[placeholders]]></category>
		<category><![CDATA[set]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[way]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web designers]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=7685</guid>
		<description><![CDATA[<p style="text-align: justify;"><a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> - another powerful content management system to add to the existing list. With so many CMS's around and each one of them offering you a vast set of features, you feel pampered. A few years back, building your dream website for your organization and managing its content simultaneously, seemed such a daunting task. However after Content Management Systems have come into existence, publishing dynamic content in a consistently structured and customized manner has been astonishingly simplified.</p>
<p style="text-align: justify;">With over 500,000 registered users and 5.0 million downloads in late 2007 (as per official sources), <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> has become one of today’s largest and effective open source CMS. It has been written in Microsoft’s VB.NET for the ASP.NET (also by Microsoft) framework. With an extensible core and a set of additional customization features that include modules and skins, <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> can be used to develop, deploy and efficiently manage websites, including extranets and intranets.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> &#8211; another powerful content management system to add to the existing list. With so many CMS&#8217;s around and each one of them offering you a vast set of features, you feel pampered. A few years back, building your dream website for your organization and managing its content simultaneously, seemed such a daunting task. However after Content Management Systems have come into existence, publishing dynamic content in a consistently structured and customized manner has been astonishingly simplified.</p>
<p style="text-align: justify;">With over 500,000 registered users and 5.0 million downloads in late 2007 (as per official sources), <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> has become one of today’s largest and effective open source CMS. It has been written in Microsoft’s VB.NET for the ASP.NET (also by Microsoft) framework. With an extensible core and a set of additional customization features that include modules and skins, <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> can be used to develop, deploy and efficiently manage websites, including extranets and intranets.</p>
<p style="text-align: justify;">What makes DotNetNuke stand apart form the other CMS&#8217;s is the way in which it allows you to implement modules and skins, in order to customize your web application(s). Without any expertise of development in ASP.NET, web designers can develop skins for an application and it is this feature completely separates design from content. Only basic knowledge of HTML and understanding the inherent steps to prepare and implement the skins themselves is necessary. Skins have been implemented in DotNetNuke as basic HTML files with placeholders that serve as templates for content, menus and other GUI features. This includes support files such as JavaScript, CSS (Cascading Style Sheets) and images.</p>
<p style="text-align: justify;">The DotNetNuke architecture can be extended to provide an additional set of features and functionalities by the use of pluggable modules. The core includes almost a dozen of them that is included with the distribution and other modules can be downloaded from the official <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> website. These modules include pluggable add-ons some of which are forums, blogs, wiki, e commerce systems and mailing lists.</p>
<p style="text-align: justify;">There have also been some criticisms associated with this CMS. The instructions for creating an appropriate module are cumbersome. A very important feature that lacks in DotNetNuke is the ability to dynamically localize the content of your website. There is no provision for providing content in languages other than English. There has also been debate on the fact that some of its older modules do not work as advertised.</p>
<p style="text-align: justify;">However recently, the quality of the newer DotNetNuke releases have improved and are more stable compared to the earlier releases. The official portal features regular updates. Moreover, <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> has an impressive fan following. It has grown more and more popular with the passage of time. There are a number of online user groups available for assistance where you can learn more about the <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> platform.</p>
<p style="text-align: justify;">I remember playing the “Duke Nukem” game once. Speaking of CMS&#8217;s, I often <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/11/intro-to-dotnetnuke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

