Re: Royale, Emulation, ResourceManager, and Flex

2018-10-15 Thread Carlos Rovira
Hi Alex, it's strange to me that artifacts are not published, I could ask Chris Dutz what's the reason and see what is his response about it, and if we can if it will be very difficult to do. I think that seems to be the best way to go. El mar., 16 oct. 2018 a las 0:34, Alex Harui () escribió:

RE: Welcome Pushmina Kazi as Apache Royale Committer

2018-10-15 Thread Pushmina Kazi
Thanks Harbs :) -Original Message- From: Harbs [mailto:harbs.li...@gmail.com] Sent: Monday, October 15, 2018 12:31 PM To: dev@royale.apache.org Subject: Re: Welcome Pushmina Kazi as Apache Royale Committer Welcome! :-) > On Oct 15, 2018, at 9:55 AM, Pushmina Kazi wrote: > > Thanks

RE: Welcome Pushmina Kazi as Apache Royale Committer

2018-10-15 Thread Pushmina Kazi
Thanks Carlos :) -Original Message- From: Carlos Rovira [mailto:carlosrov...@apache.org] Sent: Monday, October 15, 2018 3:10 PM To: dev@royale.apache.org Subject: Re: Welcome Pushmina Kazi as Apache Royale Committer Welcome to the team! :) El lun., 15 oct. 2018 a las 9:31, Harbs ()

RE: [Discuss] Start release process 0.9.3

2018-10-15 Thread Yishay Weiss
Just deleted them. I haven’t followed this thread closely enough. Can you think of more such tasks? From: Piotr Zarzycki Sent: Monday, October 15, 2018 6:29:30 PM To: dev@royale.apache.org Subject: Re: [Discuss] Start release process 0.9.3 Hi Yishay, This

Jenkins build is back to normal : royale-asjs_MXTests #69

2018-10-15 Thread apacheroyaleci
See

Build failed in Jenkins: royale-asjs_MXTests #68

2018-10-15 Thread apacheroyaleci
See Changes: [serkan.tas] New emulation componnets created [serkan.tas] Created spark emulation components [serkan.tas] Touch class removed [serkan.tas] ToucInteractionEvent

Re: Royale, Emulation, ResourceManager, and Flex

2018-10-15 Thread Alex Harui
Hi Carlos, I do not think Apache Flex or Adobe Flex was ever published as Maven artifacts. The link you referenced only seems to reference poms and not binaries. There are no pom.xml files in the Apache Flex repo. AIUI, there is this thing called a Mavenizer that can take a Flex SDK and

Re: Royale, Emulation, ResourceManager, and Flex

2018-10-15 Thread Carlos Rovira
Hi Alex, I searched on the nexus hosted inner company, but didn't try to find it outside. I thought Flex SDK was in maven central as well is not the case? For example a quick search shows [1] where I see 4.12 and 4.13 here, and I suppose those should have the RBs right? If is not the case, I

Re: Royale, Emulation, ResourceManager, and Flex

2018-10-15 Thread Alex Harui
Hi Carlos, Where did you get that artifact? I could not find it on Maven Central. Maybe you ran the Mavenizer on a Flex SDK? If so, the question is whether we want Maven users to have to use the Mavenizer. -Alex On 10/15/18, 1:38 PM, "Carlos Rovira" wrote: Hi Alex, I was

Re: Royale, Emulation, ResourceManager, and Flex

2018-10-15 Thread Carlos Rovira
Hi Alex, I was looking for maven resoucebundle in maven and we have separate artifacts. an example: /org/apache/flex/framework/framework/4.16.0/framework-4.16.0-es_ES.rb.swc So I think it should not be a problem in maven too, and we can reuse from flex :) Best El dom., 14 oct. 2018 a las

Build failed in Jenkins: royale-asjs_MXTests #67

2018-10-15 Thread apacheroyaleci
See Changes: [aharui] set 'this' pointer for callProperty. SWF doesn't matter because it is a -- [...truncated 1.96 MB...] [mxmlc]

Re: Getting An Emulation Component To Run

2018-10-15 Thread Carlos Rovira
Hi Alex, yes, I added those classes when worked trying to make it work in net RO, but I found a wall at that time. I think DSK objects had a different code when deserialized, and our AMF implementation was not able to handle that. I was not able to know how to deal with that so I had to abandon.

