The Wayback Machine - https://web.archive.org/web/20120615134021/http://cloudcomputing.sys-con.com:80/node/2289929

Welcome!

Cloud Expo Authors: Lori MacVittie, Jason Bloomberg, Elizabeth White, Gilad Parann-Nissany, Roger Strukhoff

Related Topics: Cloud Expo, SOA & WOA, Virtualization, Web 2.0

Cloud Expo: Blog Feed Post

The New Paradigm: Cloud Services, Cloud Tools

In the past year or so, we have witnessed a major shift from client-server to client-cloud

This article was originally published in Software Developer’s Journal.

Cloud Services

In the past year or so, we have witnessed a major shift from client-server to client-cloud. This shift is primarily fueled by two factors: mobile devices exceeding desktop computers and the thousands of different APIs available on the Internet today. What started in early 2000 on eBay and Amazon has become a real revolution in 2012 with thousands of companies, from Twitter and Facebook to AT&T, offering cloud-based services.

REST API

One of the most common ways to access private or public service APIs is via REST requests.

In the client-server approach an organization builds applications that consume its own internal content and
resources. However, even large IT organizations such as AT&T, Verizon and Amazon have come to realize that
they are no match for the social consumer and social enterprise developers out there. By making APIs publicly
available, these organizations hope that developers and “citizen developers” will come and build applications
and mobile apps on top of their services.

Citizen developers at work

Analysts at Gartner see a trend toward app creation independent of IT. They predict that by 2014, citizen developers – employees outside of IT and software development – will build 25% of new business applications. In 2007, they built less than 5%.

One of the best-known API success stories comes from Amazon: Its cloud service APIs let outsiders access
the company’s massive data centers. Twitter, with its deceptively simple 140-character message model, exploded thanks to its API. In fact, you probably read and write tweets via a Twitter application or mobile app rather
than going directly to Twitter’s Web site. Facebook’s Graph API has spawned a whole industry of apps to support its hundreds of millions of users.

Just looking at popular ProgrammableWeb site that lists close to 5,500 APIs (at the time of writing this) and 6,500 mashups or apps created that consume the various APIs. The city of San Francisco, already a mecca for startups, technology, and innovation, has made a big push into attracting developers by making city data and other date from its data.SFgov.org Web site available via API. For example, the city’s MUNI (city bus service) API is available for developers to build apps with using information about bus stations, schedules, and arrivals. Even the United States government jumped on the API bandwagon by making available data.gov, which provides public access to high-value machine-readable data sets generated by the U.S government.

Beyond this, a whole new market segment was created by companies such as StackMob, Parse, Kinvey, CloudyRec, and others that allow you to create your own back-end services and content instantly available as REST services.

One factor in APIs becoming popular is the simplicity and elegance that they provide. Integrating enterprise
systems is usually a very long and complicated process primarily due to different services supporting different
protocols or responses. However, cloud-based API are changing this. As mentioned before, the most popular
approach for invoking services is via REST where the service data is exchanged in JSON format. JSON is a simpler
alternative to XML for use with JavaScript.

The REST protocol consists of just four basic commands: GET for getting objects or data, POST for creating
or posting new objects or data, DELETE for deleting objects, and PUSH for updating (and also creating) objects.
This protocol along with the use of JSON as a format format greatly simplifies working with clients that consume
various cloud-based services. For example, the following might get all objects of type Flower:

GET http://myhost.com/api/flower

The following might be used to get a specific Flower with an ID of 1234:

GET http://myhost.com/api/flower/1234

The following could be used to create a new Flower:

POST http://myhost.com/api/flower/1234
{"name": "Rose"}

The following might be used to delete a Flower object with an ID of 1234:

DELETE http://myhost.com/api/flower/1234

As you can see this is extremely elegant and easy to understand. As discussed in Cloud Tools section, using REST API inside tools makes this approach even simpler.

Cloud Tools

The client-cloud evolution is also being fueled by a new breed of cloud-based development tools. From the beginning of time (or at least it seems that way), tools would need to be installed on a developer’s computer.
Today, many powerful and popular tools such as Eclipse (and its hundreds of plug-ins), NetBeans, IntelliJ, and others can be quickly downloaded and installed on a developer’s computer. Most updates can now be done within
the tool, freeing the developer from re-downloading the tool again. These tools are also powerful, providing advanced visual and source features as well as extensive customization.

Despite how advanced these tools are, a shift is happening where development tools are moving into the Cloud. Eclipse itself has launched the Orion project. The Orion project is “basic” Eclipse in the Cloud and focuses on Web development. One of its main goals is to offer collaborative Web development.

Another player is Cloud9 IDE, which also provides an environment for the development of JavaScript and HTML5 applications.

Tiggzi

And yet another cloud-based tool is Tiggzi. Tiggzi is a cloud-based HTML5 and PhoneGap mobile app builder. Tiggzi makes it super easy and fast to build exactly the apps that are described in this article:
client-cloud. The mobile UI is built with HTML5 and jQuery Mobile components. Also, the UI can be easily connected to thousands of private and public REST APIs. In case, the mobile back-end actually needs to be created,
services such as StackMob, Parse, and MongoDB can be used to create and expose back-end services and databases instantly via REST API. Tiggzi provides the following features that make it easy and fast to build clientcloud mobile apps.

HTML5 and jQuery Mobile drag and drop visual builder

To quickly build the mobile UI, components are simply dragged and dropped into the phone. Using the
drag-and-drop approach makes building the mobile UI
very fast.

PhoneGap included to create hybrid apps and get access to device features

In addition to HTML5 and jQuery Mobile apps, you can build PhoneGap (hybrid) mobile apps by using outof-the-box components or any accesible through the PhoneGap API.

Quick definition and connection to any cloud service

Define any cloud-based service, private or public, and connect to it.

API console

A powerful API console allows you to quickly test the service to make sure it works before using it in an app.

Visual data binding for UI (UI to service, service to UI)

A drag-and-drop visual data binding editor allows you to quickly map data from the mobile UI to services
and then from services to the UI. This unique editor makes using and consuming any cloud service incredibly
fast and easy.

Testing the app instantly in the browser (desktop or mobile) or on the device (for native apps)

Because the app is being built in the browser, testing the app in the browser can be done instantly. At any point during development, the real app can be tested in a desktop or a mobile browser. PhoneGap (hybrid)
apps can also be quickly tested by being launched from a special tester app. Make the app link public and share it with other users or the customer.

Collaboration on the app with other developers

Tiggzi Mobile App Builder comes with Google Docslike collaboration. Collaborate and work on the app with elopers in real-time.

Downloading the app as source code, mobile Web, or PhoneGap project (Android, iOS, Windows Phone)

Export the app code as a mobile Web (HTML/ JavaScript/CSS) project, PhoneGap project (Android, iOS, Windows PHone), or as a binary Android or iOS file.

Note: Windows Phone export added after the article was written.

The app can also be easily and quickly hosted with Tiggzi as a mobile Web app.

The New Stack: HTML5, REST Services, Cloud

As we discussed earlier, a new client-cloud paradigm is growing more and more dominant glued together by a rapid increase in the use of public and private APIs and supported by a rise in the number of citizen developers. As part of this paradigm, a new development stack is emerging as central. This stack consists of HTML5, REST services (REST), and the Cloud. Its emergence is driven by the broad availability of service APIs combined with powerful cloud-based development tools and browserbased apps (HTML5). We believe the future of Web and mobile development is HTML5 with JavaScript in the browser connected to cloud-based services and data via REST.

Read the original blog entry...

More Stories By Max Katz

Max Katz is a Senior Systems Engineer at Exadel. He has been helping customers jump-start their RIA development as well as providing mentoring, consulting, and training. Max is a recognized subject matter expert in the JSF developer community. He has provided JSF/RichFaces training for the past four years, presented at many conferences, and written several published articles on JSF-related topics. Max also leads Exadel's RIA strategy and writes about RIA technologies in his blog, http://mkblog.exadel.com. He is an author of "Practical RichFaces" book (Apress). Max holds a BS in computer science from the University of California, Davis.

