views:

45

answers:

2

so I have a Track system with some kind of protection. So to get some data from any URL you have to pass protection like this http://188.134.14.27/projects/cloudobserver/login and then (in browser) you can see some pages http://188.134.14.27/projects/cloudobserver/wiki/CloudObserverCMSSetup (if you havent passed login youll get no content) so how to login and get data from page using flash/actionscript (btw I am triing to create an rss reader)?

A: 

You need to determine the type of the authentication your webapp uses. If it's cookies, you may try to use something like this:

  1. Attempt to login.

  2. If the attempt is successful, webapp will return a cookie. Save this cookie.

  3. Every subsequent request to the webapp, supply the authentication cookie, so that the app knows that you've authenticated.

Does this make sense to you?

EightyEight
A: 

Think this has something to do with crossdomain.xml file

Subhen