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
0
votes
1 answer

BlazeDS not executing or returning service calls asynchronously

I have a BlazeDS RemotingService defined in my remoting-config with multiple destinations. In my scenario, I am making three rapid-fire service calls in ActionScript. Two calls correspond to one destination, while the other call corresponds to…
Wagan8r
  • 468
  • 5
  • 18
0
votes
2 answers

Flex BlazeDS consumer not subscribed

My flex frontend is using BlazeDS/Tomcat to collect realtime data. I am using a plain consumer over a standard streaming-amf channel.
MonoThreaded
  • 11,429
  • 12
  • 71
  • 102
0
votes
1 answer

BlazeDS default messaging for 1500 clients

I am having Flex + Spring BlazeDS Integration + Java combination for my project. This project is deployed on weblogic server. As we know whenever a client connects to blazeDS it blocks one thread on the server and it is a limitation for the maximum…
akhil_mittal
  • 23,309
  • 7
  • 96
  • 95
0
votes
2 answers

Flex/BlazeDS - resultHandler per function call not per RemoteObject?

I've followed this tutorial to get some Flex code to call Java code hosted on a Tomcat server. This is how my RemoteObject and the Button to call the remote function is declared:
William
  • 13,332
  • 13
  • 60
  • 73
0
votes
1 answer

Result handler not getting control in parsley 3 used with Flex 4 (BlazeDS + Spring)

I am using parsley 3 with Flex 4 (AIR) for one of my applications. When I make a remote call I am dispatching an event which reaches till command class and then to Java layer service. Till here all works fine. Java layer makes some call etc and…
akhil_mittal
  • 23,309
  • 7
  • 96
  • 95
0
votes
2 answers

How to use custom java exception in flex?

I have several custom exception created in Java. I have connected java with Flex using BlazeDs. Now I need to use those custom exceptions in Flex. How can I do that? In fact, I am trying to call methods in java throwing those custom exception in…
0
votes
1 answer

Flex Mobile BlazeDS loading an image from server

I have a question about getting an image from server. btw I'm using BlazeDS. And when I attempt to load it from loader it gives me "Loaded file is an unknown type." error message. Here's my code: var loader:Loader = new…
Zaur Guliyev
  • 4,254
  • 7
  • 28
  • 44
0
votes
1 answer

Intermittent Channel.Connect.Failed error NetConnection.Call.Failed:HTTP: Failured: url

We have a Flex application that sometimes throws this error Intermittent Channel.Connect.Failed error NetConnection.Call.Failed:HTTP: Failured: url 'http://nsmjboss:8400/backbone/messagebroker/amf' I can hit that link in a brewer and it works fine,…
Ryan
  • 1,085
  • 1
  • 10
  • 15
0
votes
1 answer

Flex BlazeDS dynamic configuration

i'm here with a new question - this time more general; hope most of you have experienced this. So than I configured my flex mobile project so that it requires to update server URL adresses each time server ip or port is changed: But in my case my…
Zaur Guliyev
  • 4,254
  • 7
  • 28
  • 44
0
votes
1 answer

BlazeDS + Flash Builder: on setting web-application parameters

I have a working Flex/BlazeDS application (for simple AMF remoting) with the following settings: server-config.xml:
ggkmath
  • 4,188
  • 23
  • 72
  • 129
0
votes
0 answers

Dynamic remote object url - flex mobile

I almost finished my project but now I want to add a dynamic server url setting in each view. Application bootstraps with config.xml and channels-config.xml (I used Parsley framework ). config.xml:
Zaur Guliyev
  • 4,254
  • 7
  • 28
  • 44
0
votes
1 answer

MessageBrokerServlet failed to initialize due to runtime exception

My application works fine on Windows and Mac, but when I copy the exactly same JBoss folder to Debian (or CentOS) I can't figure what happened. With some research I discovered that something is wrong because if I try to access…
Paulo Rodrigues
  • 5,273
  • 7
  • 35
  • 58
0
votes
1 answer

Why are my HTTP resources not loading in the Flex in a Week tutorial series?

I'm working though the Adobe "Flex in a Week" video training series, and I've reached Exercise 9, which deals with creating a remote service call. Up til this point, the data source and images have been local assets (located in src/assets in my…
Chris R
  • 17,546
  • 23
  • 105
  • 172
0
votes
1 answer

Duplicate Session Error hitting AWS instance

We have a Flex application that has a Java backend and we utilise BlazeDS in the middle. We use Tomcat as the Java Application server, and it works fine for our client-base who self-host the app on either physical or virtual servers. We have setup a…
jakc
  • 1,161
  • 3
  • 15
  • 42
0
votes
1 answer

How to add array list (getting from blazeDS) as a tree node in flex

I want to add array list (getting from blazeDS) as nodes to tree. And after clicking of particular node, related list is calling from service layer. I have done that but it is not coming as a child node in same tree.