<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0" xmlns:myita="http://www.it-analysis.com/feed/ns">
    <channel>
        <title>IT-Director.com</title>
        <description>The latest independent, impartial information technology and business analysis from the Services -&gt; Consulting domain on IT-Director.com.</description>
        <link>http://www.it-director.com/r/do/32/f/fd_side_itd</link>
        <lastBuildDate>Thu, 20 Jun 2013 11:10:19 +0100</lastBuildDate>
        <generator>FeedCreator 1.7.2MW</generator>
        <language>en</language>
        <copyright>Content Copyright 2013 as indicated per item.</copyright>
        <item>
            <title>Secure Web Applications using Grails Framework</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=13773&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><img border="0" src="http://www.it-director.com/images/people/small/blank.gif" width="40" height="50" alt="[No Image]" /></td><td valign="top" width="100%">By: Shitali Malviya, <em>Consultant</em>, Sigma Infosolutions<br/>Posted: 2nd April 2013<br/>Copyright Sigma Infosolutions &copy; 2013</td></tr></table></div>

<p><strong>Introduction</strong><br />As the internet and the World Wide Web got increasingly popular and powerful in the last 20 years, so did web applications. The landscape has evolved from simple CGI and scripting applications to powerful B2B and B2B applications, encompassing techniques such as Web 2.0, SaaS, cloud deployed applications and platforms such as mobile phones.</p>
<p>With this evolution also comes increasing risks posed by human and non-human actors to application users. Insecure software is already undermining the financial, healthcare, defense, energy, and other critical infrastructures of nations and businesses. The digital infrastructure has become increasingly complex and interconnected, resulting in increased difficulty of ensuring adequate application security.</p>
<p>Secure web applications, defined simply, means that the information exchange between authorized users and the system is handled with utmost care for security concerns. These concerns can be classified at high level in 3 categories:</p>
<ol><li><strong>Confidentiality</strong>: <br />Ensure only system permitted authorized users interact and exchange data.</li>
<li><strong>Integrity</strong>:&#160; <br />Ensure that data is not compromised by users not authorized to use data.</li>
<li><strong>Availability</strong>: <br />Ensure systems are available for use when authorized users need them.</li>
</ol><p><strong>Web Application Security Architecture</strong><br />The best system architecture designs and detailed design documents contain security discussions in each and every feature, how the risks are going to be mitigated, and what was actually done during coding. Security architecture starts on the day the business requirements are modeled, and are never finished until the last copy of your application is decommissioned.</p>
<p>This article aims at how one can build a rapid web application using <a href="http://www.sigmainfo.net/grails-development/">Grails rapid application framework</a> on the Java platform. Before we get into how Grails helps in developing a secure web application, let us briefly look at the details of common risks to web application security.</p>
<p><strong>Web Application Security Threats</strong><br />As per Open Web Application Security Project (OWASP) information, there are 10 most important security threats for web applications. This 2010 list enumerates the following most important risk categories:</p>
<p><em>Injection</em><br />Injection attacks, such as SQL, OS, and LDAP injection, occur when untrusted data is sent to an application backend as part of a command or query. The attacker&#8217;s hostile data can trick the interpreter into executing unintended commands or accessing unauthorized data.</p>
<p><em>Cross-site Scripting (XSS)</em><br />XSS flaws occur whenever an application takes untrusted data and sends it to a web browser without proper validation and escaping for threats such as JavaScript code. XSS allows attackers to execute scripts in the victim&#8217;s browser which can hijack user sessions, deface web sites, or redirect the user to malicious sites.</p>
<p><em>Broken Authentication and Session Management</em><br />Application functions related to authentication and session management are often not implemented correctly, allowing attackers to steal passwords, keys, session tokens, or exploit other implementation flaws to assume other users&#8217; identities.</p>
<p><em>Insecure Direct Object References</em><br />A direct object reference occurs when a developer exposes a reference to an internal implementation object, such as a file, directory, or database key. Without an access control check or other protection, attackers can manipulate these references to access unauthorized data.</p>
<p><em>Cross-site Request Forgery (CSRF)</em><br />A CSRF attack forces a logged-on victim&#8217;s browser to send a forged HTTP request, including the victim&#8217;s session cookie and any other automatically included authentication information, to a vulnerable web application. This allows the attacker to force the victim&#8217;s browser to generate requests the vulnerable application thinks are legitimate requests from the victim.</p>
<p><em>Security Misconfiguration</em><br />Good security requires having a secure configuration defined and deployed for the application, frameworks, application server, web server, database server, and platform. All these settings should be defined, implemented, and maintained as many are not shipped with secure defaults. This includes keeping all software up to date, including all code libraries used by the application.</p>
<p><em>Insecure cryptographic storage</em><br />Many web applications do not properly protect user sensitive data, such as credit cards, user PINs and authentication credentials, with appropriate encryption or hashing. Attackers may steal or modify such weakly protected data to conduct identity theft, credit card fraud, or other crimes.</p>
<p><em>Failure to restrict secure URL access</em><br />Many web applications check URL access rights before rendering protected links and buttons. However, applications need to perform similar access control checks each time these pages are accessed, or attackers will be able to forge URLs to access these hidden pages anyway.</p>
<p><em>Insufficient Transport Layer Protection</em><br />Applications frequently fail to authenticate, encrypt, and protect the confidentiality and integrity of sensitive network traffic. When they do, they sometimes support weak algorithms, use expired or invalid security certificates, or do not use them correctly.</p>
<p><em>Invalid URL redirects and forwards</em><br />Web applications frequently redirect and forward users to other pages and websites, and use untrusted data to determine the destination pages. Without proper validation, attackers can redirect victims to phishing or malware sites, or use forwards to access unauthorized pages.</p>
<p><strong>Grails Approach to Secure Application Development</strong><br />As stated earlier in the first section, several non-trivial business web applications these days are developed using modern application frameworks designed for rapid <a href="http://www.sigmainfo.net/services/application-development">application development</a> using Agile methods and principles such as 'Do not repeat yourself' (DRY). These frameworks are available pretty much in all the widely used programming languages and platforms such as .NET, Java/JEE, PHP, Python, Ruby etc. Grails is one such platform designed for those principles using a modern approach to Model View Controller architecture.</p>
<p>Let us look at what Grails offer in securing and building a secure web application.</p>
<p><strong>What does Grails framework provide out of the box?</strong></p>
<p><strong>Overview</strong><br />Grails is no more or less secure than traditional web applications written using Java Servlets as controllers. However Java servlets (and hence Grails) are extremely secure and largely immune to common buffer overrun and malformed URL exploits due to the default security sandbox provisions of the JVM.</p>
<p>Web security problems typically occur due to developer naivety or mistakes, and there is a little Grails can do to avoid common mistakes and make writing secure applications easier to write.</p>
<p><strong>Default Support</strong><br />Grails has a few built in safety mechanisms by default for the OWASP top 10 risks listed above. The support gets better with the maturity of the Grails platform and as adoption grows each day.</p>
<p><strong>Injection Risk</strong></p>
<ul><li>All standard database access via GORM (Grails Object Relational Mapping) domain objects is automatically SQL escaped to prevent SQL injection attacks</li>
<li>The default scaffolding HTML templates HTML all data fields when displayed.</li>
<li>Grails link creating tags support such, g:link, g:form, g:createLink g:createLinkTo and others. All use appropriate escaping mechanisms to prevent code injection risk.</li>
<li>Grails provides codecs to allow you to trivially escape data when rendered as HTML, JavaScript and URLs to prevent injection attacks here.</li>
<li>Hibernate, which is the technology underlying GORM domain classes, automatically escapes data when committing to database so this is not an issue. However it is still possible to write bad dynamic HQL code that uses unchecked request parameters.</li>
</ul><p><strong>Authentication Risk</strong><br />Currently Grails does not supply any implementation for this. There are multiple security plugins, including Spring Security, Shiro, and Authentication, and if your needs are very simple you can guard your application with Grails filters.</p>
<p><strong>Cross-site Scripting Risk (XSS)</strong><br />It is important that your application verifies as much as possible that incoming requests were originated from your application and not from another site. Ticketing and page flow systems can help. Grails has a plug in that supports Spring Web flow component for flow based web applications.</p>
<p>It is also important to ensure that all data values rendered into views are escaped correctly. For example when rendering to HTML or XHTML, one can use Grails controller API <em>encodeAsHTML()</em> on every object to ensure that people cannot maliciously inject JavaScript or other HTML into data or tags viewed by others. Grails supplies several Dynamic Encoding Methods for this purpose and if a particular output escaping format is not supported, it is easy to write your own using a custom codec.</p>
<p>As a practice, one must also avoid the use of request parameters or data fields for determining the next URL to redirect the user to. If you use a <em>successURL</em> parameter, for example, to determine where to redirect a user to after a successful login, attackers can imitate your login procedure using your own site, and then redirect the user back to their own site once logged in, potentially allowing JS code to then exploit the logged-in account on the site.</p>
<p><strong>Insecure URL access risk</strong><br />This is where bad data is supplied such that when it is later used to create a link in a page, clicking it will not cause the expected behaviour, and may redirect to another site or alter request parameters. A safe bet is to assume that every unprotected URL is publicly accessible one way or another to help think about securing the URL access. HTML/URL injection is easily handled with codecs already built in Grails.</p>
<p><strong>Denial of service</strong><br />Load balancers, proxy servers and other appliances are more likely to be useful here, but there are also issues relating to excessive queries for example where a link is created by an attacker to set max=1000000 so that a query could exceed the memory limits of the server or slow the system down. The solution here is to always sanitize request parameters before passing them to dynamic finders or other GORM query methods:</p>
<p><strong>Guessable IDs</strong><br />Many applications use the last part of the URL as an "id" of some object to retrieve from GORM or elsewhere. Especially in the case of GORM these are easily guessable as they are typically sequential integers. Therefore you must assert that the requesting user is authenticated and authorized to view the details before returning the response to the user.</p>
<p><strong>Other risks and application specific risks</strong><br />For other security risks explicitly not handled by Grails, one can use OWASP enterprise security API for Java to handle them. Grails, being a Java compatible language, can easily interoperate with this API. For further reference, please refer the link <a href="https://www.owasp.org/index.php/Category:OWASP_Enterprise_Security_API">https://www.owasp.org/index.php/Category:OWASP_Enterprise_Security_API</a></p>
<p><strong>Summary</strong><br />In this article, we have looked at the security aspects of web application, the typical risks a web application faces and high level overview of how a modern web development framework on the Java platform, GRAILS, helps you meet the goals of agile development without comprising web security.</p><img src="http://www.it-director.com/plg/ty_article/pg_13773/dm_0/80721710684b585f962c09bb0cacce4a.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Shitali Malviya, Sigma Infosolutions)</author>
            <category>Technology-&gt;Applications</category>
            <category>Services-&gt;Consulting</category>
            <pubDate>Tue, 02 Apr 2013 06:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=13773&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>What is required to start with Business Intelligence for an organization?</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=13657&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><img border="0" src="http://www.it-director.com/images/people/small/blank.gif" width="40" height="50" alt="[No Image]" /></td><td valign="top" width="100%">By: Shitali Malviya, <em>Consultant</em>, Sigma Infosolutions<br/>Posted: 11th January 2013<br/>Copyright Sigma Infosolutions &copy; 2013</td></tr></table></div>

<p>BI turns data into actionable information which support business in strategic decision making. A <a href="http://www.sigmainfo.net/services/business-intelligence-dw">Business Intelligence</a> (BI) project assumes to be integrated with a data warehouse (DW) or other reporting solution like a data repository or reporting from legacy systems. Therefore BI should be considered as DW/BI project.</p>
<p>So what is business intelligence, and how should your company get started with it? From the vendors&#8217; perspective, business intelligence means software and services that they can sell to you to help you get more information from your existing data. But from the business perspective, business intelligence is more than just software; it is a strategy with specific supporting management processes. Prior to implementing a business intelligence initiative, organizations need to have an understanding of the following five elements.</p>
<p><strong>1)	Understand the need of Business Intelligence</strong><br />It is important to have a fundamental understanding of business intelligence (BI) &amp; how to adopt it to become useful for business. In short, you need to define the organization&#8217;s BI philosophy with strategic goals &amp; translate strategy into action. The communication of strategic goals and data collection is critical to successful BI. The organization needs to have an answer to the question: &#8221;What will we accomplish with this initiative". Business units can cut significant costs while creating additional value through better coordination, integration, quality of data and analytical functionality. A strategy for implementing BI projects can greatly upswing returns. Starting small (POC/section) is a good way to understand BI benefits.</p>
<p><strong>2)	Analyze internal requirements</strong><br />It is critical that you carefully analyze your current business methods and practices to determine specific objectives for BI implementation. The user requirements drive decisions about the data to incorporate in the data warehouse, how to organize (dimension) the data and how often to refresh the data. "Garbage in, garbage out" means requirements should be precisely defined to align with the business needs. BI analysts often focus on the technical questions associated with the analysis. However, a more business-oriented approach could yield better results.&#160;</p>
<p><strong>3)	Key stakeholder involvement</strong><br />Top banagement, business users, operations etc. are the key stakeholders. The sooner you involve them the better you know about your requirements. Most BI projects are considered to be an internal project that should meet the company&#8217;s internal requirements. However it should reflect the needs of customers and deal with external issues like market situation or customer behavior. A BI project is an organization-wide project; it should involve members from each department, especially from marketing and sales, who appear to be the end-users with knowledge bound for the BI system. One should not consider just internal requirements, but the market and customer requirements as well. Stakeholder involvement ensures full knowledge and understanding of the benefits, impacts and risks associated with BI implementation. Effective stakeholder engagement is a key ingredient in the success of BI implementation projects.</p>
<p><strong>4)	Key data accessibility for analysis and presentation<br /></strong>We know that an organization's data is a major asset, and we are well aware of the importance of data quality. Develop &amp; implement a data strategy in such a way that it should not frustrate users. Formulate an overall data strategy by asking, "What data do we need to run/analyze/present&#8212;how long, integration with sources, level of detail, data privacy and security etc. BI typically involves the analysis, presentation and delivery of information to business users via accessing repositories where data is brought together from many different systems across the organization. Business intelligence software promises better decision-making and insight into company data, but both are possible with unbridled access to the information stored in a database. If you want to increase competitiveness, you need to improve access to data across all levels of the company.</p>
<p><strong>5)	Choose the right technology partner<br /></strong>The most important part to make sure your BI initiative is a success is being evaluated and you have chosen the right <a href="http://www.sigmainfo.net">technology partner</a>. BI initiatives are vastly different from many past IT initiatives in which outside services have been retained. So it&#8217;s important to consider proven capability, reputation and track record of success, more than just cost and/or staff augmentation abilities, while evaluating a partner. The partner should be able to understand and align with your strategy, take a business-driven approach and support the execution of specific initiatives to meet your business vision. Business should understand what to be aware of and how to select the best software while sifting through the marketing buzz of BI trends. POC is a formal initiative to prove the viability of the technology as well as partner capability to meet a business defined requirement. Be aware of technology lock-in and know the cost of "getting out".</p><img src="http://www.it-director.com/plg/ty_article/pg_13657/dm_0/8bc9a6fe595baffda4104aaae173976c.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Shitali Malviya, Sigma Infosolutions)</author>
            <category>Services-&gt;Consulting</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Technology-&gt;Data management</category>
            <pubDate>Fri, 11 Jan 2013 06:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=13657&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Open Source Reporting on iPhones/iPads</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=13658&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><img border="0" src="http://www.it-director.com/images/people/small/blank.gif" width="40" height="50" alt="[No Image]" /></td><td valign="top" width="100%">By: Shitali Malviya, <em>Consultant</em>, Sigma Infosolutions<br/>Posted: 9th January 2013<br/>Copyright Sigma Infosolutions &copy; 2013</td></tr></table></div>

<p>Reporting on iPhones/iPads is an interesting area that has a lot of potential. Yes there is an easy possibility of rendering HTML-based reports on an iPhone or similar devices. But those are still in a way the default browser content on which there&#8217;s no control of an iPhone&#8217;s inbuilt capability to recognize objects and present it in a manner easy for the user to view.</p>
<p>It requires some adjustments before we can see it in action. The open source reporting tool, <a href="http://www.sigmainfo.net/business-analytics/business-intelligence/index.html">Pentaho</a>, offers a great help in this area. Pentaho provides a plugin which can sit in the server and dynamically render the pages based on whether it is viewed from a typical desktop/laptop or through an iPhone device, for the entire reporting application. This might also be applicable if the results are embedded inside a page of another application through frames, etc.&#160;</p>
<p><strong>Here is how it works</strong><br />Firstly, some interceptors are created to detect iPhone requests and re-route those requests to the correct iPhone view. Secondly, an extension is created to allow the parameter forms to render correctly on the iPhone. The user interface can still be designed to suite the branding requirements. The typical interfacing framework can be anything like iUI (User Interface Framework for Mobile Web Devices) and you can build a custom login page and Home page. You can then:</p>
<ul><li>Create navigational menus and iPhone-style interfaces from standard HTML</li>
<li>Create modern mobile web pages</li>
<li>Handle phone orientation changes</li>
<li>Provide a more 'iPhone-like' experience in your Web apps</li>
</ul><p>Similarly, the code is <a href="http://wiki.pentaho.com/display/ServerDoc1x/Deployment+Configuration">available for Android</a>.</p>
<p>Other than Login, Navigation, and Parameter Forms, no changes are actually necessary for Pentaho Platform. This is due to the combination of Pentaho rendering in standard formats, and the iPhone&#160;being able to render standard HTML and PDF pages.</p><img src="http://www.it-director.com/plg/ty_article/pg_13658/dm_0/c379b4e6ea336a06079415789c7b9764.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Shitali Malviya, Sigma Infosolutions)</author>
            <category>Services-&gt;Consulting</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Services-&gt;Outsourcing</category>
            <pubDate>Wed, 09 Jan 2013 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=13658&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>5 reasons SMBs should invest in a Business Intelligence Solution</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=13656&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><img border="0" src="http://www.it-director.com/images/people/small/blank.gif" width="40" height="50" alt="[No Image]" /></td><td valign="top" width="100%">By: Shitali Malviya, <em>Consultant</em>, Sigma Infosolutions<br/>Posted: 8th January 2013<br/>Copyright Sigma Infosolutions &copy; 2013</td></tr></table></div>

<p>BI turns data into actionable information which supports business in <a href="http://www.sigmainfo.net/services/business-intelligence-dw">strategic decision making</a>. A strategic deployment of a Business Intelligence (BI) solution can have a major impact on the growth and profitability of a company. BI has become quite the &#8216;buzzword&#8217; in the software industry in the last few years. Many small business owners still relegate BI the domain of only large companies. When a BI solution is built specifically for SMBs, there&#8217;s no business too small. Business should understand what to be aware of and how to select the best software while sifting through the marketing buzz of BI trends. As we move towards the information edge, SMBs are now starting to realize that BI can benefit them too. Vendors are getting better at making software that&#8217;s easy to use and affordable. Technologies such as open source, cloud, in-memory and visualization technology are making BI tools much more friendly to SMBs.</p>
<p>Here are 5 real advantages that BI can deliver to SMBs:</p>
<p><strong>1)	Information at your fingertips</strong><br />In order to move towards any goal, you first need to know where you are. Manually monitoring your business just isn&#8217;t an option, you need the right information at the right time. BI software can collect data from a number of sources for different purposes like trend analysis, monitor performance, track the marketplace, adjust business direction and plan for future changes. In short, your data would be available at your fingertips so that you can take strategic decisions in time to be ahead of your competitors. It can also help to answer &#8216;what if&#8217; questions with a click of a button for better forecasting.&#160;</p>
<p><strong>2)	Boost business productivity</strong><br />Small businesses, by nature, need to get more done with fewer people. One of the key benefits of BI is that it will automate reporting in your business, saving time and money in the process and ultimately increasing productivity. It can also reduce resources and labor costs used for the collation, analysis &amp; distribution of vital business data. It can pull data in a format known by the business user to manipulate and distribute meaningful information in a familiar way. Traditionally taking days every month to compile, BI can provide real-time automated reports, executable at the click of a button, which draws up-to-date trusted data directly from existing sources and deliver a single version of the truth. By providing on-demand real-time reports, BI plays a significant role in creating time-savings and increased productivity and allows you to start using the information in your system to more effectively manage the business.</p>
<p><strong>3)	Effective decision making</strong><br />The right information can give a complete picture of the performance of your organization. Key performance indicators (KPI) helps in effective decision making and an identification of chances and risks. The most popular use of business intelligence is in decision making by monitoring the current performance and forecasting future phenomena, such as customer behavior, demand, and inventory levels. Business intelligence provides you with solid, effective actions you can take to yield measurable results. BI techniques are already helping SMBs to make smarter, better-informed business decisions. Opportunity, costs and risks can be evaluated up front.</p>
<p><strong>4)	Immediate ROI<br /></strong>BI will bring down a company's operational costs immediate by improving operational efficiency, minimizing total cost of ownership and optimizing business processes in the long run. A good business intelligence solution will not only create, but also enforce processes to follow from day one. Different types of ROI an organization can benefit from a BI solution include revenue enhancement, margin protection, cost reduction, cost avoidance, capital cost avoidance, etc. Also an organisation can see some intangible (qualitative) benefits of strategic value, such as faster reporting, better management information, better decision making, more productive users, efficiency, customer satisfaction, reducing risk and strategic attractiveness.</p>
<p><strong>5) Get what you aim for<br /></strong>BI can help to get answers of all your 'W's' such as what, when, where, why etc. to get what you aim for. Get key business metrics reports when and where you need them. You can also access reports and dashboards on mobile devices like the iPhone, iPad, Android or BlackBerry, giving sales and marketing people access to critical business information on the fly. Information is available with security and control across platforms and devices when &amp; where, in a format as per need, with a single click or as an automated alerts for action. The right information to the right people at the right time using facts-based analysis. Competitive, legal and regulatory requirements can more easily be assessed and planned. In short <a href="http://www.sigmainfo.net/business-analytics/business-intelligence/index.html">Business Intelligence implementation</a> will help you in achieving &#8220;what you aim for&#8221; your business.&#160;</p>
<p>Are you seeing this as a good deal or something more? Connect to us &amp; we will be most happy to assist you companywide BI implementation. Write to bi@sigmainfo.net for a free BI consultation.</p><img src="http://www.it-director.com/plg/ty_article/pg_13656/dm_0/ab6c441ad4d0f144bc998a98a0e79479.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Shitali Malviya, Sigma Infosolutions)</author>
            <category>Enterprise-&gt;Technology</category>
            <category>Technology-&gt;Data management</category>
            <category>Services-&gt;Consulting</category>
            <pubDate>Tue, 08 Jan 2013 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=13656&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Big Data - Security Implications</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=13653&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><img border="0" src="http://www.it-director.com/images/people/small/blank.gif" width="40" height="50" alt="[No Image]" /></td><td valign="top" width="100%">By: Shitali Malviya, <em>Consultant</em>, Sigma Infosolutions<br/>Posted: 7th January 2013<br/>Copyright Sigma Infosolutions &copy; 2013</td></tr></table></div>

<p>Big Data is the buzzword these days. Gartner has <a href="http://www.forbes.com/sites/ericsavitz/2012/10/23/gartner-top-10-strategic-technology-trends-for-2013/">listed</a> Big Data as one of the top 10 technology trends for the year 2013 and beyond.</p>
<p>Big Data is an industry trend that has several characteristics such as size of data such as Terabytes, Petabyte, Exabyte and higher. To put it simply, the volume of data is several magnitudes larger than traditional small data such as single enterprise data in the past. The other important aspects of big data are velocity; the near real-time data that an organization collects formally and informally via various data sources. Big data velocity is due to data coming in from data sources across geography, time zones and in quite a few cases twenty fours a day. The 3rd aspect of the Big Data collection is the variety that results in increased velocity of data acquisition. Data variety includes the popular ones, such as social data, through formal channels such as blogs, feedback forms, data coming in via social data platforms such as Facebook and Twitter. All this data, when collected, aggregated and analyzed constitute the big explosion of data in Big Data.</p>
<p>With Big Data comes the challenge of data security and privacy for organizations that deal with this data and try to make sense of the information in the data. The following will uncover security and big data challenges organizations face in Big Data, with particular emphasis on organizations using the cloud infrastructure to power their business applications.</p>
<p><strong>Big Data Security</strong><br />Data security and data privacy are extremely important aspects to consider for any organization in the increasingly boundary-less, social and networked world. Big data poses additional challenges in the scale of data it presents to the enterprise.&#160;</p>
<p>Data that an organization collects can be classified based on the business objectives of different data. Data that is essential for providing services to the customer needs to be handled differently to social data that the organization collects formally or informally (such as monitoring Tweets and Facebook messages). Customer data is typically data the customer creates directly by using a certain application or service that an organization provides. Organizations typically use and store data on behalf of the customer; for example, financial data and tax records are examples of customer data. This data can be shared with the organization that uses the data on behalf of the customer fully or partially, or this data is private to the user but an organization indirectly uses this data to provide some valuable service to the customers. The variations are many.&#160;</p>
<p>The social data is used more for data mining and analysis of user provided data for getting insights in user behavior, buying or measuring user trends to mention the important ones.</p>
<p><strong>Secure Data Infrastructure </strong><br />With the advent of public cloud service providers (CSP), the data security takes another dimension. How do CSPs secure data in their cloud infrastructure? The CSP needs to secure data and the application that handles data at the network level, at the host level and at the application level.&#160;</p>
<p>Network level security and host level security are part of SLAs that govern the <a href="http://www.sigmainfo.net/business-analytics/business-intelligence/index.html">data security agreement</a> between an enterprise and the CSP. The CSP also needs to conform to various industry compliance standards such as ISO 27001/27002 and audit compliances such as SAS70 and others.</p>
<p>Host level security needs to take into account the operating system versions, patches and known security vulnerabilities, as published by the OS vendor. In addition, virtualization software and documented risks in virtual machines (Java VM, .NET etc.) need to be factored in as well.</p>
<p>Application level security compliance can be engineering into web applications conforming to web security principles such as being compliant with the foundations and guidelines laid down by The Open Web Application Security Project (OWASP)</p>
<p><strong>Secure Data Handling</strong><br />Data also needs to be handled securely in the data life cycle depending on the priorities of how data is collected, stored, used, archived and disposed. The data security lifecycle needs to handle security at various stages:</p>
<ul><li>Data transmission using secure transmission protocols</li>
<li>Data storage</li>
<li>Data processing, ensuring data while being processed in an unencrypted state is securely processed.</li>
<li>Data lineage &#8211; to ensure that audit trail is captured in the life cycle</li>
<li>Data provenance &#8211; data is not only secure but is also correct at any time.</li>
</ul><p>All the above security measures are a must for data stored in 3rd party environment such as public cloud or CSP.</p>
<p><strong>Data Access Identity Management</strong><br />In a typical organization, where applications are deployed internally or in private data centers, the security is based on the organization's trust boundary. The trust boundary encompasses the network, systems, and applications hosted in a private data center managed by the IT department (sometimes third-party providers under IT supervision). Access to the network, systems, and applications is secured via network security controls including virtual private networks (VPNs), intrusion detection systems (IDSs), intrusion prevention systems (IPSs), and multifactor authentication.</p>
<p>However, in the cloud environment, the organization&#8217;s trust boundary moves to the realm of the cloud service provider. This may already be the case for most large enterprises engaged in e-commerce, supply chain management, outsourcing, and collaboration with partners and communities. It is imperative on the part of the organization to identify the identity management services offered by the cloud provider to ensure data access is controlled as per the organization defined access roles.</p>
<p><strong>Privacy Issues</strong><br />Data privacy is an often widely discussed and debated topic in any data collected by enterprises, formally or informally. There is no universal agreement across nations and cultures on what data is private and what is not private. Privacy laws and rights govern how private data is collected, used, stored, interpreted and disposed as there are a lot of ambiguities in what constitutes a PII (Private Identifiable Information). Data collected through user-contributed data and social media contains private data that can be traced back to the particular identify of the individual. Securing such data is part of data governance policy measures such as removal of personal data related to race, gender, age, contact, credit rating, and loan and credit card details. Data mining techniques aggregate personal data for meaningful analysis for the purpose of predicting user behavior and testing hypothesis. At the same time data that is proscribed by users to be used and shared needs to be strictly adhered to. The fine line between what is private and public in user-contributed data is difficult to ascertain easily.</p>
<p>Strictly safeguarding the privacy of data is virtually impossible when the data needs to be shared with government agencies such as surveillance, taxation authorities and other government agencies that need access to private data. The problem takes a larger dimension with the size and scope of the virtual data, as the channels of data collection varies by each source and is not easily manageable, as the lowest level of data comes from an individual, who may or not agree with an organization's views of what constitutes data privacy.</p>
<p><strong>Summary</strong><br />We have looked at the challenges of securing data as part of Big Data collection and the various dimensions of security measures an organization needs to consider for using Big Data applications meaningfully.</p><img src="http://www.it-director.com/plg/ty_article/pg_13653/dm_0/e05d888e4baf158fcf8be5f64c0b01d2.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Shitali Malviya, Sigma Infosolutions)</author>
            <category>Services-&gt;Outsourcing</category>
            <category>Services-&gt;Consulting</category>
            <category>Technology-&gt;Big Data</category>
            <pubDate>Mon, 07 Jan 2013 09:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=13653&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Why should you use Groovy and Grails in Web Application Development?</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=13626&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><img border="0" src="http://www.it-director.com/images/people/small/blank.gif" width="40" height="50" alt="[No Image]" /></td><td valign="top" width="100%">By: Shitali Malviya, <em>Consultant</em>, Sigma Infosolutions<br/>Posted: 7th December 2012<br/>Copyright Sigma Infosolutions &copy; 2012</td></tr></table></div>