Re: Proxy method calls with RemoteObject

2018-10-15 Thread Carlos Rovira
Hi Alex, with your latest fixes all is working ok :) thanks! El lun., 15 oct. 2018 a las 20:12, Alex Harui () escribió: > Either syntax should work. I just pushed changes to AbstractService that > got service.echo() to work. > > -Alex > > On 10/15/18, 10:51 AM, "Carlos Rovira" wrote: > >

Re: Getting An Emulation Component To Run

2018-10-15 Thread Alex Harui
The classes that represent DSK, DSA and DSC are in the MXRoyale and Network projects, but it looks like they implement IExternalizable. I don't see any evidence that the JS AMF support currently handles IExternalizable. I'm not clear on how important SmallMessages and IExternalizable are. If

Re: Proxy method calls with RemoteObject

2018-10-15 Thread Alex Harui
Either syntax should work. I just pushed changes to AbstractService that got service.echo() to work. -Alex On 10/15/18, 10:51 AM, "Carlos Rovira" wrote: Hi Alex, one thing I not understand is that this: (service.echo as Operation).send(); should be

Re: Getting An Emulation Component To Run

2018-10-15 Thread Carlos Rovira
Yes, I tried today (with code pre-callProperty, that I think does not make difference for this). There's small message support in RPC classes, but when I looked at that code when I investigate it, I think must be accompanied from some AMF serialization/deserialization support. I couldn't find any

Re: Proxy method calls with RemoteObject

2018-10-15 Thread Carlos Rovira
Hi Alex, one thing I not understand is that this: (service.echo as Operation).send(); should be service.echo() I think we're trying to remove "send()" and call directly "echo()" I can go to your latest commits in both compiler and framework and try, but don't understand the purpose, since

Jenkins build is back to normal : royale-asjs_MXTests #66

2018-10-15 Thread apacheroyaleci
See

Re: Proxy method calls with RemoteObject

2018-10-15 Thread Alex Harui
About 10 hours ago, after I cast the call to send in the example to be (service.echo as Operation).send() , it worked for me. I see you have made several changes to the example since. Go back to where the example was about 10 hours ago, make that one change to service.echo.send() and it

Re: Proxy method calls with RemoteObject

2018-10-15 Thread Carlos Rovira
Hi Alex, El lun., 15 oct. 2018 a las 18:54, Alex Harui () escribió: > There may be a couple of things affecting you. One is that in the bug you > reported, it looks like only the first RO is created and the others are not. > I 'm pretty sure the bug about mx:method is not present since I test

Re: Getting An Emulation Component To Run

2018-10-15 Thread Alex Harui
Carlos, Have you verified that small messages do not work with the MX RemoteObject? I thought I saw Small Message support when I was migrating the code. Thanks, -Alex On 10/15/18, 10:01 AM, "Carlos Rovira" wrote: Hi Alina, just for if you don't know. If you use BlazeDS Java

Re: Getting An Emulation Component To Run

2018-10-15 Thread Carlos Rovira
Hi Alina, just for if you don't know. If you use BlazeDS Java server, remember to set up small messages to false, or you RemoteObjects will not work. To get small messages we'll need to upgrade AMF serialization-deserialization to know how to handle DSK, DSA, and DSC RemoteClass aliases. Best

Re: Proxy method calls with RemoteObject

2018-10-15 Thread Alex Harui
There may be a couple of things affecting you. One is that in the bug you reported, it looks like only the first RO is created and the others are not. Second, if you notice in the example, you'll see things like (service.echo as Operation).lastResult. After adding support for callProperty,

Re: Welcome Pushmina Kazi as Apache Royale Committer

2018-10-15 Thread Alex Harui
Welcome from me as well. Do you want us to spell your name as Pushmina or Pashmina? Thanks, -Alex On 10/15/18, 12:31 AM, "Harbs" wrote: Welcome! :-) > On Oct 15, 2018, at 9:55 AM, Pushmina Kazi wrote: > > Thanks Piotr and Yishay > > -Pushmina kazi >

Re: Getting An Emulation Component To Run

2018-10-15 Thread Alex Harui
Hi Alina, Good to know. You (and anybody working with the emulation components) are expected to keep track of the commits to the royale-compiler as well as the royale-asjs repos and stay updated. We are still finding bugs in the transpiling that may affect you. Thanks, -Alex On 10/15/18,

Re: [Discuss] Start release process 0.9.3

2018-10-15 Thread Piotr Zarzycki
Hi Yishay, This [1][2] [1] https://github.com/apache/royale-compiler/tree/org.apache.royale.compiler-0.9.4-rc1 [2] https://github.com/apache/royale-compiler/tree/org.apache.royale.compiler-0.9.4-rc2 Thanks, Piotr pon., 15 paź 2018 o 17:20 Yishay Weiss napisał(a): > What’s the full names of

RE: [Discuss] Start release process 0.9.3

2018-10-15 Thread Yishay Weiss
What’s the full names of the tags that need to be deleted? From: Piotr Zarzycki Sent: Monday, October 15, 2018 4:08:34 PM To: dev@royale.apache.org Subject: Re: [Discuss] Start release process 0.9.3 Hi Alex, I have all environment property which you are

Build failed in Jenkins: royale-asjs_MXTests #65

2018-10-15 Thread apacheroyaleci
See Changes: [carlosrovira] Add CompressedRemoteObject version for mx:RemoteObject [carlosrovira] Add example for CompressedRemoteObject, not tested since right now all

Re: [Discuss] Start release process 0.9.3

2018-10-15 Thread Piotr Zarzycki
Hi Alex, I have all environment property which you are mentioning in place. AIR_HOME = d:\Work\flex-sdk-4.16.1_adobe_air_30 FLASHPLAYER_DEBUGGER = D:\Work\player\flashplayer.exe PLAYERGLOBAL_HOME = D:\Work\player In my folder with player I have following folders with playerglobal.swc 11.1,

Jenkins build is back to normal : royale-asjs_jsonly #1746

2018-10-15 Thread apacheroyaleci
See

Build failed in Jenkins: royale-asjs_jsonly #1745

2018-10-15 Thread apacheroyaleci
See Changes: [carlosrovira] Add CompressedRemoteObject version for mx:RemoteObject -- [...truncated 848.21 KB...] [junit] Tests run: 4,

Re: Proxy method calls with RemoteObject

2018-10-15 Thread Carlos Rovira
Hi Alex, I added to the RO test example the CompressedRO test case commented to help you find the problem. I couldn't test like in net RO since now the entire example is failing, but once the callProperty works for a normal case should help us to check if the rest of RO works since it uses

Re: Proxy method calls with RemoteObject

2018-10-15 Thread Carlos Rovira
Hi Alex, I found that even if I remove completely CompressedRemoteObject and use only normal mx:RemoteObject the error shows: [Error] TypeError: undefined is not an object (evaluating 'this.remoteObject.convertParametersHandler') El lun., 15 oct. 2018 a las 13:00, Carlos Rovira () escribió:

Re: Proxy method calls with RemoteObject

2018-10-15 Thread Carlos Rovira
Hi Alex, I'm finding a problem with callProperty. I'm using a CompressedRemoteObjeect that uses two hooks in RemoteObject API public var convertParametersHandler:Function; and public var convertResultHandler:Function; this makes the call fail with [Error] TypeError: undefined is not an object

Jenkins build is back to normal : royale-asjs_MXTests #64

2018-10-15 Thread apacheroyaleci
See

Re: Welcome Pushmina Kazi as Apache Royale Committer

2018-10-15 Thread Carlos Rovira
Welcome to the team! :) El lun., 15 oct. 2018 a las 9:31, Harbs () escribió: > Welcome! :-) > > > On Oct 15, 2018, at 9:55 AM, Pushmina Kazi > wrote: > > > > Thanks Piotr and Yishay > > > > -Pushmina kazi > > > > -Original Message- > > From: Yishay Weiss [mailto:yishayj...@hotmail.com]

RE: Getting An Emulation Component To Run

2018-10-15 Thread Alina Kazi
Hi Alex, Thanks a lot it worked for me. -Alina kazi -Original Message- From: Alex Harui [mailto:aha...@adobe.com.INVALID] Sent: Monday, October 15, 2018 2:07 PM To: dev@royale.apache.org Subject: Re: Getting An Emulation Component To Run Hi Alina, Are you sure you are using the

Re: Getting An Emulation Component To Run

2018-10-15 Thread Alex Harui
Hi Alina, Are you sure you are using the latest compiler? Try compiling examples/mxroyale/RemoteObjectAMFTest. It compiles without errors for me. I have to stop for tonight. Hopefully others will help you. -Alex On 10/15/18, 1:37 AM, "Alina Kazi" wrote: Hi Alex, We are using MX

Build failed in Jenkins: royale-asjs_MXTests #63

2018-10-15 Thread apacheroyaleci
See Changes: [harbs] Fixed IEEventAdapterBead -- [...truncated 1.98 MB...] [mxmlc] using source file:

RE: Getting An Emulation Component To Run

2018-10-15 Thread Alina Kazi
Hi Alex, We are using MX Remote Object in almost our every Class like this: We get error ASBlocker subsystem. When we comment RemoteObject we need to comment methods those are using it. I agree with that if I will delete some code for compilation I will face other issues at later stage. Can I

Re: Getting An Emulation Component To Run

2018-10-15 Thread Alex Harui
Hi Alina, I recommend just running the compiled application and fixing problems as you run into them. If you start copying code and deleting other code, you cannot guarantee that the results will run. I'm not even sure TitleWindow is a valid child control of an Application. Usually it is a

RE: Getting An Emulation Component To Run

2018-10-15 Thread Alina Kazi
Hi Alex, As our whole application is compiled successfully without error as a part of SparkRoyale Library. Now, We have created a project like tourdeflexmodules to compile and visually see the application output. Initially started with the basic(small) file of our application that is used by

Re: [Discuss] Start release process 0.9.3

2018-10-15 Thread Alex Harui
Looks like your environment variables aren't set? Having js.swc on the external-library-path to run a SWF doesn't seem right. Check AIR_HOME, PLAYERGLOBAL_HOME, FLASHPLAYER_DEBUGGER. -Alex On 10/15/18, 12:37 AM, "Piotr Zarzycki" wrote: Now tests are failing :) [1] [1]

Re: [Discuss] Start release process 0.9.3

2018-10-15 Thread Piotr Zarzycki
Now tests are failing :) [1] [1] https://paste.apache.org/FY4O niedz., 14 paź 2018 o 22:34 Piotr Zarzycki napisał(a): > Before I contact Maven mailing list I would like to try again release to > see what I got. > > > On Sat, Oct 13, 2018, 11:28 AM Carlos Rovira > wrote: > >> Hi, commit done

Re: Welcome Pushmina Kazi as Apache Royale Committer

2018-10-15 Thread Harbs
Welcome! :-) > On Oct 15, 2018, at 9:55 AM, Pushmina Kazi wrote: > > Thanks Piotr and Yishay > > -Pushmina kazi > > -Original Message- > From: Yishay Weiss [mailto:yishayj...@hotmail.com] > Sent: Monday, October 15, 2018 12:04 PM > To: dev@royale.apache.org > Subject: RE: Welcome

RE: Welcome Pushmina Kazi as Apache Royale Committer

2018-10-15 Thread Pushmina Kazi
Thanks Piotr and Yishay -Pushmina kazi -Original Message- From: Yishay Weiss [mailto:yishayj...@hotmail.com] Sent: Monday, October 15, 2018 12:04 PM To: dev@royale.apache.org Subject: RE: Welcome Pushmina Kazi as Apache Royale Committer Welcome Pushmina!

RE: Welcome Pushmina Kazi as Apache Royale Committer

2018-10-15 Thread Yishay Weiss
Welcome Pushmina! From: Piotr Zarzycki Sent: Monday, October 15, 2018 9:52:49 AM To: dev@royale.apache.org Subject: Welcome Pushmina Kazi as Apache Royale Committer Hi Folks, The Apache Royale PMC is excited to welcome Pushmina Kazi as our newest committer!

Welcome Pushmina Kazi as Apache Royale Committer

2018-10-15 Thread Piotr Zarzycki
Hi Folks, The Apache Royale PMC is excited to welcome Pushmina Kazi as our newest committer! Pushmina is working closely with Alina on emulation components which should ease the effort of migrating Flex apps to Royale. She made several good pull requests to that area, which earned her the merit

Re: Getting An Emulation Component To Run

2018-10-15 Thread Alex Harui
Hi Alina, Different APIs will have different solutions. Pick an API you want to have work and let's discuss how to make it work. -Alex On 10/14/18, 10:48 PM, "Alina Kazi" wrote: Hi Alex, All mx and spark class methods those were left empty for the compilation of Application.