Re: RemoteObject cannot work with ColdFusion without source attribute

2022-08-27 Thread Doug Simmons
777...@gmail.com> *Sent: *Tuesday, June 14, 2022 11:21 AM *To: *users@royale.apache.org *Subject: *Re: RemoteObject cannot work with ColdFusion without source attribute Apologies, I should have said that Royale RemoteObject worked with ColdFusion in sdk 0.9.0 (not 0.9.3). I've run out

RE: RemoteObject cannot work with ColdFusion without source attribute

2022-06-14 Thread Yishay Weiss
Thanks and keep us posted either way. From: Doug Simmons<mailto:doug777...@gmail.com> Sent: Tuesday, June 14, 2022 11:21 AM To: users@royale.apache.org<mailto:users@royale.apache.org> Subject: Re: RemoteObject cannot work with ColdFusion without source attribute Apologies, I shou

Re: RemoteObject cannot work with ColdFusion without source attribute

2022-06-14 Thread Doug Simmons
Hi Doug, I am not familiar with this area of code, but it sounds like you have an idea for a patch. Can you make this work locally? *From: *Doug Simmons <mailto:doug777...@gmail.com> *Sent: *Tuesday, June 14, 2022 4:21 AM *To: *users@royale.apache.org *Subject: *Re: RemoteObject cannot

RE: RemoteObject cannot work with ColdFusion without source attribute

2022-06-13 Thread Yishay Weiss
Hi Doug, I am not familiar with this area of code, but it sounds like you have an idea for a patch. Can you make this work locally? From: Doug Simmons<mailto:doug777...@gmail.com> Sent: Tuesday, June 14, 2022 4:21 AM To: users@royale.apache.org<mailto:users@royale.apache.org>

Re: RemoteObject cannot work with ColdFusion without source attribute

2022-06-13 Thread Doug Simmons
Hi Alex, js:RemoteObject worked flawlessly with ColdFusion in sdk 0.9.3. I don't know why source was removed before 0.9.9, but surely it's simple to re-instate it and surround it with if(destination = 'ColdFusion'). Doug On 14/06/2022 00:51, Alex Harui wrote: Hi Doug, I might have missed a

Re: RemoteObject cannot work with ColdFusion without source attribute

