I need to make calls to a webservice from a javaFX client. is there some sort of wsimport type tool that I can use to generate javaFX client stubs from a deployed WSDL.

link|improve this question
feedback

5 Answers

JavaFX Supports only RESTfull webservices out of the box. You can however use existing Java tools for generating WSDL stubs and use the generated classes from your JavaFX Script classes.

link|improve this answer
feedback

You could make Java class stubs and call them from javaFX.

link|improve this answer
feedback

thank you for your response, i'm not familiar with javafx, i'm just trying to help a javaFX team integrate with my web service. javaFX can instantiate/call java classes?

link|improve this answer
Absolutely. The other way around is a little hard (have Java call javaFX code) but still doable. For the simple case of calling Java from JavaFX, start here: jfx.wikia.com/wiki/… – Yishai May 8 '09 at 19:56
feedback

Yes,

Suppose you have a "MyJavaClass.java"

import somePackadge.MyJavaClass
...

var myObject:MyJavaClass = new MyJavaClass();

myObject.setSomething("this is something");

println("{myObject.getSomething()}");

...

Refer to "http://java.sun.com/developer/technicalArticles/scripting/javafx/javafx_and_java/" for more information

link|improve this answer
feedback

Working JavaFX examples for JSON, RSS, Google API, Yahoo API - http://jfxstudio.wordpress.com/2009/07/24/javafx-web-services/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown