Questions tagged [remoteobject]

153 questions
0
votes
1 answer

Populating an ArrayCollection property using [RemoteClass]

OK, I am passing a complex object from my .NET library to my Flex application via WebOrb. In order to automatically translate, I am using the [RemoteClass] meta data tag as follows: [RemoteClass(alias="test.PlanVO")] public class Plan { …
0
votes
1 answer

Get object information in a running process

I have a vb.net application which runs as a service. I also have another Windows application that serves as the service interface. In brief the service watches some folders for new files and imports them into various databases. In the service I have…
SausageFingers
  • 1,796
  • 5
  • 31
  • 52
0
votes
1 answer

An unhandled exception of type 'System.Security.SecurityException' occurred in mscorlib.dll

my problem is the error mentioned in the title. I am trying to use an objects as CAO type. I've creasted proper assembly, serwer and the client. It occurs when I try to use the line: JamesBondCar[] cars = { new JamesBondCar("one", 100, true, true),…
Paweł Poręba
  • 1,084
  • 1
  • 14
  • 37
0
votes
1 answer

Flex/Coldfusion Remoting issue. - 'Destination ColdFusion does not exist'

I'm trying to resolve a Flex remote object Coldfusion call. I'm getting the following error. [MessingError message='Destination 'ColdFusion' either does not exist or the destination has no channels defined (and the application does not define any…
Alex
  • 443
  • 3
  • 18
0
votes
0 answers

The .NET remote object call Activator.GetObject is slow, take several minutes

The .NET remote object call Activator.GetObject is slow, take several minutes. //Server side public void Conn (int nPort) { IDictionary Prop = new Hashtable(); Prop["port"] = nPort; BinaryServerFormatterSinkProvider Server = new…
Jan
  • 21
  • 2
0
votes
1 answer

RMI RemoteObject toStub

I surfed the net on this. Couldn't find any appropriate tutorials. Please explain this: How to use RemoteObject.toStub(Remote rmo) for dynamically creating stub of remote object? How these stub objects are interpreted at client end and save the task…
user2653926
  • 610
  • 7
  • 23
0
votes
3 answers

Live propagation of DataGrid / ArrayCollection when changing values in Flex application

I've seen a bunch of screencasts demonstrating the integration between blazeds and flex, also some lcds tutorials, model driven or not. I've seen that some of them the presenter opens 2 browsers and once you change one value in a grid, it propagates…
Ernani Joppert
  • 503
  • 5
  • 12
0
votes
1 answer

Registering RMI Client leads to IllegalArgumentException

i have a simple RMI - Client, Server architecture. As I want to do callbacks from the server I defined following Interfaces: public interface Meiern_RMI_Server extends Remote{ public boolean registerClient(RMIClient client) throws…
izocan
  • 291
  • 1
  • 4
  • 16
0
votes
2 answers

Returning results from remoteobject class to parent

I have a Flex application using ColdFusion to retrieve data from MS SQL. I'm trying to create a class where I can send in a numeric argument and it returns a value to the document calling the class. This is my class package com.procost { import…
0
votes
0 answers

How to use subscribe(client) / invoke(server) delegates over network? C#

I must implement an asynchronous communication between client and server, I made a test application that does it through delegates (where the client subscribes to server’s instantiated delegate, that invokes every x seconds). Server and client are…
0
votes
1 answer

Pyro: Is it possible to pass a class from a server to a client and then instantiate an instance of that class on the client side?

High level overview: I have a server.py file and a class WorkTask.py that has some function execute in it, both stored on my server. I also have a client.py that runs remotely and connects to the server using pyro. Is there anyway that I can pass…
Dylan
  • 949
  • 3
  • 13
  • 23
0
votes
1 answer

How to transform a string in function and concatenate with an object?

I have the following code in actionscript 3: var async:AsyncToken; async = bridge.retornamenu(); The bridge is a remote object, instantiated. The retornamenu() is the function that I want the remote object open in amfphp. However the retornamenu()…
luiz
  • 15
  • 1
  • 4
0
votes
1 answer

How to write a DCOM server in C# that you can call remotely?

Given the following C# server code to start a DCOM server: using System; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.ServiceProcess; using System.Threading; using System.Runtime.InteropServices; namespace…
hawkeye
  • 34,745
  • 30
  • 150
  • 304
0
votes
2 answers

Find application handlers?

Problem I am attempting to find a window object handle inside a remote terminal that is run though Citrix Remote with ZenApp. My problem is I can see the parent window of Citrix Remote but no children. I have tried WinSpy, WFP Inspector, and a few…
0
votes
1 answer

Know when a client called a remote object RMI

I'm making a java swing app using RMI and I would like to know when the client called a method of the server so that other clients get updated. Let me be more specific, i'm making a tic tac toe game in java swing, I have the server and 2 clients, I…