[GitHub] [royale-asjs] aharui commented on issue #708: File Upload not working in Royale

2020-03-29 Thread GitBox
aharui commented on issue #708: File Upload not working in Royale URL: https://github.com/apache/royale-asjs/issues/708#issuecomment-605600444 @yishayw Can you explain how the code is supposed to work? I built the example and tested against an upload server and got a 400.

[GitHub] [royale-compiler] greg-dove commented on issue #126: Bad implicit casting to Function

2020-03-29 Thread GitBox
greg-dove commented on issue #126: Bad implicit casting to Function URL: https://github.com/apache/royale-compiler/issues/126#issuecomment-605605308 Thanks for the repro test case Alex. I'm not sure that a function call node from an accessor like this needs to follow all the subsequent

[GitHub] [royale-asjs] yishayw commented on issue #656: Drop down does not show real text BUT [object Object]

2020-03-29 Thread GitBox
yishayw commented on issue #656: Drop down does not show real text BUT [object Object] URL: https://github.com/apache/royale-asjs/issues/656#issuecomment-605620486 https://paste.apache.org/714rh https://paste.apache.org/oz3kr

[GitHub] [royale-compiler] chrisdutz opened a new pull request #140: - Made sure the release source bundles are automatically hashed with …

2020-03-29 Thread GitBox
chrisdutz opened a new pull request #140: - Made sure the release source bundles are automatically hashed with … URL: https://github.com/apache/royale-compiler/pull/140 …sha512 - Made sure Adobe is mentioned in the NOTICE files - Made sure the release artifacts names have an

[GitHub] [royale-asjs] yishayw commented on issue #708: File Upload not working in Royale

2020-03-29 Thread GitBox
yishayw commented on issue #708: File Upload not working in Royale URL: https://github.com/apache/royale-asjs/issues/708#issuecomment-605621051 I don't thing you can upload without loading. upload() should always call FileLoaderAndUploader. The point in having FileLoader is to allow

[GitHub] [royale-compiler] chrisdutz opened a new pull request #141: - Fixed the Apache headers of files I contributed years ago

2020-03-29 Thread GitBox
chrisdutz opened a new pull request #141: - Fixed the Apache headers of files I contributed years ago URL: https://github.com/apache/royale-compiler/pull/141 - Removed the "Created by" mentions of me This is an automated

[GitHub] [royale-compiler] Harbs merged pull request #140: - Made sure the release source bundles are automatically hashed with …

2020-03-29 Thread GitBox
Harbs merged pull request #140: - Made sure the release source bundles are automatically hashed with … URL: https://github.com/apache/royale-compiler/pull/140 This is an automated message from the Apache Git Service. To

[GitHub] [royale-compiler] Harbs merged pull request #141: - Fixed the Apache headers of files I contributed years ago

2020-03-29 Thread GitBox
Harbs merged pull request #141: - Fixed the Apache headers of files I contributed years ago URL: https://github.com/apache/royale-compiler/pull/141 This is an automated message from the Apache Git Service. To respond to the

[GitHub] [royale-asjs] Harbs merged pull request #792: - Fixed the Apache headers of files I contributed years ago

2020-03-29 Thread GitBox
Harbs merged pull request #792: - Fixed the Apache headers of files I contributed years ago URL: https://github.com/apache/royale-asjs/pull/792 This is an automated message from the Apache Git Service. To respond to the

[GitHub] [royale-asjs] aharui commented on issue #708: File Upload not working in Royale

2020-03-29 Thread GitBox
aharui commented on issue #708: File Upload not working in Royale URL: https://github.com/apache/royale-asjs/issues/708#issuecomment-605690105 I'm not that familiar with how uploading is supposed to work, but I thought an upload was just a POST with the data to some URL. Are you saying

[GitHub] [royale-asjs] yishayw edited a comment on issue #708: File Upload not working in Royale

2020-03-29 Thread GitBox
yishayw edited a comment on issue #708: File Upload not working in Royale URL: https://github.com/apache/royale-asjs/issues/708#issuecomment-605696362 @brianraymes , I took a look, and it looks like you can swap ``` var header:URLRequestHeader = new

[GitHub] [royale-asjs] yishayw commented on issue #708: File Upload not working in Royale

2020-03-29 Thread GitBox
yishayw commented on issue #708: File Upload not working in Royale URL: https://github.com/apache/royale-asjs/issues/708#issuecomment-605696362 @brianraymes , I took a look, and it looks like you can swap ``` var header:URLRequestHeader = new URLRequestHeader("Content-type",

[GitHub] [royale-asjs] yishayw commented on issue #708: File Upload not working in Royale

2020-03-29 Thread GitBox
yishayw commented on issue #708: File Upload not working in Royale URL: https://github.com/apache/royale-asjs/issues/708#issuecomment-605692877 This is the code that actually performs the upload ``` var binaryUploader:URLBinaryLoader = new URLBinaryLoader();

[GitHub] [royale-asjs] aharui commented on issue #708: File Upload not working in Royale

2020-03-29 Thread GitBox
aharui commented on issue #708: File Upload not working in Royale URL: https://github.com/apache/royale-asjs/issues/708#issuecomment-605785454 @yishayw I could not find UploadPostHelper in our code, only on the internet, and it looked like it wasn't ALv2 compatible.

[GitHub] [royale-asjs] aharui commented on issue #708: File Upload not working in Royale

2020-03-29 Thread GitBox
aharui commented on issue #708: File Upload not working in Royale URL: https://github.com/apache/royale-asjs/issues/708#issuecomment-605786973 I made a change to mx.net.FileReference to use FormData. This code worked for me with the upload service I was testing. I've overridden the