If like me your head is spinning from all the announcements of proprietary "AJAX killers" out there then you probably were still too busy trying to digest Silverlight to even have heard that Sun's announced it's own "AJAX killer" and Flash competitor named Java FX.

Don Park has a good post which serves as a good starting point to grok the meat of this announcement titled Inside JavaFX where he writes

So what is JavaFX? This is what it looks like:

import javafx.ui.*;

Frame {
  title: "Hello World JavaFX"
  width: 20
  height: 50
  content: Label {
    text: "Hello World"
  }
  visible: true
}

As you can see, JavaFX script (*.fx) is basically JSON-like version of XAML which can be either compiled into Java bytecode or run as is using a java-based JavaFX player. Since JavaFX is just java, it can run as applets in browsers, midlets on mobiles, and applications on WebStart.

Sam Ruby has a good follow up to Don's post titled JavaFX Script where he describes some of the innovations and shortcomings of the platform he has noticed in his initial observations.

It looks like Web developers are getting spoiled for choice this summer; Sun vs. Microsoft vs. Adobe vs. Web Standards.


 

Wednesday, 09 May 2007 19:04:27 (GMT Daylight Time, UTC+01:00)
I appreciate your inclusion of "Web Standards"
Thursday, 10 May 2007 19:30:59 (GMT Daylight Time, UTC+01:00)
One thing that has always been interesting to me is that the core of Ajax (XMLHttpRequest) was heavily used before the W3C adopted it as a standard. I think this shows that the best solutions arise not from committee created standards but from what works, then there is a period of time when standardization is important. This happened with EJB3 / Hibernate and resulted in a very good standard. I do not think that there should be a huge battle between these technologies. Developers should be free to use multiple technologies together. And then in a few years we will hopefully take all the pieces that work and formally standardize them.

-James (Adobe)
Comments are closed.