By Max Katz | Article Rating: |
|
April 18, 2008 04:00 PM EDT | Reads: |
92,294 |
Flash/Flex
Another medium for delivering Rich
Internet Applications is the high-performance Flash player from Adobe.
Flash player (version 9) is a ubiquitous lightweight virtual machine
that's installed as a plug-in inside a browser and runs Flex
applications. Flex provides a declarative language called MXML that
offers out-of-the-box graphical UI components as well as ActionScript,
an object-oriented programming language, to build advanced user
interfaces. Compiled Flex applications run inside the Flash virtual
machine to enable a much richer user experience than would be possible
in a standard Web browser where the markup (HTML) and JavaScript are
interpreted. Flex is easily extendable and provides easy integration
with back-end technologies such as Java, PHP, and ASP.
Let's look at the same application using Flex. Flex provides a declarative way of defining the UI. The compiled file then runs inside the Flash player installed as plug-in inside a Web browser. Here's how the application could be declared:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx=http://www.adobe.com/2006/mxmllayout="absolute">
<mx:Script>
<![CDATA[
[Bindable]
private var numOfClicks:Number = 0;
public function click():void{numOfClicks++;
}
]]>
</mx:Script>
<mx:Panel x="10" y="10" width="250" height="114" layout="absolute" title="Flex">
<mx:Button label="Hit Me" click="click()" y="10" horizontalCenter="0"/>
<mx:Label text="Number of hits: {numOfClicks}" y="40" horizontalCenter="0"/>
</mx:Panel>
</mx:Application>
The model for the UI is defined inside the mx:Script element.
Figure 2 shows the result:
JavaFX
The next technology is JavaFX. It's the
"old newcomer" to the RIA arena. While JavaFX consists of both JavaFX
Mobile and JavaFX Script, here I'm referring to JavaFX Script. When I
refer to JavaFX, I actually mean JavaFX Script. While JavaFX is a new
language, it's based on mature Swing and JavaSE technologies. That's
why I call it an "old newcomer."
History
Most people will agree that Java is
excellent on the server side, but it was missing in action on the UI
side. To be honest, Java does provide solid tools for building user
interfaces: Swing and applets. However, using these technologies has
been challenging and difficult. The look-and-feel available didn't help
much either. To add to that, the JRE's download size (large), its
start-up application speed, and its installation and updates (even Java
experts can find it difficult to install and update Java) made it even
more challenging to use Java to build Rich Internet Applications.
JavaFX
So what is JavaFX? JavaFX is a declarative
language for building rich user interfaces using Java. In a way it's
Swing for the Web using a declarative scripting language, which makes
it much simpler to develop user interfaces. Given that it's based on
Swing, it comes with a ready-to-use set of UI components.
The upcoming JDK6 (Consumer JRE) will address the problems with the current Java runtime. To run a JavaFX application will require downloading a lightweight Java virtual machine (probably around 2MB-4MB). The application can be run in the browser (using a Java plug-in, similar to the Flash player) or outside the browser. JavaFX applications running inside a Java virtual machine will be able to deliver richer and more interactive applications than possible via a browser interpreting only HTML and JavaScript.
The following is an example of the same sample application using a declarative JavaFX script. The model for the user interface is defined using the ButtonClickModel class.
import javafx.ui.*;
import javafx.ui.canvas.*;
import javax.swing.UIManager;
import sun.swing.plaf.nimbus.NimbusLookAndFeel;
UIManager.setLookAndFeel(new NimbusLookAndFeel());
class ButtonClickModel {
attribute numOfClicks: Number;
}
var model = new ButtonClickModel();
Frame {
height: 100
width: 150
title: "JavaFX"
content: GridPanel {
rows: 2
columns: 1
vgap: 3
cells: [
Button {
text: "Hit Me"
verticalTextPosition: CENTER
action: operation() {
model.numOfClicks++;
}
},
SimpleLabel {
horizontalAlignment: CENTER
text: bind "Number of hits: {model.numOfClicks format as <<#>>}"
}
]
}
visible: true
};
Finally, running this will produce the following in Figure 3.
Silverlight
This article would be incomplete
without mentioning Silverlight. Due to limited space, I will only
briefly mention it. (I will cover Silverlight in much more detail in
future articles in this series.) Silverlight is a Microsoft .NET
platform for building cross-platform, cross-browser Rich Internet
Applications. As with Flex and JavaFX, Silverlight applications are
delivered inside a virtual machine that is installed as a plug-in into
a Web browser.
Conclusion
We'll see more and more organi-zations
deploying Rich Internet Applications to improve user experience. The
browser is here to stay. It's a fine platform for delivering far
superior applications than we're used to. Yet, the standard browser
alone can't be pushed beyond its limits.
It's crucial to recognize that additional delivery platforms besides the standard Web browser exist. Virtual machines such as the Flash player or Java can be installed as plug-ins and deliver a much richer experience. These applications can deliver a true desktop experience with the Web delivery model.
As a final note, this is just the first in a series of articles on Rich Internet Applications. As this series of articles progresses, I will get into more details about these technologies. Furthermore, I intend to provide a concise and clear guide for IT managers to select the right user interface technology for their next generation Web application.
Published April 18, 2008 Reads 92,294
Copyright © 2008 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
Related Stories
- Rich Internet Applications - State of the Union
- The Business Case for Rich Internet Applications
- Rich Internet Applications vs AJAX: "2008 Will Be A Crucial Year"
- Moving Beyond AJAX: 2008 Is the Decision Year For RIAs
- Bringing RIAs into the Enterprise: New Challenges, New Solutions
- Rich Internet Applications: 2008 is the Year the RIA Category Accelerates
- Rich Semantic Internet Applications with Flex
- AJAXWorld Keynote Speaker on the Risks and Rewards of RIAs
- The Business Value of RIAs: An Informal, Virtual Round Table
- Model-View-Controller and the Brave New World of Rich Internet Applications
- Rich Internet Applications: Tips, Tricks & Techniques
- Choose Your Rich Internet Applications Trajectory at AJAXWorld in New York City
- Next-Generation RIAs: Future Directions for Rich Internet Applications
- Sun Frees Rich Internet Applications from Browsers, Releases JavaFX 1.0
- JavaFX vs Silverlight vs Flex
- Delivering Qualified Leads – An Important Element for Connecting Marketing and Sales
More Stories By Max Katz
Max Katz heads Developer Relations for Appery.io, a cloud-based mobile app platform. He loves trying out new and cool REST APIs in mobile apps. Max is the author of two books “Practical RichFaces” (Apress 2008, 2011), DZone MVB (Most Valuable Blogger), and is a frequent speaker at developer conferences. You can find out what Max is up to on his blog: http://maxkatz.org and Twitter: @maxkatz.
![]() |
Tom Van den Eynde 04/19/08 04:00:16 AM EDT | |||
It's simple: go with Adobe Flex - it simply rocks. |
![]() |
DW 04/18/08 11:18:54 PM EDT | |||
Hmmm, have you checked out the Orbeon Forms?(http://www.orbeon.com/) |
![]() |
Hmmm 04/02/08 01:38:47 PM EDT | |||
Yes, XForms sounds good. PicoForms offers a solution that would work, and Yahoo has done their new mobile back end using server-side tech. An on-device XForms processor would help write portable mobile apps. |
![]() |
skalvi 03/25/08 07:43:14 PM EDT | |||
If I want to write an enterprise application for my business and I want my PC user's to be able to use it as well as mobile user's, java will not work. Web start will work on the PC but not a PDA, since I would have to use a midilet. Same with flash. I would have to develop in flash lite for the PDA's. I would have to write different version of the same program for different devices. The same with GWT for the PC based version. I would have to write a seperate application for Android and the Davlik jvm. This is where JSF is most suitable, with the concept of plugable rendering kits. Why can't I just use GWT on the gphone? Maybe I can. Maybe we should hybridize JSF. So what is the best platform for write one run anywhere? anyone? |
![]() |
Confusion Solution 03/01/08 04:46:58 PM EST | |||
> The number of different frameworks and libraries So just use Flex instead, hehe! |
![]() |
Max 02/28/08 03:34:19 PM EST | |||
@Michael: Nowhere am I comparing JSF and Flex, I'm merely discussing various technologies and delivery platforms for RIA applications. Nowhere am I saying that one is better than the other. I'm not sure why you would want to hand-code JavaScript, unless you are building a framework, doing a school project or some research. Do you consider GWT (Google Web |
![]() |
Michael 02/28/08 07:30:10 AM EST | |||
sorry, but comparing JSF and Flex is ridiculous. JSF has nothing to do with RIA. You might say that JSF is a possibility to build Ajax apps, but then: why JSF? It is utterly unsuited for Ajax compared to other web frameworks BECAUSE it hides the JS from the dev. |
![]() |
Alex 02/20/08 12:59:53 PM EST | |||
Good article. It misses one important comment though. Your JSF example has to make a server call to the pojo to increment the click counter, while both Flex and JavaFX example do not need to do this because of their stateful nature, which is very important. Out of these three, Flash Player's UI looks better than others. |
![]() |
DW 02/20/08 10:07:40 AM EST | |||
What about XHTML and XForms Offline? |
- Three RIA Tools Examined: JSF, Flex, and JavaFX
- AJAX and Enterprise RIA Tools - JSF, Flex, and JavaFX
- Learning JSF2: AJAX in JSF
- Ajax in RichFaces 3.3, JSF 2 and RichFaces 4
- Happy Birthday, Ajax4jsf!
- Using RichFaces a4j:jsFunction Send an Ajax Request From Any JavaScript
- Happy Birthday, Ajax4jsf!
- JavaFX and Spring CRUD
- JSF Mojarra Extension Tags Validation and Focus
- JavaFX Server-Side Push Demo