Tagged: Flamingo

Calling Seam component from JavaFX

We very close to moving Flamingo and Fiji to exadel.org. It will probably (finally) happen next week. I just wanted to show how simple it is to call a Seam component from JavaFX using Flamingo:

Seam component (server):

@Name ("currentTime")
public class CurrentTime {
   public Date currentTime () {
	return (new java.util.Date());
   }
}

Service interface (client):

public interface CurrentTime {
   public Date currentTime ();
}

JavaFX script (client):

FXServiceFactory.URL = "http://localhost:8080/server-javafx/seam/resource/hessian/";
var ct = (FXServiceFactory.getService(CurrentTime.class,"currentTime") as CurrentTime);
var now = ct.currentTime();
FX.println(now);

That’s it!

Videos from JavaOne 2009

I knew these existed but somehow forgot to post them. These are videos of my presentations at JBoss booth at JavaOne 2009 in San Francisco. I think it would be more useful if the videos would switch more often to the slides I’m showing, but in case, enjoy!

RichFaces presentation
Part 1
Part 2
Part 3
Part 4

JavaFX with Seam presentation
Part 1
Part 2
Part 3

Flamingo mobile webinar, learn about iPhone and Android features

There was a last minute change and I will be doing tomorrow’s webinar on Flamingo and its new mobile features. There is still time to register. The webinar it tomorrow, June 15th at 11am PT/2pm ET.

Exadel Flamingo, an open source Java EE development framework, enables the “mobilization” of existing e-commerce applications by seamlessly encapsulating existing server-side functionality to be used by mobile devices. Flamingo establishes a lightweight abstract layer between the server and the mobile client to preserve and reuse existing server-side components and services.

In this webinar, we will show an example of integrating the Android platform with ofbiz, a popular open source e-commerce platform, using Flamingo.

Register now!

Enterprise mobile for iPhone and Android webinar

Learn how to build enterprise mobile applications for iPhone an Android by attending our webinar on Tuesday, Jun 15, 2010 at 11:00 AM – 12:00 PM PDT

Exadel Flamingo, an open source Java EE development framework, enables the “mobilization” of existing e-commerce applications by seamlessly encapsulating existing server-side functionality to be used by mobile devices. Flamingo establishes a lightweight abstract layer between the server and the mobile client to preserve and reuse existing server-side components and services.

In this webinar, we will show an example of integrating the Android platform with ofbiz, a popular open source e-commerce platform, using Flamingo.

Register now!

Exadel Flamingo – mobile for iPhone and Android

Exadel Flamingo is a framework for connecting rich UIs (Flex, JavaFX, Swing) to enterprise back-end such as Java EE, Seam and Spring. Very soon Flamingo is going to move to our new open source web site exadel.org.

Something you probably were not aware of is that Flamingo now also has a mobile portion. It allows to easily connect clients running on popular smartphones such as iPhone and Android to your enterprise back-end. In fact, if you have an existing enterprise application with rich Web UI, with Flamingo you can reuse the same enterprise services and use them on smartphone.

Go here to download a demo application or sign up for a live demo (via web conferencing).