Questions tagged [remoteobject]
153 questions
2
votes
2 answers
Flex RemoteObject get size of request/response
As title says for some purpose I need to get the size of request/response from a RemoteObject, tracking the calls with the Network Monitor I can see the request/response size, but I can't find it in the framework..
I tried to look into every…

Marcx
- 6,806
- 5
- 46
- 69
2
votes
2 answers
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 objects.
Returning XML through BlazeDS is easy…

DyreSchlock
- 867
- 3
- 13
- 24
2
votes
0 answers
Returning Qt RemoteObjects from RemoteObject method calls
I'm trying to setup a remote object for a given class.
The class return pointer to internal objects.
class A
{
...
func(){ };
}
class B
{
std::vector AObjects;
...
A *addObject(){}
}
I created the rep file like this
class A
{
…

heitho
- 61
- 1
- 7
2
votes
2 answers
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…

Dennis
- 3,448
- 8
- 38
- 45
2
votes
3 answers
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 emulate RemoteObject, but having looked into it, I can't…

adamk
- 439
- 3
- 10
2
votes
0 answers
QtRemoteObjects SSL transport
Is there good example of how to implement custom protocol for QtRemoteObjects?
There are not too well documented classes QtROClientFactory and QtROServerFactory in documentation (because in 5.9 QtRO just technology preview). There is no example of…

Tomilov Anatoliy
- 15,657
- 10
- 64
- 169
2
votes
2 answers
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 arbitrary port number. However, when testing between…

achinda99
- 5,020
- 4
- 34
- 42
2
votes
1 answer
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 passed back to Flex to populate Datagrid.
The data…
Allen
2
votes
1 answer
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 tag to call my BlazeDS/Java service methods on the back-end.
However, it is bothering me that I must enter…

Dave
- 21,524
- 28
- 141
- 221
2
votes
1 answer
Java RMI: Pass remote object reference back to host
My client uses RMI to connect to a service on a different host.
This client calls a method on the service that returns a remote object reference. Can the client pass the associated stub to a different method of the service in a way that is…

Simon Slangen
- 60
- 7
2
votes
1 answer
Max nested levels reached on object sent with RemoteObject
Our Flex web application uses RemoteObject connections to send a custom class object to PHP. This object has multiple depth levels, with nested objects inside the main one. We found a limit on the number of nested levels allowed, no matter how…

spacorum
- 495
- 6
- 16
2
votes
1 answer
Retrieving object sent through a Message Queue
I am building a Queue system and I have been able to send an object to a public queue located on another server.
What I cannot figure out is how to rebuild the object on the receiver side (I have the its definition on both ends).
Any ideas?

MaPi
- 1,601
- 3
- 31
- 64
2
votes
2 answers
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:
Snippet:
[RemoteClass(alias="TestVO")]
public…

NigelF
- 21
- 2
2
votes
1 answer
Flex 4 Remote Object Method
I post this previously in Adobe Forum but haven't got any answers so far.
How do I do this in Flex 4?

Pii
- 301
- 4
- 15
2
votes
1 answer
How to recognize if Flex passes NaN to ColdFusion
Flex application executes remote ColdFusion metod through RemoteObject. The remote method argument is VO. One of the numeric fields of VO is NaN. How to recognize NaN on CF side?
I've tried following:
this returns…

Oleg Vit'ko
- 81
- 1
- 5