Can a flash front end talk to a .net backend?
|
|
Yes. We use Adobe Flex to talk to .Net XML web services. Be careful with complex serialised .Net types (for instance DataSets) - ActionScript can't handle them. Instead produce simple XML with primitive types. See also: http://stackoverflow.com/questions/44817
|
|||
|
|
|
|
Flash can also talk to the hosting page via JavaScript. |
||||
|
|
|
yes, through web services. Check this out |
|||
|
|
|
|
Yes Best keywords to search for are Flash .net and Flex In the old days there was another tool but with Flex its all been simplified. |
||
|
|
|
|
If you are de/serializing a lot of objects (which Flash/Flex isn't particularly fast at), or more complex types, then you might want to take a look at WebOrb. It's a free object broker, which might sound scary, but it basically handles translation between the native object types of the two technologies. It pretty much "just works", and can increase performance quite significantly in some situations. It also comes with a code generation tool if all you want is CRUD and stored procedure access for a SQL database, which is quite nice. |
||
|
|
|
you could also try AMF.NET, a .NET implementation of Flash Remoting using ActionScript Messaging Format (AMF) |
||
|
|
|
I would recomend FluorineFX we use that at work and its great. The only downside is that we end up with a lot of value objects that are only used to transfer data between .net and flex. And the fact that the standard C# naming style and the flex naming style has some minor differences makes value objects a bit ugly in either flex or .net. |
||
|
|
