[Flashcoders] URLRequest Unencoded Question

2009-11-10 Thread TS
Hello, Can someone help me with this. I need to send a url request with the spaces intact and not urlencoded. Is there a way to do this? var url:String = 'http://www.somesite.com/home?status=My Bikini Design ' + shortenedLink; var req:URLRequest = new URLRequest(url);

Re: [Flashcoders] URLRequest Unencoded Question

2009-11-10 Thread Henrik Andersson
TS wrote: Hello, Can someone help me with this. I need to send a url request with the spaces intact and not urlencoded. Is there a way to do this? No http client can do this, the http RFC requires the resource name to not contain any spaces. The encoding is required.

RE: [Flashcoders] URLRequest Unencoded Question

2009-11-10 Thread TS
Of Henrik Andersson Sent: Tuesday, November 10, 2009 6:49 AM To: Flash Coders List Subject: Re: [Flashcoders] URLRequest Unencoded Question TS wrote: Hello, Can someone help me with this. I need to send a url request with the spaces intact and not urlencoded. Is there a way to do

Re: [Flashcoders] URLRequest Unencoded Question

2009-11-10 Thread Henrik Andersson
TS wrote: Then why does this work when I put it in my url? http://twitter.com/home?status=My Bikini Design http://www.chynnadolls.com/ If you by my url really mean Address bar in my browser, then it is because your webbrowser did the escaping for you.