Questions tagged [blazeds]

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 Flex and AIR (Adobe Integrated Runtime) Rich Internet applications (RIA). Because of its open licensing, BlazeDS is not precluded from being used with other client platforms, such as JavaScript/Ajax.

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 Flex and AIR (Adobe Integrated Runtime) Rich Internet applications (RIA). Because of its open licensing, BlazeDS is not precluded from being used with other client platforms, such as JavaScript/Ajax.


Previously available only as part of Adobe LiveCycle Data Services ES, on December 13, 2007 Adobe announced that the technologies included in BlazeDS, along with the Action Message Format specification, were contributed to open source under the Lesser General Public License (LGPL v3) with the source code being available for download from early 2008. BlazeDS can be downloaded from the official page.

The Message Service provides a complete publish/subscribe infrastructure allowing Flex clients and the server to exchange messages in real time. Remoting allows a Flex application to directly invoke methods of Java objects deployed in an application server.

603 questions
6
votes
4 answers

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 getFolders(String path) { return dao.getFolders(path); } The Flex app receives the data as an ArrayCollection of AS3…
ukdavo
  • 177
  • 1
  • 8
6
votes
4 answers

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 equivalent) automatically mapped to ActionScript…
stubotnik
  • 1,952
  • 2
  • 17
  • 31
5
votes
3 answers

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 flex client has a login/logout functionality within…
Marty Pitt
  • 28,822
  • 36
  • 122
  • 195
5
votes
3 answers

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 has an ArrayList of Section objects. I can send an…
KevMo
  • 5,590
  • 13
  • 57
  • 70
5
votes
3 answers

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 party tools (dpHibernate?) or switching to…
Dave
  • 21,524
  • 28
  • 141
  • 221
5
votes
3 answers

Performance issues when calling java.beans.Introspector.getBeanInfo after inactivity

I am using a 3rd party library that dynamically creates instances of Java classes and populates those instances with the help of Introspector.getBeanInfo. Certain requests may result in 5 or 6 successive calls to Introspector.getBeanInfo. I have…
Mark Watson
  • 51
  • 1
  • 3
5
votes
3 answers

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 be fairly compact, is there any benefit to turning…
Fergal
  • 5,213
  • 6
  • 35
  • 44
5
votes
4 answers

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 ?
MaxouMask
  • 985
  • 1
  • 12
  • 33
5
votes
1 answer

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 Flex application. Actually I have Maven and…
a.s.t.r.o
  • 3,261
  • 5
  • 34
  • 41
5
votes
3 answers

how to push data from BlazeDS without receive 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 can I implement server side which doesn't need to…
Teerasej
  • 1,486
  • 4
  • 21
  • 31
5
votes
7 answers

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?
Henry
  • 32,689
  • 19
  • 120
  • 221
4
votes
5 answers

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 application running on a local network. It's become…
Boden
  • 4,149
  • 9
  • 43
  • 56
4
votes
2 answers

Spring BlazeDS flex.messaging.endpoints.AMFEndpoint

I have been struggling with this today for quite a while, removing everything but the default channels just to get it going. I have resolved all of my library issues (I hope) and now am getting the error below. I have also included my config files…
user115212
  • 63
  • 1
  • 8
4
votes
1 answer

can newer web containers having Servlet 3 extend BlazeDS max # of simultaneous users?

BlazeDS is implemented as a servlet and thus limited to roughly hundreds of simultaneous users. I wonder if the more recent web containers (Tomcat 7, GlassFish/Grizzly, Jetty, etc.) supporting Servlet 3 could be used to create NIO endpoints to…
ggkmath
  • 4,188
  • 23
  • 72
  • 129
4
votes
8 answers

How to set an HTTP header while using a Flex RemoteObject method?

I am running blazeds on the server side. I would like to filter http requests using an http header. My goal is to send extra parameters to the server without changing the signatures of my blazeds services. On the client side, I am using Flex…
Alexandre Victoor
  • 3,104
  • 2
  • 27
  • 27
1
2
3
40 41