Questions tagged [netconnection]
77 questions
8
votes
3 answers
AS3, NetConnection/NetStream: Is there a smart way to split source url?
The problem
I have to replace the mx:VideoDisplay component in an existing Flex project with a custom made component.
To achieve this, I have to conform to its current Interface, so my component receives the video urls (via source parameter) in the…

Elsener
- 103
- 6
5
votes
0 answers
Win10 system has no Network Profiles (Get-NetConnectionProfile empty)
How to create a new 'Windows Location' setting when there is none set?
For some time now my Win10 Pro system has been running with a perfectly good ethernet stack, but without a 'network location' set, which means some services don't work right (or…

rivimey
- 921
- 1
- 7
- 24
4
votes
2 answers
How can I catch and/or deal with "Error #2030: End of file was encountered" on a NetConnection in ActionScript 3?
I'm currently writing a client in ActionScript 3 that talks to a Red5 application/media server via a NetConnection object. The server sends the client multiple types of data over this connection including video, audio and remote procedure calls. …

Brent Writes Code
- 19,075
- 7
- 52
- 56
4
votes
1 answer
Implementing FCSubscribe on client side
I am struggling to find any information on the FCSubscribe methods used by various CDNs. I need to implement the methods in a custom video player.
I would like an official specification for these methods, but even a SO search for "FCSubscribe"…

Drahcir
- 11,772
- 24
- 86
- 128
4
votes
1 answer
flex : Random NetConnection.Call.Failed: HTTP: Failed
We are experiencing some random NetConnection.Call.Failed: HTTP: Failed when using the flex 4 mx.messaging.channels::SecureAMFChannel
We have never had this problem in our local servers (server/client on the same machine), but when we went live,…

Majid Laissi
- 19,188
- 19
- 68
- 105
3
votes
2 answers
In Android To Check the Internet Connection is Available for Frequently?
Hai my Application is to Save (to Server) the Data through NetConnection. If net is not Available i saved Locally, and then when net is available again send to the server. My problem is to check Internet Connection Frequetly.So i tried the Service…

Mercy
- 1,862
- 9
- 39
- 75
3
votes
0 answers
Firefox not including cookies when using netConnection (RTMPT)
I am trying (for days) to make this work: I want to connect to a Media Servers using RTMPT netConnection. In order to reach that, I have to pass an authentication cookie along with my request. In Chrome and IE it works, but in Firefox it doesen't…

alexd92
- 31
- 4
2
votes
1 answer
NetStream.play + video.attachNetStream won't show any video
I am new to Flash programming. All I wanted to do is stream my local webcam to my red5 server and receive the data in another video.
Therefore I wrote the following code:
NetConnection.defaultObjectEncoding = flash.net.ObjectEncoding.AMF0;
…

Wandang
- 912
- 2
- 8
- 37
2
votes
2 answers
Net-Connection Test PowerShell
I'm having trouble exporting this basic net-connection test into the Export-Excel (import-Excel) feature. I need to export the results of a net-connection test from the array that was created.
Each CSV serverlist has 2 columns server name and…

dcwilli5
- 55
- 4
2
votes
1 answer
Is there a way to write a |RtmpSampleAccess command to a NetStream in data generation mode?
I'm streaming data from a server and passing it into a net stream in data generation mode. I'm successfully wrapping H264 and PCMU to be played back through NetStream, however I need to be able to capture this output from the video display it's on…

Kevin Glass
- 33
- 5
1
vote
1 answer
Flash Player crashes while creating a NetConnection
I am having a problem with an old flash application. Through out the life of the application it opens and closes several NetConnections. This works OK until the last connection needs to be created, as soon as I call new NetConnection() the browser…

Julio Garcia
- 1,904
- 16
- 26
1
vote
1 answer
ActionScript3 - how to handle NetConnection.Connection.Failed
I have a video streaming app, and it uses Flash AS3. It keeps getting a NetStatusEvent of "NetConnection.Connection.Failed", when i try to use it in my Windows Testing environment. I need to make it work in my testing environments before i can…

aamiri
- 2,420
- 4
- 38
- 58
1
vote
1 answer
What could be the reason Flash doesn't respond on local Zend_amf services?
I've (actually my classmate) got a problem with loading local ZEND_AMF services on Windows 7 (XAMPP). I can't find any answer on Google or on Stackoverflow. I found one similar topic without any answers: ActionScript 3 AMF Zend fails silently
Let me…

Gigi2m02
- 1,238
- 3
- 17
- 33
1
vote
1 answer
Actionscript 3 Array to Java ArrayList using Red5
I'm creating an array in AS3 and sending it using a NetConnection to a red5 server as so:
var data:Array = new Array();
data.push("getTest");
NC.call("getUsers", new Responder(onSuccess, onFail), data);
And on the server side:
public Object…

Daniel
- 3,017
- 12
- 44
- 61
1
vote
4 answers
How can I share the same NetConnection Object between two views?
Flex Mobile applications are view based. And I'm using Adobe Cirrus (im assuming its the same for any FMS netConnection) Does anyone know how to maintain a persistent netConnection between views in a flex Mobile Application?
edit: to try and explain…

brybam
- 5,009
- 12
- 51
- 93