cdugga
cdugga

Reputation: 3859

Flex 3 passing objects from Flex to java class

I want to pass an object from my Flex application back to my Java app. Im looking at either passing to a Serlet or passing via a DAO as an object.

Any recommendations?

Upvotes: 1

Views: 2781

Answers (3)

marketer
marketer

Reputation: 43667

Check out Adobe's BlazeDS . It provides the middleware to pass objects from flex to java, and vice-versa. It lets you use the RemoteObject and Messaging abstractions in flex.

Upvotes: 5

dirkgently
dirkgently

Reputation: 111130

Look at RemoteObjects.

Upvotes: 1

Ryan Guill
Ryan Guill

Reputation: 13896

How are you connecting to java? are you using AMF?

Generally speaking, passing as an object would be the best solution overall because you probably will be using that object in your flex application anyway.

Upvotes: 1

Related Questions