amf « flex « Java Enterprise Q&A





1. Where to get Flex - Java DS (Blaze) training material?    stackoverflow.com

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) ...

2. Error on deserialization of Array Collection in Flex: RangeError: Error #2006    stackoverflow.com

I am getting this error during serialization:

RangeError: Error #2006: The supplied index is out of bounds. The error occurs in AbstractMessage.as when it attempts to read input ...

3. How can I debug AMF (BlazeDS) serialization of Java objects to Actionscript?    stackoverflow.com

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 ...

4. Modifying AMF response at runtime - How to?    stackoverflow.com

I have built a simple flex application (using BlazeDS) which displays "Person" details by invoking a java service using flex remoting. So, my Person class looks something like this:

class Person {
public ...

5. AMF Channel without Livecycle, BlazeDS or similar    stackoverflow.com

Is it possible to use an AMF Channel in a Flex HTTPService client application without using Adobe Livecycle, BlazeDs or similar in order to do real time asynchronous request from an ...

6. Flex Null Integer    stackoverflow.com

I take data from Java to Flex by AMF (BlazeDS) In java side object has Integer field. So it can be null. In Flex side object is int. So null values are deserialized ...

7. ActionScript: Type coercion problem with BlazeDS/AMF and class interfaces    stackoverflow.com

I've got a problem with type coercion in a Java/Hibernate/BlazeDS/Flex-Setup. First of all, my classes look like this:


--- JAVA --- Interface I
(Abstract) Class A implements I
Class B extends A --- ActionScript --- Interface I
Class ...

8. Fields are mismatched when passing object from Java to Flex, how do I fix it?    stackoverflow.com

We have a pretty big application with lots of objects being passed between flex and java. One object in particular has a subtle bug: It's a plain old java object being ...

9. Open source testing app for Flex app using AMF and BlazeDS    stackoverflow.com

I am looking for an open source tool that measures response time as well as provide result status of a Flex application using AMF and BlazeDS. I am not very ...





10. Is GZip compression worthwhile with AMF    stackoverflow.com

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 ...

11. How can my Flex application know when data is stale?    stackoverflow.com

I have a 100% Flex based enterprise web application with a Java/BlazeDS backend. In order to create a more snappy user experience I'd like to load a bunch of data ...

12. How do you pass a 2d array from java to flex(using BlazeDs)?    stackoverflow.com

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 ...

13. Best practice to handle nullable Integer in a Java - Flex remoting application?    stackoverflow.com

I have an Application consisting of a Java Server part and a Flash/Flex client, both communicate via BlazeDS. In order to have the same typed Objects on both sites, I use ...

14. How to make BlazeDS ignore properties?    stackoverflow.com

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 {
 ...

15. Adobe BlazeDS project works on PC but not Mac    stackoverflow.com

I have a Flash Builder 4 (Flex) project that uses BlazeDS. It is checked into an svn repo. I have it working fine on a PC. However, when ...

16. How to make BlazeDS name conversion to work for properties beginning with a lower-case letter followed by an upper-case one?    stackoverflow.com

I have some trouble with the conversion applied by BlazeDS to the name of the properties when this name begins with a lower-case letter followed by a capital letter. I have an ...





17. How to test latency of Flex messages    stackoverflow.com

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 ...

18. Flex blazeds/lcds AMF serialization for transient variables    stackoverflow.com

I am using LCDS and Flex. When I am sending an object from java to Flex, I donot want to send all the properties. As far as I know, if you ...

19. BlazeDS Channel connects and disconnects immediately    stackoverflow.com

I am connecting to a BlazeDS server with a simple Flex component that is merely trying to subscribe to realtime data

Here are the Channels and Consumer

    <mx:ChannelSet id="channelSet">
 ...

20. Java, BlazeDS, Flex - Error #10566: Cannot create property smallMessage on AcknowledgeMessage?    stackoverflow.com

I have a working Flex/Java application, but if I log out of the channelSet and log back in, in the debug console I am seeing numerous instances of this error:

ReferenceError: Error ...

21. BlazeDS channel serialization options?    stackoverflow.com

Does anyone know of an accurate and complete list of the serialization options for a BlazeDS AMF channel? It seems like it should be an easy thing to find, but ...

22. How to find MessageClient ID of Consumer of Flex BlazeDS AMF Push Channel    stackoverflow.com

How do I find the MessageClient ID for a Consumer object in Flex? On the server side (Java), I use FlexContext.getFlexClient().getMessageClients() to get the MessageClient object of the Flex message client sending ...

23. How to identify Flex BlazeDS AMF Producer server-side and client-side    stackoverflow.com

I am using BlazeDS and AMF to send messages back and forth between Flex and Java. How can I identify the Flex producer both Flex-side and Java-side?