Questions tagged [remoteobject]
153 questions
0
votes
2 answers
How to use Spring BlazeDS Integration?
I want to use Spring BlazeDS Integration.
I write them like this.
[web.xml]
flex
org.springframework.web.servlet.DispatcherServlet
…

Take
- 213
- 1
- 6
- 12
0
votes
2 answers
passing constructor arguments for a remote object from client program in Java
I have a doubt regarding RMI.
In RMI we create remote object(s) and use them to call methods as declared in the remote interface. So if I want to set some parameters of a remote object I have got to do so using some setField method ( as created )…

S..K
- 1,944
- 2
- 14
- 16
0
votes
1 answer
QRemoteObjectNode::remoteObjectAdded signal does not fire
While learning how to use QtRO tech preview module, I tried a simple 3 node network ( A registry node, a source object remoting node, and a client node).
registry node main.cpp:
#include
#include
int…

Houss_gc
- 727
- 5
- 27
0
votes
2 answers
remoteObject Fails After Recompiling Using CF8
I've been handed a Flex project that was originally built and compiled using Flex3 and CF7. My setup is Flex3 with CF8. Everything works fine when I initially pull the project over but as soon as I recompile, remote calls to the CFCs begin to…

Anne Porosoff
- 1,931
- 16
- 18
0
votes
1 answer
org.omg.CORBA.MARSHAL: WARNING: 00810057: Could not load class
I am testing simple Enterprise application but I am getting following error when I call remote method.
type Exception report
messageInternal Server Error
descriptionThe server encountered an internal error that prevented it
from fulfilling this…
user5424709
0
votes
2 answers
Pyro4 Encoding in JSON/Base64
So I have a simple application using Pyro4 (Python Remote Objects). There is an exposed class API, and I have a file that calls the function api.parse(input,userid), which returns some JSON dependent on input. However, instead of simply returning…

James Paterson
- 2,652
- 3
- 27
- 40
0
votes
1 answer
AS3 RemoteObject with XMLRPC Python Server : "NetConnection.Call.BadVersion" problem
I want to use XMLRPC mechanism between my Flex app and my XMLRPC Python Server.
My server :
class ServerMockUp(SimpleXMLRPCRequestHandler):
# Services path declaration
rpc_paths = ()
myServer = SimpleXMLRPCServer(("localhost", 80),
…

Anthony
- 325
- 2
- 5
- 15
0
votes
1 answer
Populating a Flex 4 TextArea with text via CF remoting
I want a web page to display song titles and associated lyrics.
I have a coldfusion cfc which provides the Flex app with the data via a database query
providing two fields songTitle and songLyric. I have no problem displaying the data in a 2 column…

pssguy
- 3,455
- 7
- 38
- 68
0
votes
1 answer
Newbie question for Flex Remoting with WebOrb
Since Flashbuilder does not support WCF over https, i am considering to use weborb remoting as alternative, but not really sure how flash is going to know weborb location, if they are sitting on different servers. Looked at destination, source…

blah
- 399
- 1
- 3
- 6
0
votes
2 answers
remote object Url
Someone know waht this address means ? i know that is somthing with remote object
tcp://cikpfdb.cik.ff.com:8095/DataLoaderRemoteObject
thanks

Yan
- 1,424
- 4
- 21
- 44
0
votes
1 answer
RemoteObject class aliases within ActionScript Worker
I have a Flex mobile app for iOS and Android. For performance reasons, I would like to move some of my download code into a Worker. I have about 20 Java classes which are being deserialized into ActionScript after making a RemoteObject call to…

Colin
- 650
- 7
- 15
0
votes
1 answer
Flex remoteObject compression
I have a Flex application which sends/receive a lot of data to/from the server. The bandwidth usage is high.
I'm using RemoteObject to send an XML(Document in Java). So I'd like to compress this XML and reduce the size.

Marouane Gazanayi
- 5,063
- 6
- 39
- 58
0
votes
2 answers
Check if data sent from Flex to Java server is zipped or not
I want to analyse if the XML I send from my client Flex to my Java using remoteObject is compressed or not.
for this, I'm using Wireshark, but it can't get packets in the localhost (windows vista)
how can I do that ?

Marouane Gazanayi
- 5,063
- 6
- 39
- 58
0
votes
1 answer
Accessing a java method in a flex object
Assume I have the following java class
public class Square {
private Long id;
private double sideLength;
public void setSideLength(double sideLength) {
this.sideLength = sideLength;
}
public double getSideLength()…

Daniel Moura
- 7,816
- 5
- 35
- 60
0
votes
2 answers
How can i remove the remote object from the RMI runtime
When i shutdown the RMI server program by using,
serverReg.unbind("LibraryServer"); it only remove the bound of remote object and it's key 'LibraryServer. If i start the server same time it give me an exception ObjID already in use. How can i…

ccc
- 370
- 5
- 19