Comments
Richard Davies wrote: The UK has a good crop of technology pioneers in cloud computing - for example ElasticHosts, FlexiScale, Flexiant, OnApp - and also some strong government initiatives such as G-Cloud. We will have to see whether this kind of technical leadership converts into swift mass-market adoption or not.
Cloud Expo on Google News

SYS-CON.TV
Cloud Expo & Virtualization 2009 East
PLATINUM SPONSORS:
IBM
Smarter Business Solutions Through Dynamic Infrastructure
IBM
Smarter Insights: How the CIO Becomes a Hero Again
Microsoft
Windows Azure
GOLD SPONSORS:
Appsense
Why VDI?
CA
Maximizing the Business Value of Virtualization in Enterprise and Cloud Computing Environments
ExactTarget
Messaging in the Cloud - Email, SMS and Voice
Freedom OSS
Stairway to the Cloud
Sun
Sun's Incubation Platform: Helping Startups Serve the Enterprise
POWER PANELS:
Cloud Computing & Enterprise IT: Cost & Operational Benefits
How and Why is a Flexible IT Infrastructure the Key To the Future?
Click For 2008 West
Event Webcasts
Adobe Flex 2: Development On A Budget
How to put a pretty Flash Player's face on your Web applications for free

From Farata Systems Flex Blog

My primary clients are Java shops. When I suggest using Adobe Flex 2 as a rich client tool for their Web applications, they typically ask about the cost on the server side.  Expected answer: free.

When I start telling them about really powerful features of Flex Data Services, they like it. They just do not like the licensing cost, which is very reasonable. But  Flex 2, it's too young, and some people are still in denial phase. It'll change soon, but there's got to be a free solution.  Just to get the foot in the door.  And there is one. 

I'll be using a JavaServer Page (JSP) here, but you can replace a JSP with any technology  you're comfortable with: servlets, Active Server Pages, Python, PHP et al. Whatever can spit out an XML to a Web browser should work the same way.

I'll show you a really simple application written in Flex 2 that talks to the XML producing JavaServer page. Just to make it simple, let's take  an XML with the information about employees:

<people>
  <person>
      <name>Alex Olson</name>
      <age>22</age><skills>java, HTML, SQL</skills>
  </person>
...
</people>

Now, let's hardcode this (I've got three persons) into a super simple JSP that consists of one out.println() call, where the xml should go between the double quotes:
<%out.println("..."); %>

The complete JSP looks like this (just put your XML in one line so you won't bother with string concatenations):
<%
out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?><people><person><name>Alex Olson</name><age>22</age><skills>java, HTML, SQL</skills></person><person><name>Brandon Smith</name><age>21</age><skills>PowerScript, JavaScript, ActionScript</skills></person><person><name>Jeremy Plant</name><age>20</age><skills>SQL, C++, Java</skills></person></people>");
%>

Deploy this JSP under some servlet container. I have Tomcat, so I just saved it as employees.jsp under my webapp\test  directory.  Do a sanity check to make sure that you've deployed this JSP correctly:  entering  http://localhost:8080/test/employees.jsp in your Web browser has to return the employee data.

Now comes the client part.  If you have an extra $500 laying around, purchase a license of Flex Builder from Adobe and enter the code below in its editor.  If you do not want to spend  any money,  just  type this code in any text editor and use the free command line mxmlc compiler that comes with Flex 2.

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                             applicationComplete="employees.send()">
    <mx:HTTPService id="employees" useProxy="false"  method="POST"
        url="http://localhost:8080/test/employees.jsp" />

    <mx:DataGrid  dataProvider="{employees.lastResult.people.person}" width="60%">
          <mx:columns>
            <mx:DataGridColumn dataField="name" headerText="Name"/>
            <mx:DataGridColumn dataField="age" headerText="Age"/>
            <mx:DataGridColumn dataField="skills" headerText="Skills"/>                       
         </mx:columns>
    </mx:DataGrid>
</mx:Application>
 
Not too much typing, isn't it?

This code uses the  <mx:HTTPService> component that allows you to connect to a specified URL either directly or through a proxy. In my example I just specify the URL of my JSP. The data provider of my data grid uses binding (see the curly braces) and E4X syntax to parse the XML and populate this table with the elements located under the <person>  XML tag that is coming from our employees.jsp. Next month, I'll write a piece explaining Flex data binding in more details.  On the applicationComplete event, we send a request to the  HTTPService object known under id employees, and our JSP readily returns the XML, which is bound to the data grid.

Compile and run this program, and it'll show you the following:

Not a bad result for a dozen lines of  code.

Of course, it's better to be rich and healthy than poor and ill.  But my point is that even poor (or pretending to be poor) people can use Flex 2 with their existing server side Web technologies for free.
About Yakov Fain
Yakov Fain is a Managing Director of Farata Systems, consulting, training and product company. He has authored several Java books, dozens of technical articles. SYS-CON Books released his latest co-authored book , Rich Internet Applications with Adobe Flex and Java: Secrets of the Masters in Spring 2007. Sun Microsystems has nominated and awarded Yakov with the title Java Champion. He leads the Princeton Java Users Group. He is an Adobe Certified Flex Instructor. Yakov co-athored the O'Reilly book "Enterprise Application Development with Flex". He twits at twitter.com/yfain.

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

I have not programmed in Open Laszlo, but the fact that it produces compiled code that runs in a Flash Player makes it much better choice for enterprise development than AJAX based tools.

What about OpenLaszlo (http://www.openlaszlo.com)? Does it look like good enough alternative solution like Flex? I think yes. What d o you think?


Your Feedback
Yakov Fain wrote: I have not programmed in Open Laszlo, but the fact that it produces compiled code that runs in a Flash Player makes it much better choice for enterprise development than AJAX based tools.
Alex wrote: What about OpenLaszlo (http://www.openlaszlo.com)? Does it look like good enough alternative solution like Flex? I think yes. What d o you think?
Latest Cloud Developer Stories
Swisscom, the Swiss telecom, is going into the cloud business. Its subsidiary Swisscom IT Services AG has signed up with Red Hat as a Certified Cloud Provider and launched a public cloud Infrastructure-as-a-Service (IaaS) cloud targeting enterprise-class customers primarily in ...
Apache Deltacloud, the Red Hat-contributed ReSTful API that abstracts differences between clouds so services on any cloud can be managed – provided of course there’s a driver – has graduated from the Apache Foundation’s incubator and is now a full-fledged Top-Level Project (TLP)....
In a surprise move on Tuesday, January 10, Oracle wheeled out its Big Data Appliance. That’s the one it said in October would be ready sometime in the first half. Only nobody believed it meant early in the first half. Heck, it’s not even clear anybody thought Oracle could make ...
Rackspace Hosting, the service leader in cloud computing, on Thursday announced its acquisition of SharePoint911, an industry leader in SharePoint consulting, training, and "JumpStart" services within SharePoint. The unification of both companies provides capabilities to deliver ...
CloudLinux, Inc., on Thursday released CafeFS 3, a virtualized file system for shared hosters that cages each customer within its own virtualized file system. CageFS becomes part of CloudLinux OS at no additional charge. CloudLinux OS, the only commercially-supported Linux OS m...
Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON Featured Whitepapers
ADS BY GOOGLE

Breaking Cloud Computing News