Alex Turpin
Alex Turpin

Reputation: 47776

Actionscript 3.0 network programming with C#

I was looking into network programming with AS3 and I noticed that all the examples were using Java to code a server. I tried using C# to make one but it wasn't working as expected. I was wondering, does anyone have a really simple example of AS3 networking using a C# server?

Thanks.

Upvotes: 2

Views: 879

Answers (2)

Glenn
Glenn

Reputation: 5342

If you use standard HTTP it doesn't matter what server language you use. Pass XML or JSON as the layer between and use the HTTPRequest as the Flex request method.

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

Upvotes: 2

Adam Harte
Adam Harte

Reputation: 10510

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

Upvotes: 1

Related Questions