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
19
votes
2 answers

Where should I put @EnableAsync annotation

I need to send a email in async way while saving the data into DB. My approach was like this. //I have tried with service layer annotating.But not worked. @EnableAsync class MyService{ public String saveMethod(List listOfData){ …
Sanka
  • 1,294
  • 1
  • 11
  • 20
14
votes
2 answers

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 features like Data Centric Development (DCD), form…
Gok Demir
  • 1,404
  • 4
  • 21
  • 40
13
votes
2 answers

BlazeDS vs. GraniteDS

Anyone have any experience evaluating BlazeDS and GraniteDS? I'm curious about which is better at integrating with Spring/Hibernate.
Mike Sickler
  • 33,662
  • 21
  • 64
  • 90
10
votes
3 answers

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 sample; public class UserInfo { private String…
Dougnukem
  • 14,709
  • 24
  • 89
  • 130
10
votes
4 answers

hibernate properties not found

we are integrating the java blazeds hibernate with flex project..First we tested the pure java hibernate in eclipse and it is executing fine. But when we put the same in tomcat for flex integration with blazeds it is showing the following error.this…
Samprity Kashyap
  • 158
  • 1
  • 1
  • 7
8
votes
3 answers

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 maintainable actionscript code How to ensure a…
Alexandre Victoor
  • 3,104
  • 2
  • 27
  • 27
8
votes
3 answers

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 there a way to setup BlazeDS to use Log4J? Or am I…
DyreSchlock
  • 867
  • 3
  • 13
  • 24
8
votes
1 answer

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 and digest authentication and realms for…
faran
  • 3,713
  • 1
  • 19
  • 12
8
votes
7 answers

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 deploy the downloaded BlazeDS jar files from the…
Tim
  • 109
  • 1
  • 1
  • 5
7
votes
5 answers

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 other classes that are working fine using the same…
Boden
  • 4,149
  • 9
  • 43
  • 56
7
votes
8 answers

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 service, so the client authenticates against a…
Rydell
  • 4,209
  • 7
  • 28
  • 30
7
votes
7 answers

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 refresh the view each time they are loaded, so the…
Steve
6
votes
5 answers

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 directly by Adobe. I'm thinking on something like…
Chepech
  • 5,258
  • 4
  • 47
  • 70
6
votes
3 answers

Custom Marshalling from Java to Flex via BlazeDS

My team are putting together a proof-of-concept Flex application sitting on top of a Spring-based server using BlazeDS. We do quite a lot of date calculations, so we use Joda Time extensively throughout the code and in our domain model. We're now…
SteveD
  • 5,396
  • 24
  • 33
6
votes
2 answers

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 "Spring BlazeDS Integration" library. Due to tight…
Alexey Kalmykov
  • 1,958
  • 2
  • 15
  • 27
1
2 3
40 41