Questions tagged [remoteobject]
153 questions
1
vote
2 answers
Flex - How to get the parameters passed to a RemoteObject call when a FaultEvent is triggered?
I call a RemoteObject method inside a loop. This method receive a row id as parameter that deletes the row in a database. Inside a loop, lots of calls could be made at once. Some of the calls could fire a FaultEvent. How do I detect the row id that…

carloslimajr
- 11
- 1
1
vote
2 answers
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 when not passing "args" to sendRequest(..). But…

Chris Klepeis
- 9,783
- 16
- 83
- 149
0
votes
2 answers
cannot use RemoteObject with BlazeDS in actionscript project
I try to connect blazeDS in actionscript project with the following code:
ro = new RemoteObject();
var cs:ChannelSet = new ChannelSet();
cs.addChannel(new AMFChannel("my-amf", "http://localhost:8080/Ninja/messagebroker/amf"));
…

Kanglai
- 530
- 1
- 6
- 18
0
votes
2 answers
Need to click twice on Flex button to get RemoteObject result
I'm doing a project using Java + Flex. I created Java class and used Flex remote object to invoke the method. When I write all the code in an mxml, it runs well. But when I wrap the script in an as file, there's something curious. I need to click…

Curious Song
- 13
- 4
0
votes
1 answer
Fault NetConnection Failed using actionscript RemoteObject lots of datas
I have an air (4.5.1) mobile project that send an ArrayCollection to the server (Tomcat/BlazeDS)
The server manage the object and return a string containing the result (ok/error/etc)..
Everything worked fine, until:
I tried to send an…

Marcx
- 6,806
- 5
- 46
- 69
0
votes
1 answer
How to call the method which has an only "long" type argument for using BlazeDS?
I can't call the method which has an only "long" type argument for using Adobe BlazeDS?
Here is it.
[Flex]
var ro:RemoteObject = new RemoteObject();
ro.destination = "objectService";
ro["getById"].send(3107);
[Java]
public class ObjectServiceImpl…

Take
- 213
- 1
- 6
- 12
0
votes
1 answer
Flex - how to abort/stop a RemoteObject method call?
I am using RemoteObjects to call ZendAMF PHP from Flex/Flash Builder 4.6. I want to stop or abort a method call before it sends the request to the server based on an event or similar.
I have a class where I create and store all the RemoteObjects -…

Scott Szretter
- 3,938
- 11
- 57
- 76
0
votes
2 answers
How to retrieve result from an remoteobject AMFPHP Flex 4.5
I have a quick question about flex 4 remoteObjects.
I would like to retrieve information from a MySql DB via amfphp to Flex 4.5.
I'm using a remoteobject tag. I would like to use the result attribute but it doesn't seem to work for me. What am i…

DJ.
- 2,031
- 2
- 13
- 22
0
votes
1 answer
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: "Channel.Connect.Failed error The application name
specified…

KCS Pvt Ltd
- 1
- 2
0
votes
1 answer
Receiving object datatype from java in flex
I am using java/blazeds/flex. So basically I have method in java:
public ArrayList getAllEmployees(){
...
ArrayList employees = new ArrayList();
pst = JavaConnection.getConnection()
…

randomUser56789
- 936
- 2
- 13
- 32
0
votes
1 answer
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 class.
I have a List with a custom ItemRenderer which…

Ian
- 1
0
votes
1 answer
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 Sharepoint Foundation installed locally for development…

Craig Norton
- 1,047
- 1
- 10
- 23
0
votes
1 answer
How instance a C# Generic class from ActionScript RemoteObject?
Is it possible to create an instance of a C# Generic class from Flex with RemoteObject and source?
remoteObject = new RemoteObject("fluorine");
remoteObject.source="Service.GenericClass`1"; //how specific the entity…

vladiastudillo
- 407
- 1
- 10
- 23
0
votes
3 answers
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 1 - One per Component - Each component…

William
- 386
- 5
- 16
0
votes
0 answers
QtRemoteObjects: get signal on host when remote node/replica disconnects
I'm searching for a API of QtRemoteObject classes to detect when a remote client node (or even a specific replica, if possible) disconnects from the registry/host.
I've seen that this 4 year old question has no answers on stackoverflow:…

enricop
- 1
- 2