vote up 7 vote down star
1

Can a flash front end talk to a .net backend?

flag

0% accept rate

7 Answers

vote up 4 vote down

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

<mx:WebService id="myDataService" showBusyCursor="true">
    <mx:operation name="WebMethodName" resultFormat="object" result="functionFiredOnComplete();"></mx:operation>
</mx:WebService>

public function load():void
{
    myDataService.loadWSDL( "web method's wsdl" );
    myDataService.WebMethodName.send( params );
}

public function functionFiredOnComplete():void
{   		
    // get data
    var myData:Object = myDataService.WebMethodName.lastResult;
    ...
link|flag
vote up 2 vote down

Flash can also talk to the hosting page via JavaScript.

link|flag
you can, but you don't need to – Iain Oct 23 '08 at 14:31
+1! Hardly the point, @Iain. If you want your code to "degrade gracefully" (e.g., the client doesn't have Flash and you want to use the same code), this is a cool option. And one I didn't think of. Plus he said "also" which gives you a free pass to start mentioning unnecessary things :) – yar Feb 21 at 12:54
vote up 2 vote down

yes, through web services. Check this out

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
Interesting. What are you basing Flash/Flex not being particularly fast at serializing objects? In my tests, ANYTHING it does in pure code (i.e., no screen interaction) is very fast. – yar Feb 21 at 12:55
vote up 1 vote down

you could also try AMF.NET, a .NET implementation of Flash Remoting using ActionScript Messaging Format (AMF)

http://amfnet.openmymind.net/overview/default.aspx

link|flag
Neat. Is that faster, more compact, what, compared to SOAP? – yar Feb 21 at 12:58
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.