Amf - Flex 4.5 Remoting Objects?

Oct 17, 2011

I am very new to remoting in flex. I am using flex 4.5 and talking to a web application built by someone else on the team using AMF. They have used Zend_AMF to serialize and unserialize the data.One of the main issues I am facing at the moment is that I will need to talk to a lot of services (about 60 or so).From examples on remoting I have seen online and from adobe, it seems that I need to define a remoting object for EACH service:

<mx:RemoteObject id="testservice" fault="testservice_faultHandler(event)" showBusyCursor="true" destination="account"/>

With so many services, I think I might have to define about 60 of those, which I don't think is very elegant.At the same time, I have been playing with Pinta to test out the AMF endpoint. Pinta seems to be able to allow one to define an arbitary amount of services, methods and parameters without any of these limitations. Digging through the source, I find that they have actually drilled down deep into the remoting and are handling a lot of low level stuff.

View 1 Replies


Similar Posts:


Flex :: Coldfusion Returning Typed Objects / AMF Remoting

May 26, 2010

Is the same possible in ColdFusion? Currently I am using .Net/Fluorine to return objects to the client. Whilst in testing I like to pass strings representing the select statement and the custom object I wish to have returned from my service. Fluorine has a class ASObject to which you can set the var 'typeName'; which works great.

I am hoping that this is possible in Coldfusion. Does anyone know whether you can set the type of the returned object in a similar way. This is especially helpful with large collections as the flash player will convert them to a local object of the same name thus saving interating over the collection to convert the objects to a particular custom object.

[Code]...

View 2 Replies

Flex :: Mx:method, Mx.rpc.remoting.mxml.RemoteObject, And Sub-classing Mx.rpc.remoting.mxml.RemoteObject?

May 6, 2010

I am looking to subclass RemoteObject. Instead of:

<mx:RemoteObject ... >
<mx:method ... />
<mx:method ... />

[code].....

View 1 Replies

Flex :: Use Remoting (mx.rpc)classes In An Actionscript Only Project?

Jul 28, 2009

Is it possible (and if so recommended) to use Flex remoting (mx.rpc)classes in an actionscript only project?

I'm creating an application with login and registration to a php back end using AMFphp.

As an option I was wondering if it made sense to take advantage of the mx.rpc flex classes.

View 3 Replies

Actionscript 3 :: Flex Remoting And Progress Events?

Apr 11, 2010

Is there a way to monitor the loading progress (percent progress bar style) when using Flex remoting?I'm trying out Flash Builder 4 with it's new data services features, but I can't find any pgrogress event stuff somewhere. This article by Robert Taylor URL... indicates that it might not be possible...

View 1 Replies

Flex :: Remoting - Extend Remote Object?

Feb 13, 2012

My current coding for remote object declaration is messed up I wanna separate the remote object and the interface

Current Code :
<s:RemoteObject id="ro"
destination="customerService"

[code].....

View 1 Replies

Remoting / Messaging And Data Management In Flex?

Jun 8, 2009

Can anyone explain me the difference of all and also an another question does Zend AMF support all these.

View 1 Replies

Flex :: Remoting , Messaging And Data Management?

Jan 17, 2005

the difference of all and also an another question does Zend AMF support all these.

View 2 Replies

Flex :: Remoting Be Inside A Class In A Separate AS File?

Jul 27, 2009

Should i keep Remoting Methods outside a class in a seperate AS file or is it possible to call Remoting inside a class.

View 1 Replies

Java :: Handle Nullable Integer - Flex Remoting Application?

Feb 10, 2011

I have an Application consisting of a Java Server part and a Flash/Flex client, both communicate via BlazeDS. In order to have the same typed Objects on both sites, I use the GAS3 code generator (used by flex-mojos).But now I am facing the problem of handling nullable Integers. The problem is that I have an Object (A) which contains a foreign key ID which is reference an optional Object B. - But I only send the ID to the flex client.On the Java site it is easy:

class A {
private Integer bFk;
getter/setter
}

But on the flex client side, bFk is of type int. And a Flash int can not be null. So the remoting mechanism converts the Java null Integer to 0. After sending it back to the server, the Java bFk becomes 0 even on the Java side. - That is not acceptable, because I need to separate 0 and nullMy first workround is using not a Integer on the Java side, but an new Class NullAbleID, which works a bit like a wrapper/adapter, that wrap an internal int where -1 represent null (I can use -1 for null, because real id will be negative). But when I would using this it means I have to replace all Java Integer ids, by this NullAbleID class.

