Questions tagged [remoteobject]

153 questions
0
votes
3 answers

Building java server which share interfaces wtih Android client

2 month ago i started to develop an android application which needs to call remote methods and receive complex objects (custom objects with custom feilds in it) from a server. My friend and I splitted the work so he worked on the android client and…
Dave
  • 193
  • 1
  • 3
  • 8
0
votes
1 answer

Remote Method Invocation(RMI) - how the server knows what the client invoked?

I have a program in which there are these classes: RMIServer, RMIClient, RMIImplementation, RMIInterface which are as follows: RMIServer: public static void main ( String args[] ) throws Exception { System.out.println( "RMI Server started" ) ; …
msn
  • 231
  • 2
  • 11
0
votes
1 answer

Remote entity relationship with Spring and JPA (hibernate)

I have 2 databases. The first one is the db of our company ERP and the second one the db of my app. I need to working in my app with synched customers table data from ERP database. Now I synch the tables every hour with quartz job. In this way I…
gipinani
  • 12,376
  • 10
  • 50
  • 80
0
votes
1 answer

Flex RemoteObject Source not found

Our flex project, which works fine in its current environment with coldfusion 7 single server. We moved this project to Coldfusion 8 multi server, and updated the remoteobject paths relative to the web root. The error we now receive is…
Chris Klepeis
  • 9,204
  • 16
  • 80
  • 147
0
votes
1 answer

can we catch Packet Of HTTPservice of flex

Here i use Charles web debugger Proxy to catch all packet which send/receive by HTTP Protocol and here, i declare, Charles is HTTP monitor. after opening Charles i got all the packet which send from my browser. so i made a new application which call…
0
votes
1 answer

From EJB 2.0 to EJB 3.0

Here Is the code that I have to create an EJB 2.0 How can I convert this so can be used for EJB 3.0 java.lang.Object ejbHomeStub = initCtx.lookup(ejbJNDIName); EJBHome ejbHome = (EJBHome) javax.rmi.PortableRemoteObject.narrow(ejbHomeStub,…
otc
  • 576
  • 1
  • 6
  • 36
0
votes
1 answer

in Flex 3.2 Having troubles converting remote object result to specific object on client side in modules

in Flex 3.2 Having troubles converting remote object result to specific object on client side in modules. For example I have VIPSAdmin module. it has function private function doResult(event:ResultEvent):void { var data_:Array =…
xchg.ca
  • 1,105
  • 2
  • 13
  • 27
0
votes
2 answers

Flex - RemoteObject - how to look at raw data received?

When using flex remote objects is there a way to look at the raw data received back from the server, for example as string? I have a faultHandler set in my code and occasionally see faults, but the fault description in flex is very vague. For…
Scott Szretter
  • 3,790
  • 11
  • 52
  • 76
0
votes
1 answer

How spring knows to refresh itis initial context if one cluster member goes down

I am using spring portlet mvc as my front end and connecting to some remote EJB running on a WAS. Now in my configuration file for the portlet where I specify the remote EJB lookup url, I have specified the url(s) as a cluster since the EJB is…
Victor
  • 15,091
  • 64
  • 201
  • 364
0
votes
2 answers

Do wireless programmable remotes for PC-s exist?

I'm looking for a programmable remote control for a Windows or Linux host machine. By programmable i mean i have ready to use (preferably Java or .NET) API for receiving key press events from the remote control and being able to write my own custom…
Dante
  • 8,751
  • 14
  • 43
  • 61
0
votes
1 answer

flex - reinvoking Operation after faultevent

After invoking a RemoteObject, we sometimes need to reinvoke the same operation until it succeeds. private var myserviceRO:RemoteObject = new RemoteObject("myService"); [...] myserviceRO.operationName.addEventListener(ResultEvent.RESULT,…
Majid Laissi
  • 17,370
  • 17
  • 62
  • 99
0
votes
1 answer

Cannot get RemoteObject call in FlexBuilder to work with ColdFusion

When I try to call this simple function in a CFC, with the proper remote setting, I get an error that says "Destination 'ColdFusion' either does not exist or the destination has no channels defined and the application does not define any default…
jamesTheProgrammer
  • 1,674
  • 3
  • 21
  • 33
0
votes
1 answer

FLEX - Load remoteobject and shared them with modules

I want to start out by saying that I am new to flex. My background is more in the .NET. I am starting a new project in flex that will have many modules. I read in many post that remoteobject accessing data should be placed in the main application…
gfbaggio
  • 1
  • 2
0
votes
1 answer

RemoteObject inconsistent channel location

I have a swf which, for some reason, has four RemoteObjects pointing to the same ChannelId, but they are listing that channel as being at two different spots. In four of the five RemoteObjects, everything behaves as expected, but in the fourth…
cwallenpoole
  • 72,280
  • 22
  • 119
  • 159
0
votes
1 answer

ActionScript RemoteObject Response Headers

Can I get the response headers from a RemoteObject request? If so, how? I am in the process of writing an application in Flex 3.3, using the Cairngorm framework, for deployment as an AIR application. The application heavily utilizes RemoteObject…
icio
  • 2,825
  • 16
  • 21
1 2 3
10
11