Amin Gholibeigian
Amin Gholibeigian

Reputation: 1366

How to receive data continuously from asp.net server into flash?

I want to receive XML data continuously like stream download from server to flash , is it possible? i call response flush in asp.net every second while printing data and i want flash to receive data every second but not to close the connection after receiving data. for example i have this file on server (you can check) :

http://5.9.121.41/handler.ashx

What method can i use on flash?

Upvotes: 0

Views: 204

Answers (1)

ezekielDFM
ezekielDFM

Reputation: 1977

What you need is to set up a socket server to push data to Flash as it is received. This way the server can continually notify Flash as new data is ready, which could be every second. Reference this q/a for more details:

How to push data from asp.net to flash/silverlight client?

Upvotes: 1

Related Questions