View 1 Replies

Flex :: Occurrence Of ResultEvent Event In Remoting A Spring Object?

Aug 8, 2011

In my attempt to learn flex remoting I came across thisflexService.getRules.addEventListener(ResultEvent.RESULT, loadRules);here flexService is a remote java object . me that when esultEvent.RESULT will occur. On studying about ResultEvent in AS document it states as The event that indicates an RPC operation has successfully returned a resultSo keeping that in mind my guess is ResultEvent will be fired when flexService.getRules method will successfully return a list of object,where flexService is object of remote class FlexService having getRules function which returns list of object, Can any one please tell how exactly it works

View 2 Replies

Actionscript 3 :: Flash.utils.IExternalizable + Remoting + Flex Error #2004

Feb 5, 2012

There is a client - server basic application. The client uses a simple remoting to comunicate with the server side. The server side could be powered on WebORB, BlazeDS or any other product. The client side is using the FLEX framework. That is it about a technologies stack. Now, let's forget about the server side and just have a look on the following client side

[Code]...

View 1 Replies

Flex :: Objects Drawn By Flash Graphics Class Exist As Objects?

Jan 16, 2011

Internally Flash obviously keeps a list of the primitives drawn using Graphics so I wondered if you have many such primitives in a Sprite, can you re-position/remove/alter individual items rather than clear and re-draw everything? Or is this deeper into the bowels of Flash than you're allowed (or recommended) to go?

View 4 Replies

Php - Flex Is Deserializing Generic Objects From Zend AMF Instead Of Strictly Typed Objects

Mar 4, 2012

I'm using Zend AMF to send my remote objects to Flex. I've defined a Constant class and created getASClassName() method. Then I've created Action script class in flex.

Objects are send successfully, but they are deserialized to generic Objects in Flex instead of specific ones. EDIT: On network monitor in Flex I can see that AMF value is set to com.my.project.valueobjects.Constant. Although array from event.result contains Objects.

[Code]...

View 1 Replies

Flex :: Converting Array Of ObjectProxy Objects To Custom Objects?

Jun 10, 2011

I have a service which returns an Array of ObjectProxy objects. I would like to cast this to a custom object (a value object) and create an ArrayCollection. How can I do this?ited:I am using Django and PyAMF for the backend. I had to write a custom SQL query and I am wrapping the resulting records in ObjectProxy and sending the whole result as an ArrayCollection.Here is my client side code:

[ArrayElementType("SessionVO")]
[Bindable]
private var _list:ArrayCollection;

[code]....

View 2 Replies

Java :: Why Value Objects Coming Back As Generic Flex Objects

Aug 4, 2011

I will try to give as much detail as I can. I am creating an CRM application using Flex(Cairngorm 2)/Java/Hibernate. The basic problem I am having is this: I have a Customer class in Java that has an ArrayList of Address classes. I have a Customer class in Flex that has an ArrayCollection of Address classes. When I make the remote object call for a Customer I get back a Customer object in Flex, but the ArrayCollecion objects have a data type of Object instead of Address. If I try to call for a List of Address classes I get the same result. If I try to call for a List of Customer classes I get a list of Customer classes in Flex. Using tomcat 6 with the following jars:

[Code]...

View 1 Replies

FMS 3.5 :: Use Remoting Server Side?

Jun 25, 2009

I am very interested in using Remoting in order to connect to a Drupal AMFPHP service module.On the client side this is easily done and I have had limited success on the Server side.

View 1 Replies

ActionScript 3.0 :: How To Flash Remoting Component

Jan 4, 2009

Do we need to install flash remoting component for AS3 likewe need to have in AS 2.0

View 2 Replies

Php :: Deserialize The AmfPhp Messages While Remoting?

Nov 29, 2009

Is it possible to deserialize the AmfPhp messages while remoting? They are in binary, and assuming that amfphp understands what they are I should be able to decode what it s.

View 1 Replies

Flash :: How To Build A Remoting Application

Jun 5, 2010

I'm looking for examples (code) of applications that uses Flash (NOT Flex) and Remoting classes for ActionScript 3 (NetConnection). Once there was ARP, a repository of code of this kind, but it seems there is not anymore. I'm trying to figure out how to build an applications that makes heavy use of calls to WebORB and responders. I need an architect point of view, NOT a sample of communication between parts, but a real world scenario.

