<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>MaaS360 Blog</title>
	
	<link>http://blog.maas360.com</link>
	<description />
	<lastBuildDate>Mon, 06 Feb 2012 14:58:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/maas360" /><feedburner:info uri="maas360" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>SaaS and Application Security: Best Practices for Code Injection</title>
		<link>http://feedproxy.google.com/~r/maas360/~3/jeIfGGWYJvs/</link>
		<comments>http://blog.maas360.com/archives/cloudcomputing/saas-and-application-security-best-practices-for-code-injection/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 14:58:14 +0000</pubDate>
		<dc:creator>MaaS360</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Engineering Excellence]]></category>
		<category><![CDATA[Security Information]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[confidential information]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[data validation]]></category>
		<category><![CDATA[header data]]></category>
		<category><![CDATA[injection]]></category>
		<category><![CDATA[Java code]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[parameter]]></category>
		<category><![CDATA[post data field]]></category>
		<category><![CDATA[sensitive information]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[web application]]></category>
		<category><![CDATA[web browser]]></category>
		<category><![CDATA[web page]]></category>

		<guid isPermaLink="false">http://blog.maas360.com/?p=2300</guid>
		<description><![CDATA[by Nitish Jha, Fiberlink Viewing a web page on a web browser has revolutionized the way information is shared, and is one of the most successful examples of the benefits of sustained investment and the commitment to research. Unfortunately, the power of the web is also its greatest downfall. The liberty of publishing your content, <a href="http://blog.maas360.com/archives/cloudcomputing/saas-and-application-security-best-practices-for-code-injection/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.maas360.com/wp-content/uploads/2012/02/secureApp-300x300.jpg"><img class="alignright size-full wp-image-2303" title="secureApp-300x300" src="http://blog.maas360.com/wp-content/uploads/2012/02/secureApp-300x300.jpg" alt="" width="180" height="180" /></a>by Nitish Jha, Fiberlink</p>
<p>Viewing a web page on a web browser has revolutionized the way information is shared, and is one of the most successful examples of the benefits of sustained investment and the commitment to research. Unfortunately, the power of the web is also its greatest downfall. The liberty of publishing your content, with hardly any prerequisites, makes people vulnerable to the designs of certain extremely gifted individuals trying to phish confidential information out of your interactions with the system.</p>
<p>There is a case for users to be more careful while sharing sensitive information on the web. But, the responsibility of protecting its users lies solely with the entity (individual or organization) that publishes the application on the web. With organizational reputations on the line, companies have invested millions into building applications that are <em>safe</em> for users and themselves. The stakes are high!</p>
<p>As a web application developer it is extremely important to make sure that your application is not susceptible to any known or unknown threats posed by systems or humans. In this series of articles, we will analyze some of the common vulnerabilities infecting the world of web applications and application code. We will try to enforce the fact that web application security is much more than just using SSL. SSL can only protect the confidentiality and integrity of data moving back and forth between the client and the server. It does not protect against attacks that are targeted directly at either server or client – and that is where we will focus our attention.</p>
<p>We will kick off our series with a basic but crucial problem – <em>Injection.</em></p>
<h4><em></em>Injection</h4>
<p>In simple terms, an injection flaw is something that allows an attacker to insert and execute malicious or unintended code within your application. Depending on the system different types of injections may be performed. The two common flaws are at SQL or OS (operating system) level.</p>
<p>Here is an example. Assume we have a customer table with an <em>ID</em> column for storing the details of the customer. The HTTP request for this page looks something like this:</p>
<p><span style="color: #0000ff;">http://&lt;yourcompany&gt;/&lt;yourapp&gt;/getDetails?customer=1111</span></p>
<p>In the workflow, our code for fetching the details of the customer looks something like this:</p>
<p><span style="color: #4596ba;">String customerId = request.getParameter(“customer”);</span></p>
<p><span style="color: #4596ba;">String query = “select name, other_details_from_customer_table from customer where ID = ‘“ + customerId + “’”;</span></p>
<p>This is followed by the code to execute the query, fetch and return the data back to the browser. Once the attacker has access to the request URL of the page, it will be pretty easy for him to modify the parameters and resend the request back to the server. Assume the request is modified to look something like this:</p>
<p><span style="color: #0000ff;">http://&lt;yourcompany&gt;/&lt;yourapp&gt;/getDetails?customer=’ or ‘1’=’ 1</span></p>
<p>This changes the meaning of the entire workflow and returns the data for all of our customers!</p>
<p>In the worst cases of SQL injection, the attacker can execute a stored procedure that can do a lot more damage than the query stated above. At the OS level, it may even turn out to be the execution of a system command on the server.</p>
<p>Since SQL injection is performed at the database level, attackers may tamper with critical data and in some cases, may even destroy it. If the developer is not careful in the application design, the attacker may even end up executing administrator commands on the database.</p>
<p>Let’s look at an example of OS injection. Assume this is the (Java) code for our application:</p>
<p><span style="color: #4596ba;">//required imports&#8230;</span></p>
<p><span style="color: #4596ba;">public class HelloWorld{</span></p>
<p><span style="color: #4596ba;">          public string foo(String accountNumber){</span></p>
<p><span style="color: #4596ba;">                                  try {                                                              </span></p>
<p><span style="color: #4596ba;">                                                          Runtime rt = Runtime.getRuntime();</span></p>
<p><span style="color: #4596ba;">                                                          rt.exec(&#8220;/u001/some_dir/runscan.sh &#8221; + accountNumber);</span></p>
<p><span style="color: #4596ba;">                                  }catch(Exception e){</span></p>
<p><span style="color: #4596ba;">                                                          //all error handling here</span></p>
<p><span style="color: #4596ba;">                                  }</span></p>
<p><span style="color: #4596ba;">          }</span></p>
<p><span style="color: #4596ba;">}</span></p>
<p>The snippet of code above receives data from a feeder which does not validate the input <em>accountNumber</em>. The method <em>foo</em> accepts the inputs and executes a shell script on the command line with the input as an argument. So far, so good. Of course the developer didn’t anticipate that the input can be fed in with a lot more. Let us assume the method is invoked with the argument “<em>acct1 &amp; ps –aef”</em>. The script (<em>runscan.sh</em>) will get executed with <em>acct1</em>. But because of the <em>&amp;</em> in the input, a second command is appended. Thus, the system ends up executing the process status as well. A similar effect may also be achieved by using an input with a semi-colon. For example: “acct1 ; netstat –anp”.</p>
<p>Now, the g<em>ood </em>news. All this can be avoided without investing much time and effort. Here are some best practices for protecting against code injection attacks:</p>
<p>Any injection flaw is an indication of bad/incorrect data validation. This data could have arrived through a trusted or an untrusted source. Maybe your application was only meant for <em>real world users,</em> but nothing stops someone from writing a script (or creating a requestor client outside your application) that generates unanticipated scenarios. So, it is extremely important to not restrict yourself by the expected behaviour, usage or even the targeted audience. The workflow illustrated in the application UI is not the only usecase your application will be exposed to.</p>
<p>It is highly recommended that <em>untrusted or unvalidated data not be allowed to percolate down to the DB access layer or to the system layer through your application.</em> Many developers make an incorrect assumption that validating text fields is the only thing needed. The validation list, if one has to create it, is much more exhaustive. Cookies, header data, and post data fields are some of the most common vulnerable entities that hardly ever get the developer’s attention.</p>
<p>On the database level, using bind variables helps us in queries. Another recommended approach is the <em>use of stored procedures</em>. This forces the developer to define the SQL code first and then pass in the parameters. This reduces the possibility of generating queries on the fly like the one in the example above.</p>
<p>Another very good defence mechanism is <em>escaping all user-specified inputs.</em> Some of the Oracle database techniques used for this are discussed in detail <a href="http://www.orafaq.com/wiki/SQL_FAQ#How_does_one_escape_special_characters_when_writing_SQL_queries.3F">on this orafaq page</a>.</p>
<p>It is expected that the database setting will use SET DEFINE OFF or SET SCAN OFF. <em>Creating a specific database user, which does not own any DB object,</em> for the application is a good defence mechanism. This guards the allocation of only required grants to this user.</p>
<p>Last but not the least; <em>a proper code review</em> is the final step towards avoiding injection attacks against your application. A fresh set of eyes can catch vulnerable scenarios or lines of code, which you may think are safe or may have overlooked.</p>
<p>We will close at this point. I will be back with the next episode of this series. Until then, take another look at your code. Is your application secure? Will you bet your paycheck on it? Looking forward to hearing about your experiences of injection attacks and your defences against them.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maas360?a=jeIfGGWYJvs:EhZDAd7Pr4c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maas360?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=jeIfGGWYJvs:EhZDAd7Pr4c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maas360?i=jeIfGGWYJvs:EhZDAd7Pr4c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=jeIfGGWYJvs:EhZDAd7Pr4c:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/maas360?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=jeIfGGWYJvs:EhZDAd7Pr4c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/maas360?i=jeIfGGWYJvs:EhZDAd7Pr4c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=jeIfGGWYJvs:EhZDAd7Pr4c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maas360?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=jeIfGGWYJvs:EhZDAd7Pr4c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maas360?i=jeIfGGWYJvs:EhZDAd7Pr4c:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maas360/~4/jeIfGGWYJvs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.maas360.com/archives/cloudcomputing/saas-and-application-security-best-practices-for-code-injection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.maas360.com/archives/cloudcomputing/saas-and-application-security-best-practices-for-code-injection/</feedburner:origLink></item>
		<item>
		<title>Alleviating Your Mobile Security Woes</title>
		<link>http://feedproxy.google.com/~r/maas360/~3/x6Gv_Ucy_yk/</link>
		<comments>http://blog.maas360.com/archives/mobilitymanagement/alleviating-mobile-security-woes/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 19:19:36 +0000</pubDate>
		<dc:creator>MaaS360</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Emerging Trends and Technology]]></category>
		<category><![CDATA[Endpoint Management]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[Mobility Management]]></category>
		<category><![CDATA[Security Information]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[CIO]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[data sensitivity]]></category>
		<category><![CDATA[device inventory]]></category>
		<category><![CDATA[device use]]></category>
		<category><![CDATA[enterprise IT]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[IT professionals]]></category>
		<category><![CDATA[MaaS360]]></category>
		<category><![CDATA[MDM]]></category>
		<category><![CDATA[Mobile device Management]]></category>
		<category><![CDATA[Mobile Security]]></category>
		<category><![CDATA[mobile security strategy]]></category>
		<category><![CDATA[mobile workers]]></category>
		<category><![CDATA[oversight]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[tablet]]></category>

		<guid isPermaLink="false">http://blog.maas360.com/?p=2286</guid>
		<description><![CDATA[by John Harrington, Fiberlink This year, the security of confidential information on mobile devices is a top concern for companies across the world. Executives are being urged to finalize mobile security strategies while IT departments are in the drivers seat for implementation. Screw-ups will assuredly have a lasting backlash on the parties that fail to <a href="http://blog.maas360.com/archives/mobilitymanagement/alleviating-mobile-security-woes/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Image source: http://www.intomobile.com/wp-content/uploads/2011/04/edible-gummy-iphone-cases.jpg" src="http://www.intomobile.com/wp-content/uploads/2011/04/edible-gummy-iphone-cases.jpg" alt="Image source: http://www.intomobile.com/wp-content/uploads/2011/04/edible-gummy-iphone-cases.jpg" width="175" height="175" />by John Harrington, Fiberlink</p>
<p>This year, the security of confidential information on mobile devices is a top concern for companies across the world. Executives are being urged to finalize mobile security strategies while IT departments are in the drivers seat for implementation. Screw-ups will assuredly have a lasting backlash on the parties that fail to prepare. To add to the stress, data growth is running rampant and the release of lost and stolen information has become more damaging with each new headline. The margin for error is thin indeed.</p>
<p>If your company has made major systematic changes, taken a closer look at its processes, or made changes to how it uses technology, you shouldn&#8217;t be surprised. These are all reactionary moves in face of a quickly changing landscape. For many companies, addressing the <a href="http://blog.maas360.com/archives/mobilitymanagement/battling-to-secure-your-mobile-workforce/?A=blog&amp;O=JH">growing number of mobile workers</a> has been the biggest struggle.</p>
<p>Every day, new devices equipped with new technology and sensitive data are connecting to the corporate network, spelling out potential for disaster for many CIOs. Who could blame them for being paranoid? The security of data is too important to ignore.</p>
<p>Take for example the results of a poll conducted by the Dimensional Research for Check Point Software Technologies. 71% of IT professionals believe an uptick in security events experienced by their company during the past two years can be attributed to increased mobile device use. On that point, 78% said they&#8217;ve seen such use of smartphones and tablets double in that time.</p>
<p>At first glance, it seems as if there&#8217;s a connection between the <em>security incidents</em> and the <em>increased use of devices</em>, or the <a href="http://trials.maas360.com/forms/register_service_m.php?id=287&amp;A=blog&amp;O=JH">iPads, iPhones, and Androids</a> being <a href="http://maasters.maas360.com/forum/expertise/putting-employee-owned-iphones-and-ipads-to-work-webinar-september-29-2011/?A=blog&amp;O=JH">brought to work by employees</a>. Cloud computing, &#8220;hacktivism&#8221;, and mobility have brought a lot of change to the world of enterprise IT in recent years; the more reliant companies become on these new technologies and ideas, risk will continue to increase.</p>
<p>What we are unsure of, however, is the mobility environment of each IT professional polled, and what tools they were using at work. Without knowing, how can we attribute the rise in data breaches to smartphones and tablets? A <a href="http://www.maas360.com/products/mobile-device-management/?A=blog&amp;O=JH">mobile device management</a> (MDM) solution allows proper implementation of a given mobile security strategy while giving the director the means to oversee their device inventory. In other words, it provides peace of mind in place of frustration.</p>
<p>What is your company doing to manage the mobile devices connecting to the corporate network? If devices are being kept at home as a preventative measure, you could be missing out on potential for increased productivity and a practical means for doing work. Share your story with us in the comments below.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maas360?a=x6Gv_Ucy_yk:_az9MFtatG4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maas360?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=x6Gv_Ucy_yk:_az9MFtatG4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maas360?i=x6Gv_Ucy_yk:_az9MFtatG4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=x6Gv_Ucy_yk:_az9MFtatG4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/maas360?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=x6Gv_Ucy_yk:_az9MFtatG4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/maas360?i=x6Gv_Ucy_yk:_az9MFtatG4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=x6Gv_Ucy_yk:_az9MFtatG4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maas360?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=x6Gv_Ucy_yk:_az9MFtatG4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maas360?i=x6Gv_Ucy_yk:_az9MFtatG4:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maas360/~4/x6Gv_Ucy_yk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.maas360.com/archives/mobilitymanagement/alleviating-mobile-security-woes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.maas360.com/archives/mobilitymanagement/alleviating-mobile-security-woes/</feedburner:origLink></item>
		<item>
		<title>Tips for Safe Banking from Your Smartphone</title>
		<link>http://feedproxy.google.com/~r/maas360/~3/B6toWyk0uag/</link>
		<comments>http://blog.maas360.com/archives/mobilitymanagement/tips-for-safe-banking-on-smartphone/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 18:24:42 +0000</pubDate>
		<dc:creator>MaaS360</dc:creator>
				<category><![CDATA[Endpoint Management]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[Mobile Device Management]]></category>
		<category><![CDATA[Mobility Management]]></category>
		<category><![CDATA[Policy Management]]></category>
		<category><![CDATA[Security Information]]></category>
		<category><![CDATA[account access]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[bank]]></category>
		<category><![CDATA[banking]]></category>
		<category><![CDATA[banking application]]></category>
		<category><![CDATA[corporate network]]></category>
		<category><![CDATA[cyber criminal]]></category>
		<category><![CDATA[cyber theft]]></category>
		<category><![CDATA[financial data]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[lock phone]]></category>
		<category><![CDATA[MaaS360]]></category>
		<category><![CDATA[manage money]]></category>
		<category><![CDATA[MDM]]></category>
		<category><![CDATA[mobile banking]]></category>
		<category><![CDATA[Mobile device Management]]></category>
		<category><![CDATA[mobile transaction]]></category>
		<category><![CDATA[password protection]]></category>
		<category><![CDATA[personal information]]></category>
		<category><![CDATA[Remote Wipe]]></category>
		<category><![CDATA[secure network]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[smartphone banking]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[wireless network]]></category>

		<guid isPermaLink="false">http://blog.maas360.com/?p=2274</guid>
		<description><![CDATA[by Pragati Jain, Fiberlink Smartphone banking is today’s smart way of managing money on the go. We&#8217;ve all come to appreciate it for the simplicity and convenience it offers us. While the perks are great (quick access to funds, account balance summaries anytime, anywhere) safety and privacy have remained prime concerns. For this reason, I&#8217;ve come <a href="http://blog.maas360.com/archives/mobilitymanagement/tips-for-safe-banking-on-smartphone/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.earthlinksecurity.com/articles/YSR_bank_by_phone_lg/YSR_bank_by_phone_lg.jpg"><img class="alignright size-full wp-image-2279" title="Image source: http://www.earthlinksecurity.com/articles/YSR_bank_by_phone_lg/YSR_bank_by_phone_lg.jpg" src="http://blog.maas360.com/wp-content/uploads/2012/02/YSR_bank_by_phone_lg.jpg" alt="Image source: http://www.earthlinksecurity.com/articles/YSR_bank_by_phone_lg/YSR_bank_by_phone_lg.jpg" width="180" height="180" /></a>by Pragati Jain, Fiberlink</p>
<p>Smartphone banking is today’s smart way of managing money on the go. We&#8217;ve all come to appreciate it for the simplicity and convenience it offers us. While the perks are great (quick access to funds, account balance summaries anytime, anywhere) safety and privacy have remained prime concerns.</p>
<p>For this reason, I&#8217;ve come up with a checklist of best practices to keep in mind while enjoying the smartphone banking experience:</p>
<ol start="1">
<li><strong>Download your relevant banking application</strong> on the mobile device. Ensure that your banking app receives its software updates to avoid any exploitation of the software loopholes by hackers. Also, it is recommended that you use any tools or Internet browsers recommended by your bank. This way you may be certain that account information and any financial transactions are relayed in a secured and encrypted manner.</li>
<li><strong>Refrain from using public wireless networks</strong> to avoid any hackers sniffing into your mobile device and stealing your important and confidential financial information. It’s a good idea to connect to your smartphone banking application over a <a href="http://blog.maas360.com/archives/mobilitymanagement/rogue-devices-and-corporate-networks-dont-mix/?A=blog&amp;O=JH">secured or private wireless network</a>.</li>
<li><strong>Be cautious when accessing your account</strong>. Banking applications typically prompt the smartphone user for a login password each time they log in to keep a check on any fraud activity. If you find any unusual behavior while accessing your account details, report it to your bank for further investigation.</li>
<li><strong>Cover your tracks!</strong> Some banking applications store sensitive and confidential data in clear text. After every mobile transaction, you must check for any data traces left behind on the phone.</li>
<li><strong>Always lock your phone</strong> when not using it to prevent unauthorized user access. Check your phone settings and enable the auto-lock feature if you have a tendency to keep your phone unlocked.</li>
<li><strong>Ensure that your mobile device has <a href="http://www.maas360.com/products/product-tours/mdm-product-tour/remote-wipe/?A=blog&amp;O=JH">remote wipe</a> installed or enabled</strong>. This security feature is a must; the foremost feature every smartphone user must set up lest the device falls into the wrong hands. Also, notify your financial institution about your lost device so that no texts or emails containing your account details or other financial matters will be sent to your mobile device.</li>
<li><strong>Refrain from sending or sharing any financial data over text messages</strong>. It is an easy way of exposing critical information to hackers or cyber criminals. Also, delete or ignore any messages or emails received from unknown senders asking for your account details.</li>
<li><strong>Use strong and complex passwords</strong> for your mobile banking account. It is a good practice to have passwords that are eight or more characters, using numbers, symbols, letters and punctuation instead of ‘1234’ or passwords based on your birthday or anniversary.</li>
</ol>
<p>Do you have any recommendations for safe banking on smartphones? Please share your suggestions and comments below. If you&#8217;re a financial institution looking to keep your device inventory secure, <a href="http://blog.maas360.com/archives/mobilitymanagement/mobile-device-management-for-financial-institutions/?A=blog&amp;O=JH">see how an MDM solution can help</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maas360?a=B6toWyk0uag:714903m6toY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maas360?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=B6toWyk0uag:714903m6toY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maas360?i=B6toWyk0uag:714903m6toY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=B6toWyk0uag:714903m6toY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/maas360?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=B6toWyk0uag:714903m6toY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/maas360?i=B6toWyk0uag:714903m6toY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=B6toWyk0uag:714903m6toY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maas360?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=B6toWyk0uag:714903m6toY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maas360?i=B6toWyk0uag:714903m6toY:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maas360/~4/B6toWyk0uag" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.maas360.com/archives/mobilitymanagement/tips-for-safe-banking-on-smartphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.maas360.com/archives/mobilitymanagement/tips-for-safe-banking-on-smartphone/</feedburner:origLink></item>
		<item>
		<title>Mobile Device Management for Financial Institutions</title>
		<link>http://feedproxy.google.com/~r/maas360/~3/WLUB4sB6Q4c/</link>
		<comments>http://blog.maas360.com/archives/mobilitymanagement/mobile-device-management-for-financial-institutions/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 19:23:03 +0000</pubDate>
		<dc:creator>MaaS360</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Endpoint Management]]></category>
		<category><![CDATA[Mobility Management]]></category>
		<category><![CDATA[Policy Management]]></category>
		<category><![CDATA[Security Information]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[bank]]></category>
		<category><![CDATA[banking]]></category>
		<category><![CDATA[Corporate-owned]]></category>
		<category><![CDATA[credit union]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[Encryption]]></category>
		<category><![CDATA[finance]]></category>
		<category><![CDATA[financial information]]></category>
		<category><![CDATA[financial institution]]></category>
		<category><![CDATA[full wipe]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[jailbroken]]></category>
		<category><![CDATA[lost data]]></category>
		<category><![CDATA[MDM]]></category>
		<category><![CDATA[Mobile device Management]]></category>
		<category><![CDATA[Passcode]]></category>
		<category><![CDATA[personal-owned]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[rooted]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[selective wipe]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[Wipe]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blog.maas360.com/?p=2254</guid>
		<description><![CDATA[Employees are bringing devices to work in ever-increasing numbers. Gone are the days of IT handing out devices with just the company-approved software. Now more and more users want to use the devices they own and like, and these devices do double-duty for work and home. This brings up a lot of issues for any <a href="http://blog.maas360.com/archives/mobilitymanagement/mobile-device-management-for-financial-institutions/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.maas360.com/wp-content/uploads/2012/01/img_tabletFfinance_300x3002.png"><img class="alignright size-full wp-image-2266" title="img_tabletFfinance_300x300" src="http://blog.maas360.com/wp-content/uploads/2012/01/img_tabletFfinance_300x3002.png" alt="" width="240" height="240" /></a>Employees are bringing devices to work in ever-increasing numbers. Gone are the days of IT handing out devices with just the company-approved software. Now more and more users want to use the devices they own and like, and these devices do double-duty for work and home.</p>
<p>This brings up a lot of issues for any industry where privacy and security is important. You want to make sure you know exactly where account information is and who has access to it. For banks and credit unions, the penalties for lost data can be severe.</p>
<p>You’ll need policies that give data access to those who truly need it. Policies that require passcodes, encryption, and more. Did you know that early versions of some platforms have very few security features? Policies, if enforced correctly, can be used to keep devices on later versions of the software.</p>
<p>Alerts are helpful, too. Would your IT department like to know when a device is jailbroken or rooted? How about when a user exceeds the threshold on their monthly data plan? <a href="http://www.maas360.com/products/mobile-device-management/?A=blog&amp;O=JH">Mobile Device Management (MDM)</a> can do all this and more.</p>
<p>A good MDM solution lets you:</p>
<ul>
<li>Enforce passcode type, complexity, length and how often they have to be changed</li>
<li>Specify if users can set their devices to show the text of the passcodes when they enter them</li>
<li>Specify if the data on the device must be encrypted (when supported by the manufacturer)</li>
<li>Turn off device features like the camera, Bluetooth, and tethering</li>
<li>Blacklist, approve or require certain apps</li>
<li>Specify enforcement actions that will be taken automatically if the device is out of compliance</li>
<li>Securely <a href="http://www.maas360.com/products/mobile-application-management/?A=blog&amp;O=JH">push apps</a> to devices</li>
<li>Securely <a href="http://www.maas360.com/products/document-management/?A=blog&amp;O=JH">push documents</a> to devices and prevent them from being forwarded, if necessary</li>
<li>Perform actions on the device, including:
<ul>
<li>Remote wipe</li>
<li>Remote lock</li>
<li>Block</li>
<li>Locate</li>
<li>Reset passcode</li>
</ul>
</li>
</ul>
<p>For Financial institutions, it’s not enough to say that your devices are secure. You have to be able to prove it if you need to. If a device with financial information is lost, you’ll need to be able to prove that the device was encrypted, or that it was wiped after the loss was reported.</p>
<p>You&#8217;ll need to be able to see:</p>
<ul>
<li>All the software and apps installed</li>
<li>If the device is fully encrypted</li>
<li>The history of the device, including if it has been wiped</li>
<li>The total roaming mobile data usage for the last six months</li>
<li>Whether devices are owned by your institution or by the user</li>
<li>If the device is jailbroken or routed (a potential source of malware)</li>
</ul>
<div><span style="line-height: 19px;">To learn more about MDM, <a href="http://trials.maas360.com/forms/register_service_m.php?id=193&amp;A=blog&amp;O=JH">download the free eBook</a>. We also encourage you to share your experiences in the comments below.</span></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maas360?a=WLUB4sB6Q4c:CYvTt-ffVVY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maas360?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=WLUB4sB6Q4c:CYvTt-ffVVY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maas360?i=WLUB4sB6Q4c:CYvTt-ffVVY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=WLUB4sB6Q4c:CYvTt-ffVVY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/maas360?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=WLUB4sB6Q4c:CYvTt-ffVVY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/maas360?i=WLUB4sB6Q4c:CYvTt-ffVVY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=WLUB4sB6Q4c:CYvTt-ffVVY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maas360?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=WLUB4sB6Q4c:CYvTt-ffVVY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maas360?i=WLUB4sB6Q4c:CYvTt-ffVVY:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maas360/~4/WLUB4sB6Q4c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.maas360.com/archives/mobilitymanagement/mobile-device-management-for-financial-institutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.maas360.com/archives/mobilitymanagement/mobile-device-management-for-financial-institutions/</feedburner:origLink></item>
		<item>
		<title>BYOD Strategy and Expense Considerations</title>
		<link>http://feedproxy.google.com/~r/maas360/~3/7pNEMToEGj8/</link>
		<comments>http://blog.maas360.com/archives/mobilitymanagement/byod-strategy-and-expense-considerations/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 16:52:35 +0000</pubDate>
		<dc:creator>MaaS360</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Emerging Trends and Technology]]></category>
		<category><![CDATA[Mobility Management]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Bring-Your-Own-Device]]></category>
		<category><![CDATA[BYOD]]></category>
		<category><![CDATA[data costs]]></category>
		<category><![CDATA[expense management]]></category>
		<category><![CDATA[expense report]]></category>
		<category><![CDATA[flat rate]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[MEM]]></category>
		<category><![CDATA[Mobile device Management]]></category>
		<category><![CDATA[mobile expense management]]></category>
		<category><![CDATA[mobile workers]]></category>
		<category><![CDATA[Mobility]]></category>
		<category><![CDATA[mobility costs]]></category>
		<category><![CDATA[wireless bills]]></category>

		<guid isPermaLink="false">http://blog.maas360.com/?p=2242</guid>
		<description><![CDATA[by John Harrington, Fiberlink The bring-your-own-device (BYOD) trend has picked up a lot of steam in recent months and doesn&#8217;t look to be slowing down any time soon. Technological advances, a growing number of mobile workers, and gadget affordability have all played a role in the takeoff process. In some ways this trend presents cause for <a href="http://blog.maas360.com/archives/mobilitymanagement/byod-strategy-and-expense-considerations/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://news.thomasnet.com/green_clean/wp-content/uploads/2012/01/BYOD.jpg"><img class="alignright size-full wp-image-2251" title="Image source: http://news.thomasnet.com/green_clean/wp-content/uploads/2012/01/BYOD.jpg" src="http://blog.maas360.com/wp-content/uploads/2012/01/byod1.png" alt="Image source: http://news.thomasnet.com/green_clean/wp-content/uploads/2012/01/BYOD.jpg" width="197" height="197" /></a>by John Harrington, Fiberlink</p>
<p>The bring-your-own-device (BYOD) trend has picked up a lot of steam in recent months and doesn&#8217;t look to be slowing down any time soon. Technological advances, a growing number of <a href="http://blog.maas360.com/archives/mobilitymanagement/battling-to-secure-your-mobile-workforce/?A=blog&amp;O=JH">mobile workers</a>, and gadget affordability have all played a role in the takeoff process. In some ways this trend presents cause for concern; an increasing number of employees are sitting in their company&#8217;s drivers seat and calling the shots in ways they shouldn&#8217;t be. The device-types supported in a given corporate environment are no longer stemming from the will of the IT director. In many cases the line is being drawn by the employees who are bringing their personal-owned devices to the office.</p>
<p><a href="http://www.infoworld.com/d/consumerization-of-it/how-screw-byod-rollout-183334">InfoWorld</a> expert Galan Gruman has made note of common problem areas and provided a few tips for how your organization can derive benefit and forget the troubles:</p>
<p>Gruman insists we can&#8217;t be naive. From his vantage point, companies have one thing in mind when making the transition to BYOD: money. Increased productivity and satisfaction born of BYOD programs are an added benefit, and that&#8217;s all. &#8220;Their goals are naive, so what should be viewed as a positive outcome isn&#8217;t. The problem is not that BYOD itself is negative, it&#8217;s that many companies do it for the wrong reason and don&#8217;t get what they wanted.&#8221; To remedy the problem, companies must define clear, concise, attainable goals that cover all aspects of mobility.</p>
<p>Gruman&#8217;s second point involves the cost of supporting your mobile workforce. The costs of BYOD can add up <a href="http://www.maas360.com/products/mobile-expense-management/?A=blog&amp;O=JH">when mobile expenses aren&#8217;t managed properly</a>. For this reason, Gruman rejects expensing bills in favor of flat rates. Why? No company could ever rid itself of its mobility costs; the company can always expect to receive requests for compensation of some kind. When this happens, Gruman advises not to allow your employees to fill out expense reports. These will add up from processing fees alone. Instead, companies should add a flat rate or a mobility stipend onto their employees&#8217; paychecks each month. That way, they get the money required to pay their wireless bills and the company meets its goal of saving on mobility costs.</p>
<p>How do you BYOD at your company? If you aren&#8217;t factoring in any of Gruman&#8217;s advice, why not? Take some time now to think why you are managing your devices the way you are, and decide whether its the best option going forward. If you aren&#8217;t sure, maybe your workforce is. Perhaps consider sending out a survey to determine what your employees would prefer. After you have your strategy set, make sure you implement it in the most cost effective way you can to attain maximum benefit.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maas360?a=7pNEMToEGj8:b2oWtPBxbXs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maas360?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=7pNEMToEGj8:b2oWtPBxbXs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maas360?i=7pNEMToEGj8:b2oWtPBxbXs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=7pNEMToEGj8:b2oWtPBxbXs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/maas360?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=7pNEMToEGj8:b2oWtPBxbXs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/maas360?i=7pNEMToEGj8:b2oWtPBxbXs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=7pNEMToEGj8:b2oWtPBxbXs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maas360?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=7pNEMToEGj8:b2oWtPBxbXs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maas360?i=7pNEMToEGj8:b2oWtPBxbXs:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maas360/~4/7pNEMToEGj8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.maas360.com/archives/mobilitymanagement/byod-strategy-and-expense-considerations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.maas360.com/archives/mobilitymanagement/byod-strategy-and-expense-considerations/</feedburner:origLink></item>
		<item>
		<title>Ultrabooks Add to the Mobile Computing Revolution</title>
		<link>http://feedproxy.google.com/~r/maas360/~3/KJUdHbBi6_I/</link>
		<comments>http://blog.maas360.com/archives/trendsandtechnology/ultrabooks-add-to-the-mobile-computing-revolution/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 20:37:39 +0000</pubDate>
		<dc:creator>MaaS360</dc:creator>
				<category><![CDATA[Emerging Trends and Technology]]></category>
		<category><![CDATA[Engineering Excellence]]></category>
		<category><![CDATA[News on the Move]]></category>
		<category><![CDATA[128GB]]></category>
		<category><![CDATA[anti-theft]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[diplay]]></category>
		<category><![CDATA[IdeaPad]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Ivy Bridge]]></category>
		<category><![CDATA[Lenovo]]></category>
		<category><![CDATA[low core voltage processor]]></category>
		<category><![CDATA[MacBook Air]]></category>
		<category><![CDATA[Malware]]></category>
		<category><![CDATA[mcafee]]></category>
		<category><![CDATA[mobile computing]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[SSD]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[ultrabook]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[XPS13]]></category>
		<category><![CDATA[Yoga]]></category>

		<guid isPermaLink="false">http://blog.maas360.com/?p=2228</guid>
		<description><![CDATA[by Pragati Jain, Fiberlink First smartphones, then tablets&#8230;now ultrabooks. The mobile computing space has never been as dynamic and exciting as it is now. Over the course of recent years, mobile computing has improved in such a way that it has almost become a lifestyle. Ultrabooks are nothing new, and by no means an innovation in mobile <a href="http://blog.maas360.com/archives/trendsandtechnology/ultrabooks-add-to-the-mobile-computing-revolution/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.maas360.com/wp-content/uploads/2012/01/330534-ultrabook-consumer.jpg"><img class="alignright size-full wp-image-2235" title="Image source: http://www7.pcmag.com/media/images/330534-ultrabook-consumer.jpg?thumb=y" src="http://blog.maas360.com/wp-content/uploads/2012/01/330534-ultrabook-consumer.jpg" alt="Image source: http://www7.pcmag.com/media/images/330534-ultrabook-consumer.jpg?thumb=y" width="275" height="275" /></a>by Pragati Jain, Fiberlink</p>
<p>First <a href="http://maasters.maas360.com/forum/?forum=expertise&amp;value=smartphone&amp;type=1&amp;include=1&amp;search=1&amp;A=blog&amp;O=JH">smartphones</a>, then <a href="http://maasters.maas360.com/forum/?forum=expertise&amp;value=tablet&amp;type=1&amp;include=1&amp;search=1&amp;A=blog&amp;O=JH">tablets</a>&#8230;now ultrabooks. The mobile computing space has never been as dynamic and exciting as it is now. Over the course of recent years, mobile computing has improved in such a way that it has almost become a lifestyle.</p>
<p>Ultrabooks are nothing new, and by no means an innovation in mobile computing. They have always been around. Thanks to <a href="http://maasters.maas360.com/forum/?forum=expertise&amp;value=apple&amp;type=1&amp;include=1&amp;search=1&amp;A=blog&amp;O=JH">Apple</a>&#8216;s MacBook Air, the trend has gained considerable momentum. PC manufacturers have always wanted to give slim and high performance devices to the consumer, but Apple laid the foundation.</p>
<p>So what are these ultrabooks?</p>
<p>Ultrabooks can be defined in a few simple words: portable, slim stylish, and fast, with responsive computing interfaces. Like the MacBook Air, the ultrabooks are also powered by Intel low core voltage processors for efficient power consumption and long battery life. However, the two factors that distinguish the MacBook Air from ultrabooks are:</p>
<ol>
<li>Displays. Ultrabooks have a resolution of 1366 x 768 whereas the MacBook Air 13 has a resolution of 1440 x 900.</li>
<li>The Ultrabook Intel Core Processors are embedded with security and anti-theft protection technology. Mid-2012, Intel has plans to introduce the Ivy Bridge processors for powering ultrabooks. Not only will the Ivy Bridge processors ramp up performance, responsiveness, and visual display of the ultrabook, but it will upgrade the mobile computing security component. Intel plans to embed McAfee in its core processors for increased malware protection.</li>
</ol>
<p>Different ultrabook vendors have their own unique selling propositions to market their products. For example, Lenovo’s IdeaPad Yoga can be twisted to behave like a tablet; Dell’s XPS13 is 128GB solid-state drive and has a backlit keyboard; and Acer claims to have built the world’s thinnest ultrabook. In spite of different flavors of ultrabooks available to suit one’s needs, some of the factors that may hinder ultrabook adoption are:</p>
<ol>
<li>High prices. Ultrabooks are priced between 800 dollars and 1300 dollars. If the ultrabook manufacturers can keep a benchmark of 600-700 dollars, it will influence the number of consumers adopting ultrabooks.</li>
<li>Support for Windows 8 in workplaces: The 2012 ultrabooks are powered by the Microsoft Windows 8 operating system. Has your IT started or is considering supporting Windows 8?</li>
<li>If you like a heavy dose of CDs, DVDs and flash drives, ultrabooks aren&#8217;t for you. Ultrabooks, by definition, do not have any built-in hard drives; are powered with solid state drives (SSDs) for better speed and responsiveness; and have low power consumption.</li>
<li>The ultrabooks have no outlet or port for LAN support but the mini display port allows you to connect to any type of PC display.</li>
</ol>
<p>Many industry experts have deemed ultrabooks <a href="http://trials.maas360.com/forms/register_service_m.php?id=271&amp;A=blog&amp;O=JH">tablet contenders</a>. But I believe the ultrabooks will eat away at desktops and notebooks. Reason being, tablets and ultrabooks serve different purpose for different user groups. For example, tablets are great reading and entertainment devices for travelers, while the ultrabooks are an ideal pick for students or professors who are always on the move and are looking for high performance boxes. However, I believe, ‘device price’ and technology innovation will play a pivotal role in defining the future of each of these devices.</p>
<p>As the ultrabook revolution picks up the pace, I am already watching the market for new additions to pick one for myself. Are you too ready to dump your netbook or desktop for an ultrabook? Or maybe you own one&#8211;if so, please share with us your experiences and any ultrabook vendor recommendations.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maas360?a=KJUdHbBi6_I:j_2VzatdGGM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maas360?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=KJUdHbBi6_I:j_2VzatdGGM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maas360?i=KJUdHbBi6_I:j_2VzatdGGM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=KJUdHbBi6_I:j_2VzatdGGM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/maas360?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=KJUdHbBi6_I:j_2VzatdGGM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/maas360?i=KJUdHbBi6_I:j_2VzatdGGM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=KJUdHbBi6_I:j_2VzatdGGM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maas360?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=KJUdHbBi6_I:j_2VzatdGGM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maas360?i=KJUdHbBi6_I:j_2VzatdGGM:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maas360/~4/KJUdHbBi6_I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.maas360.com/archives/trendsandtechnology/ultrabooks-add-to-the-mobile-computing-revolution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.maas360.com/archives/trendsandtechnology/ultrabooks-add-to-the-mobile-computing-revolution/</feedburner:origLink></item>
		<item>
		<title>Making the Transition from Program to App</title>
		<link>http://feedproxy.google.com/~r/maas360/~3/OcM1KNoWZ00/</link>
		<comments>http://blog.maas360.com/archives/cloudcomputing/transition-from-program-to-app/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 16:07:50 +0000</pubDate>
		<dc:creator>MaaS360</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Endpoint Management]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[Mobile Device Management]]></category>
		<category><![CDATA[Security Information]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[BYOD]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[doc]]></category>
		<category><![CDATA[document management]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mobile devices]]></category>
		<category><![CDATA[Mobile Security]]></category>
		<category><![CDATA[OnLive]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[PC to tablet]]></category>
		<category><![CDATA[PowerPoint]]></category>
		<category><![CDATA[ppt]]></category>
		<category><![CDATA[price]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[risks]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[transition]]></category>
		<category><![CDATA[Wall Street Journal]]></category>
		<category><![CDATA[Word]]></category>
		<category><![CDATA[xls]]></category>

		<guid isPermaLink="false">http://blog.maas360.com/?p=2190</guid>
		<description><![CDATA[by John Harrington, Fiberlink &#8220;One day, the tablet will reign supreme over the laptop and PC.&#8221; We&#8217;ve all heard the argument before. It could be years down the road, but that&#8217;s not to say it won&#8217;t happen&#8230; and the tireless work of Android and iOS application developers certainly isn&#8217;t hurting the tablet&#8217;s case. Today, app upgrades and <a href="http://blog.maas360.com/archives/cloudcomputing/transition-from-program-to-app/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.maas360.com/wp-content/uploads/2012/01/lassodocs1.png"><img class="alignright size-medium wp-image-2200" title="lassodocs" src="http://blog.maas360.com/wp-content/uploads/2012/01/lassodocs1-300x300.png" alt="" width="300" height="300" /></a>by John Harrington, Fiberlink</p>
<p>&#8220;One day, the tablet will reign supreme over the laptop and PC.&#8221;</p>
<p>We&#8217;ve all heard the argument before. It could be years down the road, <a href="http://static5.businessinsider.com/image/4f1451356bb3f7f438000025/history-of-pc-sales-chart.png" target="_blank">but that&#8217;s not to say it won&#8217;t happen</a>&#8230; and the tireless work of Android and iOS application developers certainly isn&#8217;t hurting the tablet&#8217;s case. Today, app upgrades and new releases come to us at such a rate that its a true challenge to keep your personal device up-to-date. As we base our decision to <em>go Tablet</em> on price, features, and size, a complete transition will depend greatly on the success of the apps that are released. More specifically, it will depend on how much more benefit they bring us in comparison to our computer programs.</p>
<p>So which of these apps will play the biggest role in this transition? The equivalents of computer programs we utilize regularly for business purposes. Microsoft Office, Microsoft PowerPoint, and Microsoft Excel being among the most popular.</p>
<p>Yesterday, the <a href="http://online.wsj.com/article/SB10001424052970203436904577154840906816210.html" target="_blank">Wall Street Journal</a> announced the release of a free iPad app by OnLive, Inc., which gives users full access to Microsoft Word, PowerPoint, and Excel. All you need to do is sign up for a free OnLive account and you get 2GB of free cloud space to store/access the spreadsheets, presentations, and Word documents that you created on your iPad. To access them on the computer, just log in to your OnLive account <a href="http://desktop.onlive.com/" target="_blank">from their website</a>. Sounds great, right? Not so fast. You won&#8217;t be able to open .ppt, .doc, or .xls files attached in emails, nor will you be able to edit and generate content quickly without a keyboard accessory. But these cons I&#8217;d classify as inconveniences aren&#8217;t what we need to worry about&#8230;</p>
<p>The worst part about this great app is having to surrender the security of sensitive/private information. Any organization looking to keep their documents in-house should <a href="http://blog.maas360.com/archives/endpointmanagement/risky-business/?A=blog&amp;O=JH">be wary of the risks</a> that come with loading a file to a location external to their network. Wouldn&#8217;t it be great if this app allowed users to keep their files local? Empowered by <a href="http://www.maas360.com/products/document-management/?A=blog&amp;O=JH">document management</a>, today&#8217;s IT administrators can control the flow of attachments transferred across all mobile devices in their network by giving their employees a secure means to share. If this OnLive app enabled employees to work within these bounds, now that would make a more compelling case for switching from PC to tablet (and staying there).</p>
<p>What factors are playing in to your decision to stick with a computer versus a tablet (or vice-versa)? Do you agree that quality apps shaped from the influence of computer programs will ensure this transition comes to fruition? Are limitations&#8211;such as lack of security or control over your documents&#8211;holding you back?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maas360?a=OcM1KNoWZ00:O80bkl5XZRM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maas360?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=OcM1KNoWZ00:O80bkl5XZRM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maas360?i=OcM1KNoWZ00:O80bkl5XZRM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=OcM1KNoWZ00:O80bkl5XZRM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/maas360?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=OcM1KNoWZ00:O80bkl5XZRM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/maas360?i=OcM1KNoWZ00:O80bkl5XZRM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=OcM1KNoWZ00:O80bkl5XZRM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maas360?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=OcM1KNoWZ00:O80bkl5XZRM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maas360?i=OcM1KNoWZ00:O80bkl5XZRM:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maas360/~4/OcM1KNoWZ00" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.maas360.com/archives/cloudcomputing/transition-from-program-to-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.maas360.com/archives/cloudcomputing/transition-from-program-to-app/</feedburner:origLink></item>
		<item>
		<title>The What and When of a Next-gen iPhone</title>
		<link>http://feedproxy.google.com/~r/maas360/~3/TpHpBqs0Op4/</link>
		<comments>http://blog.maas360.com/archives/businessintelligence/what-and-when-of-next-gen-iphone/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 18:36:10 +0000</pubDate>
		<dc:creator>MaaS360</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Emerging Trends and Technology]]></category>
		<category><![CDATA[News on the Move]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Apple Insider]]></category>
		<category><![CDATA[AT&T]]></category>
		<category><![CDATA[carriers]]></category>
		<category><![CDATA[China Mobile]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[idevice]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS 5]]></category>
		<category><![CDATA[iphone 3S]]></category>
		<category><![CDATA[iPhone 4]]></category>
		<category><![CDATA[iPhone 4S]]></category>
		<category><![CDATA[iphone 5]]></category>
		<category><![CDATA[Katy Huberty]]></category>
		<category><![CDATA[Morgan Stanley]]></category>
		<category><![CDATA[New iPhone]]></category>
		<category><![CDATA[Next iPhone]]></category>
		<category><![CDATA[qualcomm]]></category>
		<category><![CDATA[Siri]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[Sprint]]></category>
		<category><![CDATA[Steve Jobs]]></category>

		<guid isPermaLink="false">http://blog.maas360.com/?p=2174</guid>
		<description><![CDATA[by John Harrington, Fiberlink Part of what made the iPhone 4S so great was timing. It was released right on cue with upgrades to iOS software and shortly before the passing of a legend in Steve Jobs (and unexpectedly so). One of many ways people chose to pay tribute to Jobs was by purchasing his <a href="http://blog.maas360.com/archives/businessintelligence/what-and-when-of-next-gen-iphone/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="Image source: http://farm7.static.flickr.com/6220/6249003863_9d406fb99e.jpg"><img class="alignright size-medium wp-image-2178" title="Image source: http://farm7.static.flickr.com/6220/6249003863_9d406fb99e.jpg" src="http://blog.maas360.com/wp-content/uploads/2012/01/iphones-300x300.png" alt="Image source: http://farm7.static.flickr.com/6220/6249003863_9d406fb99e.jpg" width="300" height="300" /></a>by John Harrington, Fiberlink</p>
<p>Part of what made the <a href="http://maasters.maas360.com/forum/?forum=expertise&amp;value=iphone+4s&amp;type=1&amp;include=1&amp;search=1&amp;A=blog&amp;O=JH">iPhone 4S</a> so great was timing. It was released right on cue with upgrades to iOS software and shortly before the passing of a legend in Steve Jobs (and unexpectedly so). One of <a href="http://www.apple.com/stevejobs/" target="_blank">many ways</a> people chose to pay tribute to Jobs was by purchasing his last great device. Others wanted to take full advantage of the iOS 5 software&#8230;more specifically, Siri. The timing and its influence on consumers is what lead to a record-breaking 4 million sales 3 days after its release.</p>
<p>So the question is, how will Apple carry this momentum into 2012? What factors will weigh in on our decision to buy their iPhone 5?</p>
<p>It may not be <em>what the phone brings the people</em> that drives them to buy it. This time around it could be more simple; the phone will be <em>brought to the people</em>. Present day, there are only 3 carriers that offer the iPhone to customers. Combined, these networks contract with the majority of our country&#8217;s smartphone users, but that&#8217;s not to say the iPhone&#8217;s reach can&#8217;t and won&#8217;t expand. <em>What if all 3G and LTE networks across the world could offer their customers an iPhone?</em></p>
<p>Katy Huberty of Morgan Stanley reports the <em>iPhone 5 could arrive as early as Q3 2012, </em>feature a slimmer design, and a &#8220;<a href="http://www.appleinsider.com/print/12/01/13/morgan_stanley_apples_next_iphone_to_be_slimmer_may_include_quad_mode_lte_chip.html" target="_blank">quad-mode chip from Qualcomm</a> that would allow for 3G and LTE functionality across all &#8216;network flavors&#8217;&#8221;. If this holds true, Apple would have no problem picking up their success right where they left off when they introduced the 4S. Imagine how many people wanted to buy a 4S but couldn&#8217;t because their network didn&#8217;t offer it. Hubety added if Apple signs a deal with <em>China Mobile</em>&#8211;the world&#8217;s largest mobile phone operator&#8211;the inclusion of the chip in the iPhone 5 would be all the more likely. We will have to wait and see.</p>
<p>What do you think Apple will do to continue the success they had in Fall &#8217;11? The phone will undoubtedly boast its share of new features, that we can always be sure of. But going back to my point about <em>bringing the phone to the people</em>, adding a few hundred million potential subscribers to the mix couldn&#8217;t hurt. It could be what really &#8220;does it&#8221; for them this time.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maas360?a=TpHpBqs0Op4:gUdz1Noex_w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maas360?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=TpHpBqs0Op4:gUdz1Noex_w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maas360?i=TpHpBqs0Op4:gUdz1Noex_w:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=TpHpBqs0Op4:gUdz1Noex_w:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/maas360?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=TpHpBqs0Op4:gUdz1Noex_w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/maas360?i=TpHpBqs0Op4:gUdz1Noex_w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=TpHpBqs0Op4:gUdz1Noex_w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maas360?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=TpHpBqs0Op4:gUdz1Noex_w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maas360?i=TpHpBqs0Op4:gUdz1Noex_w:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maas360/~4/TpHpBqs0Op4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.maas360.com/archives/businessintelligence/what-and-when-of-next-gen-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.maas360.com/archives/businessintelligence/what-and-when-of-next-gen-iphone/</feedburner:origLink></item>
		<item>
		<title>SaaS Application Customization Techniques</title>
		<link>http://feedproxy.google.com/~r/maas360/~3/MoCh2S8t35Y/</link>
		<comments>http://blog.maas360.com/archives/cloudcomputing/saas-application-customization-techniques/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 18:44:13 +0000</pubDate>
		<dc:creator>MaaS360</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Engineering Excellence]]></category>
		<category><![CDATA[Mobile Device Management]]></category>
		<category><![CDATA[Mobility Management]]></category>
		<category><![CDATA[brand]]></category>
		<category><![CDATA[cascading style sheets]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[currency]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[email template]]></category>
		<category><![CDATA[emails]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[hard-coding]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[Internationalization]]></category>
		<category><![CDATA[JSP]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[MaaS]]></category>
		<category><![CDATA[MaaS360]]></category>
		<category><![CDATA[mobility-as-a-service]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[partner]]></category>
		<category><![CDATA[programming language]]></category>
		<category><![CDATA[reseller]]></category>
		<category><![CDATA[role-based access]]></category>
		<category><![CDATA[SaaS]]></category>
		<category><![CDATA[SaaS application]]></category>
		<category><![CDATA[signature]]></category>
		<category><![CDATA[software application]]></category>
		<category><![CDATA[Software as a service]]></category>
		<category><![CDATA[target market]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[translation]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[web pages]]></category>

		<guid isPermaLink="false">http://blog.maas360.com/?p=2163</guid>
		<description><![CDATA[by Ameya Kulkarni, Fiberlink Software-as-a-Service (SaaS) eliminates the need to install applications on the customer hardware. SaaS applications are typically accessed from a web browser and a single instance of the application often serves all the customers. Since the same application instance needs to fulfill different needs for different customers and there may be no <a href="http://blog.maas360.com/archives/cloudcomputing/saas-application-customization-techniques/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.maas360.com/wp-content/uploads/2012/01/img_blog_090211_300x3001.png"><img class="alignright size-full wp-image-2164" title="img_blog_090211_300x3001" src="http://blog.maas360.com/wp-content/uploads/2012/01/img_blog_090211_300x3001.png" alt="" width="250" height="250" /></a>by Ameya Kulkarni, Fiberlink</p>
<p><a href="http://www.maas360.com/why-maas360/saas-for-mobility-checklist/?A=blog&amp;O=JH">Software-as-a-Service (SaaS)</a> eliminates the need to install applications on the customer hardware. SaaS applications are typically accessed from a web browser and a single instance of the application often serves all the customers. Since the same application instance needs to fulfill different needs for different customers and there may be no option of creating a custom build for each customer, customizability of SaaS applications becomes an important aspect for delivering personalized software to the users. Customizability enables easy integration of the SaaS application with the customers existing systems and also empowers partners and resellers to easily configure the solution according to their and their customer’s requirements.</p>
<p>In one of our last posts, we discussed some of the <a href="http://blog.maas360.com/archives/engineering-excellence/key-design-principles-for-building-a-saas-product/?A=blog&amp;O=JH">key architecture tenets of a SaaS application</a> – multi-tenancy, customizability, scalability, and security. This post focuses on different customization techniques that we have used in MaaS360 to make it flexible and configurable to address our customers’ and partners’ needs.</p>
<p><strong>1. Look and Feel of a UI:</strong> Look and feel is one of the most important types of customizations for a SaaS product. <em>Why?</em></p>
<ul>
<li>Firstly, it provides an option to the customer or a partner to brand the software</li>
<li>Secondly, by changing the font, colors, and images used in the system, one can make it look similar to the existing systems that the user is familiar with</li>
</ul>
<p><em>So, how do you ensure that the look and feel of your application is customizable?</em></p>
<p><em></em><span style="line-height: 19px;">By using CSS (Cascading Style Sheets) for styling the web pages rather than hard-coding the styles within the HTML or JSP. </span></p>
<p>Create a set of CSS files that define the default look and feel of your application. For customization, these CSS files can be overridden at a reseller or customer level to personalize elements like colors, fonts, backgrounds etc. The application should pick up the appropriate CSS file based on the user. Images displayed on your web pages can also be customized by storing different images in the file system or the database and picking the relevant image based on the user context.</p>
<p>Apart from the web pages, emails sent by the system to the user can also be customized for content, sender, subject, logos, links and signatures. We highly recommend creating email templates for emails that need to be configured per customer requirements.</p>
<div><strong>2. Internationalization and Localization of UI as per Target Market:</strong> Internationalization (i18n) means designing software such that it can be easily adapted into different languages and regional differences of a target market i.e. it can be localized. For e.g. depending on a user’s locale, the software should be able to alter the date/time/number formats, currency, language and web page content etc&#8230;</div>
<p><em>So how does this work?</em></p>
<p><em></em>Most of the modern programming languages provide a library to format the date/time/number etc. based on a user’s locale. Make sure you are not hard-coding the display formats but format it based on the logged in user’s context and locale using the in-built functions.</p>
<p>Content localization can be achieved by using language resource bundles in your code. All the language specific content should be isolated from the web pages, so rather than hard-coding English strings in the web pages you should use constants that are replaced by the relevant text at runtime based on the user’s locale and language. If your application uses a database to display the content, the data model must be designed to store the content for each supported locale.</p>
<p><strong>3. Role-based Access:</strong> It is critical for a SaaS application to provide different levels of access for different users. For example, in the MaaS360 portal, a Master Administrator can create, publish and assign policies to devices whereas a Help Desk Engineer can only assign policies. Similarly, a customer must be able to customize a user’s role by adding/removing access to certain workflows. It is also important that all portal actions are audited with the user and time information.</p>
<p><a href="http://www.maas360.com/?A=blog&amp;O=JH">MaaS360</a> achieves this by adding support for role-based access in the application. A set of roles are defined for the application with each role having a set of permissions for different modules of the application. All the application modules check for the required permission before providing access to a workflow or functionality. A user can be assigned one or more roles. When a user logs in, he gets access to the workflows based on the roles assigned to him.</p>
<p>Customizability of a SaaS application can be a big pain if the above points are not well discussed and understood during the design and planning phase. By following these you can ensure that your application is ready for adoption by partners, resellers and customers.</p>
<p>Is your enterprise facing any specific issue while adopting customizability for your SaaS applications? Are there any points you would like to add? Looking forward to learning based on what you share from your experiences.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maas360?a=MoCh2S8t35Y:Y8C2RF9hKZU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maas360?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=MoCh2S8t35Y:Y8C2RF9hKZU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maas360?i=MoCh2S8t35Y:Y8C2RF9hKZU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=MoCh2S8t35Y:Y8C2RF9hKZU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/maas360?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=MoCh2S8t35Y:Y8C2RF9hKZU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/maas360?i=MoCh2S8t35Y:Y8C2RF9hKZU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=MoCh2S8t35Y:Y8C2RF9hKZU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maas360?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=MoCh2S8t35Y:Y8C2RF9hKZU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maas360?i=MoCh2S8t35Y:Y8C2RF9hKZU:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maas360/~4/MoCh2S8t35Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.maas360.com/archives/cloudcomputing/saas-application-customization-techniques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.maas360.com/archives/cloudcomputing/saas-application-customization-techniques/</feedburner:origLink></item>
		<item>
		<title>RIM to Add More Pages to its PlayBook</title>
		<link>http://feedproxy.google.com/~r/maas360/~3/-OSM0VWrkeE/</link>
		<comments>http://blog.maas360.com/archives/businessintelligence/rim-to-add-more-pages-to-playbook/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 21:25:55 +0000</pubDate>
		<dc:creator>MaaS360</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Emerging Trends and Technology]]></category>
		<category><![CDATA[News on the Move]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[February release]]></category>
		<category><![CDATA[inbox]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[mail client]]></category>
		<category><![CDATA[messaging]]></category>
		<category><![CDATA[native mail client]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[PlayBook]]></category>
		<category><![CDATA[RIM]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[tether]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://blog.maas360.com/?p=2153</guid>
		<description><![CDATA[by John Harrington, Fiberlink It’s been about a year since BlackBerry first rolled out the PlayBook, which is a while when considering RIM left its flagship tablet&#8217;s users without a native mail client that whole time. PlayBook users will be relieved to hear this is due to change when version 2.0 OS upgrades are released <a href="http://blog.maas360.com/archives/businessintelligence/rim-to-add-more-pages-to-playbook/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webguild.org/wp-content/uploads/2011/12/playbook.jpg"><img class="size-medium wp-image-2156 alignright" title="Photo credit: http://www.webguild.org/wp-content/uploads/2011/12/playbook.jpg" src="http://blog.maas360.com/wp-content/uploads/2012/01/morepagestoplaybook-300x300.png" alt="Photo credit: http://www.webguild.org/wp-content/uploads/2011/12/playbook.jpg" width="300" height="300" /></a></p>
<p>by John Harrington, Fiberlink</p>
<p>It’s been about a year since <a href="http://maasters.maas360.com/forum/?forum=expertise&amp;value=blackberry&amp;type=1&amp;include=1&amp;search=1">BlackBerry</a> first rolled out the PlayBook, which is a while when considering RIM left its flagship tablet&#8217;s users without a native mail client that whole time. PlayBook users will be relieved to hear this is due to change when version 2.0 OS upgrades are released in February (<a href="http://www.businessinsider.com/rims-playbook-email-2012-1">Business Insider reports</a>). Other upgrades to email will include the popular all-in-one inbox feature and rich text editing. Finally, it seems RIM has chosen to step up their tablet game to keep up with the competition.</p>
<p>So what does this mean for you? If you&#8217;ve been tethering to your BlackBerry device to access mail on your PlayBook, you&#8217;ll soon be able to cut cord and work solo on either device…and those who never had a BlackBerry in the first place will be able to get some real work done on the go.</p>
<p>RIM has taken the opportunity to address other shortcomings in this software update by making improvements to messaging and contact management. Once these features are enabled, the contacts on your PlayBook will be synchronized with corresponding account information on social networking sites such as LinkedIn, Twitter, and Facebook. So if one of your LinkedIn connections is attending our next webinar, you will know about just by viewing your calendar. Similarly, if your co-worker sends out an event invite for a Superbowl party to everyone at the office on Facebook, you will be able to see who RSVP&#8217;d (and coordinate on what to bring).</p>
<p>How do you feel about this upcoming software release? Will it put the PlayBook in better position to compete with <a href="http://blog.maas360.com/archives/mobilitymanagement/tablets-as-holiday-gifts/?A=blog&amp;O=JH">up-and-comers in the tablet market</a>? Or do you feel these moves will be insignificant in the long-run?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maas360?a=-OSM0VWrkeE:kzNldJwIkdk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maas360?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=-OSM0VWrkeE:kzNldJwIkdk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maas360?i=-OSM0VWrkeE:kzNldJwIkdk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=-OSM0VWrkeE:kzNldJwIkdk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/maas360?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=-OSM0VWrkeE:kzNldJwIkdk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/maas360?i=-OSM0VWrkeE:kzNldJwIkdk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=-OSM0VWrkeE:kzNldJwIkdk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maas360?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maas360?a=-OSM0VWrkeE:kzNldJwIkdk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maas360?i=-OSM0VWrkeE:kzNldJwIkdk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maas360/~4/-OSM0VWrkeE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.maas360.com/archives/businessintelligence/rim-to-add-more-pages-to-playbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.maas360.com/archives/businessintelligence/rim-to-add-more-pages-to-playbook/</feedburner:origLink></item>
	</channel>
</rss>

