Questions tagged [remoteobject]

153 questions
0
votes
1 answer

blazeDS - default channel

I want to recive RemoteObject from my service. Everything works fine but my code looks like this:
Kohegen
  • 7
  • 5
0
votes
4 answers

Remoteobject (AMFPHP)or HttpService? Which is the best to choose from?

Please explain me which of two is secure, powerful one, fast enough on sending to and receiving requested data from the server in Flex! I prefer working with remoting object with AMFPHP rather than HTTPService
Suhrob Samiev
  • 1,528
  • 1
  • 25
  • 57
0
votes
1 answer

Flex RemoteObject .Net Session Mixups

Okay, this one is REALLY weird. I'm using .net for my backend and Flex for my front end. I'm also using WebOrb.Net to manage my RemoteObject calls. When the user first opens up my Flex app I make a call back to .Net and save a few settings in a…
CodeMonkey
  • 300
  • 1
  • 6
  • 18
0
votes
1 answer

Ant Flex problem

My Cairngorm program does some preliminary authentication against a RemoteObject before allowing Cairngorm's ServiceLocator to start using the same RemoteObject to get business data. Everything works fine with Flex Builder, but I need an Ant build.…
Maurice Naftalin
  • 10,354
  • 2
  • 24
  • 15
0
votes
1 answer

Why two requests are displayed in Fiddler2 when first request sent to BlazeDS using RemoteObject of Flex

Why are two requests displayed in Fiddler2 when first request sent to BlazeDS using RemoteObject of Flex. I use this enviroment: Flex SDK 3.5 BlazeDS 4.0.1 Spring 3.0.5 Spring BlazeDS Integration 1.0.3
Take
  • 213
  • 1
  • 6
  • 12
0
votes
1 answer

How do i handle Asynctokens in Actionscript classes

Heres my code: public class Schem { public var info:String=""; private var ro:RemoteObject = new RemoteObject("Hibernatetest"); public function Schem() { ro.endpoint = "http://jesus/blazeds/messagebroker/amf"; …
Kai
  • 376
  • 1
  • 4
  • 17
0
votes
2 answers

How do i handle Remote Method calls via AsyncToken?

So here is the mxml i would like to get working:
Kai
  • 376
  • 1
  • 4
  • 17
0
votes
1 answer

How do I access Remoteobjects by using ActionScript?

This questions is discussed in many places, but none of the solutions seem to work for me. Heres the thing: In my mxml-code everything works perfectly:
Kai
  • 376
  • 1
  • 4
  • 17
0
votes
2 answers

How to get the result of a RemoteObject immediately?

I need to make a function that execute a java method and return his result. It is static becouse a lot of other functions will call this function. So I did this: public static function FKDescription(dest:String):String{ var…
NeoRamza
  • 1
  • 1
0
votes
1 answer

JSONObjects not working with osgi registration, not as function argument, neaither as return

I'm working with a knopflerfish environment where I am trying to use functions from a remote object using ServiceRegistration. I will explain as an example. I have created two bundles, A and B. Bundle B has a class C where I have implemented two…
xian
  • 3
  • 2
0
votes
1 answer

SecureAMFChannel with certificat

Basically, I'm using a remote object that access to a secure EndPoint. This EndPoint is located into my server. It means that my channel is a SecureAMFChannel. If I accept the certificat by going directly to this URL with my browser, then I'm…
user376112
  • 859
  • 5
  • 15
  • 24
0
votes
2 answers

EJB + JSP: Cannot create the Remote Object from the Home interface

I'm a newbie in the J2EE/EJB field and I'm following some basic examples. I have implemented a very simple class that sums 2 number. I have the home and remote interfaces and the Enterprise Bean (stateless) itself. Adder.java //Remote…
LucasM
  • 421
  • 2
  • 7
  • 23
0
votes
0 answers

QtRemoteObject receive signal in Host when Replicas are connected/disconnected

I'm using Qt's QtRemoteObject module to run processes across many devices. The current architecture is there is a Host machine (call it the ManagerNode) which creates the Source object, then there are many other remote computers that run on a local…
Stanton
  • 904
  • 10
  • 25
0
votes
1 answer

Remote Object flex not working

I'm building an application using Flex 4 + Spring Blazeds Integration 1.5 + Spring 3.0.5 + Hibernate running on jboss-5.1.0.GA. I create a simple login form, and when a submit a string via remote object it works fine. But when a try to use an Object…
André Schuster
  • 165
  • 6
  • 18
0
votes
1 answer

Does Flash Builder 4 Generated Value Objects Support Inheritance/Polymorphism?

At Java side, I have Interface Node FloatLiteral implements Node Resource implements Node And DAO that provide service that returns public List getAll() Thus it can return FloatLiterals and Resources. When I use Flash Builder 4 Data/Services…