ActionScript 3.0 Network Programming with C #

I was learning network programming with AS3 and I noticed that all examples use Java to code the server. I tried using C # to do it, but it didn't work as expected. I was wondering if anyone has a really simple example of AS3 networking using a C # server?

Thank.

+2


source to share


2 answers


If you're using standard HTTP, it doesn't matter which server-side language you use. Pass XML or JSON as a layer in between and use HTTPRequest as the Flex request method.



If you want to use the socket layer, are you looking for something like this: http://www.koders.com/csharp/fid38B6B346DEFB346620FE375C9F610A9C5D020DA6.aspx?s=socket#L6 ?

+2


source


I think a good place to start gathering information is the Adobe Developer Center, specifically the Learn Flex and .NET section . I know this is not exactly what you are asking for. This is more for Flex and ASP.NET, but maybe a good starting point.



+1


source







All Articles