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
4
votes
4 answers

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 something like RubyAMF / pyAMF don't?
Neil Middleton
  • 22,105
  • 18
  • 80
  • 134
4
votes
3 answers

grails install plugin blazeds failed due to unresolved dependencies

I trying to integrate Flex with Grails through BlazeDS BUT i am stuck with the very first step i.e installing BlazeDS plugin ... it fails everytime i try to install. Following is the complete stacktrace Resolving plugin JAR dependencies ... ::…
4
votes
1 answer

Duplicate Flex Sessions With Cross-Domain Requests

When I make a request locally, I have no problems at all maintaining my FlexSession; however, when I make a request from another computer, it creates duplicate FlexSession for every request. I noticed the JSESSIONID is different for each request…
Alex Beardsley
  • 20,988
  • 15
  • 52
  • 67
4
votes
4 answers

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 Tomcat... I am working primarily on the backend things,…
Wayne
  • 4,094
  • 4
  • 21
  • 11
4
votes
1 answer

ColdFusion 2018 and BlazeDS DateTime Parse Error for Three Char Daylight Saving Time Code

When using BlazeDS (Flex app) to send dates to CF, and the date sent is within Daylight Saving Time, CF fails with an error: [BlazeDS] Error deserializing client message. coldfusion.runtime.locale.CFLocaleBase$InvalidDateTimeException: July 8,…
4
votes
3 answers

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 NULL_ID = -1; private int internalId; getter &…
Ralph
  • 118,862
  • 56
  • 287
  • 383
4
votes
1 answer

NetConnection.Call.Failed happening sporadically in Flex3/Tomcat/BlazeDS/Spring

I have a very large problem. I've written a large app using Flex3/Tomcat/BlazeDS/Spring that has worked very well while developing locally, fine when I deployed to a common dev environment, but then fails very often when deployed to our test…
Buns of Aluminum
  • 2,439
  • 3
  • 26
  • 44
4
votes
2 answers

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 which create some problems when it comes to map Enum…
MaxouMask
  • 985
  • 1
  • 12
  • 33
4
votes
1 answer

Unsupported AMF version

I have encountered the following exception: [BlazeDS] Unsupported AMF version 4,660. flex.messaging.MessageException: Unsupported AMF version 4,660. at flex.messaging.io.amf.AmfMessageDeserializer.readMessage(AmfMessageDeserializer.java:93) at…
4
votes
2 answers

Client.Error.MessageSend problem with Flex/BlazeDS on JBoss

I'm developing a Flex 3.4 app that interops with a Java EE backend running on a JBoss-4.2.2 server, through the most recent release of BlazeDS. When I ran the Flex app from Flash Builder 4 beta 2 on Tomcat, everything was fine, the Flex app was able…
user158125
4
votes
1 answer

BlazeDS and ColdFusion - jRun memory usage increase resulting in java.lang.OutOfMemoryError: Java heap space

I have BlazeDS running in an instance of Coldfusion 8. A flex chat app that acts as both a producer and consumer with 70 long polling requests allowed, moving to client polling with a polling interval of 2 seconds. jRun metrics logging is enabled.…
Barry Jordan
  • 2,666
  • 2
  • 22
  • 24
4
votes
3 answers

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 simply 2 integers the application needs to…
KensoDev
  • 3,285
  • 21
  • 38
4
votes
4 answers

how can I talk to a blazeds endpoint without flash

i would like to reuse my existing blazeds/java/spring apps to write some html 5 clients. Is anyone aware of a pure js (no swf bridge allowed) client that has pub/sub capability so far my googling has found 2 projects - jsasmf (which uses a tiny…
MikeW
  • 4,749
  • 9
  • 42
  • 83
4
votes
6 answers

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 that? Some background: Let's say I have an…
SkippyFlipjack
  • 512
  • 2
  • 6
  • 19
4
votes
2 answers

How do you share Spring beans between different Spring contexts?

We have an application which uses Spring BlazeDS integration. So far we have just been using Spring and Flex, and it is working fine. We now have a requirement to add some Spring MVC controllers as well. The Spring BlazeDS documentation states that…
user1052610
  • 4,440
  • 13
  • 50
  • 101
1 2
3
40 41