CORS issue related to HttpService

2021-05-25 Thread romanisi...@yahoo.com.INVALID
Hi everyone, I am new to apache royale. I have started learning apache royale by trying my hands on the GitHubCommit tutorial.  I know my issue should go to the user mailing list but for strange reasonsI have attempted subscribing to this mailing list yet I have not received mail acknowledgement

Re: CORS issue related to HttpService

2021-05-25 Thread Hugo Ferreira
Hi, About the infamous CORS, this is what I do: For debug purposes (my machine only), I'm using the "Cross Domain" plugin for Google Chrome. romanisi...@yahoo.com.INVALID escreveu no dia terça, 25/05/2021 à(s) 10:37: > Hi everyone, > I am new to apache royale. I have started learning apache r

Re: CORS issue related to HttpService

2021-05-25 Thread romanisi...@yahoo.com.INVALID
Thanks for the response. I will install the cross domain plug in my google chrome and try again. Thanks. On Tuesday, May 25, 2021, 10:44:36 AM GMT+1, Hugo Ferreira wrote: Hi, About the infamous CORS, this is what I do: For debug purposes (my machine only), I'm using the "Cross Domain

create new royale project using maven

2021-05-25 Thread romanisi...@yahoo.com.INVALID
Hi, I am new to Royale. I attempted creating a new Royale project using maven with the following archetype mvn archetype:generate -DarchetypeGroupId=org.apache.royale.framework -DarchetypeArtifactId=royale-simple-application-archetype -DarchetypeVersion=0.9.8-SNAPSHOT It does not work. I get the

Crux and presentation model

2021-05-25 Thread romanisi...@yahoo.com.INVALID
Hi, I am going through the royale site and I discovered the crux framework.  From the site, I can see that it supports the presentation model.  I am interested in knowing how crux can be used with the presentation model. I have used the presentation model with "ZK web framework " before and it wa

Re: Crux and presentation model

2021-05-25 Thread Piotr Zarzycki
Hi Roman, Crux examples are part of framework sources. You can find them here [1]. In order to build them you need to use nightly build of Royale. [1] https://github.com/apache/royale-asjs/tree/develop/examples/crux Thanks, Piotr wt., 25 maj 2021 o 13:59 romanisi...@yahoo.com.INVALID napisał(a

Re: Apache Royale running as Word Add-In

2021-05-25 Thread Piotr Zarzycki
Wow! This is awesome! wt., 25 maj 2021 o 02:58 Hugo Ferreira napisał(a): > Hi Apache community, > > As been a long time that I didn't came here, however I'm following the > Apache Royale mailing list. > My business demands my presence on the last months (a small business > sometimes is like that

Re: Crux and presentation model

2021-05-25 Thread romanisi...@yahoo.com.INVALID
Thanks. Would definitely go through and run the code but at the moment. I am still having issues creating a maven project mvn archetype:generate -DarchetypeGroupId=org.apache.royale.framework -DarchetypeArtifactId=royale-simple-application-archetype -DarchetypeVersion=0.9.8-SNAPSHOT It does not

Re: Crux and presentation model

2021-05-25 Thread Piotr Zarzycki
Maybe try: -DarchetypeVersion=0.9.9-SNAPSHOT - if not I can only try to provide you some pom.xml template which you can adjust and add to existing project. wt., 25 maj 2021 o 16:00 romanisi...@yahoo.com napisał(a): > Thanks. Would definitely go through and run the code but at the moment. I > am

Re: Crux and presentation model

2021-05-25 Thread romanisi...@yahoo.com.INVALID
Thanks for your feedback. I have tried using "-DarchetypeVersion=0.9.9-SNAPSHOT" as you suggested.  I am still getting similar errors [INFO] Generating project in Interactive mode[INFO] Archetype repository not defined. Using the one from [org.apache.royale.framework:royale-simple-application-a

Re: Compiler options for reducing release build size of Royale projects (Part 2)

2021-05-25 Thread Josh Tynjala
Some of my earlier changes made it safe to use public variables instead of getters/setters, at least with the compiler defaults. With certain combinations of compiler options, it is possible to make it unsafe again, though. If you decided to use -export-public-symbols=true and -prevent-rename-publ

Re: create new royale project using maven

2021-05-25 Thread Josh Tynjala
If you want to use a -SNAPSHOT version of Royale, I think that you may need to check out the three Royale repos (royale-compiler, royale-typedefs, and royale-asjs) and build each of them with Maven `mvn clean install`. Then, Maven should be able to find the appropriate archetype artifacts on your l

Re: create new royale project using maven

2021-05-25 Thread Josh Tynjala
It's also possible that things are a little messed up right now because we're in the middle of the process for a new release. It might be worth trying 0.9.9-SNAPSHOT instead of 0.9.8-SNAPSHOT. -- Josh Tynjala Bowler Hat LLC On Tue, May 25, 2021 at 9:26 AM Josh Tynjala wr