Anyone know why we are unable to get flash to authenticate this way...

var gateway:String = "http://user:[EMAIL PROTECTED]/gateway.php";
var pc:RelayResponder = new RelayResponder(this, "getUserId_Result",
"getUserId_Fault");
var ag:Service = new Service(gateway, null, "AnonGame", null, pc);
ag.getUserId();

or this way...

var gateway:String = "http://www.mysite.com/gateway.php";;
var pc:RelayResponder = new RelayResponder(this, "getUserId_Result",
"getUserId_Fault");
var ag:Service = new Service(gateway, null, "AnonGame", null, pc);
ag.connection.setCredentials("user","pw");
ag.geUserId();


We are trying to create a test app lication with 3 text fields for:
Gateway
Service
Method

it all works fine on a live servers but in a test enviorment that requires a
user:pw neither method works? Errr! any ideas guys?


--
Corban Baxter
http://blog.projectx4.com
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to