[Flashcoders] #2096 illegal headers

2010-01-11 Thread Glen Pike

Hi,

   I have run into the problem with FP trying to do Authorization using 
Flash and getting the error HTTP request header Authorization cannot be 
set via ActionScript


   I read up on this and thought I could just update my debug Flash 
Players to the latest version  9.0.115.0. 

   If I update the players in C:\Program Files\Adobe\Adobe Flash 
CS3\Players\Debug is this the FP that the IDE uses or am I missing 
something here?


   Thanks

   Glen
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] OT: finding where a web site lives

2010-01-11 Thread Lehr, Theodore
I am helping take over a web site formy HOA. Is there a way to fuind out where 
a web site lives? I can not tell if it is on server or where it is... hope this 
makes sense...



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] OT: finding where a web site lives

2010-01-11 Thread Nathan Mynarcik
You can search WhoIs to get info on the domain. www.whois.net


--Original Message--
From: Lehr, Theodore
Sender: flashcoders-boun...@chattyfig.figleaf.com
To: Flash Coders List
ReplyTo: Flash Coders List
Subject: [Flashcoders] OT: finding where a web site lives
Sent: Jan 11, 2010 1:00 PM

I am helping take over a web site formy HOA. Is there a way to fuind out where 
a web site lives? I can not tell if it is on server or where it is... hope this 
makes sense...



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Nathan Mynarcik
Interactive Web Developer
nat...@mynarcik.com
254.749.2525
www.mynarcik.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] OT: finding where a web site lives

2010-01-11 Thread Taka Kojima
you can also just ping the domain..

ping domain.com

it will return the IP

On Mon, Jan 11, 2010 at 11:14 AM, Nathan Mynarcik nat...@mynarcik.comwrote:

 You can search WhoIs to get info on the domain. www.whois.net


 --Original Message--
 From: Lehr, Theodore
 Sender: flashcoders-boun...@chattyfig.figleaf.com
 To: Flash Coders List
 ReplyTo: Flash Coders List
 Subject: [Flashcoders] OT: finding where a web site lives
 Sent: Jan 11, 2010 1:00 PM

 I am helping take over a web site formy HOA. Is there a way to fuind out
 where a web site lives? I can not tell if it is on server or where it is...
 hope this makes sense...



 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


 Nathan Mynarcik
 Interactive Web Developer
 nat...@mynarcik.com
 254.749.2525
 www.mynarcik.com
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] OT: finding where a web site lives

2010-01-11 Thread Lehr, Theodore
thanks!


From: flashcoders-boun...@chattyfig.figleaf.com 
[flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Nathan Mynarcik 
[nat...@mynarcik.com]
Sent: Monday, January 11, 2010 2:14 PM
To: Flash Coders List
Subject: Re: [Flashcoders] OT: finding where a web site lives

You can search WhoIs to get info on the domain. www.whois.net


--Original Message--
From: Lehr, Theodore
Sender: flashcoders-boun...@chattyfig.figleaf.com
To: Flash Coders List
ReplyTo: Flash Coders List
Subject: [Flashcoders] OT: finding where a web site lives
Sent: Jan 11, 2010 1:00 PM

I am helping take over a web site formy HOA. Is there a way to fuind out where 
a web site lives? I can not tell if it is on server or where it is... hope this 
makes sense...



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Nathan Mynarcik
Interactive Web Developer
nat...@mynarcik.com
254.749.2525
www.mynarcik.com
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] OT: finding where a web site lives

2010-01-11 Thread Benny
Try: http://www.whoishostingthis.com/






___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Trouble sending data via HTTPS:

2010-01-11 Thread Steven Loe
I'm trying to send data to a server via HTTPS and am having no luck. Our 
Backend developer has a test web page sending form data to this via https with 
no issues. However, when I try to send data to this same web service via https 
in flash, the request data appears to get truncated. 

Can anyone point me in the right direction?  Thanks very much.

AS3: 

private function SendCCInfo():void {
var variables:URLVariables = new URLVariables();
variables.firstname = mCCFirstName.text;
variables.lastname = mCCLastName.text;
variables.street = mCCAddress.text;

var urlRequest:URLRequest = new URLRequest(https://secure.mydomain.com);
urlRequest.method = URLRequestMethod.POST;
urlRequest.data = variables;

var urlLoader = new URLLoader();
urlLoader.addEventListener(Event.COMPLETE, PayListener);
urlLoader.load(urlRequest);
}

private function PayListener(e:Event):void
{

}



  
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders