There's no easy way to get DataService type of functionality in Java but you can certainly do Flash remoting (flash.net.NetConnection) type of functionality in Java using BlazeDS's AMFConnection. It's a new mini-feature that is currently being tested but it's in BlazeDS source tree.
So, you can expose your Assembler as a remoting destination in BlazeDS/LCDS and then you can use AMFConnection in your Java code to make remoting calls to that destination. You'll probably need to have a timer of some sort to do polling so the client can receive updates in certain time intervals. -Mete --- In [email protected], "Shailesh Mangal" <[EMAIL PROTECTED]> wrote: > > yeah, I spend some time looking at it, its certainly not easy. Any other alternatives? I need > to connect to assembler and get the data pushes to the java client and execute some stuff > on the desktop. AIR would have been perfect if it was as powerful as Java on desktop. > > -Shailesh > > --- In [email protected], "meteatamel" <meteatamel@> wrote: > > > > By LCDS, you mean DataService in Java? I haven't heard anyone try > > implementing that in Java. I don't think it'll be that easy though > > because, first you need to implement all Channels (or at least one > > that you'll use in your application) in Java and that by itself is not > > trivial. You need to figure out how to make HTTP calls (URLConnection > > vs. HTTPClient), figure out how AMF serialization/deserialization is > > going to work, etc. > > > > After you have your Channel, you need to implement Producer/Consumer > > so you can do messaging. And finally, you can build DataService on top > > of those. > > > > -Mete > > > > --- In [email protected], "Shailesh Mangal" > > <shailesh.mangal@> wrote: > > > > > > Has java client (thick) for LCDS been tried? Any ideas how can this be > > > done. > > > > > > -Shailesh > > > > > >

