November 17th, 2008
This is just a quick note about the WJAX Java developer conference that take place last week in Munich.
The conference program was quite balanced and beside the main stream topics about SOA (ServiceOrientedArchitektur - represented by the SOACon conference), Spring, Application Security and OSGi there was a huge number of different topics, which were addressed by several talks.
Most interesting from my point of view were following sessions:
- Keynote from Jonas Jacobi: Re-architecting the Web with HTML 5 Communication.
- Talk from Karsten Lentzsch: Efficient design of swing UI’s.
- Talk from Angelika Langer: Java programming in the age of multicore.
- Talk from Dierk Koenig: RESTful JEE with Grails.

Canoo was exhibiting on a booth, which gave the great opportunity to present and talk about our products UltraLightClient (ULC), the just released language application for the IPhone (using canoo.net), our demo for the new JavaFX platform and fancy UltraLightClient / Swing rich client applications. In addition Canoo members used the presence to keep in touch with existing costumers, contact new ones or presented the company to potential new staff members.
Canoo Online Quiz
All the visitors on the booth and all other interested software developers had and still have the possibility to join an online quiz. Its possible to win an iPod touch or one of ten ‘Groovy in Action’ books. The quiz can be found at www.canoo.com/quiz and will end at the 30.11.2008.

Dierk König, Canoo fellow and author of the ‘Groovy in Action’ book, was holding a groovy workshop and was giving a talk about RESTful JEE with Grails.
No Comments » |
Canoo.net, Events, General, Grails, Groovy, JAX India, Java, Java RIA, JavaFX, Rich Internet Applications, Sample Apps, Swing, UltraLightClient, W-JAX, Web 2.0, Why ULC?, iPhone |
Permalink
Posted by andreas
May 19th, 2008

Canoo and Java User Group Switzerland are organizing an event on Rich Internet Applications for mobile devices on 29th May at the Technopark in Zurich.
Canoo’s Dierk Koenig will present a talk on “Going Mobile with JavaFX Script, Groovy and Google Android“:
Since the 2007 JavaOne conference, the JavaFX Script technology-based application MusicPinboard has been justifiably cited by many (including Sun) as a significant demonstration of the power of JavaFX Script technology as well as a radical improvement over Java technology in terms of developer productivity.
One year on, Dierk König shares his thoughts about what kind of audience JavaFX Script technology is likely appeal to, today and in the future. In addition, he offers objective comparisons with some rising competitors in what he calls the RIA/mobile space:
- Groovy, which has in recent months encroached on the JavaFX Script technology space by including a data binding mechanism as part of its Swing GUI Builder
- Google’s prototype Android platform, which the global giant hopes to position as the platform of choice for providers of high-end mobile device and business applications alike
Dierk contends that each of the solutions described embodies a different vision of how the mobile experience will evolve in the near future and that the time frame may be shorter than we think when it comes to seeing which technology gains the upper hand.
Dierk recently presented this talk at JavaOne 2008 together with Mike Mannion. If you’re based in Switzerland, this is your chance to hear the talk.
The second talk will focus on Google Android. Markus Pilz and Peter Wlodarczak of Greenliff will provide an overview of the Android GUI framework and show a short sample how to write and configure phone GUIs with it.
Android provides a nearly complete JDK 1.5 class library. However, AWT is only partial supported, and Swing is not supported at all. Instead, Android introduces its own GUI framework with Screens, Views and its own widget set, which nicely integrates with the Android application live cycle which is based on Activities, Intents, Providers and Services. Mobile application development is made easy through very simple reuse of existing Activities, Providers and Services. Full XML-based GUI layout allows dealing with different screens sizes and color depths without development know-how. Contrary to other mobile platforms like the iPhone, Android has been designed as an open platform for software development and doesn’t have many of the limitations i. e. JME has.
Event details
Program:
17:00 - 17:50: Talk: Going Mobile with JavaFX Script, Groovy and Google Android incl. Q/A
17:50 - 18:00: Break
18:00 - 18:50: Talk: The Android GUI Framework incl. Q/A
At: Technopark, Technopark 1, Zurich, Switzerland
How to get there: PDF or .html
No Comments » |
Events, JavaFX, RIA4Mobiles, Rich Internet Applications |
Permalink
Posted by sandra wendland
May 9th, 2008
Fun and great feedback following Mike and Dierk’s talk at JavaOne; Sun asks for a repeat performance!