Cloud Expo Breaking News
“While there is still a lot of interest in Big Data Analytics, we see an increasing focus on Big Unstructured Data,” observed Tom Leyden, Director of Alliances and Marketing at Amplidata, in this exclusive Q&A; with Cloud Expo Conference Chair Jeremy Geelan. And, Leyden continued, “Object storage is the new paradigm to store those massive amounts of Big Unstructured Data.” Agree or disagree? – "While the IT savings aspect is compelling, the strongest benefit of cloud computing is how it enhances...
“Security standards for moving data into and out of the cloud and for hosting it within the cloud will dramatically help accelerate adoption of the cloud as a secure computing platform,” observed Dr. William L. Bain, founder and CEO of ScaleOut Software, in this exclusive Q&A; with Cloud Expo Conference Chair Jeremy Geelan. Bain also noted that “additional standards for creating elastic clusters that are physically co-located and use high speed networking will also help in hosting applications th...
CloudStack has been the platform of choice for more than a hundred public and private production clouds. In his general session at the 10th International Cloud Expo, Shannon Williams, VP of market development for the Cloud Platforms Group at Citrix and a co-founder of Cloud.com, will provide an insider view and discuss the company's experiences in designing the right architecture for your cloud. Shannon Williams is vice president of market development for the Cloud Platforms Group at Citrix, ...
Very few trends in IT have generated as much buzz as cloud computing. In his session at the 10th International Cloud Expo, Citrix VP Peder Ulander will cut through the hype and quickly clarify the ontology for cloud computing. The bulk of the conversation will focus on the open source software that can be used to build compute clouds (infrastructure-as-a-service) and the complementary open source management tools that can be combined to automate the management of cloud computing environments. ...
One of the most widely asked questions about Big Data today is, “How do we get valuable analytics from Big Data?” Or, how do we get the prize? As data continues to grow exponentially, so does the variety of data (structured and unstructured) coming from humans, machines and applications. In order to pull valuable information from it all, proper data gathering is critical, and the output of that data needs to be timely and accurate, with a flexible method of delivery. Unfortunately, it’s not easy...
"The State of Cloud Computing June 2012" was the topic under discussion in the traditional SYS-CON.tv Power Panel recorded in our Times Square studio yesterday - the Sunday before today's Cloud Expo New York opening, kicking off 4 days of Keynotes, General Sessions technical and strategy breakout sessions, discussion panels, interviews...and of course the huge Cloud Expo show floor with booths from every layer of the Cloud Computing ecosystem. This week also sees the introduction for the first t...
IT departments are experiencing storage capacity needs doubling every 12-18 months, 50x the amount of information and 75x the number of files. IT managers are dealing with growing constraints on space, power and costs to manage their data center infrastructure. Intel is helping businesses and users realize the benefits of cloud computing technology by working to develop open standards that operate across disparate IT infrastructures and by delivering cloud-based architectures that enable federat...
IT Cloud Management strategies enable organizations to maximize the business value of their private clouds In his session at the 10th International Cloud Expo, Joe Fitzgerald, Chief Product Officer & Co-founder of ManageIQ, will discuss customer experiences and how these strategies increase agility, improve service delivery levels and reduce operating expenses. Joe Fitzgerald is the Chief Product Officer & Co-founder of ManageIQ. Prior to founding ManageIQ, he was CTO and Director Product Dev...
There is no longer any question that the cloud computing model will be the prevailing style of delivery for computing over the coming decades; Forrester Research predicts that the global market for cloud computing will grow from $40.7 billion in 2011 to more than $241 billion in 2020. Greenfield application development projects can be designed from the outset to benefit from cloud computing features such as elastic scalability, automated provisioning, infrastructure level APIs, object storage se...
HP announced its first public cloud services on April 10th. And we’ve been the hottest trending topic ever since. Now it’s your turn to get a look at the HP Cloud. In his session at the 10th International Cloud Expo, Blake Yeager, Product Manager Lead for IaaS at HP Cloud Services, will take you through our next public cloud infrastructure, platform services and cloud solutions, show you how easy it is to spin up instances of compute, storage, and CDN as well as share with you the next gen pla...