Questions tagged [remoteobject]

153 questions
0
votes
1 answer

force to download remote image immediately without HTML5

I trying to force to download a remote image (url with https protocol), I failed to attempts do it on client (cannot use HTML5, thanks to IE8), so I'm trying to use server side (php). The only way how to do it I found thanks following answer, is…
IgorCh
  • 2,641
  • 5
  • 22
  • 29
0
votes
1 answer

RMI: serializable and remote objects

I have a certain problem: I'm using RMI to communicate between server and client. public class RemoteMap extends java.rmi.server.UnicastRemoteObject implements RemoteMapInterface { private TreeMap sprites; ... This…
Aksirba
  • 111
  • 1
  • 10
0
votes
2 answers

Cannot bind RemoteObject from BlazeDS

I'm using BlazeDS in Tomcat7 and Flex. I'm trying to use custom classes between the client and server. In as: package { [Bindable] [RemoteClass(alias="remoting.Product")] public class Product { public var name:String; public…
zavr
  • 2,049
  • 2
  • 18
  • 28
0
votes
1 answer

Example of using RemoteObject from Flex with Gravity messaging service from GraniteDS

I need an example about using RemoteObject from Flex with Gravity messaging service from GraniteDS. The only resource I managed to find about the topic can be seen…
ubnix
  • 101
  • 2
  • 1
0
votes
1 answer

When to use a Local EJB Interface

As per Oracle docs here Local Clients A local client has these characteristics. It must run in the same application as the enterprise bean it accesses. It can be a web component or another enterprise bean. To the local client, the location of the…
Victor
  • 16,609
  • 71
  • 229
  • 409
0
votes
2 answers

JMeter remote testing, test results not being displayed

I am currently running a remote test plan through a Linux machine. On the Linux machine, I run ./jmeter-server, and on host I use the GUI to Remote Start > IP Address. The Linux machine indicates start and completion of test plan through command…
ksdnlee
  • 91
  • 2
  • 10
0
votes
2 answers

Remove, add and save item in xml from DataGrid

I use a local xml file. When I remove an item in web browser it is removed but the xml file doesn't change. Why is this appending? Here is my xml file;
0
votes
1 answer

Flex RemoteObject + Zend AMF Server problem

I am working with php, Flex and zend's AMF Server using this guide. I successfully managed to connect php with Flex but after 'reconstruction' of my MySQL query I get a little bit different objects - some of their values are NULL. That confuses Flex…
errata
  • 5,695
  • 10
  • 54
  • 99
0
votes
2 answers

WebOrb/Flex: How to call a method on a RemoteClass returned by a RemoteObject

I have a RemoteObject returning a 'Schedule' class. I've created a client side RemoteClass to map to it. All properties of the class instance are coming in fine. I just not clear on how I go about calling methods on the class. How would I call a…
JLeonard
  • 8,520
  • 7
  • 36
  • 36
0
votes
2 answers

Python 3 xmlrpc for remote objects

I am trying to implement a remote object implementation using xmlrpc, and python 3. I have tried the example at http://docs.python.org/3.1/library/xmlrpc.server.html?highlight=xmlrpc#simplexmlrpcserver-example, but it only works to and from…
Joe
  • 255
  • 2
  • 4
  • 8
0
votes
2 answers

Handle Invalid Data Type in CF Remote Function

So I have a remote ColdFusion Function like: remote string function name (required numeric varname){ This is accessed via AJAX call. Google has taken it upon itself to pass in junk/blank values to the URL to this remote function. How can I…
Leeish
  • 5,203
  • 2
  • 17
  • 45
0
votes
2 answers

NullPointerException in InitialContext

NullPointerException in InitialContext private void connect() { try { InitialContext ctx = new InitialContext(); IServerBean serverBean = (IServerBean)ctx. lookup("java:global/applicationserver/ServerBean! …
Aleksandr Podkutin
  • 2,532
  • 1
  • 20
  • 31
0
votes
3 answers

AS3 Date not serializing to Java Date using BlazeDS

When I pass a Actionscript Value Object that contains a Date variable using BlazeDS it is not getting transferring as a java.util.Date object correctly. When the setBaseDatefunction gets called on the Java side the baseDate value is NULL. The…
Shua
  • 1,315
  • 8
  • 10
0
votes
1 answer

java remote function need calling twice

I've created a java code (swing GUI JFrame form) that call another class function (which is in another project) when the button is pressed, but it needs me to click the button twice in order to successfully return the value from the called…
0
votes
2 answers

RemoteObject method return value

Does a RemoteObject method's return object has to be a serializable? For example, A is a remote object and has the function: SomeObject getMyObject() throws java.rmi.RemoteException does SomeObject have to be serializable?
TheNotMe
  • 1,048
  • 2
  • 17
  • 33