As previously announced, Dierk and I held a talk at JavaOne today (actually Dierk held no less than TWO talks - there’s just no stopping this guy!) The title of our over-subscribed session was “Going Mobile with JavaFX Script Technology, Groovy and Google Android” and in addition to an eager and informed public, we were honoured to have some of JavaFX’s and Android’s champions and contributors in the audience.
We took the first few moments of the session to emphasize one of Canoo’s core value propositions: The discernment of hyperbole from reality. Indeed, much of my part of the talk concerned the current
status of JavaFX Script (scheduled official release in June 08) and how it does not (yet) live up to many of the claims being made about it.
Unsurprisingly, our statements concerning the immature status of functionality and tooling in JFX were not met with silence. And in a delightfully spontaneous moment at the end of the talk we invited
James Weaver to join us on stage for what amounted to a mini panel session.
James’ main point was that JFX makes rich client development significantly easier than, say, with Swing, and that this can only be good for the Java platform. Of course, we don’t disagree with this
statement. But where differences in opinion remain is (a) in the use of the word “significantly”; and (b) in our level of confidence regarding whether or not JavaFX Script will succeed in a market, where
competition is tough, well-established, and only getting tougher by the week. JFX’s current deficiencies (which we talked about in some detail) of course only reduce its chances of success.
So what’s our primary take-home based on the feedback we got directly after the talk and at the Canoo booth? That a level-headed and unbiased opinion on a given technology is what the majority of
conference attendees are looking for. And who are these attendees? Quite simply: Real people representing real companies who serve real customers, who nevertheless enjoy being inspired by examples from the cutting edge, such as our MusicPinboard JavaFX and Mobile Shopping Android applications.
Finally, to top off all the great feedback, Sun asked us to repeat the session this coming Friday!!! So if you didn’t catch us the first time around, we’d be thrilled to see you in hall 302 of the Moscone Center at 13:30.
Thanks to everyone who did attend for coming and for the positive feedback!
1 Comment |
Events, Google Android, JavaFX, JavaOne, RIA4Mobiles |
Permalink
Posted by Mike
December 13th, 2007
One of the many interesting talks I attended at the JavaPolis 2007 conference was the Swinging RIA talk. At the end of the talk Chet Haase announced the brand new Java Scene Graph library. Scene Graph gives you a new way to implement your visual output in Swing. It will replace the Jazz library that provides the Java2D stuff in the current JavaFX implementation. In the current release, the API is a little bit verbose but I expect this to change as the API is not final yet.

