Questions tagged [remoteobject]

153 questions
1
vote
0 answers

Remote object implementation with RabbitMQ

Suppose that I'm having an interface whose actual implementation resides in the service: public ISomeRemoteObject { void SomeMethod(string arg); int SomeMethodWithResult(); } I want to be able to call these methods from the client via AMQP,…
Stelios Adamantidis
  • 1,866
  • 21
  • 36
1
vote
1 answer

maximum Thread count in RMI server side

if number of java clients are 2000 and if they call remote method how many threads are executed in RMI server side? Is there any maximum limit of the number of Threads in RMI serverside?
msaif
  • 504
  • 1
  • 7
  • 23
1
vote
1 answer

Creating Flash application using WebOrb Ruby/Rails

Ok, this may seem like a stupid question (for Flash Developers) but I really can't figure this out. So, I want to create somekind of an API for Flash/Flex applications so a user can use my lib in order to connect to my WebOrb Rails server. I don't…
Jon Romero
  • 4,062
  • 6
  • 36
  • 34
1
vote
1 answer

Flex 4 Best Practice when using RemoteObject and multiple components

I was wondering what is considered to be a best practice when I have multiple components and use RemoteObject for AMF communication with a PHP backend. Have the RemoteObject in the Main.mxml file with all the methods declared here (with handlers…
Francisc
  • 77,430
  • 63
  • 180
  • 276
1
vote
1 answer

Visualforce RemoteObjectModels Query filtering using "OR"

I am using in visualforce page of Salesforce.com. For demo purposes, I have used the following code snippet from the example docs shown in http://docs.releasenotes.salesforce.com/en-us/spring14/release-notes/rn_vf_remote_objects.htm In my code…
Sumuga
  • 330
  • 4
  • 21
1
vote
1 answer

In flex how do I pass data retrieved from a remote object service to a modules interface?

I found at this Adobe tutorial a nice "RemoteService" class that creates a RemoteObject and contains the functions for handling the result and fault events. If I wanted to use this approach, how could I pass the data from the result handler to…
Dan G
  • 65
  • 1
  • 3
1
vote
2 answers

Receiving generic typed custom objects through remote object in Flex

Is it possible to receive custom generic typed objects through AMF? I'm trying to integrate a flex app with an existing C# service but flex is choking on custom generic typed objects. As far as I can tell Flex doesn't even support generics, but I'd…
Aaron
  • 11
  • 1
1
vote
0 answers

Flex Unit - testing a library wrapping remote objects

I'm wrapping RemoteObject inside a class for easier managing of retries, timeouts, failures and such non standard scenarios. So when wrapping a RemoteObject inside another class, how would I go about unit testing this? Here is an example of how to…
Markus Johnsson
  • 3,949
  • 23
  • 30
1
vote
6 answers

Reading object in json using jquery

i have below json which i get from Remote. { "name":"planning Diet", "day1":{ "morning":"chicken", "evening":"mutton", "night":"Juice" }, "day2":{ "morning":"burger", "evening":"pizza", …
Vishnu
  • 2,372
  • 6
  • 36
  • 58
1
vote
2 answers

Zend AMF implementation and AMF protocol security

I have a Flex frontend connecting via RemoteObject to Zend Framework's Zend Amf. This is my only means to transport data between client layer (Flex) and the application and persistence layers (LAMP with Zend Framework). Some ways I can address…
1
vote
1 answer

Flex & nginx : Channel.Call.Failed

I created a web application, here is the architecture : Tomcat7 deploy on Amazon EC2 Granite DS nginx to redirect HTTPS throught the tomct7 port 8181 Flex application that uses RemoteObject on a secure Channel. Occasionaly, maybye when a request…
user376112
  • 859
  • 5
  • 15
  • 24
1
vote
1 answer

button_to remote update

I am attempting to use the button_to helper to remotely update my database, though i am having a few issues, where it doesnt seem to be passing the params. within my view i am using - @availabilities.each do |a| =button_to 'Accept', {…
Boss Nass
  • 3,384
  • 9
  • 48
  • 90
1
vote
2 answers

Select remote actor on random port

In Scala, if I register a remote actor using alive(0), the actor is registered at a random port. I can do the registration like this: register('fooParActor, self) in the act method. Now, on the master/server side, I can select an actor by supplying…
Felix
  • 8,385
  • 10
  • 40
  • 59
1
vote
2 answers

JAVA RMI, Define offline methods, so when the method called it won't go to the server

I've searched in many places for the solution and i couldn't find one. My question is how to define an offline method, so after i get the Object from the RMI server, i will be able to call this method and it wont get the data from the server it…
Dave
  • 203
  • 1
  • 4
  • 8
1
vote
1 answer

Flex remote object performance

Our flex client needs to invoke server side EJB3 session bean. For each module we have seperate session bean. Whether it is best to have separate flex end point (remote object) to each session bean to invoke methods or to create a single facade…
tim_lee