Questions tagged [remoteobject]

153 questions
52
votes
14 answers

java.rmi.ConnectException: Connection refused to host: 127.0.1.1;

java.rmi.ConnectException: Connection refused to host: 127.0.1.1; nested exception is: java.net.ConnectException: Connection refused at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:619) at…
heythatsmekri
  • 681
  • 2
  • 7
  • 16
7
votes
2 answers

Getting IEnumerable semantics with a NetTcpBinding WCF service?

First, this is not a duplicate of IEnumerable as return type for WCF methods, I think I understand that the WCF architecture only allows concrete types to be transferred that can be stuffed into a message. Second, our setup however is not a…
Martin Ba
  • 33,741
  • 27
  • 150
  • 304
6
votes
8 answers

EJBCLIENT000025: No EJB receiver available for handling?

I am trying to connect to a remote EJB on my local JBoss 7.2 from an executable Java application (local not on JBoss). But I get the following error/Exception : java.lang.IllegalStateException: EJBCLIENT000025: No EJB receiver available for handling…
yck
  • 113
  • 1
  • 1
  • 7
6
votes
2 answers

Org mode spreadsheet programmatic remote references

I keep my budget in org-mode and have been pleased with how simple it is. The simplicity fails, however, as I am performing formulas on many cells; for instance, my year summary table that performs the same grab-and-calculate formulas for each …
WorldsEndless
  • 1,355
  • 1
  • 13
  • 27
5
votes
3 answers

remote jars in the classpath

Sorry, maybe this question is too silly or already answered, but I couldn't find it out. I'm wondering if there is some known Java class-loader that is able to accept remote files in the classpath, i.e., entries like…
zakmck
  • 2,022
  • 27
  • 37
4
votes
2 answers

Using RemoteObject (AMF) from a Flash or Pure AS3 Project

I recently ported some code from a Flex project over to a new pure AS3 project. When i attempted to make an AMF call, I am getting an error message like this: TypeError: Error #1034: Type Coercion failed: cannot convert Object@5425371 to…
user963395
4
votes
8 answers

How to set an HTTP header while using a Flex RemoteObject method?

I am running blazeds on the server side. I would like to filter http requests using an http header. My goal is to send extra parameters to the server without changing the signatures of my blazeds services. On the client side, I am using Flex…
Alexandre Victoor
  • 2,857
  • 2
  • 25
  • 27
4
votes
2 answers

Flash RemoteObject Weborb connection without services-config.xml (no Flex)

Context : I'm working on a Flash application developed with FDT and compiled with Flash CS4 (I need a huge library). It should connect to various Weborb services. Weborb is properly configured. My services are properly executed, and values returned,…
user105813
  • 15,370
  • 4
  • 19
  • 17
4
votes
6 answers

Flex RemoteObject - handling multiple requests

I have a couple of remote object methods that I want to respond to in different ways depending on the context, but I'd rather not set up a bunch of different RemoteObject aliases. Any advice on doing that? Some background: Let's say I have an…
SkippyFlipjack
  • 482
  • 1
  • 5
  • 18
4
votes
1 answer

SkImageDecoder::Factory returned null

I'm programming on Android and read images from a remote URL with this call BitmapFactory.decodeStream( .... Random, I get the error: SkImageDecoder::Factory returned null I read some thread here but not solve my problem (Use a wrapper to…
Fernando
  • 87
  • 2
  • 8
3
votes
1 answer

Using Mate's RemoteObjectInvoker with C# classes

I'm using the Mate framework for Flex and communicating with a server running C#. I'm having trouble mapping C# classes to ActopnScript classes. I've got it working fine for simple classes and built in datatypes. If I have a C# method in my API that…
Roland Rabien
  • 8,368
  • 7
  • 44
  • 66
3
votes
4 answers

Are java RMI remote objects (server) singleton?

I have been using java RMI for a while now but I couldn't figure out if the RMI Remote Stubs (on the server side) are singleton? The reason I ask is: lets assume that one of the RMI implementation methods lower down in the chain of calls have a…
shahshi15
  • 2,332
  • 2
  • 17
  • 23
3
votes
1 answer

Java RMI return reference to remote object without binding

I have a server and a client communicating through RMI. Their goal is to share a simple object, work on it together, and then simulate a server disconnect. The sever has its name bound to the rmiregistry. The client uses the rmiregistry to get a…
Agostino
  • 2,144
  • 5
  • 37
  • 61
3
votes
5 answers

How do I prevent RemoteObject from batching AMF messages together?

I am using Google AppEngine, in conjunction with PyAMF to provide RemoteObject support. In my Flex code I make several RemoteObject method calls at once which tends to batch the AMF Messages into a single HTTP request. Most of the time this is fine…
njoyce
  • 628
  • 4
  • 8
3
votes
1 answer

How to get remote interface in ejb over ssl

we recently moved to ad authentication and also turned on SSL for a web app and there a process that runs on a separate machine and it connects to the jboss server on production and tries make a remote call. How do i make a secure remote call work?…
oortcloud_domicile
  • 798
  • 5
  • 20
  • 38
1
2 3
10 11