PDA

View Full Version : Server-side actionscript


cybergatuno
03-29-2007, 12:11 AM
Hi,

Is there a way to execute ActionScript3 scripts on HTTP requests (apache module, whole HTTP server, etc ...)?

That would be very usefull to re-use code ...

Thanks.

CyanBlue
03-29-2007, 12:47 PM
Howdy and Welcome... :)

I could be wrong but I don't think that's possible... I'll move this to AS3 forum to see if anybody else have any idea...

hangalot
03-29-2007, 01:21 PM
no. unless you wrote your own mod for that

jsebrech
03-29-2007, 01:50 PM
You could build a CGI application with apollo. Sure, it's only beta, but if it can parse command-line arguments and output to stdout, it can be used to implement CGI.

http://hoohoo.ncsa.uiuc.edu/cgi/

No special customizations to a server (like additional modules) are necessary as long as you follow CGI conventions.

abeall
03-30-2007, 12:25 AM
...you can use Serverside Actionscript with AS2 and Flash Media Server, but that's probably not the route you want...

dr_zeus
03-30-2007, 05:36 PM
You could build a CGI application with apollo. Sure, it's only beta, but if it can parse command-line arguments and output to stdout, it can be used to implement CGI.

Apollo apps can handle command-line arguments, but I don't think they can write to stdout.