2022-06-13 Thread Alex Harui
Hi Doug, I might have missed a post, but have you tried Charles or a network analyzer to compare what Flex sends and receives vs Royale? Knowing the difference can help determine next steps. Thanks, -Alex On 6/13/22, 1:31 AM, "Doug Simmons" wrote: EXTERNAL: Use caution when clicking on l

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-15 Thread Carlos Rovira
Hi Joe, thanks for locate the problem. I think this would be hard for use without having experience/access to a WebOrb and touch here and there trying. I just tried to remove the charset as you suggested and tried with the example and all works ok, so I removed it. Here's the commit: https://git

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-14 Thread JoeBoxer
Hello Carlos and Alex. It seems WebORB doesn't like the Content-Type being set as "application/x-amf; charset=UTF-8". It matches up the content-type with internal parsers depending on how you are using it so it's expecting Content-Type "application/x-amf". In the AMFNetConnection.as file xhr.s

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-10 Thread Carlos Rovira
Hi Joe, I'll leaving for a trip tomorrow and will come in a few days, and as much I'm trying to finish a new jewel component before leaving (If I solve my current problems in time! :)). Please try this weekend to call a simple method sending a String and receiving a server string and report what y

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-10 Thread Alex Harui
I don’t know how difficult it will be to sync up. I don’t want to stop to try right now. Volunteers are welcome to try. Thanks, -Alex From: Piotr Zarzycki Reply-To: "users@royale.apache.org" Date: Friday, August 10, 2018 at 12:37 AM To: "users@royale.apache.org" Subje

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-10 Thread JoeBoxer
Hello Carlos. The destinations for WebORB are defined in a different config file. I'll upload that file for you too see. I use the GenericDestination because its a wild card and doesn't require me to specify any namespaces. remoting-config.xml

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-10 Thread Carlos Rovira
Hi I forgot to mention one more thing about passing a List. In BlazeDS and ColdFusion (for what I know from other users), a server side Collection is passed like an externalized object reference. We solved this for BlazeDS and Coldfusion. I think that should work the same for WebOrb, but since may

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-10 Thread Carlos Rovira
Jose, based in your info I could make a working example to try. I think code is missing, but I can explain what I see so you can see if you need to fix things in your code or is only information that is missing in your email. Looking to the info you give: 1) The RO configuration is: source = "R

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-10 Thread Piotr Zarzycki
Hi Radu, Althoght we don't have 0.9.3 released you can use nightly build [1]. Probably later you will need MXRoyale branch to go with Emulation path.[2] Alex, Is it even possible sync that branch with develop? [1] http://apacheroyaleci.westus2.cloudapp.azure.com:8080/job/royale-asjs/lastSucces

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-10 Thread Alex Harui
, -Alex From: radu birsan Reply-To: "users@royale.apache.org" Date: Thursday, August 9, 2018 at 10:33 PM To: "users@royale.apache.org" Subject: Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET Where can we make a donation to help release the official

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-10 Thread Carlos Rovira
Hi Joe, - correlationId is received from server (talking about BlazeDS always, since don't know about WebOrb), and is a String if small messages are off and a ByteArray if on. - operation is send from client and is 5 (client pong operation) in a normal RO operation (not SimpleRO) to establish conn

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-09 Thread radu birsan
Where can we make a donation to help release the official Apache 9.3 with AMF support?

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-09 Thread JoeBoxer
Hello Carlos and Alex. After digging a bit further i noticed that WebORB is expecting 2 additional properties in the remoting request than what AbstractMessage.as is sending. AbstractMessage.as sends: body clientId destination headers messageId timestamp timeToLive WebORB is expecting... body

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-09 Thread JoeBoxer
Hi Carlos. Thank you for the suggestions. I've tried to get this remoting working with all builds available 0.9.2, 0.9.3 and the nightly build at http://apacheroyaleci.westus2.cloudapp.azure.com:8080/job/royale-asjs_jsonly/lastSuccessfulBuild/artifact/out/ I tried the MXRoyale branch build bas

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-09 Thread Carlos Rovira
Hi Alex, ok I'll try it and report my findings. Just one thing from Joe's email: It seems you are trying to use MXRoyale branch? I think that could be a problem. I'm not familiar with that branch but I think is not already synced with develop, so if what I think is real, RO will not work, since no

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-09 Thread Alex Harui
Carlos, Since you've debugged this stuff more recently than me, I will let you debug this too unless you are too busy. Let me know, -Alex On 8/9/18, 11:31 AM, "JoeBoxer" wrote: Hello Alex and Carlos. Thank you for responding to this issue. I tried the nightly build of t

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-09 Thread JoeBoxer
Hello Alex and Carlos. Thank you for responding to this issue. I tried the nightly build of the feature/MXRoyale branch and noticed that SimpleRemoteObject wasn't in that build so i used RemoteObject. Unfortunately i had the same problem. I put together a test environment with WebORB at this en

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-09 Thread Carlos Rovira
Hi, I don't have experience in WebOrb and I suppose Alex is in the same track like me, but we want RO and AMF working for all platforms, so first I want to ask you if you check this: https://github.com/apache/royale-asjs/wiki/Apache-Royale-communication-with-AMF-and-RemoteObject (I suppose you d

Re: RemoteObject and SimpleRemoteObject not working with WebORB for .NET

2018-08-08 Thread Alex Harui
Are you using the latest nightly build of the feature/MXRoyale branch? If not, get it from http://apacheroyaleci.westus2.cloudapp.azure.com:8080/job/Royale-asjs_MXRoyale/lastSuccessfulBuild/artifact/out/ If it still isn't working, can you create a small test case we can debug using that same s

Re: RemoteObject

2018-07-27 Thread Carlos Rovira
Hi Radu, I recommend you to check blog examples where you can find very easy examples to get started. Of course you'll need latest development code or at least nightly build https://royale.apache.org/category/royale-examples/ 2018-07-27 17:09 GMT+02:00 radu : > Need one one one trayining with

Re: RemoteObject

2018-07-27 Thread radu
Need one one one trayining with Apache Royale JS: I need to prort this code: http://ns.adobe.com/mxml/2009"; xmlns:mx="library://ns.adobe.com/flex/mx" layout="absolute" minWidth="50" minHeight="550" creationComplete="main()" backgroundAlpha="0">

Re: RemoteObject

2018-04-17 Thread Alex Harui
.org>" mailto:users@royale.apache.org>> Date: Tuesday, April 17, 2018 at 2:24 PM To: "users@royale.apache.org<mailto:users@royale.apache.org>" mailto:users@royale.apache.org>> Subject: Re: RemoteObject Hi Piotr, great to see you get that working. I suppose the pr

Re: RemoteObject

2018-04-17 Thread Carlos Rovira
n components with Basic or Express components. It will be > interesting to see how many folks can run an app entirely on the emulation > components. > > HTH, > -Alex > > From: Piotr Zarzycki > Reply-To: "users@royale.apache.org" > Date: Tuesday, April 17, 2018 at

Re: RemoteObject

2018-04-17 Thread Alex Harui
quot; mailto:users@royale.apache.org>> Date: Tuesday, April 17, 2018 at 1:21 PM To: "users@royale.apache.org<mailto:users@royale.apache.org>" mailto:users@royale.apache.org>> Subject: Re: RemoteObject Alex, I understand Emulations as something temporary. In the end

Re: RemoteObject

2018-04-17 Thread Piotr Zarzycki
From: Piotr Zarzycki > Reply-To: "users@royale.apache.org" > Date: Tuesday, April 17, 2018 at 12:50 PM > > To: "users@royale.apache.org" > Subject: Re: RemoteObject > Hi Prashant, > > I just tried your two examples. The first one not going to work c

Re: RemoteObject

2018-04-17 Thread Alex Harui
ply-To: "users@royale.apache.org<mailto:users@royale.apache.org>" mailto:users@royale.apache.org>> Date: Tuesday, April 17, 2018 at 12:50 PM To: "users@royale.apache.org<mailto:users@royale.apache.org>" mailto:users@royale.apache.org>> Subject: Re:

Re: RemoteObject

2018-04-17 Thread Piotr Zarzycki
Hi Prashant, I just tried your two examples. The first one not going to work cause AMF doesn't recognize ArrayList, but you can always send simple Array - That's an workaround. The second one is working pretty well. I'm using AMFPHP. I've created method which simply get's VO and returns it. - Wha

Re: RemoteObject

2018-04-03 Thread Fréderic Cox
Thanks Piotr, I am *still* waiting on our server team to set up the AMFPHP test case Verstuurd vanaf mijn iPhone > Op 2 apr. 2018 om 08:32 heeft Prashant Kumar het > volgende geschreven: > > I could not get chance to look into this. Please go ahead and check this. If > you require any my sup

Re: RemoteObject

2018-04-01 Thread Prashant Kumar
I could not get chance to look into this. Please go ahead and check this. If you require any my support, do let me know. On Sun 1 Apr, 2018, 10:57 PM Piotr Zarzycki, wrote: > Hi Prashant, > > Did you have a chance to look into that case ? If not I'm going in the > next week look closer to AMF. >

Re: RemoteObject

2018-04-01 Thread Piotr Zarzycki
Hi Prashant, Did you have a chance to look into that case ? If not I'm going in the next week look closer to AMF. Let me know. Thanks, Piotr 2018-02-21 7:27 GMT+01:00 Prashant Kumar : > Fine, I will investigate this today and update you on the root cause. > > > On 20-Feb-2018 1:53 PM, "Carlos

Re: RemoteObject

2018-02-21 Thread Carlos Rovira
Many thanks Prashant for your support! waiting to know about your progress :) Carlos 2018-02-21 7:27 GMT+01:00 Prashant Kumar : > Fine, I will investigate this today and update you on the root cause. > > > On 20-Feb-2018 1:53 PM, "Carlos Rovira" wrote: > > Hi Prashant, > > curious. I think we

Re: RemoteObject

2018-02-20 Thread Prashant Kumar
Fine, I will investigate this today and update you on the root cause. On 20-Feb-2018 1:53 PM, "Carlos Rovira" wrote: Hi Prashant, curious. I think we passed an array of typed VOs, and for example Vehicle has only 2 strings and a Date. My VO doesn't have a date property, but I assume that should

Re: RemoteObject

2018-02-20 Thread Carlos Rovira
Hi Prashant, curious. I think we passed an array of typed VOs, and for example Vehicle has only 2 strings and a Date. My VO doesn't have a date property, but I assume that should work. Anyway, could you investigate why that not work? As I said I can support you with pull request if you want. I'm r

Re: RemoteObject

2018-02-19 Thread Fréderic Cox
Thanks Piotr, I'll check it further also. We have the same version as you I believe but we also have the C extension installed to speed things up. Things get compressed (gzip) so maybe the issue can be there. I'm checking with our server team tomorrow and hope to run some tests in the coming days

Re: RemoteObject

2018-02-18 Thread Piotr Zarzycki
Frederic , I did play with AMFPHP a bit with success. I have downloaded AMFPHP from here [1]. There where following example service [2]. I was able to receive data from following methods without the problem. My test Royale application was placed in localhost. *returnOneParam*(1) - *OK* *returnSu

