Projects tagged ‘flex’, ‘python’, and ‘remoting’


Jump to tag:

Projects tagged ‘flex’, ‘python’, and ‘remoting’

Filtered by Project Tags flex python remoting

Refine results Project Tags flash (4) amf (4) twisted (3) rpc (3) amf3 (2) rtmp (2) flv (2) remoteobject (1) air (1) messaging (1) amf0 (1) actionscript (1)

[5 total ]

10 Users
   

PyAMF provides Action Message Format (AMF) support for Python.
Created over 2 years ago.

5 Users
 

RTMPy is a Twisted protocol implementing Adobe's Real Time Messaging Protocol, used for full-duplex real-time communication with applications running inside the Flash Player.
Created over 2 years ago.

1 Users
 

Tape is a Flash media server for Python.
Created about 1 year ago.

0 Users

Flash Remoting for Python. Standalone Twisted server. AMF0 / AMF3 / Remote Object support. SWX Gateway.
Created 12 months ago.

0 Users

AS3 Package: com.python.rpc.xmlrpcThe AS3 package com.python.rpc.xmlrpc contains classes for easy access of python services provided by python's SimpleXMLRPCServer implementation. The provided ... [More] example is based upon tutorial: "Put a Flex UI on your application" by Bruce Eckel (mindview.net) published at: http://www.adobe.com/devnet/flex/articles/flex_ui.html Requires:AS3 package com.ak33m.rpc.xmlrpc.XMLRPCObject (Google code project: as3-rpclib), see http://code.google.com/p/as3-rpclib/ Contains:AS3 class PYTHONXMLRPCServerinit(host:String,port:uint):void createService(name:String,...):PYTHONXMLRPCService AS3 class PYTHONXMLRPCServiceinit(server:PYTHONXMLRPCServer,name:String,...):void apply(args:Array=null):void call(...rest):void Ease of use: See the example! +++ ActionScript code block +++ var pyServer:PYTHONXMLRPCServer=new PYTHONXMLRPCServer(); pyServer.init("127.0.0.1",9000); var pyServiceName:String="toLowerCase"; var pyService:PYTHONXMLRPCService=pyServer.createService(pyServiceName,onFault,onResult); pyService.call("Hello World!"); +++ Python code block +++ import sys from SimpleXMLRPCServer import SimpleXMLRPCServer class MyPythonServices: def toLowerCase(self, str): print "toLowerCase()"; resultStr = str.lower(); return resultStr; server = SimpleXMLRPCServer(("localhost", 9000)); print "Local python server listening on localhost port 9000." print " -> Close console window to stop the server and exit."; server.register_instance(MyPythonServices()); server.serve_forever(); [Less]
Created 12 months ago.