as3httpclient icon indicating copy to clipboard operation
as3httpclient copied to clipboard

HTTP Client for AS3

Results 11 as3httpclient issues
Sort by recently updated
recently updated
newest added

Thank you for making this wonderfully cleanly coded library. It lets us all have the full control we need to talk to servers in the way we want. I have...

When using https to get data, it prompts "TLSEngine shutdown triggered by Error: Cannot verify certificate" var client:HttpClient = new HttpClient(); var uri:URI = new URI("https://www.baidu.com/"); uri.scheme = "https"; uri.port...

There is a dependency on `com.hurland`, might want to mention this in the docs. https://github.com/gabriel/as3httpclient/blob/master/src/org/httpclient/HttpSocket.as#L8 I downloaded the `com.hurland` files, but the dependency fails for me: ``` Error: Error #2030:...

Hi, I am trying to to send https post request(port 81) to my server from main swf file(loaded from port 99). Code in my main.swf: uri = new URI("https://x.x.x.x/myservice.aspx"); uri.scheme...

Thanks for the library, I've found it to be quite useful! It does have a bug that I encountered during development that I eventually hunted down and resolved. Every once...

Has this project been updated to use it/

Hi, We're getting "GOT ALERT! type=0" when we make a PUT request to Amazon S3 using HTTPS. What might be going on?

When making a POST request, if the request.body is a ByteArray and the array is not at position 0 the request fails. This looks to be because the Content-Length header...

Dear gabriel, I plan to use your lib to communicate with Comet server, is this possible? Do you have any sample? Thanks

using /r/n to parse HTTP header can be faulty. Would suggest using finite state machine strategy. Please find the following snippet, hope it helps. Cheers, Ping ``` /** * parse...