How does Scene Graph work? With Scene Graph, instead of subclassing a Swing component and providing your Java2D drawing instructions in a custom paint() method, you build up a data structure that declares your visual output, i.e old Java2D is the procedural approach to do graphics, whereas Scene Graph is the declarative approach.
How does this look in practice? In Scene Graph you amazingly build up a scene graph! Each scene graph is composed of nodes and each node represents a graphics operation, e.g.
- Painting a primitive
- Performing an effect
- Doing a transformation
- Playing an animation
So, for painting text, instead of
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2 = (Graphics2D) g.create();
g2.setFont(new Font("Arial", Font.BOLD, 128));
g2.setRenderingHint(KEY_TEXT_ANTIALIASING, VALUE_TEXT_ANTIALIAS_ON);
g2.drawString("Java2D", 50, 150);
g2.dispose();
}
you will have
SGText result = new SGText();
result.setText("Scene");
result.setFont(new Font("Arial", Font.BOLD, 128));
result.setAntialiasingHint(VALUE_TEXT_ANTIALIAS_ON);
result.setLocation(new Point(50, 180));
My impression is that a programmer familiar with Java2D is immediately productive with the Scene Graph library. Great! And as a bonus he gets good effect and animation support for free! Wow! I hope this is just a first step to:
- Powerful effect libraries
- Good animation libraries
- Visual scene graph tools
- Integrations into existing visual tools like PhotoShop
- …
Another thing that makes building good-looking Swing applications easy! Good!
No Comments » |
JavaFX, Javapolis, Rich Internet Applications, Swing |
Permalink
Posted by Daniel
December 13th, 2007
This morning, I attended the second keynote at JavaPolis 2007 in Antwerp. Although it was not the “big” keynote (that one was held by James Gosling the day before), it was definitely the more interesting one to me. This is why:
First, the Java community was hit by two extremely cool Flex demonstrations: at the beginning, Bruce Eckel and his co-speakers showed a Flex-based data manager framework that allows transparent and smooth synchronization of client-side and server-side business data, even between multiple clients and with clustered server nodes. Data changed on one client gets synchronized to the server (for example: to all cluster nodes) and then back to all connected clients. Not only does it allow the application to determine the “transaction commit point”, but it also provides support for conflict handling (again, the conflict reconciliation handling can be fully controlled by the application). Whenever a client goes offline, data changes are locally tracked and synched back to the server as soon as the connection is re-established. Failed cluster nodes get updated as soon as they rejoin the cluster. In addition, the data manager can also be used with Ajax applications. Although the demo application looked quite “ugly” (for a Flex demo …), the technical brilliance led to spontaneous applause …
The second rocking Flex demo was Parleys.com beta: well-know for slick and smooth video and slide show streaming, Parleys.com is about to get a face-up. Well it’s more like a revolution. While it was based on Ajax in version 1.0, the new technology chosen is Flex. Of course, the visual effects are extremely slick and appealing. But what is way more interesting to me from a RIA point of view is the integration of the online, browser-based version with an offline Parleys.com client application based on AIR. When both clients are running, the browser-based one automatically gets enhanced by features available in the offline client - such as offline video availability - by smoothly adding new buttons and actions to the online client. That really rocks from a user experience and integration point of view! The new Parleys.com version is about to be released in Q1/2008.
But there is a fight-back from the Java side: also worth mentioning here is the Java approach of browser-based RIA that was demonstrated in the IRIS sample application. First showed to the public at the last JavaOne, this application does not stand behind the Flex-based ones in any way when it comes to visual effects. The IRIS approach smoothly integrates Java applets with an ajaxified Web application. It was almost impossible to say what feature was powered by the applet and what was done using Ajax - and what was done by tightly combining these two technologies even for a single user interaction. The revival of the applets!
To me, all these demos really show to me that RIA is still steadily increasing in importance. There is way more than just adding a few fancy Ajax effects to static web page - and the big vendors and technology owners are pushing the car forward. And the desktop is really moving back into the RIA world - it is no longer all about pure (and old) browser technologies, but about JNLP, applets, AIR & Co.
But there was also another unexpected “flasher” in that keynote: JavaME. JavaME? Isn’t it dead? No, it’s not! Sun showed up with the new Netbeans Mobility 6.0 that extremely simplifies the development of JavaME-based games. But not only games, also business applications are finally showing up in the JavaME space (and are supported in a graphical way by the mobility tool). Using the SVG-rendering facility available in the MSA (Mobile Service Architecture), these UIs now can really look awesome (forget these old and ugly “text-based” mobile UIs …). And by adding JavaFX Mobile to the scene, Sun is pushing the Java mobile stack even further. As with Google’s Android, Sun aims to provide a complete software stack based on a Linux kernel that offers Java-based APIs to all phone capabilities which are then used by all the device vendors, third party RIA software service providers and the community to develop new-class mobile RIA applications. It will be very interesting to see whether Sun or Google (or both?) will make the deal with their approach. In the end, I think the device vendors are going to decide this battle: every cool software platform is only worth noting if there are a big bunch of devices available that ship the software by default.
A few resources:
All this mobile stuff now really seems to shake a leg. Very exciting!
1 Comment |
AJAX, Adobe AIR, Adobe Flex, General, Java, JavaFX, Javapolis, Rich Internet Applications |
Permalink
Posted by Christian
November 14th, 2007
Together with about 80 other persons (estimated by a JUGS member) I attended the JUGS RIA event. Bruno started with a short (15′) introduction into RIA for Business. He started with an excursion to the past and showed how the trend moved from terminal to desktop application, then to web applications and now finally to desktop-like Rich Internet Applications. For enterprise applications he listed three major opportunities:
- Highly productive Tools with powerful user interfaces
- Portal environment
- Mobile devices
While generally stressing the importance of interaction design, Bruno clearly explained that rich applications for mobile are not shrinked RIA applications but need to be tailored for the device. (A dedicated IPhone user speaking
).
Then Björn Müller was giving us a reality check for AJAX. In my opinion this was the most surprising talk. Björn presented some hard facts about AJAX which in his (and mine) opinion clearly limit the use of AJAX. Some of the facts to consider when planning an AJAX application:
- Performance. JavaScript is 20 to 50 times slower than Java. Period.
- Frameworks. There are a lot (too many) frameworks around which need evaluating. And each come with KBs of JavaScript code
- Cross Browser Issues. Most of them can be solved but at a severe cost.
The message I take home from this experienced AJAX developer is that he considers it a risk to develop rich applications for power user with AJAX. (Which was my gut feeling for quite some time, but now I have some facts. The slides will be published on the JUGS site for you to judge for yourself). But that AJAX is a very appropriate technology for application with casual users as the target audience.
Finally Ryan Stewart, the Adobe RIA evangelist was speaking. It was very disappointing that he couldn’t show us most of the demos due to the lack of internet connection. In his talk he presented several RIA technologies, well known like JavaFX, Silverlight and Flex and others like Curl etc. One reaction he got from the audience was that they are more confused concerning RIA technologies than before the event. Interesting was that also Ryan sees a big potential in rich application for mobile devices.
All in all a very interesting event, I only hope that other attendees felt the same. Feel free to comment and post your opinion.
No Comments » |
AJAX, Adobe AIR, Adobe Flex, Events, Java RIA, JavaFX, Microsoft Silverlight |
Permalink
Posted by Sibylle
November 8th, 2007
I just heard via Dierk that Daniel Adelhardt of Sun Germany mentioned Canoo’s Java FX sample app Music Pinboard in one of his sessions.
Cool!
No Comments » |
General, JavaFX, News, W-JAX |
Permalink
Posted by sandra wendland
October 19th, 2007
Sun’s John O’Conner has published a useful series of articles on Java FX Script:
An Introduction to JavaFX Script for Java Programmers
Declarative User Interfaces
JavaFX Script Functions and Operations
Blogs linking to recent iX article:
Yesterday I browsed thru our website stats and found these two blog posts discussing Mike Mannion’s recent article:
(Both posts are in German)
Christian Pfeil writes:
Mike Mannion, Senior IT-Consultant bei der Canoo Engineering AG schrieb nicht nur einen tollen Artikel über JFX in der Oktober Ausgabe des iX Magazins, sondern hat unter http://www.musicpinboard.com/ eine ziemlich beeindruckende Demo für die Leistungsfähigkeit von JFX bereitgestellt. Mike Mannion ist der Meinung, dass man die immens großen Downloads durch schlankere APIs deutlich reduzieren könnte.
Reto Kiefer says:
Für eine der ersten Demoanwendungen für JavaFx Script mag es beeidruckend sein, jedoch im Vergleich zu guten Flashseiten wirkt die Sache noch nicht rund. Die üblichen Probleme bei Java wie lange Initialisierungs- und Ladezeiten stehen dem ungetrübten Genuss der Anwendung entgegen. Auch die Dateigröße (…) ist für eine solche Anwendung indiskutabel.
While Christian Pfeil is quite excited about Music Pinboard, Reto Kiefer points out that the Canoo demo app has some shortcomings if compared to a good Flash application. As Mike pointed out in an earlier post, Music Pinboard is a sample application, based on an alpha version of Java FX Script. As stated on the download page the purpose of this application was to explore a new and potentially interesting technology, and to share the knowledge acquired with the wider community by means of an experience report.
Related news
Frank Sommers of Artima points to Sun’s Consumer JRE for Windows project, officially called Java SE 6 Update N.
A promising development which will hopefully offer an optimized consumer end user experience.
No Comments » |
General, JavaFX |
Permalink
Posted by sandra wendland
September 27th, 2007
Here are a couple of interesting RIA links that I stumbled across during the past week:
Java FX
Javalobby has posted an interview with Tom Ball, lead architect on the openjfx compiler project:
We’ve been interviewing lots of design houses, and the biggest complaint they have with Java-based client applications is how much longer it takes the Swing engineers to turn a design cycle than the designers do — the designers can crack out a design in a week which their developer counterparts take three months to implement.
It is definitely an encouraging sign to see that Sun is moving ahead in this area.
10 Future Web Trends
Richard MacManus lists RIA in his list of 10 Future Web Trends:
As the current trend of hybrid web/desktop apps continues, expect to see RIA (rich internet apps) continue to increase in use and functionality. Adobe’s AIR platform (Adobe Integrated Runtime) is one of the leaders, along with Microsoft with its Windows Presentation Foundation. Also in the mix is Laszlo with its open source OpenLaszlo platform and there are several other startups offering RIA platforms. Let’s not forget also that Ajax is generally considered to be an RIA - it remains to be seen though how long Ajax lasts, or whether there will be a ‘2.0′.
Flex vs. Silverlight
James Ward compares Flex and Microsoft Silverlight in this interview published at InfoQ.
Do you use AJAX, RIA or other Web 2.0?
Eric Chiu asks in this thread on LinkedIn (you’ll probably need to log in to read the thread):
Do you use AJAX, RIA, or other Web 2.0?
Do you think AJAX made the web easier to use? What are some of your favorite AJAX frameworks? I would like to know how companies are using AJAX to improve usability, interaction and collaboration.
Most people in the thread reported that they are using AJAX libraries such as Prototype, JQuery and RIA tools such as Adobe Flex. Perfomance and security are major concerns. While others cite customization and extensibility as being important.
No Comments » |
AJAX, Adobe AIR, Adobe Flex, General, JavaFX, Microsoft Silverlight, News, Rich Internet Applications, WPF, Web 2.0 |
Permalink
Posted by sandra wendland
September 21st, 2007

iX has published an article by Mike Mannion on Java FX. It is written in German:
Eignet sich Suns neue GUI-Sprache für Einsteiger? Ein erster Schritt
Download the .pdf from the Canoo Press Room.
See also:
Music Pinboard - the sample application referred to in the iX article.
All Java FX related posts published within this blog.
3 Comments |
General, Groovy, JavaFX, News, Rich Internet Applications |
Permalink
Posted by sandra wendland