Reputation: 3859
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
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
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