Tagged Questions
BlazeDS is a server-based Java remoting and web messaging technology that allows you to connect to back-end distributed data and push data in real-time to [Adobe Flex] and [Adobe Integrated Runtime (AIR)] Rich Internet applications (RIA). Because of its open licensing, BlazeDS is not precluded from being used with other client platforms, such as JavaScript/Ajax.
12
votes
2answers
5k views
Any Flex 4 migration experience?
My current development stack is MySQL + iBatis + Spring + Spring BlazeDS Integration 1.01 + BlazeDS 3.2 and Flex 3 with Mate 0.8.9 framework. Now Flash Builder 4 beta 2 is out. There are cool ...
11
votes
1answer
6k views
BlazeDS vs. GraniteDS
Anyone have any experience evaluating BlazeDS and GraniteDS? I'm curious about which is better at integrating with Spring/Hibernate.
8
votes
3answers
4k views
BlazeDS authentication
I am confused about authentication with BlazeDS. Most of the few examples I have found for authentication and authorization in BlazeDS and consequently Java Servlets in general make use of HTTP basic ...
7
votes
3answers
1k views
Flex best practices?
I have the feeling that is easy to find samples, tutorials and simple examples on Flex.
It seems harder to find tips and good practices based on real-life projects.
Any tips on how to :
How to write ...
6
votes
6answers
1k views
Flex - best strategy for keeping client data in synch with backend database?
In an Adobe flex applicaiton using BlazeDS AMF remoting, what is the best stategy for keeping the local data fresh and in synch with the backend database?
In a typical web application, web pages ...
5
votes
2answers
604 views
What are the drawbacks of using Spring BlazeDS Integration?
I have a little prior experience with Spring framework and Flex, but never used them together. I'm starting a new project and would like to use Spring and Flex. I noticed that there is some special ...
5
votes
4answers
1k views
How do I get a strongly typed collection from BlazeDS?
I've exposed a Spring bean to my Flex app via BlazeDS. In my Java code I return strongly typed lists. e.g.
public List<Folder> getFolders(String path) {
return dao.getFolders(path);
}
The ...
5
votes
4answers
877 views
Passing an ArrayCollection from ColdFusion to Flex (with BlazeDS)
When pushing objects from ColdFusion to Flex via BlazeDS, and mapping the classes using RemoteClass...
[RemoteClass(alias="blah.blah")]
...is it possible to have ColdFusion "Arrays" (or some Java ...
5
votes
3answers
3k views
How can I setup my BlazeDS implementation with Log4J?
I'm writing a Flex app on top of a Java web application using BlazeDS. BlazeDS has logging inside of it, but I want to set it up to Use the same logging framework I have in my application.
Is ...
5
votes
4answers
974 views
Where to get Flex - Java DS (Blaze) training material?
I was wondering if any of you out there knows where I can get really good training material (videos, examples, etc) on Flex - Java Data Services (BlazeDS would be ideal) besides the ones offered ...
5
votes
9answers
4k views
Graceful handling of server timeout in BlazeDS
I have a flex client that makes service calls to a tomcat server running BlazeDS. I would like to gracefully handle server session timeouts in this environment.
I do have security constraints on the ...
4
votes
2answers
1k views
BlazeDS vs GraniteDS - 2 Years Later
I am currently using BlazeDS and covet the features of LCDS, but am never going to ask my customers to pay the $$$. Therefore I am considering starting to build these capabilities myself, using third ...
4
votes
3answers
797 views
Is GZip compression worthwhile with AMF
We've got a Flex/Java application using BlazeDS and we're investigating reducing the size of the payloads being passed between our server and the client.
Since AMF is a binary format and supposed to ...
4
votes
2answers
481 views
Is there a Maven plugin to generate AS3 classes from Java for BlazeDS?
I'm looking for a maven plugin that would generate ActionScript3 classes from Java classes in order to access them by object remoting.
I've seen FlexMojo but it uses the GraniteDS generator wich ...
4
votes
1answer
3k views
Spring BlazeDS + Flex + JBoss Project setup in eclipse using Maven
I would like to know how to proceed to set up a work environment in order to develop Spring BlazeDS applications. Those server applications are meant to be accessed via AMF remoting from some client ...
4
votes
3answers
7k views
how to push data from BlazeDS without recieve message from Flex client?
I am using BlazeDS for data-push feature in my Flex application project. From the official tutorial, Getting started with BlazeDS, it shows messaging example with producer/consumer from API.
but how ...
4
votes
2answers
795 views
Data push to flex application from .net backend
I'm about to go into a large scale application (client-flex, server-.net).
The server side is required to push data to the clients without them asking for it, this data can be tables from the DB or ...
4
votes
7answers
472 views
What material did you use to learn Flex/Air, and with ColdFusion + BlazeDS/LCDS?
What material did you use to learn Flex/Air itself, and with ColdFusion + BlazeDS/LCDS?
4
votes
5answers
6k views
How can I debug AMF (BlazeDS) serialization of Java objects to Actionscript?
I'm using BlazeDS to remote some Java objects that I'm consuming in a Flex application. I'm getting a type coercion error with one of my classes that I can't for the life of me figure out. I have ...
4
votes
3answers
11k views
BlazeDS and ArrayList of custom objects
I'm using BlazeDS to connect Flex with Java. I'm having trouble passing ArrayLists of custom objects from Flex to java.
I have two objects, one is called Category, the other Section. A Category ...
4
votes
4answers
372 views
What is the best way for Adobe flex to communicate with Java?
I am currently working on a project for school which will be a webapp where the gui will be programmed in Adobe Flex and the backend will be programmed in java, probably as servlets running in ...
3
votes
2answers
156 views
LCDS & Flex - Preventing DuplicateHTTPSession errors after logout
I have a flex/LCDS stack, where I'm finding that after logout, I often (but not always) start receiving Duplicate HTTP Session errors on the client.
Here's the important facts of the stack:
The ...
3
votes
1answer
288 views
BlazeDS VS REST +JSON
Can anyone tell me: What are the advantages/disadvantages of BlazeDS compared to using Java REST web services that return JSON data for a fairly data heavy flex application?
3
votes
2answers
171 views
RemoteObject in BlazeDS environment: Serializing objects from JAXB/XJC-generated classes
I'm developing a webapp with Java backend and Flash (pure ActionScript) frontend using BlazeDS.
I'm using the RemoteObject stuff to send objects, using custom serialization, where I need to implement ...
3
votes
2answers
881 views
Best language to implement REST web service [closed]
As a social game developer I am responsible for architecting two - or more - highly scalable web services. Where I am stumped is making the right choice of language and framework for implementation. ...
3
votes
1answer
498 views
AMF as a REST format, using BlazeDS and AS3's URLLoader
I have a ColdFusion server with an HTTP API that's currently returning either JSON or XML formatted responses. Internally, all of these responses are represented using the ColdFusion 'struct' type, ...
3
votes
1answer
145 views
Passing case class between Scala and Flex using BlazeDS
When trying to pass a "case class" from Scala to Flex the results on Flex side are regular Object instead of UINamespace. Changing the case class to regular Java class and it arrives correctly.
The ...
3
votes
2answers
145 views
Java + Flash => event driven?
I've just received a request for an online backgammon game engine. It shouldn't be to hard to make as after all is essentially a chat program that moves pieces instead of showing text messages. I am ...
3
votes
2answers
387 views
How to make BlazeDS ignore properties?
I have a java class which has one field with getter and setter, and a second pair of getter and setter that access this field in another way:
public class NullAbleId {
private static final int ...
3
votes
2answers
320 views
How to stop writing Java property setters for BlazeDS & JPA that I don't want?
BlazeDS will not serialize a property unless it has both a getter and a setter. However, many of my Java properties are read-only. Therefore I am now having to add setters to support the ...
3
votes
3answers
2k views
HttpSession Session ID different to FlexSession ID
I have a Flex application which is served via a JSP page. In this page I output the session ID using HttpSession when the page is loaded:
System.out.println("Session ID: " + session.getId());
In a ...
3
votes
1answer
433 views
Intercepting Date objects coming from BlazeDS and adjusting for timezone differences
I am working on an application that is near the end of its development cycle and has mostly passed user testing. We recently realized that having flex convert dates to the client's local timezone is ...
3
votes
2answers
467 views
Flex+JPA/Hibernate+BlazeDS+MySQL how to debug this monster?
Ok so I'm making a "simple" web app using the technologies from the topic, recently I found http://www.adobe.com/devnet/flex/articles/flex_hibernate.html so I'm following it and I try to apply it to ...
3
votes
4answers
704 views
GraniteDS vs BlazeDS which one is more use than the other?
Since i'm begining to discover this world,
I'm wondering which one of those is more use on professional developpement.
Would you be kind enough to tell me in order to make some stats ?
3
votes
2answers
242 views
Blaze DS via Ajax with ColdFusion
I want to use Adobe's Blaze DS via ColdFusion through Ajax. I know enough ColdFusion and JavaScript to do what I want to do, but I want to add long poling into the application and it looks like the ...
3
votes
3answers
6k views
How does [RemoteClass] work in Flex Actionscript can I use it for custom data-binding?
Actionscript supports a [RemoteClass] metadata tag that is used in BlazeDS to provide data-binding hints for marshalling AMF binary objects from Java to BlazeDS.
For example:
Java:
package ...
3
votes
2answers
288 views
Flex streaming timing out
I have a Flex GUI which is using AMF Streaming to BlazeDS on WebLogic 9.2. As the AMF Streaming uses long polling, it keeps the connection open for extended periods of time.
WebLogic has a max thread ...
3
votes
6answers
6k views
Flex RemoteObject - handling multiple requests
I have a couple of remote object methods that I want to respond to in different ways depending on the context, but I'd rather not set up a bunch of different RemoteObject aliases. Any advice on doing ...
3
votes
3answers
8k views
How to support both HTTP and HTTPS channels in Flex/BlazeDS?
I've been trying to find the right configuration for supporting both http/s requests in a Flex app. I've read all the docs and they allude to doing something like the following:
...
3
votes
5answers
1k views
Should I invest in GraniteDS for Flex + Java development?
I'm new to Flex development, and RIAs in general. I've got a CRUD-style Java + Spring + Hibernate service on top of which I'm writing a Flex UI. Currently I'm using BlazeDS. This is an internal ...
3
votes
4answers
3k views
WebORB for Java or BlazeDS?
I'm in the beginning phases of a project that uses a flex front end with a java/glassfish back end. I'm curious which technology is better to connect the two, WebORB or BlazeDS. At first glance ...
3
votes
4answers
2k views
What does BlazeDS Livecycle Data Services do, that something like PyAMF or RubyAMF not do?
I'm doing a tech review and looking at AMF integration with various backends (Rails, Python, Grails etc).
Lots of options are out there, question is, what do the Adobe products do (BlazeDS etc) that ...
2
votes
1answer
96 views
How to test latency of Flex messages
I have a system where clients connect via http streaming channels and use Producer and Consumer classes to dispatch and receive messages. I need to test the latency of messages in a way that ...
2
votes
2answers
124 views
How to turn a flex online application into a desktop application?
I we have been working for some years in a flex (cairgorn)+spring+blazeDataservice application using blazeDataservice to connect to the back end, now its getting kind of big and takes too much time ...
2
votes
2answers
125 views
Flex 4 Loader having status with Data Service
I have been working on a flex application with java, as i have used Life Cycle Data Service for communication, i wana know, is there any function of flex, where i can see the loading status in ...
2
votes
2answers
161 views
BlazeDS Polling Interval set to 0: Unwanted side-effects?
tl;dr: Setting the polling-interval to 0 has given my performance a huge boost, but I am worried about possible problems down the line.
In my application, I am doing a fair amount of publishing from ...
2
votes
3answers
2k views
Adobe BlazeDS 4 artifacts maven repository?
Does anybody know if Adobe has a maven repository to download the latest BlazeDS artifacts from?
I only can find the "older" versions of BlazeDS in the central mvn repository.
The other option is to ...
2
votes
1answer
445 views
Externalizing client ChannelSet configuration for Flex/Java web application
I am looking for an approach that will allow me to (somehow) dynamically pass the server name, server port, and web context to my Flex client so it can create a ChannelSet for it's RemoteObjects to ...
2
votes
1answer
395 views
How do you pass a 2d array from java to flex(using BlazeDs)?
To date I have only managed to pass primitive types and Arrays to flex.
I need to know how to pass more complex objects like 2D arrays, or lists?
Are these sent in the same manner? and if so how are ...
2
votes
1answer
47 views
How to identify the original message that triggers MessageFaultEvent
I'm using BlazeDS to send messages in Flex. Inside the UI component, I defined a producer like the one below:
<mx:Producer id="producer"
destination="chat"
...