<p>Grails is a rapid web application development framework inspired by the popular Ruby on Rails framework (RoR). Groovy is a dynamic programming language for Java&#8217;s Virtual Machine (JVM) and Java Development Kit (JDK) and is used as a primary programming language in Grails. A compelling feature of Groovy is that it can be used in place of Java, or used alongside Java, as per the needs of the development.&#160;</p>
<p>Note: Groovy is an open source language licensed under Apache 2.0 and Grails is built on proven Operational Support Systems (OSS) framework which includes a combination of Spring, Hibernate and Jetty. 													<br /><br /><a href="http://www.sigmainfo.net/grails-development/index.html">Groovy and Grails</a> favors convention over configuration with modern web application best practices like:&#160;</p>
<ul><li>Convention over configuration&#160;</li>
<li>Don&#8217;t Repeat Yourself (DRY)</li>
<li>Agile Software Development </li>
<li>Ajax</li>
<li>Web services (REST, SOAP etc)</li>
<li>Built-in Unit testing support</li>
</ul><p>Some of the reasons for using Groovy and Grails in Web Application Development include:</p>
<p>Faster to kickstart a new project: While using traditional Java web application platforms for projects, developers have to spend weeks creating the initial code for the infrastructure. But with the help of Groovy and Grails, a prototype working web application can be engineered with web user interface and database access support in a couple of hours. This enhances the productivity of the developers and they can concentrate on improving the overall quality of the project.</p>
<p>Utilization of Java platform: Java offers tremendous scope for developers in creating ground-breaking web applications. Groovy and Grails can easily be integrated with Java applications. Grails offers an industrious web application framework which reduces the steps in Java Development Framework. It is very easy for the developers to utilize Java library in an easier and faster way with Groovy. The use of Groovy and Grails reduces the development cycle phases and saves precious time.&#160;</p>
<p>Do Not Repeat Yourself (DRY) principle: With the help of Grail&#8217;s DRY principle, developers can easily accommodate changes in their code. Since the code is not repeated, developers can concentrate on improving the quality of the project. Grail also assists developers in easily documenting their code. This enables them in getting quick resolution to the problems and helps the novice Grails developers in their team.</p>
<p>Nowadays, it has become a trend in the information technology industry to use various forms of agile development process. However it is extremely difficult for inexperienced developers to take advantage of the Java framework using traditional Java methods to practice Agile methods. Hence, it is important for developers to use Groovy and Grails to exploit the benefits of Java in developing web applications.</p><img src="http://www.it-director.com/plg/ty_article/pg_13626/dm_0/51ad7d549c6f9e1b5274545384b97902.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Shitali Malviya, Sigma Infosolutions)</author>
            <category>Services-&gt;Consulting</category>
            <category>Technology-&gt;Data management</category>
            <category>Services-&gt;Outsourcing</category>
            <pubDate>Fri, 07 Dec 2012 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=13626&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Nuance on track to transform enterprise printing</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=13157&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/12348/louella_fernandes.php?ref=fd_side_itd" title="View profile for Louella Fernandes"><img border="0" src="http://www.it-director.com/images/people/small/louella_fernandes.gif" width="40" height="50" alt="Louella Fernandes" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/12348/louella_fernandes.php?ref=fd_side_itd" title="View profile for Louella Fernandes">Louella Fernandes</a>, <em>Principal Analyst</em>, Quocirca<br/>Posted: 2nd February 2012<br/>Copyright Quocirca &copy; 2012</td><td><a href="http://www.it-director.com/about/company/20/quocirca.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/quocirca.gif" width="88" height="33" alt="Logo for Quocirca" /></a></td></tr></table></div>

<p>Nuance is a company with a plethora of products that cover the gamut of voice recognition, document capture and print management. Nuance has largely grown through acquisition (about 50 in the last ten years) so it is probably better known by its product names which include established brands such as PaperPort (desktop productivity), OmniPage (OCR), Dragon Dictate (voice recognition), eCopy (document capture and workflow) and Equitrac (print management) &#8211; its most recent acquisition. Overall, Nuance&#8217;s 2011 revenue reached &#36;1.318 billion in 2011 with 2012 sales expected to reach &#36;1.6 billion.&#160; Boosted by its eCopy and Equitrac acquisitions, its imaging division growth has been strong, revenue reaching &#36;177m in 2011 and expected to exceed &#36;200m in 2012.</p>
<p>At its first European analyst event in London, Nuance discussed its strategic priorities for 2012, which include integration of its scan and print products and expansion of mobile and cloud delivery platforms. Nuance&#8217;s goal is to become the &#8220;MFP software standard&#8221; through delivering integrated cross-platform document capture and print management products &#8211; eCopy and Equitrac. Today, both products are well established, and Equitrac is already widely used to control and monitor print usage and costs across many verticals, with a particularly strong presence in the legal market &#8211; Nuance estimates that, globally, over 3,000 law firms use Equitrac. Its strong MFP and printer partner alliances mean Equitrac has long been used by major printer and copier OEMs such as HP, Ricoh and Xerox to provide enhanced multivendor print management capabilities for tracking, monitoring and reporting on scan, copy and print usage to their managed print services (MPS) customers.</p>
<p>This broadens the already strong OEM relationships on the eCopy side, including Canon, Konica Minolta and others.&#160; With Equitrac, eCopy and its desktop products, Nuance has business relationships with nearly all major MFP, printer and scanner manufacturers worldwide.</p>
<p><strong>Capturing the MPS opportunity</strong><br />Nuance sees MPS as a key driver for its growth in the coming year and views the Equitrac and Nuance document imaging solutions as important components of helping MPS providers to succeed. Indeed there is rapid adoption - Quocirca research shows that around 45% of large corporates now have some form of MPS as they seek to reduce the cost and complexity of operating previously unmanaged printer fleets, typically characterised by a patchwork of devices from different manufacturers, with different consumables, paper, supplier and service requirements. Few organisations have the tools to track and monitor usage leading to spiralling print costs &#8211; both financial and environmental. Security is also an issue as all too often documents are left in output trays exposed to prying eyes.</p>
<p>MPS addresses these issues through three major phases &#8211; assessment, optimisation and on-going continuous management. Nuance&#8217;s Equitrac products have a strong part to play in all phases, helping organisations to not only reduce print wastage through tracking and reporting, but also enhance security, promote user mobility and reduce environmental impact. Key to this is Equitrac&#8217;s &#8220;Follow-You&#8221; or pull-printing which releases documents only upon user authentication &#8211; through either user PIN or smart card authentication. The results are compelling - Liverpool John Moores University discussed how they had saved &#163;100,000 and reduced page volumes by 4.5 million per year through implementing Equitrac.</p>
<p>Nuance is also looking to address the largely untapped opportunity for MPS in the SMB market, via the reseller channel. Many resellers lack the resources or skills to deliver their own MPS, and are looking for a low-cost approach based on 3rd party platforms. Nuance intends to participate in this market which is seeing the emergence of cloud-based MPS offerings from vendors such as HP and Xerox. To capitalize on the emergence of cloud-based technologies and to support its partners&#8217; Managed Services initiatives, Nuance will continue to expand its product portfolio (print management, capture and OCR) from on-premise deployments to off-premise (cloud) models. This will provide a set of cloud-based print management, document capture and OCR technology services to partners who wish to include them as part of their own managed services offerings.&#160;</p>
<p>With the likes of HP and Xerox already having established cloud MPS platforms, Quocirca believes that Nuance will need to get these solutions to market quickly, particularly if it wishes to target the emerging ecosystem of independent MPS providers who will be looking for multivendor supported cloud-based services.</p>
<p>Quocirca believes that Nuance has product breadth, technical resources and channel reach to create a compelling set of enterprise cloud services around its eCopy and Equitrac products. However, given that both eCopy and Equitrac platforms have been gained through acquisition, Nuance still has some work to integrate them.</p>
<p><strong>Talking to printers?</strong><br />Given its heritage in speech recognition consumer technology, Nuance is uniquely positioned to apply this technology to enhance the printer and MFP user experience. The printer industry is far from immune from IT consumerisation, which continues to influence user expectations in the workplace. Whilst employees are used to the convenience, elegance and usability of tablets and smartphones, MFPs, in comparison, are in danger of becoming the elephant in the room.</p>
<p>Whilst most people are familiar with how to press print or copy, few users bother navigating complex nested menus to access finishing options or scan features. Businesses&#160;may therefore miss opportunities to minimise paper wastage through using&#160;features as duplex or booklet printing instead of single side printing.&#160;</p>
<p>One technology that could improve the use of MFPs is&#160;voice recognition.&#160;Nuance has long been a leader in this field, and quietly provides back-end voice recognition functionality for Apple&#8217;s Siri. Could we in the future be telling our printers to print and staple 5 copies of a document &#8211; or scan and document and email it to a colleague? Yes - according to Nuance, the technology is already here to make it possible. It remains to be seen whether hardware vendors will embrace this opportunity to bring printers and MFPs into the 21st century.</p><img src="http://www.it-director.com/plg/ty_article/pg_13157/dm_0/6fb201b26c3c7d7aa663760487b1be9d.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Louella Fernandes, Quocirca)</author>
            <category>Enterprise-&gt;Technology</category>
            <category>Services-&gt;Consulting</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <pubDate>Thu, 02 Feb 2012 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=13157&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>The Game of Process Improvement</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=13075&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><img border="0" src="http://www.it-director.com/images/people/small/mark_mcgregor.gif" width="40" height="50" alt="Mark McGregor" /></td><td valign="top" width="100%">By: Mark McGregor, <em>Research Director</em>, Bloor Research (<a href="http://www.it-director.com/form/search.php?ref=fd_side_itd?ss=Mark+McGregor&amp;log=no&amp;cat=author&amp;exact=yes" title="Mark McGregor has now left this role">Moved</a>)</span><br/>Posted: 28th November 2011<br/>Copyright Bloor Research &copy; 2011</td><td><a href="http://www.it-director.com/about/company/1/bloor_research.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/bloor_research.gif" width="88" height="33" alt="Logo for Bloor Research" /></a></td></tr></table></div>

<p>There are many words now being written, especially in marketing circles, about the "gamification" of BPM and process improvement. However, there appears to be little consensus on what it might be and what it might mean.</p>
<p>The linkage of game theory with process technology has been occurring for some time. However the most successful company in the space historically did not make a lot of noise about it. Alan Trefeler of Pegasystems is a chess master and has been using the gaming principles of chess as the core of the company's software for many years. While TIBCO founder Vivek Ranadive believes that in applying the principles of how great game players succeed to business will provide greater competitive advantage.</p>
<p>As someone who has been using scenario and role play based training for some years it is interesting to see how the tide is turning. It used to be that people laughed or, worse still, resisted the idea that you were going to encourage their people to play games in order to learn. Now it seems that teaching and learning via games is highly fashionable.</p>
<p>Singularity, BizzDesign and 21apps all make use of and promote the idea of game play in order to extract requirements and motivate people for change in the process arena. In the case of the first two their focus is on ensuring that their customers deliver better applications faster. As we know, any vendor needs happy referenceable customers and ensuring that the systems built with their technology are more effective is important to Singularity and BizzDesign. Both of these companies use structured role/scenario play to speed up leaning and enable people to quickly discover problems for themselves.</p>
<p>My impression is that, while the structure is extremely effective as a learning and discovery tool, the challenge is that people may not always follow through with buying your technology afterwards.</p>
<p>In the case of 21apps it is more a case of using games as tools, so continuing to use traditional techniques like SWOT analysis or brainstorming, but using game ideas to make the sessions more effective.</p>
<p>Two recent books are driving much of the current interest, "Gamestorming" by Dave Gray, Sunni Brown and James Macanufo and "Innovation Games" by Luke Hohmann. Both books are packed with ideas and games to help you in all sorts of different situations. Luke Hohmann also has his own web site where you can play many of the games online.</p>
<p>The rationale for playing games is grounded in good learning theory. We learn and retain information faster when playing. Cast your mind back to when you were 4 or 5 years old and think of the games you used to play, either on your own or with your friends. It might be that you were like me at that age and loved maths! Well actually I loved the games the teacher played and found that they helped me learn maths. At that age I found maths easy and fun - all because of the games we played. In my case, wind the clock forward 8 years to a bigger school where there were lectures and stern teachers and, surprise, surprise, I quickly learned to hate maths! And my skills failed to live up to the teacher's ideas of what they could or should be - how I wished they understood learning and games theory then. Your specific experiences will be different, but I suspect if you think hard enough you will find similar instances in your own past.</p>
<p>As an organisation looking to gain or build consensus, capture requirements, generate ideas, overcome resistance or any one of a hundred other things, the use of games via a skilled facilitator will speed up your results, increase motivation and overcome challenges. If you are not already applying games as a part of your process workshops then you are definitely missing an opportunity.</p>
<p>It is not all upside though; much role and game play success is down to the interactions among people and the dynamics of the group and this is an area of worry when it comes to vendors and tools.</p>
<p>There are online games, such as IBM's Innov8 and others, that make use of interactive worlds like Second Life. Their biggest appeal will always be to those who might normally play computer games, especially in an online community. This, for me, brings a high risk, for these situations might provide realistic business and process scenarios for us to work on, but fail to provide a great deal of real world interaction among people, thus diminishing some of the potential return.</p>
<p>In summary, all businesses should be looking at the latest developments in games and the application of games to learning. In order to leverage the techniques you will need to access or train good facilitators, measure success by the outcomes and not by the bulleted "you will learn lists", and be prepared for you and your teams to discover things about themselves and their work that they may not have ever thought of.</p>
<p>Lastly, do not be seduced by technology. The use of games theory, as applied by people like Trefler and Ranadive, has sound roots. They are helping to create systems that work more like we, as people, do. Others who take games and simply computerise them are not leveraging the underlying theory benefits and may, in fact, also destroy some of the interaction benefits they purport to support.</p><img src="http://www.it-director.com/plg/ty_article/pg_13075/dm_0/1ace9add76359518254f085349192538.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Mark McGregor, Bloor Research)</author>
            <category>Services-&gt;BPO</category>
            <category>Services-&gt;Consulting</category>
            <category>Technology-&gt;Data management</category>
            <pubDate>Mon, 28 Nov 2011 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=13075&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Data: The Lifeblood of an Organisation</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12853&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/16590/ike_ononogbu.php?ref=fd_side_itd" title="View profile for Ike Ononogbu"><img border="0" src="http://www.it-director.com/images/people/small/blank.gif" width="40" height="50" alt="[No Image]" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/16590/ike_ononogbu.php?ref=fd_side_itd" title="View profile for Ike Ononogbu">Ike Ononogbu</a>, <em>Managing Partner</em>, InforData Consulting<br/>Posted: 8th July 2011<br/>Copyright InforData Consulting &copy; 2011</td><td><a href="http://www.it-director.com/about/company/9873/infordata_consulting.php?ref=fd_side_itd" title="View company profile"></a></td></tr></table></div>

<p>We have just gone past the half way mark of 2011 and several events&#8212;conferences, seminars, and webinars&#8212;have taken place. A number of them have one common denominator, Data Management. The 20th and 21st century has seen an increase in mergers and acquisitions as organisations pursue growth and wider customer base. Invariably this has led to the explosion of data held within an organisation. This trend seems to have shifted the focus on how best to manage this ubiquitous item.</p>
<p>What is it that makes data so important? The information that comes from data reveals the state of an organisation. Sales figures, financial status, revenue, forecasts are all derived from data. Information at the disposal of organisations, if accurate, can be used to strategize and gain competitive advantage. In reality, data is the engine that moves an organisation.</p>
<p>One way of understanding your data sets and managing it to gain a competitive edge is through <a href="http://infordataconsulting.blogspot.com/2010/11/master-data-management-three-pillars.html" rel="nofollow">Master Data Management</a> (MDM). In recent times there has been a flurry of interest in MDM and recognition of its importance. It has been noted organisations that are interested in implementing MDM solutions often struggle to address the challenges that come with implementation. Gartner, in a published article titled &#8216;<em>MDM 'Primer': How to Define Master Data and Related Data in Your Organization&#8217;,&#160;</em>states that &#8220;MDM program managers and leaders need to ensure a shared understanding of what defines master data across the organisation. MDM programs will not go very far without this. If your organisation plans to adopt MDM, you need this &#8220;primer&#8221; to help define master data across business and IT&#8221;. The paper goes on to talk about key findings and recommendations.</p>
<p>While there are immense challenges in implementing a Master Data Management (MDM) solution, the benefits are overwhelming. It has been said that by 2013, Master Data Management (MDM) will reduce data redundancy in organizations. As a result will save 80% of the costs associated with managing this redundant data.</p><img src="http://www.it-director.com/plg/ty_article/pg_12853/dm_0/f22239715f05599e23985ad3c572f5e6.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Ike Ononogbu, InforData Consulting)</author>
            <category>Channels-&gt;Systems Integration</category>
            <category>Services-&gt;Consulting</category>
            <category>Technology-&gt;Data management</category>
            <pubDate>Fri, 08 Jul 2011 06:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12853&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Managed Hosting: Knowing the Facts</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12815&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/17152/dominic_monkhouse.php?ref=fd_side_itd" title="View profile for Dominic Monkhouse"><img border="0" src="http://www.it-director.com/images/people/small/dominic_monkhouse.gif" width="40" height="50" alt="Dominic Monkhouse" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/17152/dominic_monkhouse.php?ref=fd_side_itd" title="View profile for Dominic Monkhouse">Dominic Monkhouse</a>, <em>Managing Director EMEA</em>, PEER 1 Hosting<br/>Posted: 16th June 2011<br/>Copyright PEER 1 Hosting &copy; 2011</td></tr></table></div>

<p>There are a lot of myths and misunderstandings that make finding the right provider very difficult. Questions that always arise are - how do you know you&#8217;re getting good service and value for money? What should you do if you suspect you&#8217;re not?</p>
<p>Here are the basic facts you need to know about hosting:</p>
<p><strong>What goes on behind closed doors?</strong><br />Many hosting providers do not make it a policy to notify customers when they experience downtime. What this means in reality is that your website was out of action and you didn&#8217;t even know. For e-commerce businesses, SMEs outsourcing software or white-label web services, this isn&#8217;t just an inconvenience, it can hit profits. Finding out revenue has taken a hit due to faulty web availability is never an easy thing to take&#8212;nor should it be accepted.</p>
<p>Make sure your hosting provider reports regularly on uptime&#8212;don&#8217;t take their &#8216;uptime guarantee&#8217; as gospel. It should also live by its SLA (Service Level Agreement) and provide regular reports, rather than granting credits retrospectively for downtime. It&#8217;s also worth noting that large chunks of downtime are often excluded from credits under the guise of &#8216;trouble-shooting&#8217;. Have a conversation with your provider and agree how uptime will be proved, what the process is, and what the definition of &#8216;downtime&#8217; actually is. This way you&#8217;ll know exactly what you&#8217;re entitled to and it&#8217;ll be difficult for your hosting provider to get away with poor service.</p>
<p><strong>Know what you&#8217;re paying for</strong><br />Many hosting providers will give you an all-in fee for set-up, hardware, operating system, support and bandwidth. This may seem like an easy option but the problem with these deals is you can&#8217;t see exactly where your money is going, and so can&#8217;t see if you&#8217;re paying for things you don&#8217;t need. The best way to ensure you&#8217;re not taken for a ride is to ask for a breakdown of services and individual quotes for support, bandwidth, additional hardware etc. It&#8217;s the only way to know what&#8217;s being delivered, what isn&#8217;t, and what is surplus to requirements.</p>
<p>Always ask about pricing for over-usage. What happens if you exceed your allotted monthly bandwidth? And how much more will it cost to add an extra Gig of RAM? Over-usage pricing can be horrendous and a sharp shock if you weren&#8217;t expecting it. You need to know what&#8217;s included and, more importantly, what isn&#8217;t. Ask for the extra cost of things like memory, hard-drive, bandwidth per Gig and back-up to be quoted separately, as they could come back to bite you.</p>
<p><strong>Know who is really hosting you and do your own research</strong><br />In some cases, a hosting provider will actually have a host itself. This means you may be paying a margin when you could get a better prince and SLA by going direct. The closer you are to the host, the faster the fault resolution so it pays to do a bit of research.</p>
<p>One of the best tools to discover your real host is the anti-phishing toolbar from netcraft.com. It allows you to see who is hosting your site and the other sites they are hosting. If you don&#8217;t want to ask your provider for a reference, but you do want to find and contact some of its customers, this is the perfect way to do it.</p>
<p>References are always good. One way to avoid being conned is the Alphabet Test. Ask for your provider&#8217;s references, ignore them, then choose any letter of the alphabet and ask for three references beginning with that letter. If you don&#8217;t get any, you know the initial references weren&#8217;t exactly robust.</p>
<p><strong>Understand your contract and your exit options</strong><br />Many hosting providers will offer a discount on longer term contracts which may sound like a good deal. But if the provider isn&#8217;t delivering within the SLA, you&#8217;re stuck with poor service or forced to pay a hefty exit fee. Instead, sign a month to month contract. You may pay a little more, but you will have the flexibility to leave or alter your hosting agreement at any point which will make life easier in the long-run.</p>
<p>If you are stuck in a long contract with a bad provider, it&#8217;s often worth paying the exit fee to switch to a month-to-month contract. Moving between hosting providers is not hard or difficult, there are many digital agencies that can handle migration projects without difficulty, so don&#8217;t be put off about changing things and never resign yourself to bad service.</p><img src="http://www.it-director.com/plg/ty_article/pg_12815/dm_0/67aa60d7e185f6bf0db5c0d0a7a5fa0c.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Dominic Monkhouse, PEER 1 Hosting)</author>
            <category>Business Issues-&gt;Change</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Services-&gt;Consulting</category>
            <pubDate>Thu, 16 Jun 2011 14:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12815&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>HP's vision for driving more printed pages by harnessing the cloud, mobility and connectivity</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12681&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/12348/louella_fernandes.php?ref=fd_side_itd" title="View profile for Louella Fernandes"><img border="0" src="http://www.it-director.com/images/people/small/louella_fernandes.gif" width="40" height="50" alt="Louella Fernandes" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/12348/louella_fernandes.php?ref=fd_side_itd" title="View profile for Louella Fernandes">Louella Fernandes</a>, <em>Principal Analyst</em>, Quocirca<br/>Posted: 30th March 2011<br/>Copyright Quocirca &copy; 2011</td><td><a href="http://www.it-director.com/about/company/20/quocirca.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/quocirca.gif" width="88" height="33" alt="Logo for Quocirca" /></a></td></tr></table></div>

<p>At its recent Analyst Summit in San Francisco, HP delivered a strong vision on how it aims to grow its printing revenues across consumer, SMB, enterprise and commercial markets. Whether it's consumer web aware printers, retail publishing such as SnapFish, managed print services (MPS) or digitising the commercial print processes, HP demonstrated a range of products and services and an integrated go-to-market strategy that will enable it to extend the reach for its vast portfolio.</p>
<p>HP certainly has a strong vision to integrate its cloud, mobile and security offerings and the one area where HP is certainly able to exploit the convergence of these trends is printing. HP has the technology expertise in each of these areas, to provide it with a competitive advantage over its traditional print and copier competitors who are all looking to capture more revenues from products and services in a mature market where HP currently dominates.</p>
<p>HP&#8216;s Imaging and Printing Group&#8217;s (IPG) revenues grew by 7% in 2010, and overall, IPG accounted for 20% of HP&#8217;s revenue. Supplies revenue represents 67% of overall IPG revenue, with commercial printer hardware and consumer printer hardware accounting for 22% and 11% respectively. The consumer market for printers is highly commoditised, so HP is increasing its focus on grabbing a larger share of the commercial market. Commercial printer hardware shipments growth is important, not only for revenue but also the supplies revenue growth these devices can deliver on an on-going basis.</p>
<p>HP&#8217;s vision for its IPG business includes having an &#8220;ecosystem for on- and off-ramps and a comprehensive cloud-based platform&#8221;. In simple terms, this means enabling users to connect to any HP networked printer, multifunction peripheral (MFP), print shop and retail storefront from any device, securely and seamlessly wherever the user is at any one time. Behind this objective is the goal to ultimately drive higher value pages, such as colour which generate much more revenue than black and white pages, which in turn drives supplies revenue.</p>
<p><strong>The mobile opportunity</strong><br />HP also described its innovation around its web-enabled printers, which use the webOS platform. It&#8217;s ePrint service enables printing on any internet connected device by sending the output as an email attachment directly to the printer. HP has high hopes for adoption of this among home and business users alike. It shipped 3 million units of its web-enabled printers in Q1 2011 and expects to ship 20 million by the end of this year.&#160;</p>
<p>Indeed, the advent of smartphones and tablet devices such as the iPad has generated a new wave in development of printing solutions for platforms such as the BlackBerry, Android and iOS. As well as ePrint, HP has also worked closely with Apple to develop direct printing support for HP printers and MFPs in the latest release of AirPrint available on devices running iOS 4.2 or later. HP also announced that it would provide support for Google&#8217;s Cloud Print later this year.&#160;</p>
<p>The launch of its webOS TouchPad tablet also this year will undoubtedly bring native driver support into webOS for HP devices and, as such, HP is well positioned to integrate the mobile and printing experience for these devices&#8212;although it remains to be seen how popular they will be. While HP has brought mobility to the forefront of its print strategy&#8212;other vendors such as Xerox and Ricoh have also released products for printing to their printers and MFPs from smartphones.</p>
<p><strong>Growing service and solutions revenue</strong><br />HP is also looking to drive high value recurring business through managed print services (MPS) where it currently has 3,000 customers. MPS is a burgeoning market offering printer vendors an opportunity to capture more pages through managing office, commercial and production print environments. HP is already seeing the fruits of its joint go-to-market MPS activities between IPG and its Enterprise Business (EB) unit. This has resulted in a 200% rise in joint IPG/ES total contract value growth with 74% of the HP enterprise funnel including joint pursuits. HP also indicated that its average deal size is seven times higher through joint activities.</p>
<p>HP is certainly well positioned to capitalise on these joint opportunities and the two groups seem to be well aligned in their go-to-market approach. HP intends to further drive the value of MPS contracts by increasing the sales of attached document workflow solutions. In 2010, these accounted for 75% of its MPS contracts, compared to 25% in 2008.</p>
<p>Having developed a strong service portfolio for enterprise clients, HP is now building an infrastructure for its channel partners to deliver MPS to SMBs encouraging them to move to a contractual model away from traditional transactional sales. HP has developed QuickPage, a turnkey service offering that provides billing, account management and financing for channel partners. This hosted infrastructure minimises the resources and investment necessary for channel partners to participate in the lucrative MPS market.</p>
<p><strong>An expanding print service provider ecosystem</strong><br />Accelerating the analogue-to-digital transformation in graphics is another opportunity for HP to drive supplies and page growth in the commercial printing market. HP estimates that 1.46 billion pages were printed on its high speed inkjet presses in 2010. The fact that over 95% of graphics pages such as labels and packaging, signage, publishing and collateral are still analogue clearly represents a huge opportunity for HP.</p>
<p>As a technology giant, HP has the breadth and scale to operate in all areas of the print industry&#8212;covering consumer, SMB, enterprise and commercial print. Its vast integrated go-to-market infrastructure sets it apart from some of its competitors, and certainly the joint approach with its Enterprise Services business will boost MPS revenues. But in the enterprise and commercial print arena it faces stiff competition from rivals such as Xerox and Ricoh who are both adapting their portfolios to capture wider enterprise print opportunities. HP has got its finger in many print pies, but it will be the ability to execute on increasing page growth through its product and services that will ultimately drive its revenues in the future.</p><img src="http://www.it-director.com/plg/ty_article/pg_12681/dm_0/e11c6c7ea11f9c4ec2ff2748e4660966.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Louella Fernandes, Quocirca)</author>
            <category>Enterprise-&gt;Consumer</category>
            <category>Business Issues-&gt;Quality</category>
            <category>Business Issues-&gt;Costs</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <pubDate>Wed, 30 Mar 2011 06:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12681&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Open Source and Data Integration</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12629&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/16590/ike_ononogbu.php?ref=fd_side_itd" title="View profile for Ike Ononogbu"><img border="0" src="http://www.it-director.com/images/people/small/blank.gif" width="40" height="50" alt="[No Image]" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/16590/ike_ononogbu.php?ref=fd_side_itd" title="View profile for Ike Ononogbu">Ike Ononogbu</a>, <em>Managing Partner</em>, InforData Consulting<br/>Posted: 28th February 2011<br/>Copyright InforData Consulting &copy; 2011</td><td><a href="http://www.it-director.com/about/company/9873/infordata_consulting.php?ref=fd_side_itd" title="View company profile"></a></td></tr></table></div>