View 1 Replies

Actionscript 3 :: Add Remoting Scripts In Flash CS5?

Jul 1, 2010

I am trying to add the remoting scripts in flash CS5

However, the actionscript is fine, the problem is i cant find the flash remoting component in any of the components panels.

View 1 Replies

ActionScript 2.0 :: Download Flash Cs3 Remoting ?

May 13, 2010

Where do I find to download flash cs3 remoting and how do i install it.

View 0 Replies

ActionScript 2.0 :: Using File Upload With Flash Remoting?

Feb 2, 2007

I want to be able to upload files to a mysql database via flash remoting and using php as the server side script. is this possible and how would you do it?

View 4 Replies

ActionScript 2.0 :: Flash Remoting Can Work On Some Comp

May 5, 2004

url...can anyone see the works? or can't get past the initialising stage? i test on both my mac and pc and it's working, i ask some of my friends to test also... some can view, a few others cannot get pass the initializing stage somehow, it just seems that after the init() and getService it doesn't return the results for those comps which can't get pass the initialising stage.

View 2 Replies

Coldfusion :: Does Flash Remoting Keep NetConnection Object Open

Nov 10, 2009

I've built a application that communicates with Coldfusion cfc functions via Remoting. I've noticed that the NetConnection object disconnects after each call, is this expected behaviour? For some reason I was expecting the NetConnection object to stay connected until I closed it myself (I'm making about 1 request per second and had planned for it to stay open).

View 1 Replies

Actionscript 3 :: Flash Remoting And Floating Point Values?

Jun 27, 2010

in xxxx.mxml (from flex) i have called the remote remote method (of java) the method return type is float
in the xxxx.mxml's remote objects result handler i need get the float values as Numeric String..i tried with string...i did Alert.show to see the value some times i get exact value for eg, 0.5 is the value returning from java methid but here it will show 0.50000454. how get the exact value?

View 1 Replies

ActionScript 2.0 :: Application Structure / Flash Remoting & MovieClipLoader

Jul 11, 2007

I'm building an application that is going to use Flash Remoting very heavily. I'm wondering how I should structure my Service connections. Should I put them in each(several) loaded movies or in the root timeline where any loaded move can access them. The latter would cause issues when trying to test each movie individually. But by putting the Service connections in each movie would require imports needed for FR at the top affecting load time. Also, I'm new to using the moviecliploader. I have a few functioning properly, however, is it wise to try and create a "smart" loader? Meaning use one loader having code to zip when the zip.swf is loaded and zag with zag.swf. Or should I just accept, and get in the habit of using a zip loader and a zag loader separately, meaning each loader simply serve a specific function.

View 3 Replies

ActionScript 3.0 :: Remoting: Button To Load Data From MySQL

Feb 22, 2010

Code:
var nc:NetConnection=new NetConnection();
nc.connect("http://localhost/amfphp/gateway.php");
var res:Responder=new Responder(onResult,onError);

[Code]....

The code is working good and brings back the info from mysql via amfphp, but I would like the "goBtn" to bring the info when pressed.

View 1 Replies

Java :: Batch Several Remoting Calls Within A Single Transaction On Server-side?

May 5, 2011

I am looking the way to batch several remote calls from flex-based application to java-based server, so that they would be processed within a single transaction on the server-side.My idea is to build several services on server-side with setter/getter like operations:

interface MyService1 {
void setField1(long myEntity1Id, int field1Value);
void setField2(long myEntity1Id, int field2Value);

[code]......

View 1 Replies

Actionscript 3 :: Flex - Possible To Have Flex DataTips On Canvas Rather Than Chart Objects

Jan 17, 2010

Flex charts, like AreaChart, have wonderful built-in support for displaying data "tool tips" when a user hovers over a point supplied in the data of a graph. You can hover over any of the bar graph examples on this page for a demonstration. I have a graph situation where I optionally draw in some dots as reference points on CartesianDataCanvases supplied to my AreaChart through it's <mx:annotationElements> and <mx:backgroundElements> tags.

I would like to have the same hover data-tip functionality that the AreaChart has, but applied to these dots. I realize that I am just drawing on canvas, and that no actual dataProvider supports these dots, but if there was a way to supply the CartesianDataCanvas with an array of data values or something to that effect,

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved