Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
6k views

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 ...
2
votes
2answers
515 views

What is the point of the ASyncToken?

I've been tasked with the creation of an AS3 client for an HTML5 WebSocket server. My initial thinking is to create this service using some of the existing classes in AS3, namely attempting to ...
2
votes
1answer
343 views

Using Mate's RemoteObjectInvoker with C# classes

I'm using the Mate framework for Flex and communicating with a server running C#. I'm having trouble mapping C# classes to ActopnScript classes. I've got it working fine for simple classes and built ...
2
votes
3answers
533 views

How do I prevent RemoteObject from batching AMF messages together?

I am using Google AppEngine, in conjunction with PyAMF to provide RemoteObject support. In my Flex code I make several RemoteObject method calls at once which tends to batch the AMF Messages into a ...
2
votes
2answers
1k views

Flash RemoteObject Weborb connection without services-config.xml (no Flex)

Context : I'm working on a Flash application developed with FDT and compiled with Flash CS4 (I need a huge library). It should connect to various Weborb services. Weborb is properly configured. My ...
2
votes
2answers
403 views

Flex RemoteObject: Arrays with same values reference same memory

If I send remote data from Zend_Amf to Flex, if two array properties on the object have the same data values they are deserialized at the remote end with the same memory storage. Example: AS3 object: ...
2
votes
1answer
5k views

Flex 4 Remote Object Method Question

I post this previously in Adobe Forum but haven't got any answers so far. How do I do this in Flex 4? <mx:RemoteObject id="srv" destination="product" channelSet="{channelSet}" ...
2
votes
3answers
2k views

How Can I get Remote Objects to return XML in E4X?

I'm writing a Flex application that makes full use of BlazeDS to a Java server. I use Remote Objects a lot, but I've come across an instance where receiving XML is cleaner and faster than returning ...
2
votes
5answers
3k views

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 ...
1
vote
1answer
52 views

Using RemoteObject (AMF) from a Flash or Pure AS3 Project

I recently ported some code from a Flex project over to a new pure AS3 project. When i attempted to make an AMF call, I am getting an error message like this: TypeError: Error #1034: Type Coercion ...
1
vote
2answers
94 views

Maximum size of data which can be fetched using web service in Flex

I want to know the size limit of data which can be fetched in case of HTTP/Webservice/RO.
1
vote
1answer
106 views

How do i implement RemoteObject in a foreign class?

Heres the code: public class Schem { public var info:String=""; public function Schem() { } public function loadCurrentSchem():void { var ro:RemoteObject = new ...
1
vote
1answer
28 views

Reduce number of remote objects

I am making a flex application with .NET at back end (connection using WebORB and remote objects). I have five drop-down boxes in Flex component, each having unique values from different tables (e.g. ...
1
vote
2answers
345 views

Abort RemoteObject call

Is it possible to abort a flex remoteObject call? I tried the below method but the http request is still loading in the background: var r:RemoteObject = new RemoteObject('<myDestination>'); ...
1
vote
2answers
586 views

Socket error when .NET remoting between two machines

For a project we're working on, we're using .NET remoting to communicate between the server and client. So far we've been testing it on the same machine and its worked, using localhost and an ...
1
vote
1answer
182 views

How to use strongly typed remote service objects in Flex with Mate Framework?

I am relatively new to the Mate framework, but so far really like what I see. My application makes a lot of use of the <RemoteObjectInvoker> tag to call my BlazeDS/Java service methods on the ...
1
vote
1answer
504 views

Flex 4 Best Practice when using RemoteObject and multiple components

I was wondering what is considered to be a best practice when I have multiple components and use RemoteObject for AMF communication with a PHP backend. Have the RemoteObject in the Main.mxml file ...
1
vote
1answer
282 views

In flex how do I pass data retrieved from a remote object service to a modules interface?

I found at this Adobe tutorial a nice "RemoteService" class that creates a RemoteObject and contains the functions for handling the result and fault events. If I wanted to use this approach, how could ...
1
vote
2answers
678 views

Receiving generic typed <T> custom objects through remote object in Flex

Is it possible to receive custom generic typed objects through AMF? I'm trying to integrate a flex app with an existing C# service but flex is choking on custom generic typed objects. As far as I can ...
1
vote
0answers
477 views

Flex Unit - testing a library wrapping remote objects

I'm wrapping RemoteObject inside a class for easier managing of retries, timeouts, failures and such non standard scenarios. So when wrapping a RemoteObject inside another class, how would I go about ...
1
vote
2answers
2k views

Zend AMF implementation and AMF protocol security

I have a Flex frontend connecting via RemoteObject to Zend Framework's Zend Amf. This is my only means to transport data between client layer (Flex) and the application and persistence layers (LAMP ...
1
vote
3answers
4k views

Flex 3 Dynamic RemoteObject Class

I have a class which I want to use throughout my projects. It essentially would allow me to easily work with a RemoteObject so that I don't have to define it throughout all of my projects. It works ...
1
vote
2answers
292 views

Nested Class Coercion Fail Between CFC and Flex

I have two AS3 classes, A and B. Class A contains an ArrayCollection that will hold multiple instances of class B. In ColdFusion, I have matching CFCs, with same-named variables in the same order, ...
1
vote
1answer
674 views

retrieving Drupal contents from Flex using RemoteObject

I have previously used DTO in Flex which is mapped to a PHP DTO file. I used PHP through remoteobject (AMFPHP) to retrieve info from a MySQL database which is converted into the DTO type and then ...
1
vote
1answer
664 views

Creating Flash application using WebOrb Ruby/Rails

Ok, this may seem like a stupid question (for Flash Developers) but I really can't figure this out. So, I want to create somekind of an API for Flash/Flex applications so a user can use my lib in ...
0
votes
1answer
39 views

remote object in flex mobile application

Can anyone explain me, First of all is it possible to use remote object in Flex mobile application? If so then what could be the issue for getting following exception? Error detail: ...
0
votes
1answer
59 views

Receiving object datatype from java in flex

I am using java/blazeds/flex. So basically I have method in java: public ArrayList<Employee> getAllEmployees(){ ... ArrayList<Employee> employees = new ...
0
votes
1answer
32 views

Accessing data sent to server function via RemoteObject in Fault and Result handlers

I'm using Flex 4.6 with php and MySQL to develop a browser-based app. After login, the application populates an ArrayCollection (called cueArray) of cueItem objects with RemoteObject from my php ...
0
votes
0answers
48 views

Follow redirect response when using RemoteObjects and Consumers in flex

I have a java backend (BlazeDS+POJOs) and flex 3 client. The client makes RPC calls to backend through RemoteObject, and also receives messages from backend through consumers. In some deployments, ...
0
votes
0answers
84 views

Sprin+Flex+BlazeDS+Weblogic10.3 integration issue

I am working on project with Spring, Flex ,BlazeDS, Hibernate along with Weblogic 10.3 as app server. Below are the entried made in configuration files. WEB.xml <context-param> ...
0
votes
1answer
117 views

Development in Visual Studio 2010 for remote Sharepoint 2010 server

I understand that you can't develop in Visual Studio 2010 for a remote Sharepoint 2010 server because you need a local copy running on your box. (I know there is a hack) In my situation I have ...
0
votes
0answers
36 views

How instance a C# Generic<T> class from ActionScript RemoteObject?

It is possible instance a C# Generic class from Flex with RemoteObject and source?? remoteObject = new RemoteObject("fluorine"); remoteObject.source="Service.GenericClass`1"; //how specific the ...
0
votes
3answers
74 views

Multiple RemoteObjects - Best Practices

I have an application with about 20 models and controllers and am not using any particular framework. What is the best practice for using multiple remote objects in Flex performance-wise? 1) Method ...
0
votes
1answer
131 views

blazeDS - default channel

I want to recive RemoteObject from my service. Everything works fine but my code looks like this: <mx:AMFChannel id="myamf" uri="messagebroker/amf"/> <mx:ChannelSet id="channelSet" ...
0
votes
0answers
33 views

Mismatched Data Coming Back From Server

Good Evening Everyone - Kind of a strange question I guess...I have a flex app that is sending out a RemoteObject service call. It gets to the server, retrieves the data, but when it is trying to ...
0
votes
4answers
202 views

Remoteobject (AMFPHP)or HttpService? Which is the best to choose from?

Please explain me which of two is secure, powerful one, fast enough on sending to and receiving requested data from the server in Flex! I prefer working with remoting object with AMFPHP rather than ...
0
votes
1answer
246 views

How can I run Flex/BlazeDS without dropping a JSessionId cookie?

The question says it. Does anybody know the answer to this? We're running into problems when 3rd-party cookies are disabled.
0
votes
1answer
50 views

Why two requests are displayed in Fiddler2 when first request sent to BlazeDS using RemoteObject of Flex

Why are two requests displayed in Fiddler2 when first request sent to BlazeDS using RemoteObject of Flex. I use this enviroment: Flex SDK 3.5 BlazeDS 4.0.1 Spring 3.0.5 Spring BlazeDS Integration ...
0
votes
1answer
189 views

How do i handle Asynctokens in Actionscript classes

Heres my code: public class Schem { public var info:String=""; private var ro:RemoteObject = new RemoteObject("Hibernatetest"); public function Schem() { ro.endpoint ...
0
votes
2answers
435 views

How do i handle Remote Method calls via AsyncToken?

So here is the mxml i would like to get working: <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" ...
0
votes
1answer
221 views

How do I access Remoteobjects by using ActionScript?

This questions is discussed in many places, but none of the solutions seem to work for me. Heres the thing: In my mxml-code everything works perfectly: <s:RemoteObject id="remotetest" ...
0
votes
2answers
162 views

How to get the result of a RemoteObject immediately?

I need to make a function that execute a java method and return his result. It is static becouse a lot of other functions will call this function. So I did this: public static function ...
0
votes
1answer
364 views

Saving a bytearray with php received from Flex Air app

I have an Air application with remote service in codeigniter. I'm trying to save a bytearray that I received from the Air app but when I save the data I get empty files with the correct filename. So ...
0
votes
1answer
192 views

SecureAMFChannel with certificat

Basically, I'm using a remote object that access to a secure EndPoint. This EndPoint is located into my server. It means that my channel is a SecureAMFChannel. If I accept the certificat by going ...
0
votes
0answers
96 views

How to get a destination sent from client for using BlazeDS?

I'm using Spring BlazeDS Integration. I want to get a destination sent from client in the servlet filter classes. Can I get it from ServletRequest or ServletResponse of filter's class arguments? ...
0
votes
2answers
234 views

EJB + JSP: Cannot create the Remote Object from the Home interface

I'm a newbie in the J2EE/EJB field and I'm following some basic examples. I have implemented a very simple class that sums 2 number. I have the home and remote interfaces and the Enterprise Bean ...
0
votes
0answers
244 views

Event Results Not Passed to Value Objects in Flex4

For what ever reason, I'm not getting the objects in a remote object call's arraycollection to populate a declared array collection of value objects. Here are some facts: First, debugging shows that ...
0
votes
1answer
567 views

Remote Object flex not working

I'm building an application using Flex 4 + Spring Blazeds Integration 1.5 + Spring 3.0.5 + Hibernate running on jboss-5.1.0.GA. I create a simple login form, and when a submit a string via remote ...
0
votes
1answer
295 views

Does Flash Builder 4 Generated Value Objects Support Inheritance/Polymorphism?

At Java side, I have Interface Node FloatLiteral implements Node Resource implements Node And DAO that provide service that returns public List<Node> getAll() Thus it can return ...
0
votes
2answers
821 views

How to use Spring BlazeDS Integration?

I want to use Spring BlazeDS Integration. I write them like this. [web.xml] <servlet> <servlet-name>flex</servlet-name> <servlet-class> ...

1 2