Upload file on server through rtmps+java
问题 I need to upload file on server through flex GUI which send file on server with using rtmps protocol. I tried to send on server just FileReference and request has performed, but on server side i got only empty ObjectMap. I know that I can user URLRequest, but I need exactly rtmps request. My Flex code: public function uploadFile(file:FileReference):void{ NetConnection nc = new NetConnection(); nc.client = this; nc.proxyType = "best"; nc.connect(connectionURL, "3.0", "userName", "password");