You can send cookie from Adobe AIR application using URLRequest but you need to make the manageCookies property false.
myURLRequest.requestHeaders.push(new URLRequestHeader("Cookie", "Your_Cookie"));
myURLRequest.manageCookies = false;
Wednesday, November 12, 2008
Subscribe to:
Post Comments (Atom)
worked, thanks.
ReplyDelete