I have a flex application and need to show the real time data into the chatrs and datagrids.
Eralier we are used Httpservices to showing the real time data and historical data into charts and datagrids. But now we are going to replace the Httpservices to remote objects.
So which places generally need to change. I have a little bit idea about remote objects.
Thanks,
Ravi
If you are going to replace your
HTTPServicewithRemoteObject, some questions you need riposte yourself.What framework are you going to implement, if any then check their
RemoteObjectInvokerTag if any.Your resultEvent and FaultEvent will vary according to the framework you are going to apply.
If you are going with Flex default
RemoteObjectThen you need to replace all your
HTTPServicewithRemoteObjecttags.Your backend code also requires some changes with business logic should get into methods with the result of
functionormethodreturning an object.Finally a suggestion.
Instead of going with Remote Objects, why not go with Webservice. You can re use the components somewhere else too.
Updated links about
Cairngormhttp://www.adobe.com/devnet/flex/articles/cairngorm_pt5_03.html
http://www.jeffryhouser.com/index.cfm/2007/2/19/Learning-Cairngorm-Part-3
http://www.asfusion.com/blog/entry/hello-world-cairngorm-example
http://justjoshn.com/entry/contact-manager-part-2-cairngorm-example
Thanks