<p><strong>Heading South</strong><br />Is the cost of data management heading south? Have you had a discussion with a client considering moving away from inefficient data management processes or a client looking to implement a transformation project? If you have, my guess is that pricing must have been a thorny issue. One would then ask why such organisations stick to the 'tried and tested' procedures that are quite expensive. <br /></p>
<p><strong>Step in Open Source</strong><br />In the past few years we have seen the rising interest in Open Source. This has been fuelled by the popular belief that you can possibly get value for money at a reduced cost. The idea of Open Source in relation to technology has long been in existence but the idea of Open Source in relation to data integration is a new concept. Open Source is not just about giving access to source code, it also involves free redistribution of applications. Some offer both free distribution and a licensing option.</p>
<p>I recently attended a dialogue session focused on Open Source and it is evident organisations are beginning to look at and explore the gains Open Source has to offer. Coming from industry chieftains, who constituted the panel at the session within the private and public sector, it certainly is a good sign for Open Source evangelists. <br /></p>
<p><strong>The Difficulty</strong><br />So, why has it been difficult for Open Source to really take flight? During the dialogue session, the reasons were not in short supply. They ranged from contractual agreements between System Integrators and clients to risks involved in implementing integration projects using &#8216;non-mainstream&#8217; applications. Members of the audience, of course, did counter the argument for, citing the government&#8217;s cost-saving drive as a big enough incentive. Some, also, did point out the superiority of some Open Source products, in terms of functionality, over closed applications. <br /></p>
<p><strong>Data Integration</strong><br />Looking at Open Source within the data integration arena, Talend easily comes to mind. Talend, a Paris-based software house, offers an Open Source data integration tool with a free standard edition version and a subscription version. The company publishes the code of its core modules and offers the developer community the ability to improve the product. Nevertheless, Talend R&amp;D drives the road map/strategy.</p>
<p>Talend seems to be succeeding in its awareness drive which has seen it sign-up a number of clients in the private and public sector. It must be added that their data integration tool is effective. <br /></p>
<p><strong>Pros and Cons</strong><br />As with every evolving concept there are positives, to build on, and negatives, to address.<br /><br /><strong>Negatives</strong></p>
<ul><li>Intellectual Properties issues: Who owns what?</li>
<li>Who reaps the financial gains from the sale or use of the product? </li>
</ul><p><strong>Positives</strong></p>
<ul><li>Costs: The reduction in costs associated with Open Source weighs heavily in its favour.</li>
<li>Easy access: Free versions are available on-line.</li>
</ul><p>While the evangelists of Open Source proclaim the philosophy according to Open Source we have to remember it has to be judged based on its merits and not just on costs.</p><img src="http://www.it-director.com/plg/ty_article/pg_12629/dm_0/e30336d84a1132971d10b478a7857bfe.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Ike Ononogbu, InforData Consulting)</author>
            <category>Technology-&gt;Data management</category>
            <category>Services-&gt;Consulting</category>
            <category>Channels-&gt;Systems Integration</category>
            <pubDate>Mon, 28 Feb 2011 08:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12629&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Getting mobile and social into BPM</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12587&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/13537/simon_holloway.php?ref=fd_side_itd" title="View profile for Simon Holloway"><img border="0" src="http://www.it-director.com/images/people/small/simon_holloway.gif" width="40" height="50" alt="Simon Holloway" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/13537/simon_holloway.php?ref=fd_side_itd" title="View profile for Simon Holloway">Simon Holloway</a>, <em>Practice Leader -  Process Management &amp; RFID</em>, Bloor Research<br/>Posted: 10th February 2011<br/>Copyright Bloor Research &copy; 2011</td><td><a href="http://www.it-director.com/about/company/1/bloor_research.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/bloor_research.gif" width="88" height="33" alt="Logo for Bloor Research" /></a></td></tr></table></div>

<p>As the realisation comes to the software market that the new generation of workers need user interfaces that fit with the lifestyle of Facebook, Twitter and mobile phones with apps, we are starting to see how various software companies are meeting these changes. For the BPMS market, Appian have always been one of the companies leading the way and with the release of Appian 6.5, which includes a new interface called Appian Tempo, they have produced a release that is geared towards the end user of BPMS-driven solutions in terms of a mobile and social interface with cloud capabilities.</p>
<p>Malcolm Ross, Appian&#8217;s Director of Product Management, told me &#8220;The release delivers a revolutionary way to extend process visibility and participation through native mobile device access, real-time collaboration, filtered and personalised views of key business events, integration to external systems, and the ability to take direct action in a familiar and intuitive social media interface.&#8221; So what does the new Appian interface deliver?</p>
<h3>Mobility</h3>
<p>Appian Tempo provides native client applications for the Apple iPad, iPod Touch and iPhone as well as RIM BlackBerry devices. Ross explained that mobile BPM allows employees to stay connected, allowing them to monitor, collaborate and take action on important business decisions regardless of where they are. It also extends BPM participation beyond pre-defined process participants to include all levels of the organisation. The iPhone and iPad applications are available for immediate download from the Apple App Store. The BlackBerry application is available now from the Appian Forum community site, and will be available shortly on the BlackBerry App World site. A native application for Google Android devices will be available shortly.</p>
<p>&#160;<img src="https://www.bloorresearch.com/assets/media/2086/Appian_Tempo.PNG" alt="Mobile device shots showing Appian" width="450" height="313" /></p>
<p>Figure 1: Appian Tempo user interface on BlackBerry, iPad and iPhone. (Source: Appian)</p>
<h3>Social</h3>
<p>There always seems to be a contradiction about incorporating social media into a business world. Social technologies are powerful communication and collaboration platforms, but they must be harnessed in a business context to have business value. Ross explained, &#8220;Appian utilises familiar social tools and interfaces to drive business collaboration across the enterprise through personalised, filtered views that allow easy collaboration with the ability to take action when needed.&#8221; Users can filter views by relevant application or process areas and subscribe to customised feeds to monitor the key events and information that is meaningful to them. As well, users can comment, pose questions and collaborate on business events through real-time message posts and ad hoc updates to targeted groups within and outside of pre-planned business processes. The last user capability is to &#8220;Take Action&#8221;; here a user can generate actions and complete tasks from inside the event feed or from a mobile device, using optimised web and mobile forms to capture data and route tasks.</p>
<h3>Customer-Driven</h3>
<p>Samir Gulati, Appian&#8217;s Vice President of Marketing, described how Appian 6.5, and in particular Appian Tempo, had been driven by their customers&#8217; business needs. One example is Archstone, a leading apartment management company, headquartered in the USA. Archstone have a highly mobile and dispersed workforce which is supported by a system built on Appian. David Carpenter, Director of BPM, Archstone, stated that &#8220;Appian Tempo delivers a new level of value to our customer service associates through instant mobile access to our key enterprise processes and forms.&#8221;</p>
<h3>Comment</h3>
<p>I was very impressed with the demonstration of Appian 6.5 and the Appian Tempo interface. From an end user viewpoint it opens up the ability to make real-time decisions where and when they are needed by using collaborative technology. The product is definitely easy-to-use and intuitive. While all events and collaborations can be secured at a granular level, organisations that make use of the new Appian release will need to think about the security implications of the information that can be shared.</p>
<p>In addition to on-premise deployment, Appian has emerged as the BPM-in-the-cloud market leader. When you add the capabilities of Appian Tempo to those already in the Appian BPMS and Appian Anywhere, as well as Appian&#8217;s specific knowledge about industries such as government and financial services, you have a very compelling proposition.</p><img src="http://www.it-director.com/plg/ty_article/pg_12587/dm_0/eb64df4bdb00a0116acb1ce3b0732cfb.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Simon Holloway, Bloor Research)</author>
            <category>Business Issues-&gt;Innovation</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Services-&gt;BPO</category>
            <category>Services-&gt;Consulting</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Thu, 10 Feb 2011 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12587&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Software as a Service (SaaS); A growing Trend in Data Management</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12546&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/16590/ike_ononogbu.php?ref=fd_side_itd" title="View profile for Ike Ononogbu"><img border="0" src="http://www.it-director.com/images/people/small/blank.gif" width="40" height="50" alt="[No Image]" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/16590/ike_ononogbu.php?ref=fd_side_itd" title="View profile for Ike Ononogbu">Ike Ononogbu</a>, <em>Managing Partner</em>, InforData Consulting<br/>Posted: 25th January 2011<br/>Copyright InforData Consulting &copy; 2011</td><td><a href="http://www.it-director.com/about/company/9873/infordata_consulting.php?ref=fd_side_itd" title="View company profile"></a></td></tr></table></div>

<p>We recently signed up to a CRM web-based application and so far it has proven to be a wise investment. Automating and simplifying some tasks previously carried out manually and more importantly we have avoided the drudgery of installing, configuring and subsequently maintaining the software. Our consultants can now log in from anywhere and use or input company-wide data without having to be at our office or logged into our machines. This is a pretty cool service.</p>
<p>Another significant occurrence, for me, that heralded the arrival of SaaS was when I had a need to share a 'live' document with a friend. As I was pondering how we could both access the document without having to save and send via email a former work-mate suggested we use a particular application on the cloud, this application allows for document-sharing on the 'cloud'.&#160; Perfect!!</p>
<p><strong>In The Beginning</strong><br />Historically companies have been required to buy software, configure and deploy. But it seems there is change in the air. This apparent shift in paradigm from client-server desktop applications to web-based or cloud computing has its merits and, as some sceptics would like to dwell on, its down-side.</p>
<p>If I were a manager in a company would I rather have a client-server installation or opt for the seemingly easier option of SaaS. Some thought-provoking questions need to be answered before an appropriate decision can be made.</p>
<p>Some of the questions would possibly be:</p>
<ul><li>How safe is my data?</li>
<li>Am I looking at short-term or long-term costs?</li>
<li>If long term, will it be cost effective? Same question should be posed if short-term.&#160;</li>
</ul><p><strong>Data Security</strong><br />Back to what I would assume is the most important question companies looking to go the cloud route would ask, is my data safe? For all its ease-of-use and minimal, if not lack of, maintenance data security is key to making a decision whether to embark on this road. Managers will have at the back of their minds that their data will be stored in a data centre they have no control over and probably haven&#8217;t got a clue where it is located. Where does governance lie if your data is stored in a data centre in Alaska? Is the integrity of my data assured in the data centre?</p>
<p><strong>SaaS 'Players'</strong><br />Every technology shift has its forebears and followers. Salesforce, a CRM firm formed by an ex-Oracle executive and three software developers, leads the way in harnessing web-based capability. Others, notably Informatica (Data Integration software company), SAP (provides Enterprise software applications), Oracle and IBM Cognos, have all followed suit and now offer on-demand services which are all cloud based. Worth mentioning, Microsoft has just launched its CRM application, Dynamic CRM Online. No one wants to be left behind and there is good reason not to.</p>
<p><strong>Conclusion</strong><br />While awaiting assurance that data held in data centres will be safe, another question pops up. Are the features in on-demand products as 'rich' as client-server editions?</p>
<p>Having said that and posed some questions, earlier on, we must not lose sight of the benefits of SaaS or cloud computing. The positives are all too obvious for one to see and it certainly has a big part to play in the technology arena, now and in future.</p><img src="http://www.it-director.com/plg/ty_article/pg_12546/dm_0/9a94a3822f89dea6dfda457312a2bb34.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Ike Ononogbu, InforData Consulting)</author>
            <category>Technology-&gt;Data management</category>
            <category>Services-&gt;Consulting</category>
            <category>Channels-&gt;Systems Integration</category>
            <pubDate>Tue, 25 Jan 2011 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12546&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>The Cloud Thickens</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12547&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/16731/natalie_newman.php?ref=fd_side_itd" title="View profile for Natalie Newman"><img border="0" src="http://www.it-director.com/images/people/small/natalie_newman.gif" width="40" height="50" alt="Natalie Newman" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/16731/natalie_newman.php?ref=fd_side_itd" title="View profile for Natalie Newman">Natalie Newman</a>, <em>Senior Analyst</em>, Bloor Research<br/>Posted: 25th January 2011<br/>Copyright Bloor Research &copy; 2011</td><td><a href="http://www.it-director.com/about/company/1/bloor_research.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/bloor_research.gif" width="88" height="33" alt="Logo for Bloor Research" /></a></td></tr></table></div>

<p>I am not referring to Cloud Computing but rather the cloud of confusion prevailing over geographic information amongst the general public. The confusion over this type of information; the confusion over the many terms used for information that can be linked to the earth's surface; and the confusion over maps.</p>
<p>Watching a TV program the other evening called, &#8216;The Beauty of Maps' highlighted the subjectivity of maps. The map maker has cartographic licence to create a map display which projects his interpretation of the subject; whether it is to visualise the topography correctly and read the labels easily, or to project an image that might not be true. This program described William Morgan's 1682 Map of London. He created a map of a city after it was destroyed by The Great Fire. His map illustrated the city he <em>envisaged</em> London would become. St Paul's Cathedral was well illustrated on the map even though it was totally destroyed and had yet to be rebuilt. Maps project what the creator intends.</p>
<p>There is a book written by Allan and Barbara Pease called <em>&#8216;Why men don't listen and women can't read maps'.</em>The theory goes that "due to their different roles in evolution, men had to hunt and stalk their prey, so became skilled at navigation, while women foraged for food and so became good at spotting fruits and nuts close by" [The Telegraph website]. I am not sure that explains it and, if one can generalise quite so simply, women should then be the bigger enthusiast about SatNavs. Maybe the &#8216;<em>don't listen'</em> bit prevents men from asking for or listening to directions :)</p>
<p>Returning to the subject&#8212;there is a great lack of understanding amongst laymen about location and geographic information systems (GIS)&#8212;as my <a href="http://www.bloorresearch.com/analysis/11660/is-there-enough-awhereness.html" rel="nofollow">previous article</a> described the need to increase a<em>Where</em>ness. Location information&#8212;or whatever we want to call it&#8212;is simply the position on the earth's surface to the accuracy that is possible, and/or the accuracy that is required.</p>
<p>Initially Google Maps and Google Earth provided much needed publicity for geographic information. Google Maps, or similar, is used by most people I know to find their destination and obtain directions to reach it. Google Earth stirred an interest in places we might not visit but can view. So much good has emanated from those two applications to raise the profile of location.</p>
<p>The downside is that there is still not enough understanding or appreciation of the implications of geographic information and the systems. The associated costs are now even harder to sell as &#8216;Google is free'.</p>
<p>The Google application, Latitude, enables a mobile phone user to allow certain people to view their current location. I assume that these locations include both the longitude and latitude measurement; just the distance from the equator would not really help anyone.</p>
<p>Another term to increase the confusion, or is Google taking latitude with Latitude?</p>
<p>In addition, according to the latest Apollo survey table measuring the media coverage per technology company, Google came 1st in Europe and in USA, and 3rd in UK! &#160;With that much media exposure, we should not underestimate the influence of Google!</p>
<p>We will have to tell a convincing story about the necessary investment to add location to your business systems. We will have to ensure that the longitude accompanies the latitude and makes good sense.</p>
<p>That means we, geographic professionals will have to work that much harder to tell&#8212;and sell&#8212;our story.</p><img src="http://www.it-director.com/plg/ty_article/pg_12547/dm_0/65c3df09291ea1f216cc8c00c32a34ef.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Natalie Newman, Bloor Research)</author>
            <category>Business Issues-&gt;Innovation</category>
            <category>Business Issues-&gt;Regulation</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise-&gt;Other</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Data management</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Technology-&gt;Mobile</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Tue, 25 Jan 2011 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12547&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Ricoh unveils plans to close gap on managed print services rivals</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12543&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/12348/louella_fernandes.php?ref=fd_side_itd" title="View profile for Louella Fernandes"><img border="0" src="http://www.it-director.com/images/people/small/louella_fernandes.gif" width="40" height="50" alt="Louella Fernandes" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/12348/louella_fernandes.php?ref=fd_side_itd" title="View profile for Louella Fernandes">Louella Fernandes</a>, <em>Principal Analyst</em>, Quocirca<br/>Posted: 24th January 2011<br/>Copyright Quocirca &copy; 2011</td><td><a href="http://www.it-director.com/about/company/20/quocirca.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/quocirca.gif" width="88" height="33" alt="Logo for Quocirca" /></a></td></tr></table></div>

<p>Ricoh&#8217;s first global press event was held on 20 January 2011, where it announced its plans to invest &#36;300 million over three years in its global managed document services (MDS) infrastructure. It has set an annual revenue target for MDS of &#36;3.3 billion by 2013.</p>
<p>For a company that has stayed fairly quiet about its managed print service credentials so far, this is an ambitious target&#8212;if achieved, Ricoh expects to capture a third of the flourishing managed print services (MPS) market.</p>
<p><strong>The need for managed print services</strong><br />With many businesses failing to understand the true cost of their print infrastructure, some are turning to MPS, which Quocirca defines as the use of an external provider to assess, optimise and manage the print infrastructure. MPS provides a way to consolidate the patchwork of brands, devices and consumables that characterise a typical unmanaged print environment. Although it may seem paradoxical that MPS supports a &#8220;print less&#8221; approach, the revenue opportunity for a hardware vendor, such as Ricoh, comes from capturing pages from competitor devices, higher value colour output and longer term service contracts.</p>
<p>The MPS market opportunity is significant; Quocirca estimates that just 20% of large enterprises have adopted MPS, although more are beginning to evaluate the benefits. Through use of centralised management tools and usage-based pricing, businesses gain predictable and reduced costs, improved productivity through better workflow, and lower their environmental impact through using more energy efficient devices and less consumables.</p>
<p><strong>A strategic approach to information management</strong><br />Ricoh delivers MDS through its direct business, with its strategy moving beyond traditional hardware driven MPS engagements, to cover all elements of the document lifecycle&#8212;encompassing document capture, processing, storage and output.&#160; Ricoh is positioning MDS around managing &#8220;information capital&#8221;, this being one of a CIO&#8217;s primary imperatives. This objective is clearly far-reaching as it focuses on increasing business productivity by looking at people, processes and technologies across an organisation. This approach acknowledges that printing continues to play a significant role in business processes and that through better use of multifunction peripherals (MFPs), printers and document workflow tools, costs can be contained whilst also driving productivity.</p>
<p><strong>Gaining market share</strong><br />Quocirca&#8217;s recent &#8220;<a href="http://www.it-analysis.com/services/outsourcing/paper.php?paper=912">MPS Comes of Age</a>&#8221; report identified Ricoh as having made significant strides in the development of its portfolio. In October 2010 it established global competency centres to standardise its offerings and ensure consistency across its global network, which operates in more than 180 countries. Its acquisition of IKON Office Solutions, a provider of office equipment and document services, has particularly enhanced its MDS capabilities and resources. Ricoh certainly now has the product and service portfolio to encroach on the market share of its main competitors in the MPS market&#8212;Xerox and HP.</p>
<p>Ricoh should be careful not to complicate its MDS offering, moving beyond the fundamentals of MPS at a time where many organisations are just getting started. With any large outsourcing engagement, starting small and thinking big is crucial. Ricoh should not ignore the fact that many enterprises may be looking for less complex MPS projects that integrate easily with existing IT infrastructure and applications. These projects can, of course, be a first step to a wider and larger engagement.</p>
<p><strong>Unique differentiators?</strong><br />Ricoh claims two of its main differentiators are change management and vendor-agnostic infrastructure management. Ricoh&#8217;s global change management approach is based upon Prosci&#8217;s ADKAR&#174; change management methodology. Change management is certainly a critical component of any large MPS engagement, as replacing desktop printers with shared MFPs and implementing secure print solutions, for instance, necessitates changes in in printing, copying and faxing habits. However, Ricoh is far from alone in offering change management for MPS&#8212;this is also a key offering from other vendors, particularly Xerox and HP.&#160;</p>
<p>When it comes to multi-vendor management, Ricoh&#8217;s capabilities to manage devices, irrespective of brand, is not particularly unique as vendors such as Xerox, HP and Lexmark all do this to varying degrees. Certainly at the initial stages of any MPS engagement, this capability is necessary to ensure that devices are not unnecessarily swapped out, and third party devices can continue to be used, monitored and serviced where necessary. Naturally, most vendors are eventually looking to persuade their customers to standardise on their own equipment and a standardised environment is always going to be easier to manage and use from both an IT and end-user perspective.</p>
<p><strong>Challenges ahead</strong><br />Ricoh&#8217;s announcement to accelerate its global managed document services expansion comes at a time when its main competitors are prolific in the market. Quocirca believes that 2011 will be a critical year for Ricoh, and the breadth and depth of its portfolio is certainly strong enough to challenge Xerox at the top end of the market. Ricoh is squarely focusing its efforts on the CIO, many of whom do not have an insight into their escalating print costs. &#160;However, these CIOs will be familiar with outsourcing, and couching MPS in these terms can demonstrate how MPS can bringing the same benefits of economies of scale, access to expertise as well as reduced financial and environmental costs.</p>
<p>The key challenge remains for Ricoh&#8212;and all other MPS providers&#8212;to educate the CIO on the impact of operating an unmanaged print environment. While MDS certainly is a broader offering, it must start with a diligent assessment of the print environment. The basic premise not only behind MPS but of any investment&#8212;is being able to manage and measure usage and costs. Only then can the next step be taken to build innovation into broader engagements.</p><img src="http://www.it-director.com/plg/ty_article/pg_12543/dm_0/e2fb7ec0bc7576a4c3dba3b6f9e98c2f.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Louella Fernandes, Quocirca)</author>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <pubDate>Mon, 24 Jan 2011 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12543&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Web Accessibility Code of Practice</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12520&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/47/peter_abrahams.php?ref=fd_side_itd" title="View profile for Peter Abrahams"><img border="0" src="http://www.it-director.com/images/people/small/peter_abrahams.gif" width="40" height="50" alt="Peter Abrahams" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/47/peter_abrahams.php?ref=fd_side_itd" title="View profile for Peter Abrahams">Peter Abrahams</a>, <em>Practice Leader -  Accessibility and Usability</em>, Bloor Research<br/>Posted: 11th January 2011<br/>Copyright Bloor Research &copy; 2011</td><td><a href="http://www.it-director.com/about/company/1/bloor_research.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/bloor_research.gif" width="88" height="33" alt="Logo for Bloor Research" /></a></td></tr></table></div>

<p>In December 2010 the British standards Institute (BSi) published "Web accessibility - Code of practice (BS 8878:2010)" <a href="http://shop.bsigroup.com/en/ProductDetail/?pid=000000000030180388" rel="nofollow">http://shop.bsigroup.com/en/ProductDetail/?pid=000000000030180388</a>; this document is based on, and replaces, "PAS 78: Guide to good practices in commissioning accessible websites". It extends, updates and improves on its predecessor and is therefore essential reading for anyone intending to create or update a web product.</p>
<p>This new document, like its predecessor, concentrates on the processes, procedures and practices required to create an accessible web product; it does not discuss coding or technical issues but does provide references to relevant standards, guidelines and practices; so there is no conflict between this standard and the guidelines produced by the W3C Web Accessibility Initiative (WAI).</p>
<p>Jonathan Hassell, from the BBC, who lead the development of the standard says "Most web product managers know accessibility is important, but need a guide to the decisions they make during product development which can impact disabled and elderly users of the types of multi-platform, interaction-rich products they are creating. BS8878 is that guide, and encompasses the best advice and experience from many experts from all round the world on how to make products that include these people.".</p>
<p>Firstly it describes the policies and structures that an organisation needs to have in place to support accessibility.</p>
<p>Secondly it describes a series of steps required to create an accessible web product. The steps are summarised in the document as follows:</p>
<ul><li>Research  and understand the requirements for the web product;</li>
<li>Make  strategic choices based on that research;</li>
<li>Decide  whether to create or procure the web product in-house or contract  out externally;</li>
<li>Produce  the web product;</li>
<li>Evaluate  the web product;</li>
<li>Launch  the new product;</li>
<li>Post-launch  maintenance.</li>
</ul><p>The document describes the specific accessibility issues that should be considered at each step. At first sight this may look like a lot of new work but in reality nearly all of the steps are considered good practice for any web product development.</p>
<p>This is followed by an introduction to the existing guidelines for developing accessible web products as well as discussion of accessibility of non-browser interfaces and special consideration when developing for older users.</p>
<p>Finally there is a detailed section on "Assuring Accessibility throughout the web product's lifecycle", which identifies and discusses the various methods of accessibility validation.</p>
<p>Graeme Whippy, of Lloyds Banking Group, one of the authors of the standard, said "Lloyds Banking Group is committed to best practice in accessibility and sees significant business benefits in making our websites as accessible as possible".</p>
<p>The standard is about 90 pages long and the second half is made up of fifteen extremely useful annexes. These cover areas such as definitions, laws, standards, responsibilities, challenges, examples of web accessibility policies and statements, guides to testing and a comprehensive bibliography.</p>
<p>I have read the standard and found the information in it clear, concise, insightful and  pragmatic. It is laid out in such a way that it can be read in small chunks as required by different audiences and steps of a project. It provides all the parties involved in the creation of web products the information they need to understand the issues, decide how to proceed towards an accessible product and, importantly, how to deal with real world conflicts between ultimate accessibility and other market forces.</p>
<p>It provides a single source for accessibility best practice and information on the law and standards regarding accessibility.</p>
<p>The only criticism I have is that it does not discuss in sufficient detail the importance of ensuring that new content added to the web product after launch is accessible. It hints and implies that this is essential but does not highlight the issue.</p>
<p>Having seen the document, Gail Bradbrook of Fix the Web, an organisation set up to help people with disabilities report web accessibility issues and get them fixed, said "if every web product used the standard then we would not be needed and could close down; unfortunately that is not the case yet and we are very busy and need more volunteers (see <a href="http://www.fixtheweb.net/" rel="nofollow">http://www.fixtheweb.net )</a>."</p>
<p>To ensure the maximum benefit is obtained from the standard there is a need for a community to be built up around the standard that can add to and refine the standard based on new experiences, technologies and opportunities and I expect some organisation will step up provide the platform for this community.</p>
<p>The standard is an essential purchase for anyone creating web products, as it provides:</p>
<ul><li>Pre-digested  research into accessibility and best practice;</li>
<li>A  roadmap showing how to ensure accessibility is built into web  products;</li>
<li>A  template for recording the decisions made about accessibility which  will help to show good intentions if complaints are made.</li>
</ul><p>Its cost should be recouped within a few days of starting any significant web product development and it will continue paying dividends throughout the whole life-cycle. It should be used by all commissioners and developers of web products.</p><img src="http://www.it-director.com/plg/ty_article/pg_12520/dm_0/a5601ae659879597d0aab3e42a3895fa.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Peter Abrahams, Bloor Research)</author>
            <category>Business Issues-&gt;Compliance</category>
            <category>Business Issues-&gt;Innovation</category>
            <category>Business Issues-&gt;Regulation</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Channels-&gt;Online</category>
            <category>Enterprise</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Technology-&gt;Personal Productivity</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Tue, 11 Jan 2011 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12520&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Dave Shirk on how HP's Instant-On Enterprise takes aim at new demands on businesses, governments</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12427&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner"><img border="0" src="http://www.it-director.com/images/people/small/dana_gardner.gif" width="40" height="50" alt="Dana Gardner" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner">Dana Gardner</a>, <em>Principal Analyst</em>, Interarbor Solutions<br/>Posted: 23rd November 2010<br/>Copyright Interarbor Solutions &copy; 2010</td><td><a href="http://www.it-director.com/about/company/8862/interarbor_solutions.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/interarbor_solutions.gif" width="88" height="33" alt="Logo for Interarbor Solutions" /></a></td></tr></table></div>

<p>Three megatrends are shaping the next generation of successful businesses and governments. We're talking about pervasive <a href="http://en.wikipedia.org/wiki/Mobile_computing">mobile applications</a>, highly responsive <a href="http://en.wikipedia.org/wiki/Cloud_computing">cloud-computing</a> models, and knowledge-adept <a href="http://en.wikipedia.org/wiki/Social_computing">social collaboration</a>.<br /><br />Indeed, by the year 2020, <a href="http://en.wikipedia.org/wiki/The_Economist">The Economist</a> newspaper predicts there will be  two trillion devices connected to  the  Internet. And taking a look at  where we are right now, <a href="http://en.wikipedia.org/wiki/McKinsey_Quarterly">McKinsey Quarterly</a> reported in August that in  2010 some four billion people have cell   phones, and 450 million have  access to a full web experience.<br /><br />Moreover,   Jupiter Research reports that by 2014 there will be 130  million   enterprise users involved with mobile cloud activities. Not only  is   access pervasive, but the amount of information available is also    exploding. The Economist again reports that in 2005 mankind created 150   <a href="http://en.wikipedia.org/wiki/Exabytes">exabytes</a> of digital data &#8230; and in 2010 we will create fully eight times more  data.</p>
<p>These   changes are at a pace  they&#8217;ve never seen before as they address them   and try to drive these  into their business or government environments.<br /><br />As   these trends literally rearrange business ecosystems, a gap will    surely emerge between the companies that master change -- and exploit    enabling technologies -- and those that fall ever further behind.<br /><br />For   those that do step up to the challenge -- expect a relentless   emphasis  on rapidly recurring innovation to meet dynamic customer and   citizen  demands.<br /><br />Our latest BriefingsDirect podcast therefore  focuses on how these trends -- and rapidly evolving customer, citizen,  and user expectations -- are newly impacting the enterprise. We also  examine how technology advancements are making it possible  to drive  innovation to meet these new demands for instant gratification.<br /><br />Please join HP executive <a href="http://www.hp.com/hpinfo/newsroom/press/2010/100405a.html">Dave Shirk</a>, Senior Vice President of Worldwide Marketing at HP Enterprise Business, as we explore how <a href="http://en.wikipedia.org/wiki/HP">HP</a> is working to make headway, so that the next few years   bring about a  generational opportunity -- and not a downward complexity   spiral. The  discussion is moderated by <a href="http://www.briefingsdirect.com/">BriefingsDirect's </a><a href="http://friendfeed.com/danagardner">Dana Gardner</a>, Principal Analyst at <a href="http://www.interarbor-solutions.com/">Interarbor Solutions</a>.<br /><br />Here are some excerpts:</p>
<blockquote><strong>Shirk:</strong> We're seeing a lot of shift going on in the marketplace right now. When we look at where   consumers are driving  business or where citizens are driving   government, it's fundamentally  changing the way they operate. We've seen   three core things come out.<br /><br />The   business models are all starting to change the way in which people    approach markets across the globe. That's having to really rethink the    ways in which they've approached them versus traditional methods.<br /><br />The    second thing we see is this whole shift in mobile computing meeting    cloud computing and the enterprise trying to figure out exactly how to    take best advantage of that to create this competitive advantage.  Then,   the overall demographic piece weighs into that.<br /><br />We've seen the rise of the <a href="http://en.wikipedia.org/wiki/Millenials">millennials</a>,    as they're being referred to. All of these things are forcing  business   and government to stop and say, "You know what, if we're  going to grow   or we're going to create a service differentiation,  we're really going   to need to do things differently and we're going to  have to do it way   faster than we've ever done it before."<br /><br />According  to the Society for Engineers, you  now have over 800,000  graduates in  China, over 300,000 graduates in  India, 100,000 some in  Japan, etc.  It's over the last 10 to 12  years that each of those  graduation rates  has occurred. They are part of  the workforce now.<br /><br />When they went through that process, they  were always connected and they always were involved in a <a href="http://en.wikipedia.org/wiki/Social_network">social  network</a>-based   environment. They have a level of their lifestyle that is  all tied to   this always-connected environment. When you think about the   ubiquitous  computing that that has brought to them, as they enter the   workforce,  they are looking at things a lot differently than ever   before.<br /><br />They  bring new ideas. They bring new ways to that.   They're looking for  businesses that will support that kind of   methodology and structure. ... So, when we think about  that <a href="http://en.wikipedia.org/wiki/Gen_x">Gen X</a> group that's out there, we see them driving an enormous part of this change.<br /><br />The    last statistic I saw was that they are now over 50 percent of the    workforce. The analogy that's always used is that, to them, being    connected and always involved in some type of networking-based    collaboration or information sharing of some sort is about the same as    it is for you and me to pick up our remote controls and turn on our    television sets. That's already having a very profound effect on how    business and government are changing and the expectations that are out    there in the marketplace.<br /><br />It's this [demand for] immediate or   instant gratification: "If I can't get what I want  in the following  way,  I&#8217;ll find the business or government environment  where I can."  While the  government piece maybe a bit harder to change,  the business  piece isn't,  and so the competitive pressure to serve this  audience,  both as the  consumer and also as employees, is a big part of  that  shift.</blockquote>
<blockquote>We see technology as the cornerstone to being able to solve some of these trends and some of these challenges. <br /><br />We  call that <a href="http://www8.hp.com/us/en/solutions/article_detail.html?compURI=tcm:245-784458">the "Now Problem."</a> They want this, they want it done now, and  they want it to work a   certain way. We see technology as the  cornerstone to being able to   solve some of these trends and some of  these challenges.<br /><br />These  changes are at a  pace  they&#8217;ve never seen before as they address them  and try to drive  these  into their business or government environments.<br /><br />This is probably best represented in the words of <a href="http://en.wikipedia.org/wiki/Gary_Hamel">Professor Gary Hamel</a>, who is the foremost business visionary person out there in the marketplace. In his book, <a href="http://www.google.com/url?sa=t&amp;source=web&amp;cd=1&amp;sqi=2&amp;ved=0CBkQFjAA&amp;url=http%3A%2F%2Fwww.amazon.com%2FFuture-Management-Gary-Hamel%2Fdp%2F1422102505&amp;ei=M-nZTPOjCIS8sAOl76mLCA&amp;usg=AFQjCNHLOfEA2gQy11fwTBv37gE0RoJwyw">Future of Management</a>, he described it as "whiplash change."<br /><br />That's   very much the case when I speak with our clients both on the business   side and the government side. That's exactly what they're sitting there   and thinking and working through right now.<br /><br /><strong>Role of technology</strong><br /><br />We  look at the technology piece of [the change] and say that you really  can't [react] any other way --   the pace of it, the speed of it, and  some of the complexity associated   with it. For a long time, business has tried to use labor as an <a href="http://en.wikipedia.org/wiki/Arbitrage">arbitrage</a> to try to work their way through this and just throw bodies at it.    That's quickly dissipating. The speed and the connectedness that we see,    and the confidence level that all of these types of services require    make it no longer possible to go through that.<br /><br />What we see is IT  completely embedded in the business. Over the next couple of years,  that's going to   continue to be the trend and the strategy that will play  out in the way   in which business and government work this. Ultimately,  that's going   to be the differentiator that drives an ability not only to  serve  these  constituencies but to out-serve them, and that's going to  be the name  of the game.<br /><br />[The  solution] starts with a desire to change and to drive innovation in a    different way. We sit and we think about the fundamental change in  this.   We talked for years that the business was focused on <a href="http://en.wikipedia.org/wiki/Business_process">business processes</a> and <a href="http://en.wikipedia.org/wiki/Business_process_reengineering">business process reengineering</a>. While that&#8217;s still very important, it isn't going to go away any time soon.<br /><br />It's    becoming obvious that the bigger driver and the more significant  trend   is the information process, understanding the segments of  business or   government that need to be addressed. What their needs  are, what they   want, what they want to talk about, the ways in which  they want to   interact is all part of this change that&#8217;s taking place.<br /><br /><strong>Closing the gap</strong><br /><br />So,  as we start to pull back and step back from this, we look at that and  <a href="http://www8.hp.com/us/en/hp-news/article_detail.html?compURI=tcm:245-765566&amp;pageTitle">we look at this vision</a> that we have for the <a href="http://www.zdnet.com/blog/gardner/sensing-shift-in-business-priorities-hp-targets-instant-on-enterprise-as-new-tech-enabled-competitive-advantage/3898">Instant-On Enterprise</a> and  how we&#8217;re enabling end-users to become a part of that, how we&#8217;re    enabling businesses and governments to provide that type of  capability.   It really is about closing the gap between what IT can  provide and what   the business needs to be able to serve each of those  audiences.<br /><br />What we&#8217;ve launched with this   vision is to put the  foundations in place to make that possible and take   a journey with our  clients both from the business side and government   side and help them  move down that particular path, find ways to  navigate  these  challenges and these trends, and to out-serve and to  over-serve all the audiences that they need to meet the needs of.<br /><br />[This  change] is inevitable.  Different businesses and governments will have,  at  different times, one  of these four elements be more important or  more  significant to them at  different points. All of them share the   innovation requirement. We see  that in all things.<br /><br />Our view is  that the innovation has to take place throughout  that  information  process. It doesn&#8217;t matter whether it happens back at  the  data center  or at every touch point. Innovation has to take place   throughout for  the business to meet the needs of those segments I&#8217;ve   referred to  earlier -- how it services it, how it conducts itself, and   ultimately  how it meets our needs or exceeds the needs of the audiences.</blockquote>
<blockquote>Agility    really is about instant expectations, and can we turn things on  and    off, instead of just setting them up for a rainy day and hoping that     they will be used.</blockquote>
<blockquote>Agility, optimization, and risk all vary   in and out with innovation in terms of their need and their level of   importance.<br /><br />Agility  really is   about instant expectations, and can we turn things on and  off, instead   of just setting them up for a rainy day and hoping that  they will be   used. A big part of technology&#8217;s trouble in the past was  that we created   all of these things and we never had a plan for ending  their lifecycle   or turning them down slightly, so that we could turn  up other  activities  or other possibilities in an instant-on  environment and an  instant-on  enterprise. A core part of the vision  that we see is being  able to drive  that agility to meet those changing  business needs.<br /><br />When HP looks at the Instant-On Enterprise, the  enablement of that is   really a journey, and we&#8217;ve got to figure out  what pieces make the most   sense. There are some things that are much  easier to focus on first and   then, over time, to gain more and more of  an Instant-On nature.<br /><br /><strong>Critical success factors</strong><br /><br />Flexibility,  security, speed, automation, and insight,   those absolutely are  attributes that we look for. We see them as the   critical success  factors in the way in which every part of the   environment that IT  leverages, drives, and embeds in the business has to   come forward.<br /><br />And  yet, everybody is stuck in   this mode of an enormous legacy that they  have to deal with, and that   gets in the way of being able to provide  some of these new capabilities.<br /><br />We&#8217;ve  spent  a lot of time and  gotten a lot of expertise over the years trying  to  figure out the best  ways to address these albatrosses  that  are keeping IT from being able  to deal with the needs of the  business.  In the Instant-On Enterprise  journey, that's a big part of  the set of  steps that we have to work  through and work with our clients  to make  sure that they understand  where to prioritize.</blockquote>
<blockquote>In    the first few months that I have been here, one of the things that     I've learned is that HP, as a company, has this incredible breath and     depth of portfolio.<br /><br />Our   view is that we work with our  clients and figure out ways that they can,   as we say, shift that  equation. How do you shift from 70 percent of   that equation being  focused on operational management, and 30 percent,   if you are lucky,  being spent on new and innovation-based capabilities   to help or assist  the business and its growth versus shifting it the   other way? How do  you get to 30 percent operational mode, and move   forward with 70  percent focused on the business?<br /><br /><strong>Changing business models</strong><br /><br />When    I spend time with clients and listen to them, a big part of what    they're asking for is, "We&#8217;ve got these pressures. We're seeing the    business models change and we're experimenting with some things. We're    seeing the mobile and the cloud computing pieces coming at us like a    freight train. At the same time, we're seeing the demographic shift both    on the end-user consumer side and on our employee side. We need    strategic partners to help us with this. How do we navigate this? What    is the way in which we should do that? HP, do you have a point of  view?"<br /><br />We're in a unique  position, because we're the only  company in the  marketplace that has a  full suite of consumer products,  and yet we  stretch all the way back  through to the <a href="http://en.wikipedia.org/wiki/Datacenter">data center</a>.    All the capability, all the offerings, that are in between, all the    services that are necessary to address each of those pieces, are    contained inside the portfolio capability that HP has of hardware,    software, and services.<br /><br />We looked at this and said, "How   do we  take the best combination of that breadth of portfolio and bring   those  together in a set of solutions to best address what we are hearing    over-and-over from some of the research that we&#8217;ve done and listening    that we&#8217;ve done with our clients?"<br /><br />They need to figure out how   to  modernize their applications. We want to make sure that we are there    and we&#8217;ve got a set of solutions for that. They&#8217;ve got huge   data-center  issues in terms of how they're going to transform their   data centers and  deal with more virtualization-based techniques and   capabilities and  bring networking and storage and compute power   together in some fashion.<br /><br />They&#8217;ve  got this issue of enterprise   security. They need to figure out how to  secure the enterprise. I don&#8217;t   mean desktops, but all points, all touch  points of the enterprise --   how they build applications, how this  information is accessed inside   and outside of the organization, and then  fundamentally optimizing that   information, the ways in which you store  it, the way in which you   deliver it, the way in which you print it for  that matter, all those   pieces.</blockquote>
<blockquote>Hybrid    delivery for us is our answer to the multiple ways in which a    customer  or client has to go through the process of building or    delivering on  these various technology services to their enterprise or    their  government. <br /><br />Then, they need to underpin that by the   best way  to figure out how to deliver it. Do we do it for them? Do  they  build it  themselves with our architecture, and our capability  set, and  our  consulting expertise? What combination of ways makes the  most  sense to  set that up?<br /><br />... We help our   clients work their  way through that with a series of workshops that we   do to get in and  investigate. We ask a series of questions, do a series   of  exploratory-based activities that help prioritize where we think the    quickest return on investment is, because all these require some level    of return to feed the next one and then the next one.<br /><br /><a href="http://briefingsdirectblog.blogspot.com/2010/06/new-hp-products-take-aim-at-managing.html">Hybrid delivery</a> for us is our  answer to the multiple ways in which a customer or   client has to go  through the process of building or delivering on these   various  technology services to their enterprise or their government.<br /><br />There&#8217;s    an enormous amount of talk about cloud in the marketplace today. HP   has  been at the forefront of that, but we have a little different   position.  We think it&#8217;s unique and we think we're the only ones out   there that  are really positioned to do this, which is the concept of   hybrid IT,  where you&#8217;ve got a mix. You&#8217;ve got a mix of traditional    on-premises-based capabilities, but then you figure out what private    cloud or public cloud-based capabilities best serve your business on a    global basis.<br /><br />HP comes in and, unlike other companies that try  to   force you into a one-size-fits-all structure, we sit down with the    client. Our unique IP in this area is that we have an incredible depth    of intellectual capital in this particular area, which is helping the    clients figure out the best balance or mix of the delivery methods.<br /><br />We    can help them build it. They can host it or we can host it for them.   We  can provide those services from our public cloud-based capabilities   or  from our private cloud based capabilities. We really don&#8217;t care,  if  that  blend changes over time. That&#8217;s the beauty to the journey to  this   Instant-On Enterprise.<br /><br /><strong>Starting small</strong><br /><br />Our  data says that most customers still start with a <a href="http://briefingsdirectblog.blogspot.com/2010/09/hp-beefs-up-business-service-automation.html">small private cloud  implementation</a> to really understand the value of the cloud and demystify  it. We&#8217;ve   said that there is going to be something after cloud. We  don&#8217;t know   what that level or that style of computing is going to be,  but our   architecture is built such that we&#8217;ll be ready for that. For our    clients, we&#8217;ll help navigate them through each of these pieces, and    that&#8217;s the important thing for us.<br /><br />We have our new <a href="http://www8.hp.com/us/en/solutions/solutions-detail.html?compURI=tcm:245-785689">HP Hybrid Delivery Strategy Service</a>,    which is a place for a client to start, get a basic orientation, sit    down and understand kind of where we think they might consider  beginning   that journey. So that, along with a number of other  capabilities that   we have to help them through these various  workshops, I think is really   the best place for them to start.<br /><br />There  are a whole series of workshops globally that our teams are set up   to  do, everything from a small couple-of-hour based interaction to a    full suite of in-depth analysis and consulting engagements to work with a    client. ... We ask a series of  questions, do a series  of  exploratory-based activities that help  prioritize where we think the   quickest return on investment is, because  all these require some level   of return to feed the next one and then  the next one.</blockquote>
<p><a href="http://traffic.libsyn.com/interarbor/BriefingsDirect-HP_Instant-On_Enterprise_Initiative_With_Dave_Shirk.mp3">Listen</a> to <a href="http://www.briefingsdirect.com/hp-s-instant-on-enterprise-initiative-takes-aim-at-shifting-needs-of-business-and-government">the podcast</a>. Find         it on <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=85270006&amp;s=143441">iTunes/iPod</a> and <a href="http://podcast.com/show/3374/">Podcast.com</a>. Read <a href="http://briefingsdirect.blogspot.com/2010/11/hps-instant-on-enterprise-initiative.html">a full transcript</a> or <a href="http://interarborsolutions.books.officelive.com/Documents/11042010HPTSGSHIRKNEW.pdf">download</a> a copy. Learn <a href="http://h10124.www1.hp.com/campaigns/enterprise/instant-on/us/en/overview.html">more</a>. Sponsor: <a href="http://en.wikipedia.org/wiki/HP">HP</a>.<br /><br />You may also be interested in:</p>
<ul><li><a href="http://briefingsdirect.blogspot.com/2010/06/hp-csa-aids-total-visibility-into.html">Shoemaker on how HP CSA Aids Total Visibility in Services Management Lifecycle for Cloud Computing</a></li>
<li><a href="http://briefingsdirectblog.blogspot.com/2010/09/hp-beefs-up-business-service-automation.html">HP Business Service Automation portfolio gives IT the tools it needs to compete with clouds</a></li>
<li><a href="http://briefingsdirectblog.blogspot.com/2010/08/hp-eyes-automated-apps-deployment.html">HP eyes automated apps deployment, 'standardized' private cloud creation with integrated CloudStart package</a></li>
<li><a href="http://briefingsdirectblog.blogspot.com/2009/06/hp-adds-new-consulting-services-to.html">HP adds new consulting services to smooth the enterprise path to cloud adoption</a></li>
</ul><img src="http://www.it-director.com/plg/ty_article/pg_12427/dm_0/3dd885a5fd10df8eeaddbcdf7f6357fd.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Dana Gardner, Interarbor Solutions)</author>
            <category>Business Issues-&gt;Change</category>
            <category>Business Issues-&gt;Costs</category>
            <category>Business Issues-&gt;Innovation</category>
            <category>Business Issues-&gt;Regulation</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Channels-&gt;Distribution</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Resellers</category>
            <category>Channels-&gt;Retail</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise</category>
            <category>Services-&gt;BPO</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <category>SME</category>
            <category>Technology</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Data management</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Technology-&gt;Mobile</category>
            <category>Technology-&gt;Security</category>
            <category>Technology-&gt;Storage</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Tue, 23 Nov 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12427&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>DB2 10 for z/OS is launched - Am I bothered?</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12421&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/15356/julian_stuhler.php?ref=fd_side_itd" title="View profile for Julian Stuhler"><img border="0" src="http://www.it-director.com/images/people/small/julian_stuhler.gif" width="40" height="50" alt="Julian Stuhler" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/15356/julian_stuhler.php?ref=fd_side_itd" title="View profile for Julian Stuhler">Julian Stuhler</a>, <em>Director</em>, Triton Consulting Ltd<br/>Posted: 22nd November 2010<br/>Copyright Triton Consulting Ltd &copy; 2010</td></tr></table></div>

<p>Yes, and not just because I&#8217;m a database techie who is interested in new technology!&#160; This release of DB2 for z/OS should make IT executives sit up and listen when their technical teams start coming to them with their upgrade justifications and this is why....&#160;</p>
<p>At the end of October 2010 IBM launched the latest version of its flagship database product &#8211; DB2 10 for z/OS.&#160; A lot of work went into publicising the launch, and I was asked to present at the launch webcast which ended up attracting over 1300 registrations &#8211; a record attendance for an IBM software product launch.</p>
<p>Having been involved in the early beta testing and in my consultancy role working with large DB2 for z/OS users, I&#8217;ve been able to really get to grips with some of the great new technical features.&#160; However, as innovative as these may be the bottom line is.....well....what difference is it going to make to the bottom line?&#160; The business benefits of DB2 10 are what really matter to IT executives. Even in the most favourable economic climate, businesses need to control costs and increase efficiency in order to improve profits.&#160; In today&#8217;s more challenging business environment this has become a key factor for the survival and success of enterprises of all sizes.</p>
<p>I&#8217;m pleased to report that DB2 10 delivers significant &#8220;out of the box&#8221; benefits that many customers will be able to exploit with little or no additional effort.&#160; These include the most aggressive performance and CPU improvements of any DB2 release in the last 20 years, scalability enhancements to support ever-increasing workloads and productivity improvements to allow DB2 developers and support staff to respond more rapidly to the demands of the business.</p>
<p>Collectively, these features deliver real and quantifiable business benefit and I believe that customers will be considering upgrading to DB2 10 much more quickly than they may have done for previous releases.</p>
<p>DB2 10 delivers a number of significant business benefits, many of which require little or no database, application or system changes.&#160; These can be summarised as follows:&#160;</p>
<ul><li>CPU Reductions &#8211; DB2 includes a raft of enhancements aimed at improving application performance and reducing CPU usage.&#160; Most customers can expect to see net CPU savings of 5-10% in their traditional DB2 workload when compared to DB2 9, without any application changes being required.&#160; Significant additional savings are possible for other specific workloads and with some application changes.</li>
<li>Scalability Improvements &#8211; DB2 10 delivers a spectacular increase in the number of threads that can be supported by a single subsystem &#8211; most customers will be able to achieve 5-10 times the number of concurrent connections compared to DB2 9.&#160; This will allow many customers to reduce the number of DB2 members needed to support their workloads, resulting in net CPU and memory savings and improving application performance.</li>
<li>Productivity Enhancements &#8211; New features such as temporal tables, automated statistics and improved dynamic schema change reduce the effort required by developers and support staff to deliver robust DB2 applications.</li>
</ul><p>This version of DB2 also supports &#8221;skip migration&#8221;, which means that those currently running the much older DB2 version 8 product can migrate directly to version 10.&#160; Version 8 officially goes out of support on April 30th 2012, which gives version 8 users just 17 months to justify, plan and implement their next migration (this process can take 12-18 months for large DB2 sites).&#160;</p>
<p>As with any migration project it&#8217;s worth making sure you <a href="http://www.triton.co.uk/migration-update-support/">get some good advice</a> on the pros and cons and go in to the migration project with your eyes open.&#160; Don&#8217;t underestimate the effort involved in a skip migration, or the &#8220;culture shock&#8221; for developers and support staff asked to take on two releases worth of new function in a single, large, indigestible lump. That being said, with most customers being on usage based pricing the lure of CPU reduction makes a migration to DB2 10 highly appealing.&#160; Those customers that do decide to make the leap directly from Version 8 to Version 10 will benefit from the cumulative CPU reduction of both V9 and V10 in one hit.</p>
<p>With so many compelling business benefits, many customers are taking a much more aggressive approach to migrating to the new version. If you&#8217;re a DB2 site and haven&#8217;t made plans yet, be prepared for your technical staff to approach you with some pretty convincing arguments sooner rather than later.</p>
<p>See what the beta customers think <a href="http://www-01.ibm.com/software/data/db2/zos/testimonials.html">http://www-01.ibm.com/software/data/db2/zos/testimonials.html</a></p>
<p><a href="https://www14.software.ibm.com/webapp/iwm/web/signup.do?source=sw-infomgt&amp;S_PKG=wp-z-db2-smarter">Read the DB2 10 business benefits white paper </a></p><img src="http://www.it-director.com/plg/ty_article/pg_12421/dm_0/b001e4eaf32fc36834e3cd10f2860d3a.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Julian Stuhler, Triton Consulting Ltd)</author>
            <category>Business Issues</category>
            <category>Enterprise</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Services-&gt;Consulting</category>
            <category>Technology</category>
            <category>Technology-&gt;Data management</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Mon, 22 Nov 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12421&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Why HTML5 enables more businesses to deliver more apps to more mobile devices with greater ease</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12414&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner"><img border="0" src="http://www.it-director.com/images/people/small/dana_gardner.gif" width="40" height="50" alt="Dana Gardner" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner">Dana Gardner</a>, <em>Principal Analyst</em>, Interarbor Solutions<br/>Posted: 17th November 2010<br/>Copyright Interarbor Solutions &copy; 2010</td><td><a href="http://www.it-director.com/about/company/8862/interarbor_solutions.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/interarbor_solutions.gif" width="88" height="33" alt="Logo for Interarbor Solutions" /></a></td></tr></table></div>

<p>The rapidly changing and fast-growing opportunity for more businesses to reach their customers and deliver their services via <a href="http://en.wikipedia.org/wiki/Mobile_application">mobile applications</a> is at a crossroads.<br /><br /> Over just the past two years, the <a href="http://asia.cnet.com/crave/2010/03/18/demand-for-mobile-applications-to-explode-by-2012/">demand for mobile applications</a> on more capable classes of devices, such as <a href="http://en.wikipedia.org/wiki/Smartphone">smartphones</a> and <a href="http://en.wikipedia.org/wiki/Tablet_computer">tablets</a>, has <a href="http://www.bloomberg.com/news/2010-11-16/morgan-stanley-s-net-queen-meeker-back-in-demand-picks-mobile-web-stars.html">skyrocketed</a>. Now businesses need to figure out how they can get into the action.<br /><br /><a href="http://en.wikipedia.org/wiki/Small_and_medium_enterprises">Small and medium-size businesses (SMBs)</a> especially need to reevaluate their <a href="http://briefingsdirectblog.blogspot.com/2010/06/analysts-probe-future-of-client.html">application development and end-user access strategies</a> to be able to deliver low-cost yet impactful applications to these newer devices. This goes for reaching employees, as well as partners, users, and customers.<br /><br /> Hopefully, there's a shift in the skills required to put these applications on these devices and distribute them. The emphasis on capabilities is moving from hardcore coders -- with mastery of embedded platforms and tools -- to more <a href="http://genuitec.com/mobile/">mainstream graphical and scripting-skilled workers</a>, more power-users than developers.<br /><br /> This sponsored podcast explores how <a href="http://www.prweb.com/releases/2010/11/prweb4791484.htm">mobile application development</a> and the market opportunity are shifting, and how more businesses can <a href="http://www.prweb.com/releases/2010/11/prweb4791484.htm">quickly get into the mobile applications game</a> and build out new revenue, share more data, and provide better direct customer access in the process.<br /><br /> Our panel consists of <a href="http://blog.nielsen.com/nielsenwire/tag/roger-entner/">Roger Entner</a>, Senior Vice President and Head of Research and Insights in the Telecom Practice at the <a href="http://en-us.nielsen.com/">Nielsen Co.</a>, and <a href="http://www.genuitec.com/about/leadership.html">Wayne Parrott</a>, Vice President for Product Development at <a href="http://www.genuitec.com/">Genuitec</a>. The discussion is moderated by <a href="http://www.briefingsdirect.com/">BriefingsDirect's</a> <a href="http://friendfeed.com/danagardner">Dana Gardner</a>, Principal Analyst at <a href="http://www.interarbor-solutions.com/">Interarbor Solutions</a>.<br /><br /> Here are some excerpts:</p>
<blockquote>
<p><strong>Entne</strong><strong>r:</strong> About 50 percent of all devices being sold in the US right now are smartphones. We expect smartphone penetration to be at about 50 percent by the end of next year. Almost 60 percent of smartphone owners are actually using applications. That&#8217;s a huge percentage.<br /><br /> We're now at that sweet spot where it makes a lot of sense for businesses to have applications both for their consumers and their employees alike, because there is enough of an addressable base there.<br /><br /> We just launched our second edition of our <a href="http://blog.nielsen.com/nielsenwire/consumer/nielsen%C3%A2%C2%80%C2%99s-new-app-playbook-debunks-mobile-app-store-myth/">Mobile Apps Playbook</a>. But to quote numbers from there, year-over-year second quarter '09 to second quarter '10, smartphone penetration in the US went from 16 percent to 25 percent.<br /><br /> Now, we have 3- and 4-inch screens that are actually readable. We're not just merely replicating a desktop experience, but actually tailoring it to the device and working with the strengths of the device rather than with the weaknesses.<br /><br /> The devices that we call now smartphones are little computers that today are as powerful as laptops a few years ago. I always say that this little thing you have in your hands, a smartphone, has far more computing power than was used by <a href="http://en.wikipedia.org/wiki/NASA">NASA</a> to put men safely on the moon and bring them back alive.<br /><br /><strong>Applications becoming easier</strong><br /><br /> And now Apple, Google, Microsoft, and the others, have <a href="http://en.wikipedia.org/wiki/SDK">software development kits (SDKs)</a> out there that make app development a lot easier than it has ever been.<br /><br /> If you have a talented developer or a talented person in your department, he might be able to build that internally. Or, there are now myriad development shops out there that have the capabilities to build applications and charge only a few thousand dollars -- and that's single digit thousand dollars -- to have a capable, usable application.<br /><br /> There are a lot more people who know how to program these things, and have good ideas of applications. There is a really good market out there to put the two together.<br /><br /> P<strong>arrott:</strong> We&#8217;re seeing a big move toward interest in mobile at the development side. What are the factors that&#8217;s really led to the explosion of mobile apps? It's not only the smartphones and their capabilities, but we also look at the social changes in terms of <a href="http://online-behavior.com/analytics/mobile-marketing-1119">behavior</a>.<br /><br /> People more and more have a higher reliance on their smartphone and how they run their lives, whether they are at work or on the move. The idea is that they are <a href="http://www.zdnet.com/blog/gardner/sensing-shift-in-business-priorities-hp-targets-instant-on-enterprise-as-new-tech-enabled-competitive-advantage/3898">always connected</a>. They can always get to the data that they need.<br /><br /> Basically, we're taking their lifestyle away from their desktop and putting it in their pocket as they move around. More and more, we see companies wanting to reach out and provide a mobile presence for their own workforce and for their customers.<br /><br /> The question they ask is, "How do we do that? We already have a web presence. People have learned about our brand, but they can't access this through their smartphones, or the experience is inferior to what they&#8217;ve come to expect on the smartphone."<br /><br /> We're seeing a big growth of interest in terms of just getting on to the mobile -- having a mobile presence for the SMBs.<br /><br /><strong>Still a great deal of complexity<br /><br /></strong>If you take a look at the current state of native mobile app development, it's really not much better than it was five years ago. You still see a strong fragmented programming model base, different operating systems, and different hardware capability. It's still a mess. You pretty much have to pick a subset of devices that you want to focus on.<br /><br /><strong>Entner:</strong> If we take one little step back, one of the genius things that Apple has done is turn the bookmarks into an application. About 60-70 percent of all applications on the iPhone or an Android are actually glorified HTML ports. So, it's not that difficult or that demanding on the application side.<br /><br /><a href="http://briefingsdirectblog.blogspot.com/2010/06/analysts-probe-future-of-client.html">One new trend is HTML5</a>, which is slowly <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/">but surely approaching</a>. There has been <a href="http://dev.w3.org/html5/spec/Overview.html">no finalized HTML5 standard</a> [from the <a href="http://www.w3.org/">W3C</a>], but a lot of web browsers, and even mobile web browsers, have now some HTML5 capabilities. And, it will really help in the development cycle for basic applications.<br /><br /> Where HTML5 will not to be able to help us, at least right now, is when we try to take advantage of <a href="http://www.pewinternet.org/Reports/2010/Location-based-services.aspx">location-based services</a> because there is no standard yet. They're still arguing about this one, and especially high performance graphics. But, on the standard application, HTML5 will take us miles forward and diminish the difference between the desktop and the mobile environment.<br /><br /> ... At the same time, all of the SDKs are getting more powerful and more user-friendly. So, it's moving toward a more harmonized and more rapid development environment.<br /><br /><strong>Parrott:</strong> Prior to HTML5 talking about mobile web was pretty much a joke. Mobile web was an afterthought in the phone market. You had these small, dinky displays. Most of them couldn't even render most standard HTML. What's new? 			<br /><br /> You still see a strong fragmented programming model base, different operating systems, and different hardware capability. It's still a mess. With the advent of the smartphone what you really saw was pretty much the Internet, as you experience it on your desktop, now on to your smartphone, but with even more capability.<br /><br /> Part of it is because HTML5 has stepped back and looked at what the future needed to be for a web programming model. To become more of a common run-time, they had to address some of the key gaps between native hardware, <a href="http://en.wikipedia.org/wiki/API">APIs</a>, and web. Much of those have really centered on one of the biggest digs that mobile web had in the old days, when you were doing something, were connected, and then you lost your connectivity.<br /><br /><strong>Out of the box</strong><br /><br /><a href="http://net.tutsplus.com/tutorials/html-css-techniques/25-html5-features-tips-and-techniques-you-must-know/">HTML5, right out of the box</a>, has a specification for how to operate in an online, offline, or disconnected type mode. Another thing was a rendering model, beyond just what you see on your desktop, that actually provides a high-end graphics type capability -- 2D, 3D types of programming. These are things that more advanced programs can take advantage of, but you can build very rich desktop type of experiences on the laptop.<br /><br /> Then, they went beyond what you're used to seeing on your desktop and took advantage of some of the sensors that these phones have now -- <a href="http://en.wikipedia.org/wiki/Accelerometer">accelerometers</a>, location capability, or <a href="http://en.wikipedia.org/wiki/Geolocation">geolocation</a>. APIs are <a href="http://www.html5rocks.com/">now emerging as a companion to HTML5</a>, which is a spec that will span across your desktop to the mobile phone. It's a very capable specification.<br /><br /> In addition, there is the movement in terms of the standards body, especially the <a href="http://en.wikipedia.org/wiki/W3c">W3C</a>, to address mobile device API. You will eventually program in a standard way and talk to your contacts list, your cameras, video, recording devices, and things like that. That will soon be available to us in a web programming model.<br /><br /> What used to be exclusively the demand of the hardware API guys to do really low level, high performance bit twiddling is now going to be available to the general web programming masses. That opens up the future for a lot more innovation than what we&#8217;ve seen in past.<br /><br /> There is enough HTML5 core already emerging that we could start to program to a subset of that spec and treat it as kind of a common run-time that you would program across pretty much all of the new emerging smartphones as we look forward.<br /><br /><strong>Entner:</strong> It's only a matter of when ... HTML5 will come. Apple and Google are at the forefront and are already launching websites and services in it. You can get HTML5 YouTube, HTML5 Google, and even Yahoo mail access. You can have the Apple website in HTML5. It just depends on what is fully supported right now.<br /><br /> Some browsers support it, and some don't yet. On the mobile side, it also fully depends on what is supported. If you have the <a href="http://webkit.org/">WebKit</a> engine at the core of the browser that your device is using, HTML5 is pretty widely supported.<br /><br /><strong>Parrott:</strong> As we've talked to more-and-more of our SMBs, one thing that stands out is that they don't have a lot of resources. They don't have a huge web department. Their personnel wear a number of hats. Web development is just one of n things that one of the individuals may do in one of these organizations.<br /><br /> At Genuitec, we developed <a href="http://www.genuitec.com/mobile/">a product called MobiOne Studio</a>. The target user is anyone who has an idea or an vision for a mobile web application or website. MobiOne is geared to provide a whole new intuitive type of experience, in which you just draw what you want. If you can develop PowerPoint presentations, you can create a mobile web application using MobiOne.<br /><br /> You lay out your screens, you pane them all up, and then you wire them together with different types of transitions. From there, you can then immediately generate mobile web code and begin to test it either in the MobiOne test environment, that's an emulated type of HTML5 environment, or you can immediately deploy it through MobiOne to your phone and test it directly on a real device. 			<br /><br /> If you can develop PowerPoint presentations, you can create a mobile web application using MobiOne.<br /><br /><a href="http://www.prweb.com/releases/2010/11/prweb4791484.htm">With MobiOne Studio</a> we recognized that the first thing that most companies want to do is just mobilize, just get a mobile presence, mobilize their websites, and have that capability. As Roger said a while ago, a lot of the apps you see out there are really glorified mobile websites and are packaged up in a binary format.<br /><br /><strong>Second Studio phase</strong><br /><br /> In MobiOne Studio's second phase, once you design and you like what you have, you have a progressive step that you can go from a very portable form to compile it down -- or cross-compile -- from HTML5 to whatever the native requirements are of that particular target app store. So, Google will have their app store, and Apple and <a href="http://www.rim.com/">RIM</a> each has their own model. They are all fairly different models.<br /><br /> But with HTML5, you can <a href="http://www.poynter.org/column.asp?id=134&amp;aid=194144">go directly to your customers</a> now. You can market to them directly. It depends on your way of interacting with your customers, but we have seen a number of novel approaches already from some of our customers. When any customer is in your store, you make it very easy for them to access your site, to make them aware of your mobile capabilities, lure them in, and get them connected that way.</p>
</blockquote>
<p><a href="http://traffic.libsyn.com/interarbor/BriefingsDirect-HTML5_Enables_More_Businesses_to_Deliver_More_Apps_to_More_Mobile_Devices.mp3">Listen</a> to <a href="http://www.briefingsdirect.com/why-html5-enables-more-businesses-to-deliver-more-apps-to-more-mobile-devices-with-greater-ease">the podcast</a>. Find it on <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=85270006&amp;s=143441">iTunes/iPod</a> and <a href="http://podcast.com/show/3374/">Podcast.com</a>. Read <a href="http://briefingsdirect.blogspot.com/2010/11/why-html5-enables-more-businesses-to.html">a full transcript</a> or <a href="http://interarborsolutions.books.officelive.com/Documents/10142010MobiOne.pdf">download</a> a copy. Sponsor: <a href="http://www.genuitec.com/">Genuitec</a>. Learn <a href="http://genuitec.com/mobile/">more</a>.<br /><br /> You may also be interested in:</p>
<ul><li> <a href="http://briefingsdirect.blogspot.com/2009/05/rise-of-webkit-advances-mobile-webs.html">Rise of WebKit Advances Mobile Web's Role, Opens Huge Opportunity for Enterprise Developers on Devices</a> </li>
<li> <a href="http://briefingsdirectblog.blogspot.com/2008/05/genuitec-marks-progress-with-two.html">Genuitec Marks Progress with Two Milestone Releases of MyEclipse 6.5 Products</a> </li>
<li> <a href="http://briefingsdirectblog.blogspot.com/2008/09/genuitec-expands-pulse-provisioning.html">Genuitec Expands Pulse Provisioning System Beyond Tools to Eclipse Distros, Eyes Larger Software Management Role</a> </li>
</ul><img src="http://www.it-director.com/plg/ty_article/pg_12414/dm_0/aff49c3aa6de82403c062cda0d931787.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Dana Gardner, Interarbor Solutions)</author>
            <category>Business Issues-&gt;Change</category>
            <category>Business Issues-&gt;Costs</category>
            <category>Business Issues-&gt;Employment</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Channels-&gt;ISV</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Resellers</category>
            <category>Channels-&gt;Retail</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <category>SME</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Mobile</category>
            <category>Technology-&gt;Personal Productivity</category>
            <pubDate>Wed, 17 Nov 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12414&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Architecture is destiny: Why the revolution in business apps can't work on conventional stacks</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12408&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner"><img border="0" src="http://www.it-director.com/images/people/small/dana_gardner.gif" width="40" height="50" alt="Dana Gardner" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner">Dana Gardner</a>, <em>Principal Analyst</em>, Interarbor Solutions<br/>Posted: 11th November 2010<br/>Copyright Interarbor Solutions &copy; 2010</td><td><a href="http://www.it-director.com/about/company/8862/interarbor_solutions.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/interarbor_solutions.gif" width="88" height="33" alt="Logo for Interarbor Solutions" /></a></td></tr></table></div>

<p>
How do IT architectures at software-as-a-service (SaaS) providers provide significant advantages over traditional enterprise IT architectures?
</p>
<p>
We answer that "Architecture is Destiny" question by looking at how one human resources management (HRM), financial management and payroll SaaS provider, <a href="http://www.workday.com/">Workday</a>, has from the very beginning moved beyond relational databases and distributed architectures   that date to the mid-1990s.
</p>
<p>
Instead,
Workday has designed its  architecture to provide secure  transactions,
wider integrations, and  deep analysis off of the same optimized data  
source&#8212;all to better serve  business  needs. The advantages of these 
modern services-based architecture can
be passed on to the end users&#8212;and across the ecosystem of business
process partners&#8212;at significantly lower cost than conventional  
IT.
</p>
<p>
Joining us here is a technology executive from Workday, <a href="http://www.workday.com/company/leadership_team/petros_dermetzis.php">Petros Dermetzis</a>,
Vice President of Development  there, to  explore how  architecting 
properly provides the means to adapt and extend  how  businesses need to operate, and not be limited by how  IT has to operate. The discussion is moderated by BriefingsDirect's Dana Gardner, Principal Analyst at Interarbor Solutions.
</p>
<p>
Here are some excerpts:
</p>
<p>
<strong>D</strong><strong>ermetzis:</strong> We   have a unique opportunity to stand back and see what history and   evolution provided over the past 20 years
and say, "Okay, how can we   provide one technology stack that starts 
addressing all those individual   problems that started appearing over 
time?"
</p>
<p>
If you think of the majority of the systems  out there, 
the way we  describe them is that they were built from the  ground up as
islands. It  was really very data-centric. The whole idea  was that the
enterprise resource planning (ERP) system  gave all the solutions, which in reality isn't  true.
</p>
<p>
What
we tried to do at  Workday was start from a completely white sheet of  
paper. The reality  around ERP systems is actually making all this work 
together. You want  your transactions, you want your validations, you  
want to secure your  data, and at the same time you want access to that 
data and to be able  to analyze it. So, that&#8217;s the problem we set out 
to  do.
</p>
<p>
What  drove our technology architecture was first, we 
have a  very simple  mentality. You have a central system that stores  
transactions, and you  make sure that it's safe, secure, encrypted, and 
all these great words.  At the same time, we appreciate that systems, 
as  well as humans,  interact with this central transactional system. So
we  treat them not as  an afterthought, but as equal citizens.
</p>
<p>
If you go back in time to when mainframes
started appearing, it was about transactions, capturing transactions,
and safeguarding those transactions. IT was the center of the 
universe   and they called the shots. As it evolved over time, IT began 
to realize   that departments wanted their own solutions. They try to 
extract the   data and take them into areas, such as spreadsheets and 
what have you,   for further analysis.
</p>
<p>
ERP
solutions evolved over time and started adding technology solutions as 
problems occurred. They started with a   need to report data and very 
quickly realized it was like climbing a   ladder of hierarchic needs. 
When you get your basic reporting right, you   need to start analyzing 
data.
</p>
<p>
The technologies at the time,   around the relational 
models, don&#8217;t actually address that very well.   Then, you find other 
industries, like business intelligence (BI) vendors, appeared who tried to solve those problems.
</p>
<p>
The
way things evolved, you started with an application, and   integrations
were an afterthought; they got bolted on. ... They kept on adding more 
and more and more layers of vendors, and  the  more the poor enterprise 
IT customers are trying to peel it, the more  they start  crying&#8212;crying in terms of maintenance and maintenance  dollars.
</p>
<p>
<strong>Old approach won't scale</strong><br />
Right
now, the state of the art is hard-wiring most of these central  
solutions  to these third-party solutions, and that basically doesn't  
scale.  That&#8217;s where technology kicks in and you have to adopt new open 
standard  and web services standards.
</p>
<p>
What  we try to do at Workday is understand holistically what the current  problems are today,
and say, "This is a golden opportunity." This is  opposed to finding  
all existing technologies, cobbling them all together, and  trying to  
solve the problems exactly the same way.
</p>
<p>
If
you're  managing any system with HRM systems, you need to  communicate 
with  other systems, be it for background checks, for  providing 
information  to benefit providers, connecting to third-party  payrolls, 
or what have  you.
</p>
<p>
Obviously, [traditional ERP vendors] were 
solving the problem incrementally, as they were going along.   What we 
tried to do was address it all in the same place. Where we are   right 
now is what I would describe as very business transaction-centric
in what I define as legacy applications. Then, we want to take it 
more   to an area which is business interactions, and interactions can 
happen   from humans or machines.
</p>
<p>
We're  creating a revolution in the ERP industry. As always, you have early  adopters. At the other end of the bell-shaped curve,
you've got the  laggards. When you're talking to forward thinking,  
modern thinking,  profit-oriented, innovative companies, they very  
quickly appreciate that  the way to go is SaaS.
</p>
<p>
Now,  they've got a bunch of questions, and most of the <a href="http://www.it-analysis.com/business/change/content.php?cid=12134">questions are around  security</a>&#8212;"Is my data safe?" We have a huge variety of ways of  assuring our 
customers that these are actually probably safer  in our  environment  
than on-premise.
</p>
<p>
Some customers wait, and some will  just jump in
the pool with everyone else. We are in our fifth year of  existence,  
and it&#8217;s very interesting to see how our customers are  scaling from the
small, lower end, to huge companies and corporations  that are running
on Workday.
</p>
<p>
<strong>A blast from the past</strong><br />
Applications
are  built on top of  relational databases today, and then they are 
being  designed thinking  about the end-user, sitting in front of a 
browser,  interacting with  the system. But, really they were designed 
around  capturing the  transaction and being able to report straight-off
that  transaction.
</p>
<p>
The idea of integrating with third parties 
was  an  afterthought. Being an afterthought, what happened was that you
find  this new industry emerging, which is around extract, transform and load (ETL) tools and integration tools. It was a realization that we have to coexist within the many systems.
</p>
<p>
What
happened was that they bolted on these integration third-party 
systems   straight onto the database. That sounds very good. However, 
all the   business logic, all the security, and the whole data structure
that   hangs together is known by the application&#8212;and not by the 
database.   When you bolt-on an integration technology on the side, you 
lose all   that. You have to recreate it in the third-party technology.
</p>
<p>
Similarly, when it comes to reporting, relational technology does a phenomenal job with the use of SQL
and producing reports, which I will define as two-dimensional 
reports,   for producing lists, matrix reports, and summary reports. 
But,   eventually, as business evolves, you need to analyze data and you
have   to create this idea of dimensionality. Well, yet another 
industry was   created&#8212;and it was bolted back onto the database 
level, which is the   [BI] analytics, and this created cubes.
</p>
<p>
In 
fact, what they used  were  object-oriented technologies and in-memory 
solutions for reasons  of  performance to be able to analyze data. This 
is currently the state  of  the art.
</p>
<p>
<strong>The same treatment</strong><br />
Conversely, any request that comes into our system, be it from a UI
or from a third-party system by integrations, we treat exactly the  
same  way. They go through exactly the same functional application  
security.  It knows exactly what the structure of your object model is. 
It gets  evaluated exactly the same way and then it serves back the  
answer. So  that fundamental principle solves most of our integration  
problems.
</p>
<p>
On  the integration side, we just work off open  
standards. The only way  that you can talk with a third-party system  
with Workday is through web  services, and those services are contracts that we spec to the outside  world. We may change things internally, but that&#8217;s our problem.
</p>
<p>
That&#8217;s
the point where we have a technology around our enterprise   service 
plus our integration server that actually talks the language   that we 
do, standards web service based. At the same time, it's able to   
transform any bit of that information to whatever the receiving   
component wants, whether it&#8217;s banking, the various formats, or whatever 
is  out there.
</p>
<p>
We put the technology into the hands of our  
customers  to be able to ratchet down the latest technology to whatever 
other  file structures that they currently have. We provide that to 
our   customers, so they can connect them to the card-scanning systems, 
security systems, badging systems, or even their own financial systems
that they may have in house.
</p>
<p>
We're  a SaaS  vendor, and we do 
modify things and we add things, but those  external  contracts, which 
are the Web services talking to third-party  systems, we  respect and we
don&#8217;t change. So, in effect, we do not break  the  integrations.
</p>
<p>
<strong>Best way to access data</strong><br />
The
next architectural benefit is about analyzing data. As I  said,  there 
are a lot of technologies out there that do a very good job  at  lists 
and matrix reporting. Eventually, most of these things end up  in  
spreadsheets, where people do further analysis.
</p>
<p>
But the  dream  
that we are aiming for continuously is: When you are looking at a   
screen, you see a number. That number could be an accumulation of  
counts  that you'd be really interested in clicking on and finding out  
what  those counts are&#8212;name of applicants, name of positions, number 
of  assets that you have. Or, it's an accumulation. You look at the  
balance  sheet. You look at the big number. You want to click and figure
out what  comprises that number.
</p>
<p>
To do that, you have to have  
that  analytical component and your transactional component all in the  
same  place. You can't afford what I call I/Os. It's a huge penalty to  
go back  and forth through a relational database on a disk. So, that  
forces you  to bring everything into memory, because people expect to  
click  something and within earth time get a response.
</p>
<p>
The
technology solutions that we opted for was this totally in-memory    
object model that allows us to do the basic embedded analytics, taking  
action on everything you see on the screen.When you are   
traversing, you come to a number in a balance sheet, and as you're   
drilling around, what you are really doing in effect is traversing an   
object model underneath, and you should be able to get that for nothing.
</p>
<p>
So the persistence 
layer is really forced  by the analytical components.  When you're 
analyzing information, it has  to perform extremely fast.  You only have
one option, and that is memory.  So, you have to bring  everything up in-memory.
</p>
<p>
We
do use a relational component,  but not as a  relational database. We 
use a relational database, which  is really good at securing 
your data, encrypting your data,  backing up your  data, restoring it, 
replicating it, and all these great  utilities the  database gives you, 
but we don&#8217;t use a relational model. We use an  object model, which is all in-memory.
</p>
<p>
But,
you need to store  things somewhere. In fact, we have a belief at  
Workday that the disk,  which is more the relational component, is the  
future tape. What you  used to use in legacy systems was putting things  
on tape for safety and  archiving reasons. We use disk, and we actually 
believe, if you look at  the future, that nearly everything will be 
done  exclusively in-memory.
</p>
<p>
<strong>Make way for metadata</strong><br />
And, there is another bit of technology that you add to that. We're a totally metadata-driven
technology stack. Right now, we put out what we describe as updates  
three times a year. You put new applications, new features, and new   
innovations into the hands of your customers, and being in only one   
central place, we get immediate feedback on the usage, which we can   
enhance. And, we just keep on going on and keep on adding and adding   
more and more and more.
</p>
<p>
This is something that was an absolute   
luxury in your legacy stack, to take a complete release. You have to   
live through all the breakages that we mentioned before around   
integrations and the analytical component.
</p>
<p>
As soon as you can 
have the luxury of  maintaining one system, let's  call it one code 
line, and you're hanging  our customers, our tenants,  off that one 
single code line, it allows you  to do very, very frequent  upgrades or 
updates or new releases, if you  wish, to that central code  line, 
because you only have to maintain one  thing.
</p>
<p>
Multi-tenancy is 
also one of  the core ingredients, if you want to become a  SaaS vendor.
Now, I'm not  an advocate of saying multi-tenancy A is  better than 
multi-tenancy B.  There are different ways you can solve the  
multi-tenancy problems. You  can do it at the database level, the  
application level, or the hardware  level. There&#8217;s no right or wrong  
one. The main difference is, what does  it cost?
</p>
<p>
All we're looking at is one single code line that we have to maintain and secure continuously. We
believe in one single code line, and multiple tenants are sharing 
that   single code line. That reduces all our efforts around revving it 
and   updating it.  That does result in cost savings for the vendor, in 
other   words, ourselves.
</p>
<p>
And as far back as I can remember, when
humans   realized that you take time and material, package that for a 
profit,  and  send it to your end-market, as soon as you can reduce your
cost of  the  time or the material, you can either pocket the 
difference, or move  that  cost saving onto your customers.
</p>
<p>
We 
believe that  multi-tenancy  is one of the key ingredients of reducing 
the cost of  maintenance that  we have internally. At the same time, it 
allows us to  rev new innovative  applications out to the market very 
quickly, get  feedback for it, and  pass that cost savings on to our 
customers, which  then they can take  that and invest in whatever they 
do&#8212;making  carpets, yogurt, or  electric motors.
</p>
<p>
<a href="http://traffic.libsyn.com/interarbor/BriefingsDirect-Architecture_is_Destiny_at_Workday.mp3">Listen</a> to the podcast. Find         it on <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=85270006&amp;s=143441">iTunes/iPod</a>. Read <a href="http://briefingsdirect.blogspot.com/2010/11/architecture-is-destiny-why-revolution.html">a full transcript</a> or <a href="http://interarborsolutions.books.officelive.com/Documents/1027WDPetros.pdf">download</a>         a copy.
</p>
<img src="http://www.it-director.com/plg/ty_article/pg_12408/dm_0/53212a6829b2a7e5745371be6cb10dd6.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Dana Gardner, Interarbor Solutions)</author>
            <category>Business Issues-&gt;Change</category>
            <category>Business Issues-&gt;Compliance</category>
            <category>Business Issues-&gt;Costs</category>
            <category>Business Issues-&gt;Innovation</category>
            <category>Business Issues-&gt;Quality</category>
            <category>Business Issues-&gt;Regulation</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Channels-&gt;Online</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <category>SME</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Data management</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Technology-&gt;Security</category>
            <category>Technology-&gt;Storage</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Thu, 11 Nov 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12408&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>WSO2 debuts Carbon Studio as a speedy IDE for SOA and composite applications</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12405&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner"><img border="0" src="http://www.it-director.com/images/people/small/dana_gardner.gif" width="40" height="50" alt="Dana Gardner" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner">Dana Gardner</a>, <em>Principal Analyst</em>, Interarbor Solutions<br/>Posted: 10th November 2010<br/>Copyright Interarbor Solutions &copy; 2010</td><td><a href="http://www.it-director.com/about/company/8862/interarbor_solutions.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/interarbor_solutions.gif" width="88" height="33" alt="Logo for Interarbor Solutions" /></a></td></tr></table></div>

<p>
WSO2 recently announced the debut of <a href="http://wso2.com/products/carbon-studio/?cs101210">WSO2 Carbon Studio</a>, an Eclipse-based integrated developer environment (IDE) for <a href="http://wso2.com/products/carbon/">WSO2 Carbon</a>.<br />
</p>
<p>
The new offering allows users to build service-oriented architecture (SOA) and composite applications based on WSO2 Carbon. [Disclaimer: WSO2 is a sponsor of BriefingsDirect podcasts.]
</p>
<p>
Highlights of WSO2 Carbon Studio include the ability to:
</p>
<ul><li>Organize
	artifacts that span the multiple runtimes common to composite  
	applications into a single project&#8212;a Carbon Application (CApp).</li>
	<li>Develop applications using tools designed for WSO2 Carbon-based products including the WSO2 ESB, WSO2 <a href="http://wso2.com/products/web-services-application-server/">Web Services Application Server (WSO2 WSAS)</a>, WSO2 <a href="http://wso2.com/products/business-process-server/">Business Process Server (BPS)</a>, <a href="http://wso2.com/products/governance-registry/">WSO2 Governance Registry</a>, and more.</li>
	<li>Test and debug WSO2 Carbon-based applications directly within the IDE.</li>
	<li>Export Carbon Applications in the new Carbon Archive format. </li>
</ul><p>
&#8220;We have found that many of our customers are developing sophisticated applications that span the
WSO2 Carbon product family, and they are taking advantage of the 
unique  strengths of our platform when used as a whole,&#8221; said <a href="http://wso2.com/about/leadership/sanjiva_weerawarana/">Dr. Sanjiva Weerawarana</a>,
founder and CEO of WSO2. &#8220;We&#8217;re now revving up our tooling support 
with  WSO2 Carbon Studio&#8212;helping developers to organize, develop, test, 
and  deploy these composite applications with greater ease than ever 
before.&#8221;
</p>
<p>
<strong>Middleware platform</strong><br />
The WSO2 Carbon Studio IDE is designed to take advantage of the open source WSO2 Carbon middleware platform. The Eclipse-based offering includes graphical editors for XML configuration files, an enhanced Eclipse BPEL
editor, and easy integration of Carbon-based applications with the 
WSO2  Governance Registry. Additionally, Carbon Studio offers a rich set
of  third-party Eclipse plug-ins, including Maven and the OpenSocial 
Gadget  Editor.
</p>
<p>
Carbon  
Studio supports SOA projects that often combine multiple application  
types into a single composite application or service. Developers also  
have single-click function for testing Java-based applications and services&#8212;without leaving the IDE. Debugging tools support Axis2-based services, <a href="http://en.wikipedia.org/wiki/Apache_Synapse">Apache Synapse</a> mediators, registry handlers, and data validators.<br /><br />
Tools to support SOA development include <a href="http://en.wikipedia.org/wiki/Apache_Axis2">Apache Axis2</a> and <a href="http://en.wikipedia.org/wiki/JAX-WS">JAX-WS</a>, Data Service,  BPEL, ESB, and ESB Tooling, as well as a gadget editor.<br /><br />
WSO2
Carbon Studio, available now as a set of Eclipse plug-ins, is a fully 
open-source solution released under Eclipse and Apache Licenses and 
does  not carry any licensing fees. WSO2 offers a range of service and  
support options for Carbon Studio, including development support and  
production support.
</p><img src="http://www.it-director.com/plg/ty_article/pg_12405/dm_0/263c4aa2bfc3763fe255657cc0714aab.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Dana Gardner, Interarbor Solutions)</author>
            <category>Business Issues-&gt;Change</category>
            <category>Business Issues-&gt;Compliance</category>
            <category>Business Issues-&gt;Costs</category>
            <category>Business Issues-&gt;Innovation</category>
            <category>Business Issues-&gt;Quality</category>
            <category>Business Issues-&gt;Regulation</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Channels-&gt;Distribution</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Resellers</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <category>SME</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Technology-&gt;Security</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Wed, 10 Nov 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12405&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>A new approach to enterprise software development</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12403&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><img border="0" src="http://www.it-director.com/images/people/small/gerry_brown.gif" width="40" height="50" alt="Gerry Brown" /></td><td valign="top" width="100%">By: Gerry Brown, <em>Analyst - Digital Marketing &amp; CRM</em>, Bloor Research (<a href="http://www.it-director.com/form/search.php?ref=fd_side_itd?ss=Gerry+Brown&amp;log=no&amp;cat=author&amp;exact=yes" title="Gerry Brown has now left this role">Moved</a>)</span><br/>Posted: 9th November 2010<br/>Copyright Bloor Research &copy; 2010</td><td><a href="http://www.it-director.com/about/company/1/bloor_research.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/bloor_research.gif" width="88" height="33" alt="Logo for Bloor Research" /></a></td></tr></table></div>

<p>I met with Brian Gentile, CEO of open source BI vendor Jaspersoft. Brian is a self-proclaimed &#8220;fan of new generation software&#8221;. Here is what he believes constitutes new generation software&#8212;and how it differs from traditional enterprise software. This article explores further the tenets of the recent article &#8216;<a href="http://www.it-director.com/business/content.php?cid=12357">Is the traditional BI market in decline?</a>&#8217;.</p>
<p>First, Jaspersoft has built a club of volunteers who give time and effort to the cause. It&#8217;s a bit like the parents&#8217; committee at a well-run primary school where parents want a stake in creating the best learning environment for their kids. Jaspersoft has 175,000 registered programmers in its &#8216;community&#8217; of fans who have a similar ownership stake in Jaspersoft.</p>
<p>These unpaid end users fix bugs and develop enhancements to Jaspersoft&#8217;s open source product, iReport. They champion the product, and provide &#8216;free&#8217; programming and powerful word-of-mouth recommendations to other potential users. In addition they vote on the new features for the next release&#8212;so product development is largely driven by user priorities.</p>
<p>Second, the software architecture is lightweight, web-based, has open APIs, and is easy to install and upgrade. Everything is built on the Java platform and the whole software suite is only 500MB. It requires little installation and professional services consulting support, and is available both for web download and through Jaspersoft&#8217;s OEM partners as a SaaS deployment.</p>
<p>Third, it&#8217;s low-cost and affordable. The entry level price for the commercial version is &#36;10,000.</p>
<p>Compare this with how the enterprise software vendors tackle these areas:</p>
<p>First, enterprise software vendors have a network of resellers, complementary software vendors, and systems integrators and consultants. These mercenaries add value to the core product only where and when it is in their best commercial interest. Vendor loyalty is typically low&#8212;software and services partners often jump ship to where the profit potential is highest. Acts of charity are not high on their agenda.</p>
<p>Product development rests on the needs of a small number of key customers&#8212;who may or may not be representative of the market. The vendors control which features are included or excluded from the commercial release.</p>
<p>Second, the traditional enterprise software architecture is heavyweight and leans towards proprietary lock-ins. For example, SAP Business Objects&#8217; BI suite is said to contain c. 30GB of code (ie 60x the size of Jaspersoft&#8217;s BI suite). Installation and upgrades are typically long and rely on on-site consulting and services provision over many months.</p>
<p>Third, enterprise software is expensive. Brian reckons Jaspersoft software costs around 1/10 of the cost of comparable commercial enterprise software. The enterprise vendors&#8217; business models demand a premium price in excess of &#36;100K for the most part. Implementation services expenses could double that cost.</p>
<p>So, Jaspersoft has built quite a compelling value proposition. Participative, collaborative, lightweight, fast to implement, transparent and open, and lower cost than its legacy competitors. Granted, it is mainly adopted and used by techie programmers, and it doesn&#8217;t offer the sexy front end user experience of SAP Business Object&#8217;s Crystal reports, for example. Neither does Jaspersoft offer the comfort of the size and support resources of an SAP or similar. However Jaspersoft is clearly doing something right as iReport downloads are now at the staggering rate of a 250,000 per month.</p>
<p>So what can customers learn from Jaspersoft&#8217;s software development techniques?</p>
<p>1) Engage with the hearts and minds of your community (ie &#8216;The Business&#8217;)&#8212;not on the basis of &#8220;it&#8217;s your job to help IT&#8221; but rather that &#8220;it&#8217;s fun to be involved and your contribution will be recognised&#8221;. Co-creation and collaboration are the watchwords.</p>
<p>2) Create and choose software that is light, flexible, and easy, and incorporates &#8216;the wisdom of crowds&#8217;. Don&#8217;t get dragged down by miles of inflexible code that cannot be re-purposed to reflect the business challenges of tomorrow. SOA is very important here.</p>
<p>3) Experiment with low cost web-based solutions. If they don&#8217;t work, junk them, and try something else. Don't put all your eggs in one big enterprise software investment basket with an uncertain outcome.</p><img src="http://www.it-director.com/plg/ty_article/pg_12403/dm_0/ce43c8092beda8d7df888f81f17e3558.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Gerry Brown, Bloor Research)</author>
            <category>Business Issues-&gt;Costs</category>
            <category>Business Issues-&gt;Innovation</category>
            <category>Business Issues-&gt;Quality</category>
            <category>Channels-&gt;Distribution</category>
            <category>Channels-&gt;ISV</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise-&gt;Finance</category>
            <category>Enterprise-&gt;Public Sector</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Data management</category>
            <category>Technology-&gt;Storage</category>
            <pubDate>Tue, 09 Nov 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12403&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Sensing shift in business priorities, HP targets Instant-On Enterprise as new tech-enabled advantage</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12398&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner"><img border="0" src="http://www.it-director.com/images/people/small/dana_gardner.gif" width="40" height="50" alt="Dana Gardner" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner">Dana Gardner</a>, <em>Principal Analyst</em>, Interarbor Solutions<br/>Posted: 4th November 2010<br/>Copyright Interarbor Solutions &copy; 2010</td><td><a href="http://www.it-director.com/about/company/8862/interarbor_solutions.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/interarbor_solutions.gif" width="88" height="33" alt="Logo for Interarbor Solutions" /></a></td></tr></table></div>

<p>
The
rapidly evolving landscape for global business&#8212;and the consequent 
need for IT to relate differently to businesses so they together serve
their customers in innovative ways&#8212;has to mean more than business 
as  usual from technology suppliers.
</p>
<p>
While a majority of vendors seem to be hunkering down around an entrenched set of core products and aging IT approaches, HP this week shared a <a href="http://www8.hp.com/us/en/hp-news/article_detail.html?compURI=tcm:245-765566&amp;pageTitle">different vision</a>, what it calls the &#8220;<a href="http://www.hp.com/go/instant-on">Instant-On Enterprise</a>." [Disclosure: HP is a sponsor of BriefingsDirect podcasts.]
</p>
<p>
The Instant-On Enterprise, <a href="http://www.youtube.com/watch?v=PxUWBEQGXz8">as HP defines it</a>, is a data-driven
organization that leverages technology for  everything&#8212;but   
specifically to better address the ever-evolving needs of end-users. As 
users' expectations and experience change, so too must the ways   
enterprises relate to them, are perceived by them.
</p>
<p>
The next several years will form a culmination of <a href="http://www.youtube.com/user/AribaSpendManager?feature=mhum#p/c/ECEF239105A269DA/2/cpbYsNP3Wm8">now-clear mega trends</a> that have only just begun to roil conventional business practices. We're talking about pervasive mobile applications use, highly responsive <a href="http://www.it-analysis.com/business/change/content.php?cid=12387">cloud computing models</a>, and knowledge-adept social collaboration. More than just these shifts, there also needs to be an increasingly automated, secure, and harmonizing <a href="http://www.it-analysis.com/business/compliance/content.php?cid=12015">management capability that combines and reinforces them</a>.
</p>
<p>
As
these trends literally re-arrange business ecosystems and   
re-established the service delivery order, a gap will surely grow   
between the companies that master change and exploit enabling   
technologies&#8212;and those that fall ever further behind.
</p>
<p>
With that in mind, HP has <a href="http://www8.hp.com/us/en/solutions/solutions-detail.html?compURI=tcm:245-785689">rolled out new solutions</a> that aim to help both business and government create their own Instant-On Enterprise.
Not surprisingly, the driver of the Instant-On Enterprise is  
everything  becoming connected and immediate, people expect responses  
regardless of  sourcing and/or partner ecosystems&#8212;and within seconds  
instead of  days.
</p>
<p>
&#8220;It
takes a special kind of enterprise to close the expectation gap  
between  what customers and citizens expect and what the enterprise can 
deliver,&#8221; says <a href="http://www.hp.com/hpinfo/execteam/bios/hogan.html">Tom Hogan</a>,
executive vice president of Enterprise Sales, Marketing and Strategy 
at  HP. &#8220;The Instant-On Enterprise delivers differentiated competitive 
advantage, serving customers, employees, partners and citizens with   
whatever they want and need, instantly&#8230;"
</p>
<p>
<strong>Embedding Tech</strong><br /><a href="http://www.hp.com/hpinfo/newsroom/press_kits/2010/InstantOnEnterprise2010/ion_Research.pdf">New HP research</a> reveals that the role of IT is shifting from chiefly being the administrator of the enterprise to becoming one and the same
with the enterprise. This means enabling rapid, recurring business   
process improvements to meet dynamic customer demands, as well as   
gaining near-instant insights into shifting markets.
</p>
<p>
Coleman
Parkes research conducted for HP in October reveals that 86 percent 
of   senior business and government executives believe they must rapidly
adapt the enterprise to meet changes in consumer expectations. The   
research also indicates that 78 percent believe technology is the key to
business and government innovation, and 85 percent indicated that in 
order to be successful, technology needs to be embedded in the 
business   or government service
</p>
<p>
<a href="http://www.hp.com/hpinfo/newsroom/press_kits/2010/InstantOnEnterprise2010/fs_ion_Cloud.pdf">HP&#8217;s new solutions</a>
work to help enterprises and government leverage technology in ways  
that will meet those goals. HP sees it as a reinvention of how   
technology is used to deliver innovation at every point in the value   
chain. That covers the services that are delivered, the mobile devices  
that provide the access, and the global data centers required to power 
the Instant-On Enterprise.
</p>
<p>
<strong>Instant-On Puzzle Pieces</strong><br />
There
are several components to HP&#8217;s Instant-On Enterprise: HP Application 
Transformation, HP Converged Infrastructure, HP Enterprise Security, 
and   HP Information Optimization:
</p>
<ul><li><a href="http://www.hp.com/go/applicationtransformation">HP Application Transformation</a>
	solutions work to help enterprises gain control over aging  
	applications  and inflexible processes that challenge innovation and  
	agility by  governing their responsiveness and pace of change. </li>
	<li><a href="http://www.hp.com/go/ci">HP Converged Infrastructure</a>
	solutions are engineered to drive out costs and provide the 
	foundation   for agile service delivery. HP promises this solution 
	delivers the  data  center of the future.</li>
	<li><a href="http://www.hp.com/go/security">HP Enterprise Security</a>
	solutions secures the IT infrastructure by people, processes,   
	technology and content. These solutions aim to aligns security to meet  
	business and government demands without losing flexibility. </li>
	<li><a href="http://www.hp.com/go/information-optimization">HP Information Optimization</a>
	solutions deal with how information is gathered, stored and used. The
	idea is to harness the power of information and ensure its integrity 
	and  protection while delivering it in the context of the enterprise.</li>
</ul><p>
Realizing that there is no one single delivery model that meets every end-user need, HP also introduced two new <a href="http://www.hp.com/go/hybriddelivery">Hybrid Delivery</a> services. HP <a href="http://h20195.www2.hp.com/V2/GetPDF.aspx/4AA3-0073ENW.pdf">Hybrid Delivery Strategy Service</a> offers a patent-pending, model-driven framework to introduce hybrid delivery concepts into their existing environments.
</p>
<p>
HP <a href="http://h20195.www2.hp.com/V2/GetPDF.aspx/4AA3-0073ENW.pdf">Hybrid Delivery Workload Analysis Service</a>
offers experts that gather service usage and demand profile data, and
then develop a set of recommendations on how to best characterize and
combine workloads in hybrid environments.
</p>
<p>
BriefingsDirect contributor Jennifer LeClaire provided editorial assistance and research on this post. She can be reached at <a href="http://www.linkedin.com/in/jleclaire">http://www.linkedin.com/in/jleclaire</a> and <a href="http://www.jenniferleclaire.com/">http://www.jenniferleclaire.com</a>.
</p><img src="http://www.it-director.com/plg/ty_article/pg_12398/dm_0/cad1de26c0892d04d24a5f3bb2ac9f17.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Dana Gardner, Interarbor Solutions)</author>
            <category>Business Issues-&gt;Change</category>
            <category>Business Issues-&gt;Compliance</category>
            <category>Business Issues-&gt;Costs</category>
            <category>Business Issues-&gt;Innovation</category>
            <category>Business Issues-&gt;Quality</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Resellers</category>
            <category>Channels-&gt;Retail</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise</category>
            <category>Enterprise-&gt;Public Sector</category>
            <category>Services</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Data management</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Technology-&gt;Mobile</category>
            <category>Technology-&gt;Personal Productivity</category>
            <category>Technology-&gt;Security</category>
            <category>Technology-&gt;Storage</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Thu, 04 Nov 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12398&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>New managed and automated paths to private clouds provide swifter adoption at lower risk</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12387&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner"><img border="0" src="http://www.it-director.com/images/people/small/dana_gardner.gif" width="40" height="50" alt="Dana Gardner" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner">Dana Gardner</a>, <em>Principal Analyst</em>, Interarbor Solutions<br/>Posted: 28th October 2010<br/>Copyright Interarbor Solutions &copy; 2010</td><td><a href="http://www.it-director.com/about/company/8862/interarbor_solutions.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/interarbor_solutions.gif" width="88" height="33" alt="Logo for Interarbor Solutions" /></a></td></tr></table></div>

<p>
Businesses are looking to <a href="http://www.it-analysis.com/business/compliance/content.php?cid=12306">cloud-computing models</a> to foster agility and improve time-to-market for new services. Yet attaining cloud benefits can founder without higher levels of unified server, data, network, storage, and applications management.
</p>
<p>
These typically disparate forms of management must now <a href="http://www.it-analysis.com/business/change/content.php?cid=12276">come together in new ways</a> to mutually support a variety of different cloud approaches --  public, private, and hybrid. Without adoption of such <a href="http://h41112.www4.hp.com/promo/software-automation/uk/en/?jumpid=in_%20r10784_1-mrmid_uk_en_large_tsg/sb/bsa/software_automation">Business Service Automation (BSA)</a>
capabilities, those deploying applications on private and hybrid 
clouds will almost certainly encounter increased complexity, higher 
risk, and stubborn cost structures.
</p>
<p>
This latest BriefingsDirect discussion therefore focuses on finding low-risk, high-reward paths to cloud computing by using increased automation and proven reference models for cloud management&#8212;and by breaking down traditional IT management silos. In doing so, the progression toward cloud benefits will come more quickly, at lower total cost, and with an ability to rapidly scale to even more applications and data.
</p>
<p>
We're here with two executives from HP Software &amp; Solutions to learn more about <a href="http://h41112.www4.hp.com/promo/software-automation/uk/en/?jumpid=in_%20r10784_1-mrmid_uk_en_large_tsg/sb/bsa/software_automation">what BSA is</a> and why it's proving essential to managed and productive cloud computing adoption: <a href="http://briefingsdirect.blogspot.com/2010/06/hp-csa-aids-total-visibility-into.html">Mark Shoemaker</a>, Executive Program Manager for Cloud Computing in the Software &amp; Solutions Group at HP, and <a href="http://twitter.com/vdevraj">Venkat Devraj</a>,
Chief Technology Officer for Application Automation, also in HP&#8217;s 
Software &amp; Solutions Group. The discussion is moderated by 
BriefingsDirect's Dana Gardner, Principal Analyst at Interarbor Solutions.
</p>
<p>
Here are some excerpts:<br /></p>
<p>
<strong>Shoemaker:</strong> There is hardly a place we go that we don&#8217;t end up <a href="http://www.hp.com/hpinfo/newsroom/press/2009/090331xa.html">talking to our customers about cloud</a>. Most of the enterprise customers we talk to are looking at private cloud,
the internal cloud solution that they own, that they then provide to 
their business partners, whether that&#8217;s the development teams or other
elements in their business. Most of them are looking to <a href="http://www.it-analysis.com/business/change/content.php?cid=11856">build on the virtualization work that they've already done</a>.
</p>
<p>
They want to improve their productivity, definitely get better utilization out of what they have already got.
They want IT to be your better partner in the business. What that 
means is to shorten the time that the business has to wait for the 
services.
</p>
<p>
<strong>Devraj:</strong> There is also an interesting micro trend that&#8217;s occurring. A lot of the application teams, end-user business teams, are
getting increasingly sophisticated. They're learning about private 
cloud implementations. Consequently, they're demanding levels of 
service from IT that are difficult to provide without a private cloud.
</p>
<p>
For example, because of things like agile development
methodologies, application teams are doing a lot more application 
deployments and code releases than ever before. It's not uncommon to see
dozens of application releases for different applications happening 
during the same day.
</p>
<p>
IT operations are just bombarded with these requirements and requests, and they are just unable to keep up based on yesterday&#8217;s processes, which are relatively static. These application teams and business unit teams are quite influential.
</p>
<p>
They're
even willing to fund specific initiatives to allow their teams to 
work in self-service mode, and IT ops are finding themselves in 
reactive mode. They have to support them, make their internal 
processes more fluid and dynamic, and leveraging technology that 
allows that kind of dynamism.
</p>
<p>
... The third-party 
companies, the cloud providers, the pure-play server enablers, have an 
unfair advantage. Because they were started relatively recently, in 
the last few years, they have the advantage of standardized platforms 
and delivery units.
</p>
<p>
They can say, "Okay, I'm going to deliver only Linux-based
platforms, Windows-based platforms, or certain applications." When 
you look at the typical enterprise today, however, IT has a lot more 
to deliver.
</p>
<p>
There is a lot of prevailing heterogeneity in terms of multiple software platforms and versions. There is <a href="http://openstack.org/">a lack of standardization</a>.
It's very difficult to talk about cloud and delivery within the 
enterprise in the same breath, when you look at these kinds of 
technical challenges.
</p>
<p>
As a result, IT is undergoing a lot of 
pressure&#8212;but they have to deliver given the kind of challenges that 
they face. That&#8217;s going to require a lot of education and access to 
the right kind of technology, training, and guidance.
</p>
<p>
<strong>Shoemaker:</strong>
Just to add to Venkat&#8217;s comment, we're seeing the business driving IT
and demanding that agility and that flexibility. We talk to a lot of 
our customers, where their own coworkers have taken corporate credit cards and gone out into the public cloud, procured space, and have begun developing outside of them. IT really has to get in front of this. They have to manage all this.
</p>
<p>
... The one thing that&#8217;s different about cloud is that it really is a supply chain.
It&#8217;s the supply chain of IT technology that the business consumes. If
you think about what a supply chain is, it&#8217;s something that&#8217;s got to 
be repeatable. It has to be governed, and it provides a baseline or 
foundation and building blocks to build those services that you can 
then customize on top of the business.
</p>
<p>
So, the farther up that you can go with your 
standard building blocks, the less difficult it is to manage and focus
on the custom business-facing functions on the front-end.
</p>
<p>
To 
do this, cloud has helped us out in a lot of ways. One of the 
challenges IT has always had is to get the business to consume 
standards. Because of a lot of hype in the market, the business 
absolutely is convinced that they get it, and <a href="http://www.it-analysis.com/business/compliance/content.php?cid=12015">they want the business benefits that cloud offers</a>.
</p>
<p>
Even
if the business decides to go to a public cloud, they still have to 
consume those elements in a standard fashion. There's no way out of 
that.
</p>
<p>
<strong>Devraj:</strong> And yet, the software
used by these enterprises tends to be disparate, heterogeneous, and 
requires a lot of domain knowledge to be able to manage, resulting in 
significant delays and bottlenecks associated with service delivery. 
Those processes just don&#8217;t scale in the cloud.
</p>
<p>
At
Stratavia we had built a patented technology to manage and control 
varied software stacks, such as databases, web servers, application 
servers, and even well-known packaged applications, including Microsoft Exchange, Oracle E-Business Suite, and SAP.
</p>
<p>
The content
that I talk about becomes an abstraction layer, where the customer, 
the end user, the people who consume the services, see a very easy to 
understand service catalog. They can click on it. They can choose some
menu options, some values from a drop-down box, and then specify 
exactly what they need, and have the response come back in minutes and
in hours, rather than days and weeks, as is traditionally the case.
</p>
<p>
For
example, just at the database layer, within the enterprise, it's very
common to see four or five different platforms in use, such as DB2,
SQL Server, Oracle, and so on. By automating the operations 
management lifecycle around these layers, Stratavia has made it 
possible for the enterprise to deliver and manage these assets as a service within the context of the cloud.
</p>
<p>
As
more and more of HP&#8217;s and Stratavia&#8217;s joint customers started seeing 
value in that capability, HP brought Stratavia into its BSA/Business Technology Optimization umbrella.
</p>
<p>
There's
a big gap in IT today, which is IT/Ops Engineering or IT/Ops 
Architecture. That&#8217;s a big missing silo within IT/Ops. And a lot of the 
operators today that rely on scripts, command-line stuff, and 
point-and-click tools need to evolve themselves to more of an architect
approach. They need more of taking stock of the big picture, and 
taking the tribal knowledge that they have in their heads and looking 
at the out-of-the-box content that HP provides and selecting the right 
content that corresponds to their tribal knowledge.
</p>
<p>
When they 
go into the cloud, the underlying management, things like compliance 
and governance, are not out of whack. They're able to successfully 
take that knowledge, put it in there, and then, in their new role as 
architects or engineering folks, they're able to watch, measure, and 
make modifications as appropriate.
</p>
<p>
So, the role that people 
play, that key subject matter experts play, is very crucial as part of 
walking before running with automation.
</p>
<p>
<strong>Gardner:</strong> Now that you have mentioned Stratavia, and for the benefit of our listeners and readers, <a href="http://www.hp.com/hpinfo/newsroom/press/2010/100826a.html">HP has acquired Stratavia</a>, and there was also quite a bit of related <a href="http://briefingsdirectblog.blogspot.com/2010/09/hp-beefs-up-business-service-automation.html">product and service news on Sept. 15 around BSA</a> as the acquisition was unveiled.
</p>
<p>
<strong>Shoemaker:</strong>
Obviously, the Stratavia acquisition was a huge, huge win for us, and
puts us in a great position to help our customers transform their 
infrastructure. ... And several other things have happened in the last 
60 days. We had VMworld, and we presented a cohesive strategy for infrastructure and even PaaS built on the <a href="http://www.hp.com/hpinfo/newsroom/press/2009/090420c.html">BladeSystem Matrix</a> hardware platform that we have, Converged Infrastructure. We've combined that with two other pieces and a piece of Cloud Service Automation (CSA) software.
</p>
<p>
<a href="http://h20219.www2.hp.com/services/us/en/consolidated/cloud-overview.html?jumpid=ex_R61_us/en/large/tsg/go_smbcat20">CloudStart</a>
is a consulting and a professional services-led engagement capability 
where we come in and work with the customer to get that transformation 
process nailed, so we can quickly get them moving into the cloud 
benefits.
</p>
<p>
On the back end of that, there is another piece that we announced called <a href="http://h71036.www7.hp.com/enterprise/us/en/partners/cloudmaps.html">Cloud Maps</a>,
which is really more knowledge, but in a different capacity, in that 
it offers downloadable templates, preconfigured applications, and best
practices for sizing.
</p>
<p>
We
see the Stratavia acquisition fueling this fire, because in the end, 
cloud is a solution, and a solution needs content, and content wins. 
Content is what the customer is able to consume and use day one, when 
the solution is in. So it's important. And we've done a lot there.
</p>
<p>
We
now have a best-in-class content provider in Stratavia that&#8217;s come on 
board to help round out the capabilities and add more into what the 
customer can get out of our solutions in very quick order.
</p>
<p>
All
that sits on a recently refreshed BSA portfolio, with significant 
enhancements and new capabilities across network, automations, servers, 
and storage, that really makes all this happen. 
</p>
<p>
... Let's
face it, a lot of the CIOs are looking at a data center that&#8217;s packed
full of applications that they probably don&#8217;t feel as if they have 
got a good handle on. Now, cloud is coming into the picture, and 
they've got two things to do here.
</p>
<p>
Number one, they need to 
start applying those new business methodologies to IT around providing 
cloud and the things that go with that, but also they have got a 
transformation piece to go along. And that can be very daunting.
</p>
<p>
What we've done is looked at the experience of helping previous customers do that work and we have applied that into the <a href="https://h10078.www1.hp.com/cda/hpms/display/main/hpms_content.jsp?zn=bto&amp;cp=1-11%5E45361_4000_100__">CloudStart and Cloud Maps</a>, CloudStart being the planning and the upfront work that you need to get done.
</p>
<p>
So, we're right there with you. You don&#8217;t have to read chapter one of the book.
</p>
<p>
Then,
as we put the infrastructure in with CSA for Matrix in the frame, 
we're embedding some of the CSA software inside of the Blade Matrix 
frame. So you have a way to build infrastructure as a service (IaaS) and manage it through the platform throughout the lifecycle.
</p>
<p>
Then,
on the back end of that, we have the preconfigured application 
templates. If I need a SQL Server image to put into the system, I can 
pull that from Cloud Maps, build it into a framework and offer that very
quickly. I don&#8217;t have to go and figure out how to size for this piece
or what golden template looks like for this application.
</p>
<p>
It's 
really about obtaining a running start into the cloud, and one that&#8217;s 
not going to leave you wanting in a year or two. You have to be 
careful. Cloud is a great enablement technology and a lot of people 
are looking at IaaS, but that&#8217;s the starting point for it, and then 
you have to manage everything that you put inside of that as well.
</p>
<p>
<a href="http://traffic.libsyn.com/interarbor/BriefingsDirect-Business_Service_Automation_Aids_Cloud_Deployments.mp3">Listen</a> to the podcast. Find it on <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=85270006&amp;s=143441">iTunes/iPod</a>. Read <a href="http://briefingsdirect.blogspot.com/2010/10/new-managed-paths-to-private-cloud.html">a full transcript</a> or <a href="http://interarborsolutions.books.officelive.com/Documents/09202010HPSSBSA.pdf">download</a> a copy.
</p><img src="http://www.it-director.com/plg/ty_article/pg_12387/dm_0/7e69d643db5f6eacee2c26bf2a75d587.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Dana Gardner, Interarbor Solutions)</author>
            <category>Business Issues-&gt;Change</category>
            <category>Business Issues-&gt;Costs</category>
            <category>Business Issues-&gt;Innovation</category>
            <category>Business Issues-&gt;Regulation</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Resellers</category>
            <category>Channels-&gt;Retail</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise-&gt;Public Sector</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Data management</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Technology-&gt;Storage</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Thu, 28 Oct 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12387&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>FuseSource gains new autonomy to focus on OSS infrastructure model, Apache Community, cloud</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12383&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner"><img border="0" src="http://www.it-director.com/images/people/small/dana_gardner.gif" width="40" height="50" alt="Dana Gardner" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner">Dana Gardner</a>, <em>Principal Analyst</em>, Interarbor Solutions<br/>Posted: 26th October 2010<br/>Copyright Interarbor Solutions &copy; 2010</td><td><a href="http://www.it-director.com/about/company/8862/interarbor_solutions.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/interarbor_solutions.gif" width="88" height="33" alt="Logo for Interarbor Solutions" /></a></td></tr></table></div>

<p>
The FUSE family of software is now under the FuseSource name and has today gained new autonomy from Progress Software with its <a href="http://fusesource.com/">own corporate identity</a>.
</p>
<p>
Part of the IONA Technologies acquisition by Progress Software in 2008, FuseSource has now become its own company, owned by Progress, but now more independent, to aggressively pursue its open source business model and to leverage the community development process strengths.
</p>
<p>
In
anticipation of today's news, our discussion here targets the rapid 
growth, increased relevance, and new market direction for major open source middleware and integration software under the Apache license.
</p>
<p>
We'll also look at where <a href="http://fusesource.com/products/">FuseSource projects</a> are headed in the near future. [NOTE: <a href="http://rajdavies.blogspot.com/2010/10/fusesource-has-launched.html">Larry Alston also recently joined FuseSource</a> as president.]
</p>
<p>
Even as the IT mega vendors are consolidating more elements of IT infrastructure, and in some cases, <a href="http://www.oracle.com/us/corporate/press/018363">buying up open-source projects and companies</a>, the role and power of open source for enterprise and service providers alike has never been more popular or successful. Virtualization, cloud computing, mobile computing, and services orientation are all supporting more interest and increased mainstream use of open-source infrastructure.
</p>
<p>
Here now to discuss how FuseSource is therefore evolving we're joined by <a href="http://www.linkedin.com/in/debbiemoynihan">Debbie Moynihan</a>, Director of Marketing for FuseSource, and <a href="http://rajdavies.blogspot.com/">Rob Davies</a>, Director of Engineering for FuseSource. The discussion is moderated by BriefingsDirect's Dana Gardner, Principal Analyst at Interarbor Solutions.
</p>
<p>
Here are some excerpts:
</p>
<p>
<strong>Moynihan:</strong>
Over the past couple of years, there has been a lot of focus on cost 
reduction, and that resulted in a lot of people looking at open source 
who maybe wouldn&#8217;t have looked at it in the past.
</p>
<p>
The
other thing that&#8217;s really happened with open source is that some of 
the early adopters who started out with a single project have now 
standardized on FuseSource products across the entire organization. So
there are many more proof-points of large global organizations 
rolling out open source in mission-critical production environments. 
Those two factors have driven a lot of people to think about open 
source, and to start adopting open source.
</p>
<p>
Then, the whole cloud trend
came along. When you think about scaling in the cloud, open source is
perfect for that. You don&#8217;t have to think about the licensing cost as
you scale up. So, there are a lot of trends that have been happening 
and that have really been really helpful. We're very happy about them 
helping push open source into the mainstream.
</p>
<p>
From a FuseSource
perspective, we've been seeing over 100 percent growth each year in 
our business, and that&#8217;s part of the reason for some of the things we're going to talk about today.
</p>
<p>
<strong>Davies:</strong> We've been around in this space for a while, but the earlier adopters who were just trying out in distinct groups
are now rolling this out into broader production. Because of that, 
there is this snowball effect. People see that larger organizations 
are actually using open source for their infrastructure and their 
integration. That gives them more confidence to do the same.
</p>
<p>
I 
recently spoke to a large customer of ours in the telco space. They 
had this remit. Any open source that came in, they wouldn&#8217;t put into 
mission-critical situations, until they kicked the tires for a good 
while &#8212; at least a couple of years.
</p>
<p>
But because there has been 
this push for more open source projects following open standards, 
people are now more willing to have a go using open source software.
</p>
<p>
In fact, if you look at the numbers of some of our larger customers, they are using <a href="http://en.wikipedia.org/wiki/ServiceMix">Apache ServiceMix</a> and <a href="http://en.wikipedia.org/wiki/Activemq">Apache ActiveMQ</a>
to support many thousands of business transactions, and this is 
business-critical stuff. That alone is enough to give people more 
confidence that open source is the right way to go.
</p>
<p>
When you 
look at cloud, there are different issues you have to overcome. There 
is the issue about deploying into the cloud. How do you do that? If 
you're using a public cloud, there are different mechanisms for 
deploying stuff. And there are open source projects already in 
existence to make that easier to do.
</p>
<p>
This is something we have 
found internally as well. We deploy a lot of internal software when 
we are doing our big scale testing. We make choices about which 
particular vendors we're going to use. So, we have to abstract the way
we are doing things. We did that as an open source project, which we 
have been using internally.
</p>
<p>
When you get to the point of deploying, 
it&#8217;s how do you actually interface with these things? There is always 
going to be this continuing trend towards standards for integration. 
How are you going to integrate? Are you going to use SOAP? Are you going to use RESTful services? Would you like to use messaging, for example, to actually interface into an integration structure?
</p>
<p>
You
have to have choice. You can&#8217;t really dictate to use it this way or 
the other way. You've got to have a whole menu of different options for
connecting. This is what we try to provide in our software.
</p>
<p>
We
always try to be agnostic to the technology, as much as how you 
connect to the infrastructure that we provide. But, we also tend to be
as open as we can about the different ways of hooking these disparate
systems together. That&#8217;s the only way you can really be successful in
providing something like integration as a service and a cloud-like 
environment. You have to be completely open.
</p>
<p>
<strong>Moynihan:</strong>
Progress is launching a new company called FuseSource that will be 
completely focused on the open source business model. We're really 
excited <a href="http://fusesource.com/about-this-site/management/">as a team</a>.
The FuseSource team has been an independent business unit since IONA
was acquired by Progress Software. We have been fairly independent 
within the company, but separated as our own company we'll be able to 
be completely independent in terms of how we do our marketing, sales, 
support, services, and engineering.
</p>
<p>
When you're part of a large
organization, there are certain processes that everyone is supposed 
to follow. Within Progress, we are doing things slightly differently 
(or very differently depending on the area) because the needs of the 
open source market are different. So being our own company we'll have 
that independence to do everything that makes sense for the 
open-source users, and I'm pretty excited about that.
</p>
<p>
From a 
practical perspective, the business model is very different. In 
traditional enterprise software sales, there is a license fee which is 
typically a large upfront license cost relative to the entire cost 
over the lifetime of that software. Then, you have your annual 
maintenance charges and your services, training, and things like that.
</p>
<p>
From
an open source perspective, typically upfront, there is no license 
cost. Our model is that there is no license cost. It&#8217;s a subscription 
support model, where there is a monthly fee, but the way that it is 
accounted for and the way that it works with the customer is very 
different. That's one of the reasons we split out our business. The way
that we work with the customers and the way they consume the software
are very different. It&#8217;s a month-to-month subscription support 
charge, but no license charge.
</p>
<p>
That&#8217;s also the reason people 
like cloud. You pay as you go. You scale as you go. And you don&#8217;t have
that upfront capital expenditure cost. For new projects, it can be 
really hard to get money right now. All these benefits are why we're 
seeing so much growth in FuseSource.
</p>
<p>
While we do have some level
of product management for open source, a lot of it is based around 
packaging, delivery, licensing, and these types of things, because our
engineers are hearing directly from customers on a moment-by-moment 
basis. They're seeing the feedback in the community, getting out 
there, and partnering with our customers. So, from an economic 
perspective, the model is different.
</p>
<p>
Now, being backed by 
Progress Software provides us the benefit that customers can have that 
assurance that we're backed by a large organization. But, having 
FuseSource as standalone company, as you said, gives us that 
independence around decision making and really being like a startup.
</p>
<p>
We'll be able to have our own processes in any functional area that we need to best meet the needs of the open source users.
</p>
<p>
<strong>Davies:</strong>
From a technical perspective, it&#8217;s really good for us. The shackles 
are off. There&#8217;s a lot of sudden reinvigorating that seems to move 
forward. We've got a lot of really good ideas that we want to push out 
and roll out over the coming year, particularly enhancing of the 
products we already have, but also moving onto new areas.
</p>
<p>
There's
a big excitement, like you would expect when you have got a startup. 
It just feels like a startup mentality. People are very passionate 
about what they're doing inside FuseSource.
</p>
<p>
It's even more so, now that 
we have become autonomous of Progress. Not that working inside Progress
was a bad thing, but we were constrained by some of the rigors and 
procedures that you have to go through when you are part of a larger 
organization. Because those shackles have been taken away, it means that
we can actually start innovating more in the direction we really want
to drive our software too. It&#8217;s really good.
</p>
<p>
<strong>Moynihan:</strong>
From a customer perspective, this change will have a small but 
significant impact. We are continuing to do everything that we have 
been doing, but we will be able to have even more independence in the
way that we do things. So it will all be beneficial to customers.
</p>
<p>
We
have also launched a new community site at FuseSource.com, which 
we're pretty excited about. We were planning to do that and we've been
working on that for several months. That just provides some 
additional usability and ability to find things on the site.
</p>
<p>
Overall, it will be really good for our customers. We've talked with them, and they're pretty excited about it.
</p>
<p>
<a href="http://traffic.libsyn.com/interarbor/BriefingsDirect-FuseSource_Re-Energizes_for_OSS_Middleware_Push.mp3">Listen</a> to the podcast. Find it on <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=85270006&amp;s=143441">iTunes/iPod</a>. Read <a href="http://briefingsdirect.blogspot.com/2010/10/fusesource-gains-new-autonomy-to-focus.html">a full transcript</a> or <a href="http://interarborsolutions.books.officelive.com/Documents/08242010FUSE1.pdf">download</a> a copy. 
</p><img src="http://www.it-director.com/plg/ty_article/pg_12383/dm_0/6362c180b1bd978a4a0302c2de7b71ef.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Dana Gardner, Interarbor Solutions)</author>
            <category>Business Issues-&gt;Compliance</category>
            <category>Business Issues-&gt;Costs</category>
            <category>Business Issues-&gt;Innovation</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Resellers</category>
            <category>Channels-&gt;Retail</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise</category>
            <category>Enterprise-&gt;Public Sector</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Services</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <category>SME</category>
            <category>Technology</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Tue, 26 Oct 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12383&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>TIBCO's strategy for Enterprise 3.0</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12360&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/13537/simon_holloway.php?ref=fd_side_itd" title="View profile for Simon Holloway"><img border="0" src="http://www.it-director.com/images/people/small/simon_holloway.gif" width="40" height="50" alt="Simon Holloway" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/13537/simon_holloway.php?ref=fd_side_itd" title="View profile for Simon Holloway">Simon Holloway</a>, <em>Practice Leader -  Process Management &amp; RFID</em>, Bloor Research<br/>Posted: 15th October 2010<br/>Copyright Bloor Research &copy; 2010</td><td><a href="http://www.it-director.com/about/company/1/bloor_research.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/bloor_research.gif" width="88" height="33" alt="Logo for Bloor Research" /></a></td></tr></table></div>

<p>At the end of September 2010, TIBCO unveiled their strategy to support &#8220;Enterprise 3.0&#8221; at TIBCO NOW. To understand the strategy, you first need to understand what Enterprise 3.0 is all about.</p>
<p>The term was coined by Sramana Mitra who is an an entrepreneur and has been a strategy consultant in Silicon Valley since 1994. Mitra defines Enterprise 3.0 as an organisation, being a confederation of customers, partners, suppliers, outsourcers, distributors, resellers, and other kinds of entities, rather than one monolithic organisation. &#8220;Collaboration&#8221; and &#8220;sharing&#8221; become the key words in making this all work. However, TIBCO have a simpler view of Enterprise 3.0 as the evolution of the traditional transaction-based enterprise into one where real-time event-based information is taking an ever more important role.</p>
<p>Stefan Farestam, TIBCO&#8217;s EMEA Director of Product Marketing defined the difference between Enterprise 2.0 and 3.0 as:</p>
<ul><li> Information has moved from being static to dynamic in nature </li>
<li> Processing has moved from transaction-based to event-based </li>
<li> Processing of data has moved from database to Enterprise Service Bus <br /></li>
<li>Applications have moved from ERP to BPMS based sitting on top of legacy applications </li>
<li> Business intelligence has moved to real time business rules </li>
<li> From a 2 dimensional world to a 3 dimensional one. </li>
</ul><p>Farestam went on to explain how TIBCO were going to help organisations achieve what he called &#8220;The Two Second Advantage&#8221;&#8212;using a quote from Vivek Ranadive &#8220;A little bit of the right information, just a little before hand&#8212;whether it is a couple of seconds, minutes or hours&#8212;is more valuable than all of the information in the world weeks or months later.&#8221; Farestam and other presenters illustrated this concept by talking about a number of TIBCO customer scenarios showing how business is event-based, whereas IT systems are transaction-based:</p>
<ul><li> Citibank, in Hong Kong, where they track all financial events that preceded the withdrawal of cash at the ATM and intelligently guesses that the person withdrawing cash is, for example, at the hospital with his pregnant wife and thus interested in a promotion for baby store. </li>
<li> Southwest Airlines, who are able to notify customers when a flight is delayed or cancelled (and rebook automatically) and reroute flights. </li>
<li> Bank of America, who have 145 million customers and 10&#8211;20 thousand events per second, which adds up to 1 billion events (not processes) per second. </li>
</ul><p>Alan Harrington, Worldwide Director of Business Optimization, added to this theme by saying, &#8220;Organisations have massive amounts of data and more events but with little time to understand them. The pace of business is not going to change so this situation will only be exasperated.&#8221; Harrington went to suggest that there were 4 critical requirements to providing a solution to this issue:</p>
<ul><li> The ability to handle events on a massive scale; </li>
<li> Universal development tools that allow an organisation freedom to innovate; </li>
<li> The ability to integrate people naturally; and </li>
<li> The ability to deploy software where and when you needed it. </li>
</ul><p>Harrington and then Thierry Schang, Vice-President Engineering, then described how TIBCO&#8217;s new universal platform would support Enterprise 3.0 and the 2-Second Advantage. Figure 1 shows the high-level architecture diagram that was used.</p>
<p><img src="https://www.bloorresearch.com/assets/media/2086/Tibco_1.png" alt="Architecture diagram" width="450" height="296" /></p>
<p>Figure 1:TIBCO ActiveMatrix Universal Application Platform (Source: TIBCO)</p>
<p>This product architecture shows how TIBCO have, over the last few years, been pulling together their various acquisitions and home grown products into a single cohesive whole that is able to work together as one, whilst, at the same time, being open to work with competitor products. However this still doesn&#8217;t cover the whole portfolio, such as Spotfire for business intelligence and the new Silver suite, which is part of the part of the Deploy message providing build-scale environment to develop for clouds. It consists of:</p>
<ul><li>Silver Fabric: construct self-service clouds</li>
<li>Silver Grid: local and external cloud scalable deployments</li>
<li>Silver CAP: develop solutions for clouds</li>
<li>Silver BPM: run BPM solutions in the cloud</li>
<li>Plus applications built on the platform such as Silver Formline, tibbr, and Silver Spotfire.</li>
</ul><p>To support the need for an application development environment which supplies the ability to innovate freely, TIBCO have what is now branded ActiveMatrix BusinessWorks; their model-driven approach to application integration and process orchestration that requires no coding. As part of this environment, there is a free download TIBCO Business Studio Developer.</p>
<p>TIBCO now have some 130 adapters that form their ActiveMatrix Adapters product to support the needs of businesses to integrate naturally. The engine driving integration is ActiveMatrix Enterprise Service Bus. This is a key component in TIBCO&#8217;s support for SOA. An underlying grid-based architecture makes it possible to scale up and out dynamically at runtime. To support the building of composite applications, TIBCO have ActiveMatrix Service Grid, which is built on open standards, thus being complete application neutral with support for both Java and .NET.</p>
<p>Governance, from TIBCO&#8217;s viewpoint, includes Management. I am not sure that I fully agree with this. There is often confusion between monitoring and management; I see the former as the passive ability to see what is happening while management is about active control. TIBCO have an impressive portfolio of products, including ActiveMatrix Service Performance Manager, which provides active management of SLAs, and Hawk. The other 2 components on offer to support Governance is TIBCO ActiveMatrix Lifecycle Governance Framework, which provides an SOA registry and repository foundation, and ActiveMatrix Policy Manager, which defines policies across services hosted on heterogeneous SOA environments, mediated by the ActiveMatrix Service Bus and through TIBCO ActiveMatrix Service Bus for authentication and authorisation, encryption, logging, auditing, and service versioning.</p>
<p>That leaves Process in their diagram. TIBCO, through ActiveMatrix, are providing solutions for in-house and cloud as well as for complex event processing. What wasn&#8217;t clear to me was if or how ActiveMatrix BPM and Silver BPM are connected to TIBCO&#8217;s CEP product BusinessEvents.</p>
<p><img src="https://www.bloorresearch.com/assets/media/2086/Tibco_2.png" alt="" width="450" height="293" /></p>
<p>Figure 2: TIBCO ActiveMatrix BPM Architecture (Source: TIBCO)</p>
<p>Justin Blunt, Senior Product Manager for BPM, presented TIBCO&#8217;s solutions as 3rd Generation BPM. Interesting; have we already reached that number?! If we forget which generation, TIBCO, since the Staffware acquisition, have always been able to place them at the top of the pile in BPM, and many analyst reviews have it placed in the top area. TIBCO understand how critical to business processes are in terms of supporting customers, delivering goods and services and managing operations. They also recognise that business processes involve not just applications/systems but also people, both inside and outside organisation boundaries. Our business processes don&#8217;t exist on their own. The critical mission, as TIBCO sees it, is to manage business processes as a managed service within an organisation. To aid the speed of development, TIBCO have developed the concept of &#8220;workflow patterns&#8221;. These provide built-in, model-driven support for control, resource, and data patterns (an initiative based on the work of a joint effort of Eindhoven University of Technology and Queensland University of Technology), eliminating the need for complex code or rules.</p>
<p>This was the first time that I have started to understand how the TIBCO portfolio fits together. Yes there are some still some holes, but that is more due to time-constraints of trying to cram into a set time, information on the complete portfolio. Bloor applaud TIBCO for developing a strategy that both pulls together all their product portfolio into a seamless whole whilst at the same time being able to offer the ability to switch parts of the portfolio out because of the big use of open standards. Well done TIBCO. More please.</p><img src="http://www.it-director.com/plg/ty_article/pg_12360/dm_0/67c4cd74164ecac5faf33569c2e2d1ff.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Simon Holloway, Bloor Research)</author>
            <category>Business Issues-&gt;Change</category>
            <category>Business Issues-&gt;Quality</category>
            <category>Channels-&gt;ISV</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Technology-&gt;Storage</category>
            <pubDate>Fri, 15 Oct 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12360&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>HP leverages converged infrastructure across IT spectrum to simplify branch offices and data centers</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12345&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner"><img border="0" src="http://www.it-director.com/images/people/small/dana_gardner.gif" width="40" height="50" alt="Dana Gardner" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner">Dana Gardner</a>, <em>Principal Analyst</em>, Interarbor Solutions<br/>Posted: 6th October 2010<br/>Copyright Interarbor Solutions &copy; 2010</td><td><a href="http://www.it-director.com/about/company/8862/interarbor_solutions.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/interarbor_solutions.gif" width="88" height="33" alt="Logo for Interarbor Solutions" /></a></td></tr></table></div>

<p>
The trend toward <a href="http://h18000.www1.hp.com/products/solutions/converged/main.html">converged infrastructure</a>&#8212;a whole greater than sum of the traditional IT hardware, software, networking and storage parts&#8212;is going both downstream and upstream.
</p>
<p>
HP <a href="http://www8.hp.com/us/en/hp-news/article_detail.html?compURI=tcm:245-762733&amp;pageTitle=">today announced</a> how combining and simplifying the parts of IT infrastructure makes the solution value far higher on either end of the applications distribution equation: At <a href="http://h20338.www2.hp.com/serverstorage/us/en/messaging/feature-midmarket-branchoffice-consolidation.html">branch offices</a> and the next-generation of compact and <a href="http://h71028.www7.hp.com/enterprise/cache/595887-0-0-0-121.html">mobile all-in-one data center containers</a>.
</p>
<p>
Called the <a href="http://www8.hp.com/us/en/hp-news/article_detail.html?compURI=tcm:245-600168&amp;pageTitle#bra">HP Branch Office Networking Solution</a>,
the idea is that engineering the fuller IT and communications 
infrastructure solution, rather then leaving the IT staff and&#8212;even 
worse&#8212;the branch office managers to do the integrating, not only 
saves money, it allows the business to focus just on the applications 
and processes. This focus, by the way, on applications and processes&#8212;not the systems integration, VOIP, updates and maintenance&#8212;is driving
the broad interest in cloud computing, SaaS and outsourcing. [Disclosure: HP is a sponsor of BriefingsDirect podcasts.]
</p>
<p>
HP's announcements today in Barcelona are also marked by an emphasis on an <a href="http://www.hp.com/hpinfo/newsroom/press_kits/2010/HPOptimizesAppDelivery/Transforming_Branch_Office.pdf">ecosystem of partners approach</a>,
especially the branch office solution, which packages 14 brand-name 
apps, appliances and networking elements to make smaller 
sub-organizations an integrated part of the larger enterprise IT effort.
The partner applications include WAN acceleration, security, unified 
communications and service delivery management.
</p>
<p>
<strong>Appliances need integration too</strong><br />
You
could think of it as a kitchen counter approach to appliances, which 
work well alone but don't exactly bake the whole cake. Organizing, 
attaching and managing the appliances&#8212;with an emphasis on security 
and centralized control for the whole set-up&#8212;has clearly been missing
in branch offices. The <a href="http://h10010.www1.hp.com/wwpc/uk/en/sm/WF05a/12883-12883-4172267-4172283-4172283-1827663.html">E5400 series switch</a> accomplishes the convergence of the discrete network appliances. The HP E5400 switch with new <a href="http://www.hp.com/hpinfo/newsroom/press_kits/2010/HPOptimizesAppDelivery/zl_Module.pdf">HP Advanced Services ZL</a> module is available worldwide today with pricing starting at &#36;8,294.
</p>
<p>
Today's HP news also follows a slew of product announcements last month that targeted the SMB market, and the "parts is parts" side of building out IT solutions.
</p>
<p>
To
automate the branch office IT needs, HP is bringing together elements 
of the branch IT equation from the likes of Citrix, Avaya, Microsoft, 
and Riverbed. They match these up with routers, switches and management 
of the appliances into a solution. Security and access control across 
the branches and the integrated systems are being addressed via <a href="http://www8.hp.com/us/en/hp-news/article_detail.html?compURI=tcm:245-600168&amp;pageTitle#app">HP TippingPoint</a>
security services. These provide granular control of application 
access, with the ability to block access to entire websites&#8212;or 
features&#8212;across the enterprise and its branches.
</p>
<p>
Worried about too much Twitter
usage at those branches? The new HP Application Digital Vaccine (AppDV)
service delivers specifically-designed filters to the HP TippingPoint 
Intrusion Prevention System (IPS), which easily control access to, or 
dictate usage of, non-business applications.
</p>
<p>
The branch 
automation approach also support a variety of network types, which opens
the branch offices to be able to exploit more types of applications 
delivery: from terminal serving apps, to desktop virtualization, to 
wireless and mobile. The all-WiFi office might soon only need a single, 
remotely and centrally managed locked-down rack in a lights-out closet, 
with untethered smartphones, tablets and notebooks as the worker nodes. 
Neat.
</p>
<p>
When you think of it, the new optimized branch office (say 25 seats and up) should be the <a href="http://www.it-analysis.com/business/compliance/content.php?cid=12306">leader in cloud adoption</a>, not a laggard. The HP Branch Office Networking Solution&#8212;with these market-leading technology partners&#8212;might just allow 
the branches to demonstrate a few productivity tricks to the rest of the
enterprise.
</p>
<p>
Indeed, we might just think of many more "branch 
offices" as myriad nodes within and across the global enterprises, where
geography becomes essentially irrelevant. Moreover, the branch office is the SMB, supported by any number and types of service providers, internal and external, public and private, SaaS and cloud.
</p>
<p>
<strong>
Data centers get legs</strong><br />
Which brings us to the other end of the HP spectrum
for today's news. The same "service providers" that must support these 
automated branch offices&#8212;in all their flavors and across the org 
chart vagaries and far-flung global locations&#8212;must also re-engineer 
their data centers for the new kinds of workloads, wavy demand curves, 
and energy- and cost-stingy operational requirements.
</p>
<p>
So HP has built a sprawling complex in Houston&#8212;the <a href="http://h30423.www3.hp.com/index.jsp?fr_story=7b2e100c2645565a4e549df44eaf044e3a075ca8&amp;rf=bm">POD Works</a>&#8212;to build an adaptable family of modular data centers&#8212;the <a href="http://h20338.www2.hp.com/enterprise/cache/595887-0-0-0-121.html">HP Performance Optimized Datacenter (POD)</a>&#8212;in the shape of 20- and 40-foot tractor-trailer-like containers. As we've seen <a href="http://www.sun.com/service/sunmd/">from some other vendors</a>,
these mobile data centers in a box demand only that you drive the 
things up, lock the brake and hook up electricity, water and a 
high-speed network. I suppose you also drop them on the roof with a 
helicopter, but you get the point.
</p>
<p>
But in today's economy, the 
efficiency data rules the roost. The HP PODs deliver 37 percent more 
efficiency and cost 45 percent less than a traditional brick-and-mortar 
data centers, says HP.
</p>
<p>
Inside, the custom-designed container is 
stuffed with highly engineered racks and the cooling, optimized networks
and storage, as well as the server horsepower&#8212;in this case HP 
ProLiant SL6500 Scalable Systems, from 1 to 1,000 nodes. While HP is 
targeting these at the high performance computing and service provider 
needs&#8212;those that are delivering high-scale and/or high transactional 
power&#8212;the adaptability and data center-level design may well become 
more the norm than the exception.
</p>
<p>
The PODs are flexible at 
supporting the converged infrastructure engines for energy efficiency, 
flexibility and serviceability, said HP. And the management is converged
too, via Integrated Lights-Out Advanced (ILO 3), part of HP Insight 
Control.
</p>
<p>
The POD parts to be managed are essentially as many as 
eight servers, or up to four servers with 12 graphic processing units 
(GPU), in single four-rack unit enclosures. The solution further 
includes the HP ProLiant s6500 chassis, the HP ProLiant SL390s G7 server
and the HP ProLiant SL170s G6 servers. These guts can be flexibly upped
to accommodate flexible POD designs, for a wide variety and scale of 
data-center-level performance and applications support requirements.
</p>
<p>
<strong>Built-in energy consciousness</strong><br />
You
may not want to paint the containers green, but you might as well. The 
first release features optimized energy efficiency with HP ProLiant SL 
Advanced Power Manager and HP Intelligent Power Discovery to improve 
power management, as well as power supplies designed with 94 percent 
greater energy efficiently, said HP.
</p>
<p>
Start saving energy with 
delivering more than a teraFLOP per unit of rack space to increase 
compute power for scientific rendering and modeling applications. Other 
uses may well make themselves apparent.
</p>
<p>
Have data center POD, 
will travel? At least the wait for a POD is more reasonable. With HP 
POD-Works, PODs can be assembled, tested and shipped in as little as six
weeks, compared with one year or longer, to build a traditional 
brick-and-mortar data center, said HP.
</p>
<p>
Hey, come to think of it, 
for those not blocking it with the TippingPoint IPS, I wish Twitter had a
few of these on those PODs on the bird strings instead of that fail whale.
Twitter should also know that multiple PODs or a POD farm can support 
large hosting operations and web-based or compute-intensive 
applications, in case they want to buy Google or Facebook.
</p>
<p>
Indeed, as cloud computing grains traction, data centers may be located (and co-located) based on more than whale tails. <a href="http://www.sysmannews.com/THE_DATA_CENTER_SECURITY_COMPLIANCE_ISSUES_HOLDING_BACK_THE_CLOUDS/By_John_Rath/About_BACKUPRECOVERY_and_CLOUDCOMPUTING_and_SECURITY/32699">Compliance to local laws</a>, for business continuity
and to best serve all those thousands of automated branch offices might
also spur demand for flexible and efficient mobile data centers.
</p>
<p>
Converged infrastructure may have found a converged IT market, even one that spans the globe.
</p><img src="http://www.it-director.com/plg/ty_article/pg_12345/dm_0/7611b31d2a5f228d36d49d49075d44e4.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Dana Gardner, Interarbor Solutions)</author>
            <category>Business Issues-&gt;Compliance</category>
            <category>Business Issues-&gt;Costs</category>
            <category>Business Issues-&gt;Innovation</category>
            <category>Business Issues-&gt;Regulation</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Channels-&gt;Resellers</category>
            <category>Channels-&gt;Retail</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise</category>
            <category>Enterprise-&gt;Consumer</category>
            <category>Enterprise-&gt;Finance</category>
            <category>Enterprise-&gt;Manufacturing</category>
            <category>Enterprise-&gt;Public Sector</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Enterprise-&gt;Transport</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <category>SME</category>
            <category>Technology</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Data management</category>
            <category>Technology-&gt;Infrastructure</category>
            <category>Technology-&gt;Mobile</category>
            <category>Technology-&gt;Security</category>
            <category>Technology-&gt;Storage</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Wed, 06 Oct 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12345&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>A new era for Xerox</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12343&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/12348/louella_fernandes.php?ref=fd_side_itd" title="View profile for Louella Fernandes"><img border="0" src="http://www.it-director.com/images/people/small/louella_fernandes.gif" width="40" height="50" alt="Louella Fernandes" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/12348/louella_fernandes.php?ref=fd_side_itd" title="View profile for Louella Fernandes">Louella Fernandes</a>, <em>Principal Analyst</em>, Quocirca<br/>Posted: 4th October 2010<br/>Copyright Quocirca &copy; 2010</td><td><a href="http://www.it-director.com/about/company/20/quocirca.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/quocirca.gif" width="88" height="33" alt="Logo for Quocirca" /></a></td></tr></table></div>

<p>
Xerox is on a mission: to reinvent itself as a leading business process and document management company, disrupting the legacy perception of a brand which is synonymous with photocopiers. Its acquisition of the services company ACS in 2009 for &#36;6.4 billion was a bold move in this transformation aiming to combine the Xerox brand, global reach and innovation with ACS's established IT outsourcing (ITO) and business process outsourcing (BPO) business.&#160; 
</p>
<p>
Indeed, ACS's heritage in business process management and information technology services means Xerox is already processing 37 billion public transport fares annually, processing 900 million healthcare claims annually and handling 1.5 million phone calls daily in 150 call centres. Consequently, thanks to the ACS acquisition, Xerox services revenue has climbed to 50% of its total sales in 2010, from 23% in 2009. The market opportunity is real. According to figures quoted by Xerox, it has now moved from focusing on a &#36;132 billion global market, which included office and production hardware and document outsourcing, to a &#36;500+ billion market, which now also includes the thriving BPO and ITO segments. 
</p>
<p>
<strong>Ready for real business</strong><br />
The ACS acquisition has signalled a new era for Xerox, and catalysed significant investment in the Xerox brand. Its global "Ready for real business" campaign demonstrates how businesses can outsource areas such as document management, business process management or IT services to Xerox, enabling them to focus on their core business. Its microsite <a href="http://www.realbusiness.com/">http://www.realbusiness.com/</a> highlights its work with companies such as Marriott Hotels &amp; Resorts, Target, Procter &amp; Gamble, The New York Mets, Ducati and the University of Notre Dame. These case studies highlight Xerox's capabilities beyond the printed page, demonstrating its credentials across IT outsourcing, customer care, finance and accounting and human resource support, as well as its breadth of reach across many verticals&#8212;all areas where many do not realise Xerox is participating in. 
</p>
<p>
<strong>Traditional equipment sales not forgotten</strong><br />
With a business rooted in the printed page, Xerox is not giving up on its traditional printing, copying and document management businesses which now accounts for 44% of annual revenue. However, the highest revenue opportunities are in colour print, where adoption is still low, representing only 30% of its installed base. For all vendors in this market, the key to broadening the reach of colour products is to drive down the cost of colour printing. Xerox is banking on its latest ColorQube printer, which uses solid ink rather than ink cartridges, to achieve this. Xerox claims ColorQube printers can reduce the cost of colour printing by 62% and produce 90% less waste than comparable color laser devices. 
</p>
<p>
With SMB customers accounting for approximately 60% of revenues from&#160;its mid-range business, Xerox must continue to capture further sales through the IT sales channel. One way it is aiming to differentiate here is through its partner led managed print service, Xerox Partner Print Services (XPPS). With over 150 partners engaged, this service, which also supports multivendor products, promises to help garner Xerox more services revenue through the channel. Nevertheless the IT-centric reseller channel is a hard nut to crack when it comes to print services due to the need to incorporate cost per page printing, break/fix and supplies replenishment. In response to the need for simple service packages in this area, other vendors, such as HP, are also coming to market with value print services, which aim to increase service revenue for channel partners. 
</p>
<p>
<strong>Leadership in enterprise managed print services (MPS)</strong><br />
For some time now, the burgeoning managed print services market has helped printer and copier companies to move from a mature, low margin hardware business to one which offers long term customer relationships and recurring revenue opportunities. With contracts 5 years long, MPS enables vendors to manage the complete print environment of a customer, and gain predictable revenue streams from printed pages, often across a heterogeneous printer fleet. 
</p>
<p>
According to Xerox it has retained 100% of its enterprise MPS clients who have signed a contract since 2001, it manages around 1.5 million devices through its MPS contracts, over 50% of which are manufactured by competitors. Its most recent addition to its MPS suite&#8212;mobile print&#8212;was a result of the Xerox and P&amp;G Innovation Council, enabling employees to print directly from smart phones. 
</p>
<p>
Due to its long established heritage in delivering managed print services (now part of its Global Document Outsourcing division) and its broad service portfolio, which encompasses the office environment to the print room, Quocirca considers Xerox a leader in the MPS market. However its closest rival HP is performing well, boosted by is dominance in the office print environment, its acquisition of EDS and its strategic alliance with Canon. 
</p>
<p>
<strong>Expanding market reach</strong><br />
The ACS acquisition means that the combined company can now pursue opportunities across the document outsourcing, ITO and BPO segments, exploiting the respective customer bases of Xerox and ACS. Xerox already has signed managed print services (MPS) deals for companies that were existing ACS customers, such as Ingersoll Rand. According to Xerox, such cross selling initiatives are taking place in more than one hundred accounts across all regions, which have generated over 10 ACS signings to date and a &#36;2.5 billion pipeline. 
</p>
<p>
With only 8 months having passed since the ACS acquisition closed, Xerox still has some way to go to before it can offer an integrated Xerox/ACS offering. This is likely to be more challenging in Europe where the profile of ACS is lower than North America&#8212;currently 90% of ACS revenue comes from the US. Nevertheless, Xerox recognises that a global company still needs localised presence and offerings, especially in a diverse region such as Europe, and is working to develop a consistent global approach which is complimented by local and regional delivery capabilities. 
</p>
<p>
<strong>Conclusion</strong><br />
The ACS acquisition certainly promises to set Xerox apart from its competitors, and success in Europe will require Xerox to truly integrate its offerings, build out a European service organisation and demonstrate the pedigree of ACS in Europe. Particularly in the document outsourcing market, Xerox should remain watchful of companies such as Canon and Ricoh who are expanding their capabilities. Meanwhile HP's IT and networking heritage positions it well for companies looking to outsource both the desktop and print infrastructure. 
</p>
<p>
Certainly ITO and BPO bring added value to the Xerox Enterprise Print Service portfolio, but Xerox will face challenges developing an integrated sales strategy given the different stakeholders across MPS, ITO and BPO engagements. As with any acquisition, success will rely on the investment in staff and training but probably most fundamental is whether Xerox will retain ACS as a separate brand. 
</p>
<p>
Quocirca believes that although the European market presence of Xerox may do well to push the ACS brand, ultimately the best approach would to be recast ACS as Xerox Enterprise Services or similar, to avoid confusion and support a cohesive go to market approach. For now, Quocirca expects that the majority of synergistic opportunities will reside in the US region. Mindful of this, Quocirca will be watching closely how Xerox approaches and executes on its promises to the European market. 
</p><img src="http://www.it-director.com/plg/ty_article/pg_12343/dm_0/d2afa935b24cbb06817c2da248a84c5d.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Louella Fernandes, Quocirca)</author>
            <category>Business Issues</category>
            <category>Channels</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Services-&gt;Outsourcing</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;BPO</category>
            <pubDate>Mon, 04 Oct 2010 09:20:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12343&amp;ref=fd_side_itd</guid>
        </item>
        <item>
            <title>Automated governance: Cloud computing's lynchpin for success or failure</title>
            <link>http://www.it-director.com/services/consulting/content.php?cid=12330&amp;ref=fd_side_itd</link>
            <description><![CDATA[<div style="background-color: #efefef; border: 1px solid #cccccc; padding: 2px; margin: 0 0 10px 0;"><table style="font-size: 98%;" width="100%"><tr><td width="40"><a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner"><img border="0" src="http://www.it-director.com/images/people/small/dana_gardner.gif" width="40" height="50" alt="Dana Gardner" /></a></td><td valign="top" width="100%">By: <a href="http://www.it-director.com/about/author/15095/dana_gardner.php?ref=fd_side_itd" title="View profile for Dana Gardner">Dana Gardner</a>, <em>Principal Analyst</em>, Interarbor Solutions<br/>Posted: 30th September 2010<br/>Copyright Interarbor Solutions &copy; 2010</td><td><a href="http://www.it-director.com/about/company/8862/interarbor_solutions.php?ref=fd_side_itd" title="View company profile"><img border="0" src="http://www.it-director.com/images/company/button/interarbor_solutions.gif" width="88" height="33" alt="Logo for Interarbor Solutions" /></a></td></tr></table></div>

<p>
Management
and governance are the arbiters of success or failure when we look 
across a cloud services ecosystem and the full lifecycle of those 
applications. That's why governance is so important in the budding era of cloud computing.
</p>
<p>
As
cloud-delivered services become the coin of the productivity realm, 
how those services are managed as they are developed, deployed, and 
used&#8212;across a services lifecycle&#8212;increasingly determines their 
true value.
</p>
<p>
And yet governance is still too often fractured, poorly extended across the development-and-deployment continuum, and often not able to satisfy the new complexity inherent in cloud models.
</p>
<p>
One
key bellwether for future service environments and for defining the 
role and requirements for automated cloud governance is in applications development, which, due to the popularity of platform as a service (PaaS), is already largely a services ecosystem.
</p>
<p>
Here to help us explain why baked-in visibility across services creation and deployment is essential please join <a href="http://www.jpphelp.com/about.asp">Jeff Papows</a>, President and CEO of WebLayers and the author of <a href="http://www.glitchthebook.com/">Glitch: The Hidden Impact of Faulty Software</a>, and <a href="http://www.linkedin.com/in/jpmcdon">John McDonald</a>, CEO of CloudOne Corp. The discussion is moderated by BriefingsDirect's Dana Gardner, Principal Analyst at Interarbor Solutions.
</p>
<p>
Here are some excerpts:
</p>
<p>
<strong>McDonald: </strong>Cloud, from a technology perspective, is more about some very sophisticated tools that are used to virtualize the workloads and the data and move them live from one bank of servers to another, and from one whole data center to another, without the user really being aware of it. But, fundamentally, cloud computing is about getting access to a data center that's my data center on-demand.
</p>
<p>
Fundamentally, the easiest way to remember it is that cloud is to hardware as software as a service (SaaS) is to software. Basically, for <a href="http://www.oncloudone.com/">CloudOne</a>, we're providing IBM Rational Development tools both through cloud computing and SaaS.
</p>
<p>
...
There's a myth that development is something that we ought to be 
tooling up for, like providing power to a building or water service. In
reality, that&#8217;s not how it works at all.
</p>
<p>
There are people who come and go with different roles
throughout the development process. The front-end business analysts 
play a big role in gathering requirements. Then, quite often, architects
take over and design the application software or whatever we are 
building from those requirements. Then, the people doing the coding&#8212;developers&#8212;take over. That rolls into testing and that rolls into 
deployment. And, as this lifecycle moves through, these roles wax and 
wane.
</p>
<p>
But the traditional model of getting development tools doesn&#8217;t really work that way at all.
You usually buy all of the tools that you will ever need up front, 
usually with a large purchase, put them on servers, and let them sit 
there, until the people who are going to use them log in and use 
them. But, while they are sitting there, taking up space and your 
capital expense budget, and not being used, that&#8217;s waste.
</p>
<p>
The
cloud model allows you to spin up and spin down the appropriate amount
of software and hardware to support the realities of the software development lifecycle.
The money that you save by doing that is the reason you can open any 
trade magazine and the first seven pages are all going to be about 
cloud.
</p>
<p>
It's allowing customers of CloudOne and IBM Rational to 
use that money in new, creative, interesting ways to provide tools 
they couldn't afford before, to start pilots of different, more 
sophisticated technologies that they wouldn't have been able to gather
the resources to do before. So, it's not only a cost-savings 
statement, it's also ease of use, ease of start-up, and an ability to 
get more for your dollar from the development process. That's a pretty cool thing all the way around.
</p>
<p>
<strong>Papows: </strong>A lot of about what&#8217;s going on in cloud computing it&#8217;s not a particularly new thing. What we used to think of was hosting or outsourcing. What&#8217;s happening now is the world is becoming more mobile, as 20 percent of our IT capacity is focused on new application development.
</p>
<p>
We
have to get more creative and more distributed about the talent that 
contributes to those critical application development and projects. 
... Design time governance is the next logical thing in that 
continuum, so that all of the inherent risk mitigation associated with
governance and then IT contacts can be applied to application 
development in a hybrid model that&#8217;s both geographically and 
organizationally distributed.
</p>
<p>
When you try to add some linear 
structure and predictability to those hybrid models, the constant that 
can provide some order and some efficiency is not purely 
technology-based. It's not just the virtualization, the added virtual machine capacity, or even the middleware to include companies like WebLayers or tools like Rational. It's the process that goes along with it. One of the really important things about design-time governance is the review process.
</p>
<p>
Governance
is a big part of the technology toolset that institutionalizes that 
review process and adds that order to what otherwise can quickly become
a bit chaotic.
</p>
<p>
<strong>McDonald:</strong> The 
challenge of tools in the old days was that they were largely created 
during a time where all the people and the development project were 
sitting on the same floor with each other in a bunch of cubes in 
offices.
</p>
<p>
As the challenges of development have caused companies to look at outsourcing and off-shoring,
but even more simplistically the merger of my bank and your bank. 
Then we have groups of developers in two different cities, or we 
bought a packaged application, and the best skill to help us integrate
it is actually from a third-party partner which is in a completely 
different city or country. Those tools have shown their weaknesses, 
even in just getting your hands on them.
</p>
<p>
How do I punch a hole 
through the firewall to give you a way to check in your code problems?
The cloud allows us to create a dedicated new data center that sits 
on the Internet and is accessible to all, wherever they are, and in 
whatever time zone they are working, and whatever relationship they 
have to my company.
</p>
<p>
That frees things up to be collaborative 
across company boundaries. But with that freedom comes a great 
challenge in unifying a process across all of those different people, 
and getting a collaborative engine to work across all those people.
</p>
<p>
It&#8217;s
almost a requirement to keep the wheels on the bus and to have some 
degree of ability to manage the process in the compliance with 
regulations and the information about how decisions were made in such 
distributed ways that they are traceable and reviewable. It&#8217;s really not possible to achieve such a distributed development environment without that governance guidance.
</p>
<p>
<strong>Papows:</strong> We're dealing with some challenges for the first time that require out-of-the-box thinking. I talk about this in "Glitch."
We have reached a point where there a trillion connected devices on 
the Internet as the February of this year. There are a billion embedded
transistors for every human being on the planet.
</p>
<p>
You&#8217;ve <a href="http://www.it-analysis.com/business/change/content.php?cid=12065">read about or heard about or experienced first hand the disasters that can happen</a>
in production environments, where you have some market-facing 
application, where service is lost, where there is even brand damage or
economic consequences.
</p>
<p>
... Everybody intellectually buys into 
governance, but nobody individually wants to be governed. Unless you 
automate it, unless you provide the right stack of tools and codify 
the best practices and libraries that can be reusable, it simply won&#8217;t
happen. People are people, and without the automation to make it 
natural, unnatural things get applied some percentage of the time, and
governance can&#8217;t work that way.
</p>
<p>
<strong>McDonald: </strong>Developers
view themselves quite often as artists. They may not articulate it 
that way, but they often see themselves as artists and their palette 
is code.
</p>
<p>
As such, they immediately rankle at any notion that, 
as artists, they should be governed. Yet, as we&#8217;ve already 
established, that guidance for them around the processes, methods, 
regulations, and so on is absolutely critical for success, really in any
size organization, but beyond the pale in a distributed development environment. So, how do you deal with that issue?
</p>
<p>
Well, you embed it into their entire environment from the very first stage.
In most companies, this is trying to decide what projects we should 
undertake, which in a lot of companies is a mainly over-glorified email 
argument.
</p>
<p>
Governance
has to be embedded at every step of that way, gently nudging, and 
sometimes shuttling all these players back into the right line, when it
comes to ensuring that the result of their effort is compliant with 
whatever it is that I needed to be compliant to.
</p>
<p>
In short, you&#8217;ve got to make it be a part of and embedded into every stage of the development process, so that it largely disappears,
and becomes something that becomes such a natural extension of the 
tool so that you don&#8217;t have anyone along the way realizing that they 
are being governed
</p>
<p>
WebLayers
was the very first partner that we reached out to say, "Can you go 
down this journey with us together, as we begin developing these 
workbenches, these integrated toolsets, and delivering them through the
cloud on-demand?" We already know and see that embedding governance 
in every layer is something we have to be able to do out of the gate.
</p>
<p>
The
team at WebLayers was phenomenal in responding to that request and we
were able to take several based instances of various Rational tools, 
embed into them WebLayers technology, and based on how the cloud 
works, archive those, put them up in our library to be able to be 
pulled down off-the-shelf, cloned, and made an instance of for the 
various customers that we have coming to our pipeline who want to 
experience this technology in what we are doing.
</p>
<p>
... The
avoidance of things going badly is unfortunately very difficult to 
measure. That is something that everyone who attempts to do a 
cloud-delivered development environment and does the right thing by 
embedding in it the right governance guidance should know coming out of
the gate. The best thing that&#8217;s going to happen is you are not going 
to have a catastrophe.
</p>
<p>
That said, one of the neat things about 
having a common workbench, and having the kinds of reporting in 
metrics that it can measure, meaning the <a href="http://jazz.net/about/">IBM Jazz</a>,
along with the WebLayers technology, is that I can get a very 
detailed view of what&#8217;s going on in my software factory at every turn 
of the crank and where things are coming off the rails a little bit.
</p>
<p>
<strong>Papows:</strong>
There's an age-old expression that you're so close to the forest you 
can't see the trees. Well, I think in the IT business we&#8217;re sometime 
so deeply embedded in the bark we can't see anything.
</p>
<p>
We've 
been developing, expanding, deploying, and reinventing on a massive 
scale so rapidly for the last 30 years that we've reached a breaking 
point where, as I said earlier, between the complexity curves, between 
the lack of elasticity and human capital, between the explosion and 
the amount of mobile computing devices and their propensity for 
accessing all of this back-end infrastructure and applications, where 
something fundamentally has to change. It's a problem on a scale that 
can't be overwhelmed by simply throwing more bodies at it.
</p>
<p>
Secondly,
in the current economy, very few CIOs have elastic budgets. We have 
to do as an industry what we've done from the very beginning, which is
to automate, innovate, and find creative solutions to combat the 
convergence of all of those digital elements to what would otherwise be a perfect storm.
</p>
<p>
So
SaaS, cloud computing, automated governance, forms of artificial 
intelligence, Rational tooling, consistent workbench methodologies, all 
of these things are the instruments of getting ourselves out of the corner that we have otherwise painted ourselves in.
</p>
<p>
I
don't want to seem like an alarmist or try to paint too big a storm 
cloud on the horizon, but this is simply not something that's going to 
happen or be resolved in a business-as-usual usual fashion.
</p>
<p>
That,
in fact, is where companies like CloudOne are able to expand and leap
productivity equations for companies in certain segments of the 
market. That's where automation, whether it's Rational, WebLayers, or 
another piece of technology, has got to be part of the recipe of 
getting off this limb before we saw it off behind us.
</p>
<p>
<strong>McDonald:</strong> If you have any inclination at all to see what it is that Jeff and I are telling you, give it a whirl, because it's very simple.
</p>
<p>
That's
one of the coolest things of all about this whole model, in my mind. 
There there is simply no barrier for anyone to give this a try. In the
old model, if you wanted to give the technology a try, you had better
start with your calculator. And you had better get the names and 
addresses of your board of directors, because you're going there 
eventually to get the capital approval and so on to even get a pilot 
project started in many cases with some of these very sophisticated 
tools.
</p>
<p>
This is just not the case anymore. With <a href="http://www.oncloudone.com/Signup.html">the CloudOne environment</a>
you can sign on this afternoon with a web-based form to get a 
instance of let's say, Team Concert set up for you with WebLayers 
technology embedded in it, in about 20 minutes from when you push 
"submit," and it's absolutely free for the first model. From there, you
grow only as you need them, user-by-user. It's really quite simple to
give this concept a try and it's really very easy.
</p>
<p>
<a href="http://traffic.libsyn.com/interarbor/BriefingsDirect-Clouds_Value_Depends_on_Governance_of_Applications_and_Data.mp3">Listen</a> to the podcast. Find it on <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=85270006&amp;s=143441">iTunes/iPod</a>. Read <a href="http://briefingsdirect.blogspot.com/2010/09/governance-lynchpin-for-success-or.html">a transcript</a> or <a href="http://interarborsolutions.books.officelive.com/Documents/080510WebLayers.pdf">download</a> a copy.
</p>
<img src="http://www.it-director.com/plg/ty_article/pg_12330/dm_0/b045249b96ab1cc7647d38c90c058a33.gif" width="4" height="4" alt="" />]]></description>
            <author>rss@it-analysis.com (Dana Gardner, Interarbor Solutions)</author>
            <category>Business Issues-&gt;Compliance</category>
            <category>Business Issues-&gt;Costs</category>
            <category>Business Issues-&gt;Quality</category>
            <category>Business Issues-&gt;Security &amp; Risk</category>
            <category>Channels-&gt;Online</category>
            <category>Channels-&gt;Resellers</category>
            <category>Channels-&gt;Systems Integration</category>
            <category>Enterprise-&gt;Consumer</category>
            <category>Enterprise-&gt;Finance</category>
            <category>Enterprise-&gt;Manufacturing</category>
            <category>Enterprise-&gt;Public Sector</category>
            <category>Enterprise-&gt;Technology</category>
            <category>Enterprise-&gt;Transport</category>
            <category>Services-&gt;Consulting</category>
            <category>Services-&gt;Support &amp; Maintenance</category>
            <category>SME</category>
            <category>Technology-&gt;Applications</category>
            <category>Technology-&gt;Mobile</category>
            <category>Technology-&gt;Security</category>
            <category>Technology-&gt;Systems Mgmt</category>
            <pubDate>Thu, 30 Sep 2010 07:00:00 +0100</pubDate>
            <guid isPermaLink="true">http://www.it-director.com/services/consulting/content.php?cid=12330&amp;ref=fd_side_itd</guid>
        </item>
    </channel>
</rss>