Re: RemoteObject

2018-02-18 Thread Prashant Kumar
Following cases not working: service.send("passArrayList",[new ArrayList(["Test1","Test2"])]); var v1:Vehicle = new Vehicle(); v1.name = "Nexon"; v1.brand = "TATA"; v1.dom = new Date(); service.send("addVehicle",[v1]); On Sat, Feb 17, 2018 at 4:15 PM, Carlos Rovira wrote: > Hi, I tested some

Re: RemoteObject

2018-02-17 Thread Carlos Rovira
Hi, I tested some months ago some scenarios with collections sharing some VOs, and worked, but I think we should try more scenarios since complex object graphs could be problematic. Thanks Prashant for looking into this. If you can help trying to evolve the code I can support you with your pull re

Re: RemoteObject

2018-02-17 Thread Carlos Rovira
itor? It was >>> too hard to read, so please create a bug report on GitHub and post it there. >>> >>> You might be able to use a network monitor to compare what Flex sent vs >>> what Royale is sending. What does your Flex usage of RemoteObject look >>>

Re: RemoteObject

2018-02-16 Thread Prashant Kumar
2018 at 8:37 PM > To: "users@royale.apache.org" > Subject: Re: RemoteObject > > Carlos, > > If I sends only primary type as int , number , date etc then all works > fine but if I sends custom types as a Arraylist , VOs, and other inherited > types does not work pro

Re: RemoteObject

2018-02-16 Thread Alex Harui
ry 16, 2018 at 8:37 PM To: "users@royale.apache.org<mailto:users@royale.apache.org>" mailto:users@royale.apache.org>> Subject: Re: RemoteObject Carlos, If I sends only primary type as int , number , date etc then all works fine but if I sends custom types as a Arraylist , VOs, and

Re: RemoteObject

2018-02-16 Thread Prashant Kumar
Carlos, If I sends only primary type as int , number , date etc then all works fine but if I sends custom types as a Arraylist , VOs, and other inherited types does not work properly. Regards, Prashant On 17-Feb-2018 2:50 AM, "Fréderic Cox" wrote: Updated https://github.com/apache/royale-asjs

Re: RemoteObject

2018-02-16 Thread Fréderic Cox
Updated https://github.com/apache/royale-asjs/issues/119, think I am getting closer :-) On Fri, Feb 16, 2018 at 9:51 PM, Fréderic Cox wrote: > Updated https://github.com/apache/royale-asjs/issues/119, can't get the > JAVA part to work but changing the AMF endpoint to AMFPHP I get an error > code

Re: RemoteObject

2018-02-16 Thread Fréderic Cox
Updated https://github.com/apache/royale-asjs/issues/119, can't get the JAVA part to work but changing the AMF endpoint to AMFPHP I get an error code when calling, so maybe that can help further research On Fri, Feb 16, 2018 at 9:21 PM, Fréderic Cox wrote: > Any instructions on how to build the

Re: RemoteObject

2018-02-16 Thread Fréderic Cox
Any instructions on how to build the example? This is kind of complicated for me as I have 0 experience with JAVA and even less with Maven ;-)

Re: RemoteObject

2018-02-16 Thread Prashant Kumar
> too hard to read, so please create a bug report on GitHub and post it >>>> there. >>>> >>>> You might be able to use a network monitor to compare what Flex sent vs >>>> what Royale is sending. What does your Flex usage of RemoteObject look >

Re: RemoteObject

2018-02-16 Thread Piotr Zarzycki
here. >>> >>> You might be able to use a network monitor to compare what Flex sent vs >>> what Royale is sending. What does your Flex usage of RemoteObject look >>> like? >>> >>> HTH, >>> -Alex >>> >>> From: Fréderic C

Re: RemoteObject

2018-02-16 Thread Fréderic Cox
ork monitor to compare what Flex sent vs >>> what Royale is sending. What does your Flex usage of RemoteObject look >>> like? >>> >>> HTH, >>> -Alex >>> >>> From: Fréderic Cox >>> Reply-To: "users@royale.apache.org" >

Re: RemoteObject

2018-02-16 Thread Carlos Rovira
my hand gets dirty with AMF! :) Unless someone urgently will >>>>> needed. >>>>> :) >>>>> >>>>> Thanks, Piotr >>>>> >>>>> 2018-01-15 19:27 GMT+01:00 Carlos Rovira : >>>>> >>>>>&

Re: RemoteObject

2018-02-16 Thread Carlos Rovira
PM, Piotr Zarzycki < >>>> piotrzarzyck...@gmail.com> wrote: >>>> >>>>> Carlos, >>>>> >>>>> No problem. I have also couple of huge things related to Royale to do >>>>> before my hand gets dirty with AMF! :) Unless someone urgently will &g

Re: RemoteObject

2018-02-15 Thread Fréderic Cox
From: Fréderic Cox > Reply-To: "users@royale.apache.org" > Date: Thursday, February 15, 2018 at 5:09 AM > To: "users@royale.apache.org" > Subject: Re: RemoteObject > > Hi Piotr, > > Thanks, I installed the extension and now I'm not gettin

Re: RemoteObject

2018-02-15 Thread Piotr Zarzycki
gt;>>>>> Hi Carlos, >>>>>> >>>>>> Can you describe more how to setup those examples ? Could you add to >>>>>> RemoteObjectAMFTest README.md file where you describe steps. I would like >>>>>> to have AMF on m

Re: RemoteObject

2018-02-15 Thread Fréderic Cox
21 GMT+01:00 Carlos Rovira : >>>>> >>>>>> Hi, >>>>>> >>>>>> there's an example that we get it working nicely at: >>>>>> >>>>>> https://github.com/apache/royale-asjs/tree/develop/examples/ >>&g

Re: RemoteObject

2018-02-15 Thread Gabe Harbs
Make sure you use the -remove-circulars option. > On Feb 15, 2018, at 1:04 PM, Fréderic Cox wrote: > > It is able to compile and run regardless of the errors in compile log: >

Re: RemoteObject

2018-02-15 Thread Fréderic Cox
t; As well a java web app that is used along that royale client example >>>>> is at: >>>>> >>>>> https://github.com/apache/royale-asjs/tree/develop/examples/amf >>>>> >>>>> thanks >>>>>

Re: RemoteObject

2018-02-15 Thread Piotr Zarzycki
>>> is at: >>>>> >>>>> https://github.com/apache/royale-asjs/tree/develop/examples/amf >>>>> >>>>> thanks >>>>> >>>>> >>>>> 2018-01-15 3:56 GMT+01:00 Carlos Cru

Re: RemoteObject

2018-02-15 Thread Fréderic Cox
gt;>>>> tests I've done with AMF at this line: amfTestService.send("get >>>>> ShippingMethods", []); you have to call a class in gateway.php and a >>>>> method. Your request needs at least 3 properties. >>>

Re: RemoteObject

2018-01-15 Thread Piotr Zarzycki
eway.php and a >>>> method. Your request needs at least 3 properties. >>>> >>>> >>>> >>>> I'm also assuming your JS file and gateway.php are in the same domain >>>> and same port (this gave me problems). >&g

Re: RemoteObject

2018-01-15 Thread Carlos Rovira
;>> >>> >>> >>> I'm also assuming your JS file and gateway.php are in the same domain >>> and same port (this gave me problems). >>> >>> >>> >>> Take what I said regarding my experience with FlexJS and Royale i

Re: RemoteObject

2018-01-15 Thread Piotr Zarzycki
gt;> statusLabel.text = "result!"; >> >> } >> >> >> >> none of the events are triggered ..URL is http://winkelbeheer.cityfas >> hion.be/amfphp/gateway.php >> >> >> >>

Re: RemoteObject

2018-01-15 Thread Carlos Rovira
. > > > > Take what I said regarding my experience with FlexJS and Royale into > account. > > > > Carlos > > > > > > *From:* Fréderic Cox [mailto:coxfrede...@gmail.com] > *Sent:* Sunday, January 14, 2018 4:01 PM > > *To:* users@

RE: RemoteObject

2018-01-14 Thread Carlos Cruz
...@gmail.com] Sent: Sunday, January 14, 2018 4:01 PM To: users@royale.apache.org Subject: Re: RemoteObject Script tag was stripped from the post: import org.apache.royale.events.MouseEvent; import org.apache.royale.net.events.FaultEvent;

Re: RemoteObject

2018-01-14 Thread Fréderic Cox
From: coxfrederic [mailto:coxfrede...@gmail.com] > Sent: Thursday, January 11, 2018 9:09 PM > To: users@royale.apache.org > Subject: Re: RemoteObject > > > > http://ns.adobe.com/mxml/2009"; >xmlns:js="library://ns.apache.org/royale/

RE: RemoteObject

2018-01-11 Thread Carlos Cruz
2018 9:09 PM To: users@royale.apache.org Subject: Re: RemoteObject http://ns.adobe.com/mxml/2009"; xmlns:js="library://ns.apache.org/royale/basic" > http:/

Re: RemoteObject

2018-01-11 Thread Alex Harui
Frederic, First try the example and see if it works for you. Thanks, -Alex On 1/11/18, 6:08 PM, "coxfrederic" wrote: > > >xmlns:fx="https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2F >ns.adobe.com%2Fmxml%2F2009&data=02%7C01%7Caharui%40adobe.com%7Cd2a52573481 >246bf83f108d5596167c

Re: RemoteObject

2018-01-11 Thread coxfrederic
http://ns.adobe.com/mxml/2009"; xmlns:js="library://ns.apache.org/royale/basic" > http://winkelbeheer.cityfashion.be/amfphp/gateway.php";

Re: RemoteObject

2017-11-16 Thread Alex Harui
-To: "users@royale.apache.org<mailto:users@royale.apache.org>" mailto:users@royale.apache.org>> Date: Thursday, November 16, 2017 at 11:15 AM To: "users@royale.apache.org<mailto:users@royale.apache.org>" mailto:users@royale.apache.org>> Subject: RE: Rem

RE: RemoteObject

2017-11-16 Thread Carlos Cruz
: Thursday, November 16, 2017 6:44 AM To: users@royale.apache.org Subject: Re: RemoteObject Hi Carlos, along with the RemoteObject classes that Doug said you can check the example at : - Royale client: /royale-asjs/examples/royale/RemoteObjectAMFTest - Royale java: /royale-asjs/examples

Re: RemoteObject

2017-11-16 Thread Carlos Rovira
Hi Carlos, along with the RemoteObject classes that Doug said you can check the example at : - Royale client: /royale-asjs/examples/royale/RemoteObjectAMFTest - Royale java: /royale-asjs/examples/amf/SampleAmfWebApp I already tried string, numbers, collection with value objects with success, but

Re: RemoteObject

2017-11-15 Thread doug777
Remote object is here https://github.com/apache/royale-asjs/tree/develop/frameworks/projects/Network/src/main/royale/org/apache/royale/net Doug -- Sent from: http://apache-royale-users.20374.n8.nabble.com/