<?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; customer</title>
	<atom:link href="http://www.webdatasource.com/tag/customer/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>Business Promise Trumps Privacy Concerns for Facebook Places</title>
		<link>http://www.webdatasource.com/2010/09/business-promise-trumps-privacy-concerns-for-facebook-places/</link>
		<comments>http://www.webdatasource.com/2010/09/business-promise-trumps-privacy-concerns-for-facebook-places/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 01:48:25 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[buying]]></category>
		<category><![CDATA[CES]]></category>
		<category><![CDATA[clipping coupons]]></category>
		<category><![CDATA[consumer]]></category>
		<category><![CDATA[coupon]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[deal]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook places]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[fraction]]></category>
		<category><![CDATA[frequent customers]]></category>
		<category><![CDATA[gold mine]]></category>
		<category><![CDATA[Goodle]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[href]]></category>
		<category><![CDATA[John Jantsch]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[listening to the radio]]></category>
		<category><![CDATA[little time]]></category>
		<category><![CDATA[marketer]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[mature consumers]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[nearby businesses]]></category>
		<category><![CDATA[newspapers]]></category>
		<category><![CDATA[Ning]]></category>
		<category><![CDATA[Phones]]></category>
		<category><![CDATA[places]]></category>
		<category><![CDATA[privacy concerns]]></category>
		<category><![CDATA[purchase]]></category>
		<category><![CDATA[purchase decision]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[radio reading]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[retail locations]]></category>
		<category><![CDATA[rewards programs]]></category>
		<category><![CDATA[RIM]]></category>
		<category><![CDATA[savvy marketers]]></category>
		<category><![CDATA[SES]]></category>
		<category><![CDATA[small businesses]]></category>
		<category><![CDATA[Smart]]></category>
		<category><![CDATA[smart phone]]></category>
		<category><![CDATA[smart phones]]></category>
		<category><![CDATA[social location]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[Traditional]]></category>
		<category><![CDATA[trumps]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16860</guid>
		<description><![CDATA[While some &#8220;mature&#8221; consumers may question the appeal of Facebook&#8217;s Places application – the program that allows a user to &#8220;check in&#8221; and let friends or others know where they are at any given time – savvy marketers see the application as a great way to reach a highly desirable demographic. Places largely appeals to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">While some &#8220;mature&#8221; consumers may question the appeal of Facebook&#8217;s Places application – the program that allows a user to &#8220;check in&#8221; and let friends or others know where they are at any given time – savvy marketers see the application as a great way to reach a highly desirable demographic.</p>
<p style="text-align: justify;">Places largely appeals to a younger crowd. Since it can only be used by those with a Facebook app on their smart phones, it eliminates many traditional consumers.</p>
<p style="text-align: justify;">However, for companies attempting to reach the elusive younger crowd, those who spend little time listening to the radio, reading mailers or newspapers, or clipping coupons, these location based applications may become a gold mine.</p>
<p style="text-align: justify;">If the customer is willing to allow a business to view their location, nearby businesses can instantly offer coupons or deal, grabbing the consumer at the point of making a purchase decision.</p>
<p style="text-align: justify;">Businesses could also make offers to friends of those who check in, encouraging them to join their friends at a particular location and make a purchase.</p>
<p style="text-align: justify;">Facebook has already announced its intention to allow restaurants and other retail locations to &#8220;claim&#8221; their locations. This would allow them to direct targeted advertising to frequent customers.</p>
<p style="text-align: justify;">Need some ideas for some virtual offers you can make on location Facebook Places? John Jantsch at <a href="http://www.ducttapemarketing.com/blog/2010/09/07/5-ways-for-small-businesses-to-get-in-the-location-game/" target="_blank">http://www.ducttapemarketing.com/blog/2010/09/07/5-ways-for-small-businesses-to-get-in-the-location-game/</a> has some ideas for using rewards programs, group buying, coupons via Goodle places, mobile coupon networks, or social location games to bring customers into your door.</p>
<p style="text-align: justify;">With only a fraction of Facebook&#8217;s users even tuned into Places, you certainly don&#8217;t want to make it your primary source for advertising. But with a growing number of younger consumers &#8220;checking in,&#8221; you don&#8217;t want to ignore it, either.<br />
﻿</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2010/09/business-promise-trumps-privacy-concerns-for-facebook-places/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Social Media in the Health Insurance Industry</title>
		<link>http://www.webdatasource.com/2010/08/using-social-media-in-the-health-insurance-industry/</link>
		<comments>http://www.webdatasource.com/2010/08/using-social-media-in-the-health-insurance-industry/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 12:36:56 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[approval system]]></category>
		<category><![CDATA[bandwagon]]></category>
		<category><![CDATA[challenge]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[doctor]]></category>
		<category><![CDATA[early adopters]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Feel]]></category>
		<category><![CDATA[frie]]></category>
		<category><![CDATA[Friendlier]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[health insurance]]></category>
		<category><![CDATA[health insurance companies]]></category>
		<category><![CDATA[health insurance industry]]></category>
		<category><![CDATA[information arena]]></category>
		<category><![CDATA[information plan]]></category>
		<category><![CDATA[insurance marketing]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[media customers]]></category>
		<category><![CDATA[media messages]]></category>
		<category><![CDATA[medicaid]]></category>
		<category><![CDATA[medical facilities]]></category>
		<category><![CDATA[Medicare]]></category>
		<category><![CDATA[plethora]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[privacy regulations]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[professional]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[South Carolina]]></category>
		<category><![CDATA[technical language]]></category>
		<category><![CDATA[trouble]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[typical turnaround time]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16852</guid>
		<description><![CDATA[The health insurance industry has not been the first to jump onto the social media bandwagon. For a number of reasons, social media presents some problems for insurance companies, both in the marketing arena and the information arena. For example, there are a plethora of privacy regulations governing what can and can&#8217;t be exposed about [...]]]></description>
			<content:encoded><![CDATA[<p>The health insurance industry has not been the first to jump onto the social media bandwagon. For a number of reasons, social media presents some problems for insurance companies, both in the marketing arena and the information arena.</p>
<p>For example, there are a plethora of privacy regulations governing what can and can&#8217;t be exposed about a specific patient.  When you&#8217;re on social media, you&#8217;re about as public as you can be.</p>
<p>In a related challenge, there is also a government regulated, complex approval system for any communication from the insurance industry to the public. Each piece of communication, including social media messages, has to complete the approval process, which can take weeks.  Not the typical turnaround time for a status update!</p>
<p>Also, if you are attempting to answer specific questions with a medical professional, you&#8217;re taking a qualified nurse or doctor away from their traditional duties, and with many medical facilities understaffed, it may just not seem important enough.</p>
<p>However, there are some good arguments to be made for including social media in a health insurance marketing and information plan.</p>
<ul>
<li>Access &#8212; many people who are daunted by forms, lines and technical language are completely comfortable logging into Twitter or Facebook. South Carolina is looking at using social media to reach Medicaid and Medicare customers.</li>
<li>Also, many people will know exactly how to find a company on Facebook, but have trouble remembering your web address. They can get questions answered more quickly through social media.</li>
<li>Some Companies are Already There – with the popularity of social media, even an industry with obstacles like the health insurance industry&#8217;s will find some early adopters. They are out there, with blogs, Q &amp; A columns, and customer service.</li>
<li>The Customers are using Social Media – Customers comparison shop, seek information, and communicate with others via social media. Health insurance companies seeking to be relevant may need to join in.</li>
<li>A &#8220;Friendlier&#8221; Feel. Health insurance companies have the image of being distant and inaccessible, not to mention unresponsive, in many cases. A presence in social media could soften that image.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2010/08/using-social-media-in-the-health-insurance-industry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jobs vs. Flash? Ego vs. the Market</title>
		<link>http://www.webdatasource.com/2010/05/jobs-vs-flash-ego-vs-the-market/</link>
		<comments>http://www.webdatasource.com/2010/05/jobs-vs-flash-ego-vs-the-market/#comments</comments>
		<pubDate>Tue, 04 May 2010 22:51:04 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ADOBE]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[CES]]></category>
		<category><![CDATA[course]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[Droid]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[mobile device]]></category>
		<category><![CDATA[mobile market]]></category>
		<category><![CDATA[Ning]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[Open]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[steve jobs]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[US]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16841</guid>
		<description><![CDATA[Steve Jobs recently penned a missive &#8220;explaining&#8221; Apple&#8217;s reasons for failing to integrate Adobe&#8217;s Flash technology (a standard for games and entertainment online) into its iPhone, iPod and iPad devices. His argument? Flash &#8220;falls short&#8221; of what it could be and what is needed on a mobile device. What would Jobs have said if everyone [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Steve Jobs recently penned a missive &#8220;explaining&#8221; Apple&#8217;s reasons for failing to integrate Adobe&#8217;s Flash technology (a<br />
standard for games and entertainment online) into its iPhone, iPod and iPad devices.</p>
<p style="text-align: justify;">His argument? Flash &#8220;falls short&#8221; of what it could be and what is needed on a mobile device.</p>
<p style="text-align: justify;">What would Jobs have said if everyone jumped Apple&#8217;s ship when their iPod batteries &#8220;fell short&#8221; of operating for more than a year? Rather than fix the known problem, they continued to sell iPods with faulty batteries.</p>
<p style="text-align: justify;">They followed the same strategy with faulty power supplies that burned out after a year or two and power cords that ripped and failed. Did Apple quickly fix the problems, apologize for the inconvenience, correct the problem?</p>
<p style="text-align: justify;">Of course not &#8212; that&#8217;s not Apple&#8217;s MO. Customers who stuck it out can buy replace</p>
<p style="text-align: justify;">
<p style="text-align: justify;">From a company that engages in that kind of &#8220;customer service,&#8221; complaints that Flash &#8220;falls short&#8221; of what it could be ring hypocritical.</p>
<p style="text-align: justify;">Adding to that hypocrisy, Jobs complains that Flash is a &#8220;proprietary&#8221; and &#8220;closed&#8221; system. Really, Apple? So you can&#8217;t take your own medicine, is that the problem? Apple continues to create a closed, stifling environment for developers and yet criticizes Adobe for the same thing?</p>
<p style="text-align: justify;">While I&#8217;m not a fan of Adobe&#8217;s encouragement of a probe into Apple&#8217;s monopolistic tactics in mobile technology, I am in favor of Apple becoming a team player in the mobile marketplace. Until then, I&#8217;m sticking with my open and ever-improving Android phone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2010/05/jobs-vs-flash-ego-vs-the-market/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Have You Got the Touch?</title>
		<link>http://www.webdatasource.com/2010/01/have-you-got-the-touch/</link>
		<comments>http://www.webdatasource.com/2010/01/have-you-got-the-touch/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 12:20:44 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[apple tablet]]></category>
		<category><![CDATA[attitude]]></category>
		<category><![CDATA[capability]]></category>
		<category><![CDATA[CES]]></category>
		<category><![CDATA[commerce company]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[few differences]]></category>
		<category><![CDATA[Gateway]]></category>
		<category><![CDATA[gratification]]></category>
		<category><![CDATA[handheld computing]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[instant gratification]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[Introduction]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[January]]></category>
		<category><![CDATA[loading]]></category>
		<category><![CDATA[mouse clicks]]></category>
		<category><![CDATA[netbooks]]></category>
		<category><![CDATA[no doubt]]></category>
		<category><![CDATA[onscreen]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[previous versions]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[ride]]></category>
		<category><![CDATA[slate]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[tablet computer]]></category>
		<category><![CDATA[tablet pcs]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[touch computers]]></category>
		<category><![CDATA[touch screens]]></category>
		<category><![CDATA[touch technology]]></category>
		<category><![CDATA[web access]]></category>
		<category><![CDATA[web business]]></category>
		<category><![CDATA[web commerce]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[World]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16824</guid>
		<description><![CDATA[Touch technology is the wave of the future of computing, and not just in handheld computing. The introduction of HP and other Microsoft based tablets at the CES this month, along with the rumors of the new Apple tablet set to debut later in January represent only the latest in the touch world innovations. HP [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Touch technology is the wave of the future of computing, and not just in handheld computing.</p>
<p style="text-align: justify;">The introduction of HP and other Microsoft based tablets at the CES this month, along with the rumors of the new Apple tablet set to debut later in January represent only the latest in the touch world innovations.</p>
<p style="text-align: justify;">HP has a whole line of touch computers, including a line of sleek desktops, as does Gateway. Printers are adding web access with touch technology, and allowing printing directly from the web.</p>
<p style="text-align: justify;">Additionally, you&#8217;re looking at faster cell phones with bigger screens, the netbooks, and the tablet PCs.</p>
<p style="text-align: justify;">What does that mean for the web developer and the web commerce company?</p>
<p style="text-align: justify;">More people will have quicker and more portable access to your websites. They&#8217;ll have the opportunity to interact with them in quicker, easier, more intuitive ways, if you&#8217;re ready to provide that capability.</p>
<p style="text-align: justify;">For the web business concerned with ecommerce, think instant gratification for your touch customers. Is your ecommerce interface smooth and seamless? Will you be able to capture the customer&#8217;s purchase easily?</p>
<p style="text-align: justify;">When developing for touch screens, remember that the input is very similar to mouse clicks, with only a few differences.  However, you&#8217;ll want to make sure you allow for those differences.</p>
<p style="text-align: justify;">For example, design your onscreen buttons slightly larger than you would for mouse clicks to accommodate fingers. You may also need to think about providing your own status feedback (loading, etc.) since the touch screens don&#8217;t provide that information.</p>
<p style="text-align: justify;">While it&#8217;s useful to keep in mind that previous versions of the &#8220;slate&#8221; or &#8220;tablet&#8221; computer has not taken off with consumers, there&#8217;s no doubt that innovation in the mobile computing area is the current game.</p>
<p style="text-align: justify;">With the indisputable success of the iPhone and iPod touch, technology companies seem to have the attitude that bigger will be better when it comes to portable touch screens. There&#8217;s no doubt that bigger will be better for many kinds of websites, especially those that are graphically and textually heavy like print news websites. Magazines and newspapers could benefit from larger tablet computers, as could many other sites.</p>
<p style="text-align: justify;">Regardless of whether or not the tablet/slate computers take off, the touch technology is here to stay, and will only become more popular. Adjust and plan so that your website has a seamless ride into the touch era of computing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2010/01/have-you-got-the-touch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Be Smart – Plan for Phone Browsers</title>
		<link>http://www.webdatasource.com/2009/10/be-smart-%e2%80%93-plan-for-phone-browsers/</link>
		<comments>http://www.webdatasource.com/2009/10/be-smart-%e2%80%93-plan-for-phone-browsers/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 13:38:00 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[accurate view]]></category>
		<category><![CDATA[ALT]]></category>
		<category><![CDATA[apple iphone]]></category>
		<category><![CDATA[availability]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[broadband providers]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[cascading style sheet]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[cell phone plans]]></category>
		<category><![CDATA[cell phone users]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[daily basis]]></category>
		<category><![CDATA[duplication]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[fact]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[gums]]></category>
		<category><![CDATA[handheld devices]]></category>
		<category><![CDATA[internet capabilities]]></category>
		<category><![CDATA[internet connections]]></category>
		<category><![CDATA[internet content]]></category>
		<category><![CDATA[kind]]></category>
		<category><![CDATA[loading]]></category>
		<category><![CDATA[mobile device]]></category>
		<category><![CDATA[Openwave]]></category>
		<category><![CDATA[optimize]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[parameters]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[Phones]]></category>
		<category><![CDATA[Plan]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[presence]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[provider]]></category>
		<category><![CDATA[relevant links]]></category>
		<category><![CDATA[sense]]></category>
		<category><![CDATA[sheet]]></category>
		<category><![CDATA[Simulator]]></category>
		<category><![CDATA[small articles]]></category>
		<category><![CDATA[Smart]]></category>
		<category><![CDATA[smart phones]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[talk]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web crawlers]]></category>
		<category><![CDATA[web presence]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16809</guid>
		<description><![CDATA[Consider: Some cell phone plans are offering Internet capabilities for only $10 a month. Each provider is announcing the availability of different types of Smart Phones on what is nearly a daily basis. Many people can access email easily on their handheld devices and will soon expect to be able to access other internet content [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Consider: Some cell phone plans are offering Internet capabilities for only $10 a month. Each provider is announcing the availability of different types of Smart Phones on what is nearly a daily basis. Many people can access email easily on their handheld devices and will soon expect to be able to access other internet content wherever they are and whenever they want it.</p>
<p style="text-align: justify;">What does this mean for the average business with a web presence? It means that you want to optimize your site – not just for Google and other web crawlers, but also for small screen browsers.</p>
<p style="text-align: justify;">Although there was some talk of needing a “mobile device only” version of every website, this kind of duplication is not necessary.  In fact, a cascading style sheet, or CSS, can be written into your web page, instructing the device as it loads your page, to optimize your site for the phone or PDA that is requesting it. So writing in CSS is the first step to optimizing your page for hand held devices and smart phones.</p>
<p style="text-align: justify;">Use a program like the Openwave Phone Simulator to test your web page and see how it will look on a “generic” cell phone type device. If you know the specific parameters of a particular type of device (say, an Apple iPhone), then you can increase the parameters and get an accurate view.</p>
<p style="text-align: justify;">Then optimize your content. Remember that too much text is too much for a smartphone device, and keep the articles short (no more than 500 words, on average). Many small articles with relevant links are better than one long article.</p>
<p style="text-align: justify;">Make sure that the most important elements in your page will load in the center of the phone’s screen, and are accessible without scrolling.  Make sure your pages load quickly. Cell phones and smart phones have slower internet connections than most broadband providers, and you don’t want a clunky website that gums up the works. The customer will click the “close” box after a few seconds.</p>
<p style="text-align: justify;">Many cell phone users will block the photos on your site from loading, so be sure to have relevant and interesting ALT tags that identify your photos. You want your page to make sense to the viewer who has no photo access.</p>
<p style="text-align: justify;">With a little planning,  you will have a great website that is optimize for both PC and smartphone use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/10/be-smart-%e2%80%93-plan-for-phone-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Choose the Right Web Design Firm</title>
		<link>http://www.webdatasource.com/2009/06/how-to-choose-the-right-web-design-firm/</link>
		<comments>http://www.webdatasource.com/2009/06/how-to-choose-the-right-web-design-firm/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 15:15:06 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[cost]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[cutting edge]]></category>
		<category><![CDATA[Dependable]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design expertise]]></category>
		<category><![CDATA[Determine]]></category>
		<category><![CDATA[elements]]></category>
		<category><![CDATA[Evaluate]]></category>
		<category><![CDATA[firm]]></category>
		<category><![CDATA[first impression]]></category>
		<category><![CDATA[good web design]]></category>
		<category><![CDATA[Great]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[impression]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[meeting]]></category>
		<category><![CDATA[micro seconds]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[product]]></category>
		<category><![CDATA[quality web design]]></category>
		<category><![CDATA[sense]]></category>
		<category><![CDATA[someone]]></category>
		<category><![CDATA[Timelines]]></category>
		<category><![CDATA[Traditional]]></category>
		<category><![CDATA[web design firm]]></category>
		<category><![CDATA[web designer]]></category>
		<category><![CDATA[WebDatamation]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16738</guid>
		<description><![CDATA[<p style="text-align: justify;">Once you recognize the need for a good web design firm, how do you choose from among all the available companies?</p>
<p style="text-align: justify;"><strong>Know Yourself</strong></p>
<p style="text-align: justify;">Before you begin looking for a firm to design your website, think about the image you want to portray for your business.</p>
<p style="text-align: justify;">What is the first impression you want customers or visitors to have about your company, and what do you want your site to say about you?</p>
<p style="text-align: justify;">Do you want clients to think your company is modern and on the cutting edge? Creative? Dependable? Traditional? You’re website portrays that image in a few micro seconds.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Once you recognize the need for a good web design firm, how do you choose from among all the available companies?</p>
<p style="text-align: justify;"><strong>Know Yourself</strong></p>
<p style="text-align: justify;">Before you begin looking for a firm to design your website, think about the image you want to portray for your business.</p>
<p style="text-align: justify;">What is the first impression you want customers or visitors to have about your company, and what do you want your site to say about you?</p>
<p style="text-align: justify;">Do you want clients to think your company is modern and on the cutting edge? Creative? Dependable? Traditional? You’re website portrays that image in a few micro seconds.</p>
<p style="text-align: justify;">So know what sense you want to portray,  and decide on some of the basic information you want on your site.</p>
<p style="text-align: justify;"><strong>Great Connection</strong></p>
<p style="text-align: justify;">You want a web designer who connects with you, who captures the essence of what your business is about. The right designer understands you, and understands the kind of impression you want to make on your clients.</p>
<p style="text-align: justify;">Talk to several designers and look for a couple who seem to “get it,” to grasp completely what your business is about and who you are.</p>
<p style="text-align: justify;">You want to work with someone who takes your ideas and expands on them in ways that are good for your business.</p>
<p style="text-align: justify;"><strong>Evaluate Their Work</strong></p>
<p style="text-align: justify;">Once you’ve chosen a few web designers who seem promising, then you should evaluate their portfolio of websites.</p>
<p style="text-align: justify;">Once you know they understand your requirements, you want to be sure they have the technical and design expertise to back their vision up with product. Look through the sites they have completed and see if there are features and designs that you like.</p>
<p style="text-align: justify;">Ask the designers about their ideas for your website. What elements do they suggests? What kinds of graphics? What kind of layout? See which ideas you prefer.</p>
<p style="text-align: justify;"><strong>Determine Costs and Timelines</strong></p>
<p style="text-align: justify;">When you think you’ve decided on a firm, then discuss costs and timelines. These are two important items that can make or break a deal.</p>
<p style="text-align: justify;">With <a href="http://www.webdatamation.com/" target="_blank">Webdatamation</a>, you will get quality web design at a reasonable cost. We’ll work with you on meeting deadlines, and are very responsive to customer concerns.</p>
<p style="text-align: justify;">For web designers who understand your business and understand all the technical aspects of web design, speak to the experts at Webdatamation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/06/how-to-choose-the-right-web-design-firm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Popular Android Apps</title>
		<link>http://www.webdatasource.com/2009/05/popular-android-apps/</link>
		<comments>http://www.webdatasource.com/2009/05/popular-android-apps/#comments</comments>
		<pubDate>Mon, 04 May 2009 15:14:00 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[addictive game]]></category>
		<category><![CDATA[anything]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[apple iphone]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[background programs]]></category>
		<category><![CDATA[barcode]]></category>
		<category><![CDATA[barcode scanner]]></category>
		<category><![CDATA[brain teasers]]></category>
		<category><![CDATA[brand]]></category>
		<category><![CDATA[chess]]></category>
		<category><![CDATA[chess games]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[customer data]]></category>
		<category><![CDATA[Daily]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[development solutions]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[free dictionary]]></category>
		<category><![CDATA[free games]]></category>
		<category><![CDATA[horoscope]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[MySpace]]></category>
		<category><![CDATA[Namco]]></category>
		<category><![CDATA[PacMan]]></category>
		<category><![CDATA[piece]]></category>
		<category><![CDATA[plain message]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[purchase]]></category>
		<category><![CDATA[Ringdroid]]></category>
		<category><![CDATA[ShopSavvy]]></category>
		<category><![CDATA[similar services]]></category>
		<category><![CDATA[slide puzzles]]></category>
		<category><![CDATA[solitaire versions]]></category>
		<category><![CDATA[telephone]]></category>
		<category><![CDATA[translation dictionaries]]></category>
		<category><![CDATA[Weather Channel]]></category>
		<category><![CDATA[web browsers]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16719</guid>
		<description><![CDATA[<p style="text-align: justify;">The top android application a few months ago should give a very plain message to developers – Namco’s PacMan (yes, the classic arcade game) was the top <a href="http://www.webdatamation.com/en/FileDroid.aspx" target="_blank">Android</a> download.</p>
<p style="text-align: justify;">Although android smartphones can be powerful web browsers and business tools, many users like to utilize them for gaming as much as anything else, so free games that collect customer data, promote your brand or give customers access to products for purchase are popular development solutions.</p>
<p style="text-align: justify;">MySpace mobile is another highly popular android app, as is the Weather Channel. But what about non-proprietary kinds of apps, the kinds you can develop to promote your business?</p>
<p style="text-align: justify;">Look at the Free Dictionary, another highly popular download, and consider what other similar services customers might like. Translation dictionaries and phrase translators are extremely useful and popular, for example. Provide G1 customers a quick service they can’t get somewhere else, or they can get better from you.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The top android application a few months ago should give a very plain message to developers – Namco’s PacMan (yes, the classic arcade game) was the top <a href="http://www.webdatamation.com/en/FileDroid.aspx" target="_blank">Android</a> download.</p>
<p style="text-align: justify;">Although android smartphones can be powerful web browsers and business tools, many users like to utilize them for gaming as much as anything else, so free games that collect customer data, promote your brand or give customers access to products for purchase are popular development solutions.</p>
<p style="text-align: justify;">MySpace mobile is another highly popular android app, as is the Weather Channel. But what about non-proprietary kinds of apps, the kinds you can develop to promote your business?</p>
<p style="text-align: justify;">Look at the Free Dictionary, another highly popular download, and consider what other similar services customers might like. Translation dictionaries and phrase translators are extremely useful and popular, for example. Provide G1 customers a quick service they can’t get somewhere else, or they can get better from you.</p>
<p style="text-align: justify;">A version of the horoscope might be a winner, as the Daily Horoscope app is one of the top downloads for android, as is Ringdroid, that gives you the ability to create your own telephone ringtones.</p>
<p style="text-align: justify;">Wallpaper and background programs are highly popular, as are shopping programs like Compare Everywhere and ShopSavvy.  Both allow you to use your phone as a barcode scanner, searching online and comparing local prices.</p>
<p style="text-align: justify;">Games are the top download for all smartphones, android or Apple, and a version of a popular game or a new, “addictive” game may be just the development project for your business.</p>
<p style="text-align: justify;">Popular downloads besides PacMan include solitaire versions, slide puzzles (easy to incorporate your logo and an addictive style of game), poker in various varieties, snake, puzzles and brain teasers, trivia, tic tac toe and chess.</p>
<p style="text-align: justify;">Providing cool features and moves for your customized android game with win you downloads, revenue and potential customers.</p>
<p style="text-align: justify;">For example, some of the chess games allow players to choose landscape or portrait orientation and to make moves using a trackball, the keyboard or the touchscreen. One game will take note of the piece you have selected and then highlight all possible moves by that piece, allowing the player to strategize. One will allow a reversal of several moves, so the player can go back and correct a mistake or poor move as well.</p>
<p style="text-align: justify;">Innovative ideas will win recognition in this burgeoning market, where there are hundreds of thousands of downloads to G1 smartphones each day. For a platform that only opened in late October of 2008, the android app market is a huge one with lots of potential for any business.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/05/popular-android-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Map API</title>
		<link>http://www.webdatasource.com/2009/04/google-map-api-2/</link>
		<comments>http://www.webdatasource.com/2009/04/google-map-api-2/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 19:44:09 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[2d maps]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[accuracy]]></category>
		<category><![CDATA[AdSense]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[advertising revenue]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[brick]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[geographic coordinates]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google map]]></category>
		<category><![CDATA[google maps api]]></category>
		<category><![CDATA[googlebar]]></category>
		<category><![CDATA[hybrid maps]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[internet users]]></category>
		<category><![CDATA[Introduction]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[latitude]]></category>
		<category><![CDATA[latitude and longitude]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[locator]]></category>
		<category><![CDATA[lot]]></category>
		<category><![CDATA[Map]]></category>
		<category><![CDATA[mortar]]></category>
		<category><![CDATA[open access]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[person]]></category>
		<category><![CDATA[physical addresses]]></category>
		<category><![CDATA[place of business]]></category>
		<category><![CDATA[Repair]]></category>
		<category><![CDATA[reverse geocoding]]></category>
		<category><![CDATA[sale]]></category>
		<category><![CDATA[Satellite]]></category>
		<category><![CDATA[satellite maps]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[search bar]]></category>
		<category><![CDATA[street]]></category>
		<category><![CDATA[street view]]></category>
		<category><![CDATA[time and trouble]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16704</guid>
		<description><![CDATA[A great website with superior content goes a long way to getting your business recognized. But if you want to convert that customer contact into a sale, some businesses require a customer to find the brick and mortar place of business. Other customers need to know where to bring items for repair, and others just [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">A great website with superior content goes a long way to getting your business recognized. But if you want to convert that customer contact into a sale, some businesses require a customer to find the brick and mortar place of business. Other customers need to know where to bring items for repair, and others just prefer to conduct their business in person.</p>
<p style="text-align: justify;">Save yourself a lot of time and trouble giving directions by embedding a Google Maps locator right on your website using Google Maps API.</p>
<p style="text-align: justify;">This tool allows you to use JavaScript to place a Google Map into your site, pinpointing your location with the superior accuracy that internet users have come to expect from Google Maps.</p>
<p style="text-align: justify;">You can add different utilities for manipulating maps that are the same as the tools your customers are used to using on the Google Maps page. You can also utilize the numerous utilities available for manipulating maps, and add content to your maps by using various other services.</p>
<p style="text-align: justify;">The Google Maps API will let you create a robust, customized map environment that is familiar to your customers and unique to your business.  You can choose from normal, 2D maps, satellite maps, and hybrid maps showing some photographs and prominent roads.</p>
<p style="text-align: justify;">There are many other features you can add to your map, like street view, street view points of view, geocoding and reverse geocoding (converting physical addresses into geographic coordinates of latitude and longitude), and a local search bar.</p>
<p style="text-align: justify;">If your website is free and open access, then Google Maps API is free for your use.</p>
<p style="text-align: justify;">You can actually earn advertising revenue from using your Google Maps API. The new GoogleBar has advertising beside local business search results. You can earn from this advertising if you have a link from the GoogleBar to an AdSense account. It’s easy to sign up for an AdSense account, as well.</p>
<p style="text-align: justify;">For an overview of the Google Maps API and an introduction to the many features, check out the website at <a href="http://code.google.com/apis/maps/">http://code.google.com/apis/maps/</a>.</p>
<p style="text-align: justify;">For instructions on how to utilize many of the features of Google Maps API, including the advertising feature, click here: <a href="http://code.google.com/apis/maps/documentation/services.html#Advertising">http://code.google.com/apis/maps/documentation/services.html#Advertising</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/04/google-map-api-2/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>
	</channel>
</rss>

