• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

JavaFX as client

 
Ranch Hand
Posts: 457
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What transport mechanisms will be supported by JavaFX clients to Java servers? Binary serialization? Object graphs maintained? Will JNDI be included?

What type of user interface builder tools will be provided publicly?
 
author
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One very cool thing about JavaFX Script is that it runs on the JVM and leverages the full power of Java. You can instantiate Java classes, call their methods, etc., so you can use any transport mechanism that you'd like (RMI, HTTP, etc). JavaFX Script also has some convenience classes for XML and JSON parsing and building. Here are couple of examples from my weblog of communicating with a server over HTTP, one using XML and the other using JSON:

A JavaFX Script Calendar that Displays a Google Calendar Feed

Compiled JavaFX Script Now Speaks JSON
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic