Re: Remote object for Flex JS

2017-09-01 Thread Alex Harui
Hi Folks,

I just pushed changes that include a back port of amf.js to ActionScript.
In doing so, the AMF code now uses the Reflection APIs that Greg Dove
contributed.  The test still only passes a String to the server, but in
doing so, it has to wrap the String in an AsyncMessage subclass and I
think I have watched the AMF code correctly serialize and deserialize
those FlexJS classes to AMF and back.

Next step is to try it with an actual ValueObject.  Can someone help with
what changes would need to be made to the service to handle a custom Java
class instead of just a String?

One other note:  In doing the back port, I created an AMFBinaryData that
works like BinaryData, but doesn't subclass it.  That's because it appears
to me that APIs like writeUTF do differently things.  Maybe we can factor
out some common base class at some point.  But I think you can now use
AMFBinaryData.writeObject/readObject to clone objects like we do with
ByteArray.  AMFBinaryData is currently only for JS, but I think it could
easily have SWF code that writes to a ByteArray added to it.

Thanks,
-Alex

On 8/23/17, 10:32 AM, "Alex Harui"  wrote:

>Hi Prashant,
>
>The AMF work is in a separate branch so make sure you get the latest code.
> Maybe Piotr or another volunteer will merge the branch into develop so it
>appears in the nightly.
>
>-Alex
>
>On 8/23/17, 9:52 AM, "PKumar"  wrote:
>
>>Sure, I will download the FlexJS nightly build and check it.
>>
>>On 23-Aug-2017 10:01 PM, "Alex Harui-2 [via Apache Flex Users]" <
>>ml+s246n1580...@n4.nabble.com> wrote:
>>
>>> Hi Prashant,
>>>
>>> If you could add to RemoteObjectAMFTest and SampleAmfWebApp to work
>>>with
>>> an actual ValueObject, that would be great!
>>>
>>> Thanks,
>>> -Alex
>>>
>>> On 8/23/17, 9:21 AM, "PKumar" <[hidden email]
>>> > wrote:
>>>
>>> >Really great Alex,  if you  need my help in testing  or creating demo.
>>>Do
>>> >please let me know.
>>> >
>>> >On 23-Aug-2017 9:46 PM, "Alex Harui-2 [via Apache Flex Users]" <
>>> >[hidden email] >
>>> wrote:
>>> >
>>> >> Hi Prashant,
>>> >>
>>> >> Yes, the RemoteObjectAMFTest only tries to send a String.  To handle
>>> >>true
>>> >> ValueObjects we would need to leverage the amfjs class mapping.  I
>>> added
>>> >> code to the compiler to generate a map for the [RemoteClass]
>>>metadata
>>> >>but
>>> >> I didn't hook that up on the JS side yet.  It sounds like the
>>>interest
>>> >>is
>>> >> in backporting amfjs to AS and make the API similar to regular Flex.
>>> In
>>> >> that case, I will refactor the amfjs class map to use the one in our
>>> >> Reflection library.
>>> >>
>>> >> -Alex
>>> >>
>>> >> On 8/23/17, 9:08 AM, "PKumar" <[hidden email]
>>> >> > wrote:
>>> >>
>>> >> >Alex,
>>> >> >
>>> >> >It will really great, if this works same or mostly similar as
>>>regular
>>> >> Flex
>>> >> >SDK.
>>> >> >
>>> >> >One more point on amfJS library , it also supports class mapping.
>>>It
>>> >>has
>>> >> >one method *registerClasses* that can be used for Java class to
>>>flex
>>> >> >mapping.
>>> >> >
>>> >> >On 23-Aug-2017 11:12 AM, "Alex Harui-2 [via Apache Flex Users]" <
>>> >> >[hidden email]
>>>>
>>> >> wrote:
>>> >> >
>>> >> >> So, I played around with AMF today, adding SWF code for
>>> RemoteObject.
>>> >> >>For
>>> >> >> me, the RemoteObjectAMFTest in examples/flexjs is working against
>>> the
>>> >> >> SampleAmfWebApp in examples/amf for both SWF and JS.  I don't
>>>think
>>> I
>>> >> >>had
>>> >> >> to touch the JS code in amf.js.  That's better than I was
>>>expecting.
>>> >> >>Am I
>>> >> >> not doing something right or is there some other problem that
>>>needs
>>> >> >> solving?
>>> >> >>
>>> >> >> Some observations along the way:
>>> >> >>
>>> >> >> I was able to talk to the server in SWF code just by using
>>> >> >> NetConnection.call and passing in CommandMessages and
>>> >>RemotingMessages,
>>> >> >> but the amf.js code seems to be sending an ActionMessage wrapped
>>> >>around
>>> >> >> the CommandMessage and RemotingMessage.  Is that wrapping what
>>> >> >> NetConnection does?
>>> >> >>
>>> >> >> I'm tempted to try to refactor amf.js into several AS classes.
>>>Is
>>> >>that
>>> >> >> worth doing or are there bigger fish to fry?
>>> >> >>
>>> >> >> The amf.js code includes a Promise implementation.  If we
>>>refactor
>>> to
>>> >> >>AS,
>>> >> >> should we try to use promises or make the API more compatible
>>>with
>>> >> >>regular
>>> >> >> Flex?  I'm leaning towards compatibility with regular Flex.
>>> >> >>
>>> >> >> Thoughts?
>>> >> >> -Alex
>>> >> >>
>>> >> >> On 8/21/17, 11:02 AM, "Harbs" <[hidden email]
>>> >> >> > wrote:
>>> >> >>
>>> >> >> >There’s probably an advantage to converting it to FlexJS. You
>>>could
>>> >> >> 

Re: Remote object for Flex JS

2017-08-23 Thread Alex Harui
Hi Prashant,

The AMF work is in a separate branch so make sure you get the latest code.
 Maybe Piotr or another volunteer will merge the branch into develop so it
appears in the nightly.

-Alex

On 8/23/17, 9:52 AM, "PKumar"  wrote:

>Sure, I will download the FlexJS nightly build and check it.
>
>On 23-Aug-2017 10:01 PM, "Alex Harui-2 [via Apache Flex Users]" <
>ml+s246n1580...@n4.nabble.com> wrote:
>
>> Hi Prashant,
>>
>> If you could add to RemoteObjectAMFTest and SampleAmfWebApp to work with
>> an actual ValueObject, that would be great!
>>
>> Thanks,
>> -Alex
>>
>> On 8/23/17, 9:21 AM, "PKumar" <[hidden email]
>> > wrote:
>>
>> >Really great Alex,  if you  need my help in testing  or creating demo.
>>Do
>> >please let me know.
>> >
>> >On 23-Aug-2017 9:46 PM, "Alex Harui-2 [via Apache Flex Users]" <
>> >[hidden email] >
>> wrote:
>> >
>> >> Hi Prashant,
>> >>
>> >> Yes, the RemoteObjectAMFTest only tries to send a String.  To handle
>> >>true
>> >> ValueObjects we would need to leverage the amfjs class mapping.  I
>> added
>> >> code to the compiler to generate a map for the [RemoteClass] metadata
>> >>but
>> >> I didn't hook that up on the JS side yet.  It sounds like the
>>interest
>> >>is
>> >> in backporting amfjs to AS and make the API similar to regular Flex.
>> In
>> >> that case, I will refactor the amfjs class map to use the one in our
>> >> Reflection library.
>> >>
>> >> -Alex
>> >>
>> >> On 8/23/17, 9:08 AM, "PKumar" <[hidden email]
>> >> > wrote:
>> >>
>> >> >Alex,
>> >> >
>> >> >It will really great, if this works same or mostly similar as
>>regular
>> >> Flex
>> >> >SDK.
>> >> >
>> >> >One more point on amfJS library , it also supports class mapping. It
>> >>has
>> >> >one method *registerClasses* that can be used for Java class to flex
>> >> >mapping.
>> >> >
>> >> >On 23-Aug-2017 11:12 AM, "Alex Harui-2 [via Apache Flex Users]" <
>> >> >[hidden email]
>>>
>> >> wrote:
>> >> >
>> >> >> So, I played around with AMF today, adding SWF code for
>> RemoteObject.
>> >> >>For
>> >> >> me, the RemoteObjectAMFTest in examples/flexjs is working against
>> the
>> >> >> SampleAmfWebApp in examples/amf for both SWF and JS.  I don't
>>think
>> I
>> >> >>had
>> >> >> to touch the JS code in amf.js.  That's better than I was
>>expecting.
>> >> >>Am I
>> >> >> not doing something right or is there some other problem that
>>needs
>> >> >> solving?
>> >> >>
>> >> >> Some observations along the way:
>> >> >>
>> >> >> I was able to talk to the server in SWF code just by using
>> >> >> NetConnection.call and passing in CommandMessages and
>> >>RemotingMessages,
>> >> >> but the amf.js code seems to be sending an ActionMessage wrapped
>> >>around
>> >> >> the CommandMessage and RemotingMessage.  Is that wrapping what
>> >> >> NetConnection does?
>> >> >>
>> >> >> I'm tempted to try to refactor amf.js into several AS classes.  Is
>> >>that
>> >> >> worth doing or are there bigger fish to fry?
>> >> >>
>> >> >> The amf.js code includes a Promise implementation.  If we refactor
>> to
>> >> >>AS,
>> >> >> should we try to use promises or make the API more compatible with
>> >> >>regular
>> >> >> Flex?  I'm leaning towards compatibility with regular Flex.
>> >> >>
>> >> >> Thoughts?
>> >> >> -Alex
>> >> >>
>> >> >> On 8/21/17, 11:02 AM, "Harbs" <[hidden email]
>> >> >> > wrote:
>> >> >>
>> >> >> >There’s probably an advantage to converting it to FlexJS. You
>>could
>> >> >> >probably leverage BinaryData for some of the functionality.
>> >> >> >
>> >> >> >You can also create typedefs if you want.
>> >> >> >
>> >> >> >> On Aug 21, 2017, at 8:53 PM, PKumar <[hidden email]
>> >> >> > wrote:
>> >> >> >>
>> >> >> >> Alex,
>> >> >> >>
>> >> >> >> As per my analysis & testing, AMFJS supports following
>>features:
>> >> >> >>
>> >> >> >> - All dataType serialization & deserialization support
>>including
>> >> >> >>Object ,
>> >> >> >> Vector
>> >> >> >> -  Connection with BlazeDS
>> >> >> >> - Conection with AMFPHP
>> >> >> >> -  Class Mapping Support using Alias Name & Class
>> >> >> >> -   Inbuilt support for sending AMF request  & response
>> >> >> >>
>> >> >> >> I also checked James ward implementation but that does  not
>> >>support
>> >> >> >>vector
>> >> >> >> and blazeds connectivity.
>> >> >> >>
>> >> >> >> I prepared  a demo for class mapping and blazeDs connection. If
>> >>you
>> >> >> >>want to
>> >> >> >> check, please let me know. I will share on github.
>> >> >> >>
>> >> >> >> one query i want  to ask , can we convert this amfJS library to
>> >> >>FlexJS
>> >> >> >> Typedef  just like createJS library?
>> >> >> >>
>> >> >> >>
>> >> >> >> Regards,
>> >> >> >> Prashant
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> 

Re: Remote object for Flex JS

2017-08-23 Thread PKumar
Sure, I will download the FlexJS nightly build and check it.

On 23-Aug-2017 10:01 PM, "Alex Harui-2 [via Apache Flex Users]" <
ml+s246n1580...@n4.nabble.com> wrote:

> Hi Prashant,
>
> If you could add to RemoteObjectAMFTest and SampleAmfWebApp to work with
> an actual ValueObject, that would be great!
>
> Thanks,
> -Alex
>
> On 8/23/17, 9:21 AM, "PKumar" <[hidden email]
> > wrote:
>
> >Really great Alex,  if you  need my help in testing  or creating demo. Do
> >please let me know.
> >
> >On 23-Aug-2017 9:46 PM, "Alex Harui-2 [via Apache Flex Users]" <
> >[hidden email] >
> wrote:
> >
> >> Hi Prashant,
> >>
> >> Yes, the RemoteObjectAMFTest only tries to send a String.  To handle
> >>true
> >> ValueObjects we would need to leverage the amfjs class mapping.  I
> added
> >> code to the compiler to generate a map for the [RemoteClass] metadata
> >>but
> >> I didn't hook that up on the JS side yet.  It sounds like the interest
> >>is
> >> in backporting amfjs to AS and make the API similar to regular Flex.
> In
> >> that case, I will refactor the amfjs class map to use the one in our
> >> Reflection library.
> >>
> >> -Alex
> >>
> >> On 8/23/17, 9:08 AM, "PKumar" <[hidden email]
> >> > wrote:
> >>
> >> >Alex,
> >> >
> >> >It will really great, if this works same or mostly similar as regular
> >> Flex
> >> >SDK.
> >> >
> >> >One more point on amfJS library , it also supports class mapping. It
> >>has
> >> >one method *registerClasses* that can be used for Java class to flex
> >> >mapping.
> >> >
> >> >On 23-Aug-2017 11:12 AM, "Alex Harui-2 [via Apache Flex Users]" <
> >> >[hidden email] >
> >> wrote:
> >> >
> >> >> So, I played around with AMF today, adding SWF code for
> RemoteObject.
> >> >>For
> >> >> me, the RemoteObjectAMFTest in examples/flexjs is working against
> the
> >> >> SampleAmfWebApp in examples/amf for both SWF and JS.  I don't think
> I
> >> >>had
> >> >> to touch the JS code in amf.js.  That's better than I was expecting.
> >> >>Am I
> >> >> not doing something right or is there some other problem that needs
> >> >> solving?
> >> >>
> >> >> Some observations along the way:
> >> >>
> >> >> I was able to talk to the server in SWF code just by using
> >> >> NetConnection.call and passing in CommandMessages and
> >>RemotingMessages,
> >> >> but the amf.js code seems to be sending an ActionMessage wrapped
> >>around
> >> >> the CommandMessage and RemotingMessage.  Is that wrapping what
> >> >> NetConnection does?
> >> >>
> >> >> I'm tempted to try to refactor amf.js into several AS classes.  Is
> >>that
> >> >> worth doing or are there bigger fish to fry?
> >> >>
> >> >> The amf.js code includes a Promise implementation.  If we refactor
> to
> >> >>AS,
> >> >> should we try to use promises or make the API more compatible with
> >> >>regular
> >> >> Flex?  I'm leaning towards compatibility with regular Flex.
> >> >>
> >> >> Thoughts?
> >> >> -Alex
> >> >>
> >> >> On 8/21/17, 11:02 AM, "Harbs" <[hidden email]
> >> >> > wrote:
> >> >>
> >> >> >There’s probably an advantage to converting it to FlexJS. You could
> >> >> >probably leverage BinaryData for some of the functionality.
> >> >> >
> >> >> >You can also create typedefs if you want.
> >> >> >
> >> >> >> On Aug 21, 2017, at 8:53 PM, PKumar <[hidden email]
> >> >> > wrote:
> >> >> >>
> >> >> >> Alex,
> >> >> >>
> >> >> >> As per my analysis & testing, AMFJS supports following features:
> >> >> >>
> >> >> >> - All dataType serialization & deserialization support including
> >> >> >>Object ,
> >> >> >> Vector
> >> >> >> -  Connection with BlazeDS
> >> >> >> - Conection with AMFPHP
> >> >> >> -  Class Mapping Support using Alias Name & Class
> >> >> >> -   Inbuilt support for sending AMF request  & response
> >> >> >>
> >> >> >> I also checked James ward implementation but that does  not
> >>support
> >> >> >>vector
> >> >> >> and blazeds connectivity.
> >> >> >>
> >> >> >> I prepared  a demo for class mapping and blazeDs connection. If
> >>you
> >> >> >>want to
> >> >> >> check, please let me know. I will share on github.
> >> >> >>
> >> >> >> one query i want  to ask , can we convert this amfJS library to
> >> >>FlexJS
> >> >> >> Typedef  just like createJS library?
> >> >> >>
> >> >> >>
> >> >> >> Regards,
> >> >> >> Prashant
> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >> -
> >> >> >> Regards,
> >> >> >> Prashant
> >> >> >> --
> >> >> >> View this message in context:
> >> >> >>https://na01.safelinks.protection.outlook.com/?url=
> >> >> http%3A%2F%2Fapache-fl
> >> >>
> >>
> >>ex-users.246.n4.nabble.com%2FRemote-object-for-Flex-JS-tp15510p15
>
> >>78
> >>
> >> 2.
> >> >>
> >> >>
> >>
> >>html=02%7C01%7C%7C1af098eb84194e4a169c08d4e8bebf0f%7Cfa7b1b5a7b3
>

Re: Remote object for Flex JS

2017-08-23 Thread Alex Harui
Hi Prashant,

If you could add to RemoteObjectAMFTest and SampleAmfWebApp to work with
an actual ValueObject, that would be great!

Thanks,
-Alex

On 8/23/17, 9:21 AM, "PKumar"  wrote:

>Really great Alex,  if you  need my help in testing  or creating demo. Do
>please let me know.
>
>On 23-Aug-2017 9:46 PM, "Alex Harui-2 [via Apache Flex Users]" <
>ml+s246n1580...@n4.nabble.com> wrote:
>
>> Hi Prashant,
>>
>> Yes, the RemoteObjectAMFTest only tries to send a String.  To handle
>>true
>> ValueObjects we would need to leverage the amfjs class mapping.  I added
>> code to the compiler to generate a map for the [RemoteClass] metadata
>>but
>> I didn't hook that up on the JS side yet.  It sounds like the interest
>>is
>> in backporting amfjs to AS and make the API similar to regular Flex.  In
>> that case, I will refactor the amfjs class map to use the one in our
>> Reflection library.
>>
>> -Alex
>>
>> On 8/23/17, 9:08 AM, "PKumar" <[hidden email]
>> > wrote:
>>
>> >Alex,
>> >
>> >It will really great, if this works same or mostly similar as regular
>> Flex
>> >SDK.
>> >
>> >One more point on amfJS library , it also supports class mapping. It
>>has
>> >one method *registerClasses* that can be used for Java class to flex
>> >mapping.
>> >
>> >On 23-Aug-2017 11:12 AM, "Alex Harui-2 [via Apache Flex Users]" <
>> >[hidden email] >
>> wrote:
>> >
>> >> So, I played around with AMF today, adding SWF code for RemoteObject.
>> >>For
>> >> me, the RemoteObjectAMFTest in examples/flexjs is working against the
>> >> SampleAmfWebApp in examples/amf for both SWF and JS.  I don't think I
>> >>had
>> >> to touch the JS code in amf.js.  That's better than I was expecting.
>> >>Am I
>> >> not doing something right or is there some other problem that needs
>> >> solving?
>> >>
>> >> Some observations along the way:
>> >>
>> >> I was able to talk to the server in SWF code just by using
>> >> NetConnection.call and passing in CommandMessages and
>>RemotingMessages,
>> >> but the amf.js code seems to be sending an ActionMessage wrapped
>>around
>> >> the CommandMessage and RemotingMessage.  Is that wrapping what
>> >> NetConnection does?
>> >>
>> >> I'm tempted to try to refactor amf.js into several AS classes.  Is
>>that
>> >> worth doing or are there bigger fish to fry?
>> >>
>> >> The amf.js code includes a Promise implementation.  If we refactor to
>> >>AS,
>> >> should we try to use promises or make the API more compatible with
>> >>regular
>> >> Flex?  I'm leaning towards compatibility with regular Flex.
>> >>
>> >> Thoughts?
>> >> -Alex
>> >>
>> >> On 8/21/17, 11:02 AM, "Harbs" <[hidden email]
>> >> > wrote:
>> >>
>> >> >There’s probably an advantage to converting it to FlexJS. You could
>> >> >probably leverage BinaryData for some of the functionality.
>> >> >
>> >> >You can also create typedefs if you want.
>> >> >
>> >> >> On Aug 21, 2017, at 8:53 PM, PKumar <[hidden email]
>> >> > wrote:
>> >> >>
>> >> >> Alex,
>> >> >>
>> >> >> As per my analysis & testing, AMFJS supports following features:
>> >> >>
>> >> >> - All dataType serialization & deserialization support including
>> >> >>Object ,
>> >> >> Vector
>> >> >> -  Connection with BlazeDS
>> >> >> - Conection with AMFPHP
>> >> >> -  Class Mapping Support using Alias Name & Class
>> >> >> -   Inbuilt support for sending AMF request  & response
>> >> >>
>> >> >> I also checked James ward implementation but that does  not
>>support
>> >> >>vector
>> >> >> and blazeds connectivity.
>> >> >>
>> >> >> I prepared  a demo for class mapping and blazeDs connection. If
>>you
>> >> >>want to
>> >> >> check, please let me know. I will share on github.
>> >> >>
>> >> >> one query i want  to ask , can we convert this amfJS library to
>> >>FlexJS
>> >> >> Typedef  just like createJS library?
>> >> >>
>> >> >>
>> >> >> Regards,
>> >> >> Prashant
>> >> >>
>> >> >>
>> >> >>
>> >> >> -
>> >> >> Regards,
>> >> >> Prashant
>> >> >> --
>> >> >> View this message in context:
>> >> >>https://na01.safelinks.protection.outlook.com/?url=
>> >> http%3A%2F%2Fapache-fl
>> >>
>> 
>>ex-users.246.n4.nabble.com%2FRemote-object-for-Flex-JS-tp15510p15
>>78
>>
>> 2.
>> >>
>> >>
>> 
>>html=02%7C01%7C%7C1af098eb84194e4a169c08d4e8bebf0f%7Cfa7b1b5a7b3
>>44
>>
>> 38
>> >>
>> >>
>> 
>>794aed2c178decee1%7C0%7C0%7C636389353321386860=9Vgilc%2FEEN6eQE
>>Gj
>>
>> Dw
>> >>
>> >> >>mmQV8N952XqBSbgweg1VQ41g4%3D=0
>> >> >> Sent from the Apache Flex Users mailing list archive at
>>Nabble.com.
>> >> >
>> >>
>> >>
>> >>
>> >> --
>> >> If you reply to this email, your message will be added to the
>> discussion
>> >> below:
>> >>
>> >>https://na01.safelinks.protection.outlook.com/?url=
>> http%3A%2F%2Fapache-fl
>> 

Re: Remote object for Flex JS

2017-08-23 Thread PKumar
Really great Alex,  if you  need my help in testing  or creating demo. Do
please let me know.

On 23-Aug-2017 9:46 PM, "Alex Harui-2 [via Apache Flex Users]" <
ml+s246n1580...@n4.nabble.com> wrote:

> Hi Prashant,
>
> Yes, the RemoteObjectAMFTest only tries to send a String.  To handle true
> ValueObjects we would need to leverage the amfjs class mapping.  I added
> code to the compiler to generate a map for the [RemoteClass] metadata but
> I didn't hook that up on the JS side yet.  It sounds like the interest is
> in backporting amfjs to AS and make the API similar to regular Flex.  In
> that case, I will refactor the amfjs class map to use the one in our
> Reflection library.
>
> -Alex
>
> On 8/23/17, 9:08 AM, "PKumar" <[hidden email]
> > wrote:
>
> >Alex,
> >
> >It will really great, if this works same or mostly similar as regular
> Flex
> >SDK.
> >
> >One more point on amfJS library , it also supports class mapping. It has
> >one method *registerClasses* that can be used for Java class to flex
> >mapping.
> >
> >On 23-Aug-2017 11:12 AM, "Alex Harui-2 [via Apache Flex Users]" <
> >[hidden email] >
> wrote:
> >
> >> So, I played around with AMF today, adding SWF code for RemoteObject.
> >>For
> >> me, the RemoteObjectAMFTest in examples/flexjs is working against the
> >> SampleAmfWebApp in examples/amf for both SWF and JS.  I don't think I
> >>had
> >> to touch the JS code in amf.js.  That's better than I was expecting.
> >>Am I
> >> not doing something right or is there some other problem that needs
> >> solving?
> >>
> >> Some observations along the way:
> >>
> >> I was able to talk to the server in SWF code just by using
> >> NetConnection.call and passing in CommandMessages and RemotingMessages,
> >> but the amf.js code seems to be sending an ActionMessage wrapped around
> >> the CommandMessage and RemotingMessage.  Is that wrapping what
> >> NetConnection does?
> >>
> >> I'm tempted to try to refactor amf.js into several AS classes.  Is that
> >> worth doing or are there bigger fish to fry?
> >>
> >> The amf.js code includes a Promise implementation.  If we refactor to
> >>AS,
> >> should we try to use promises or make the API more compatible with
> >>regular
> >> Flex?  I'm leaning towards compatibility with regular Flex.
> >>
> >> Thoughts?
> >> -Alex
> >>
> >> On 8/21/17, 11:02 AM, "Harbs" <[hidden email]
> >> > wrote:
> >>
> >> >There’s probably an advantage to converting it to FlexJS. You could
> >> >probably leverage BinaryData for some of the functionality.
> >> >
> >> >You can also create typedefs if you want.
> >> >
> >> >> On Aug 21, 2017, at 8:53 PM, PKumar <[hidden email]
> >> > wrote:
> >> >>
> >> >> Alex,
> >> >>
> >> >> As per my analysis & testing, AMFJS supports following features:
> >> >>
> >> >> - All dataType serialization & deserialization support including
> >> >>Object ,
> >> >> Vector
> >> >> -  Connection with BlazeDS
> >> >> - Conection with AMFPHP
> >> >> -  Class Mapping Support using Alias Name & Class
> >> >> -   Inbuilt support for sending AMF request  & response
> >> >>
> >> >> I also checked James ward implementation but that does  not support
> >> >>vector
> >> >> and blazeds connectivity.
> >> >>
> >> >> I prepared  a demo for class mapping and blazeDs connection. If  you
> >> >>want to
> >> >> check, please let me know. I will share on github.
> >> >>
> >> >> one query i want  to ask , can we convert this amfJS library to
> >>FlexJS
> >> >> Typedef  just like createJS library?
> >> >>
> >> >>
> >> >> Regards,
> >> >> Prashant
> >> >>
> >> >>
> >> >>
> >> >> -
> >> >> Regards,
> >> >> Prashant
> >> >> --
> >> >> View this message in context:
> >> >>https://na01.safelinks.protection.outlook.com/?url=
> >> http%3A%2F%2Fapache-fl
> >>
> ex-users.246.n4.nabble.com%2FRemote-object-for-Flex-JS-tp15510p1578
>
> 2.
> >>
> >>
> html=02%7C01%7C%7C1af098eb84194e4a169c08d4e8bebf0f%7Cfa7b1b5a7b344
>
> 38
> >>
> >>
> 794aed2c178decee1%7C0%7C0%7C636389353321386860=9Vgilc%2FEEN6eQEGj
>
> Dw
> >>
> >> >>mmQV8N952XqBSbgweg1VQ41g4%3D=0
> >> >> Sent from the Apache Flex Users mailing list archive at Nabble.com.
> >> >
> >>
> >>
> >>
> >> --
> >> If you reply to this email, your message will be added to the
> discussion
> >> below:
> >>
> >>https://na01.safelinks.protection.outlook.com/?url=
> http%3A%2F%2Fapache-fl
> >>ex-users.246.n4.nabble.com%2FRemote-object-for-Flex-JS-=02%7C01%
>
> >>7C%7C3a1ce1deff3f47dff8ef08d4ea413522%7Cfa7b1b5a7b34438794aed2c178decee1%
>
> >>7C0%7C0%7C636391013164618149=%2FOcSNyohTV1%2FJaKe%2BgW%2BHspE%2FV%2
>
> >>FtaoyEdCq2YOzUmq4%3D=0
> >> tp15510p15798.html
> >> To start a new topic under Apache Flex Users, email
> >> [hidden email] 
> >> To unsubscribe from 

Re: Remote object for Flex JS

2017-08-23 Thread Alex Harui
Hi Prashant,

Yes, the RemoteObjectAMFTest only tries to send a String.  To handle true
ValueObjects we would need to leverage the amfjs class mapping.  I added
code to the compiler to generate a map for the [RemoteClass] metadata but
I didn't hook that up on the JS side yet.  It sounds like the interest is
in backporting amfjs to AS and make the API similar to regular Flex.  In
that case, I will refactor the amfjs class map to use the one in our
Reflection library.

-Alex

On 8/23/17, 9:08 AM, "PKumar"  wrote:

>Alex,
>
>It will really great, if this works same or mostly similar as regular Flex
>SDK.
>
>One more point on amfJS library , it also supports class mapping. It has
>one method *registerClasses* that can be used for Java class to flex
>mapping.
>
>On 23-Aug-2017 11:12 AM, "Alex Harui-2 [via Apache Flex Users]" <
>ml+s246n15798...@n4.nabble.com> wrote:
>
>> So, I played around with AMF today, adding SWF code for RemoteObject.
>>For
>> me, the RemoteObjectAMFTest in examples/flexjs is working against the
>> SampleAmfWebApp in examples/amf for both SWF and JS.  I don't think I
>>had
>> to touch the JS code in amf.js.  That's better than I was expecting.
>>Am I
>> not doing something right or is there some other problem that needs
>> solving?
>>
>> Some observations along the way:
>>
>> I was able to talk to the server in SWF code just by using
>> NetConnection.call and passing in CommandMessages and RemotingMessages,
>> but the amf.js code seems to be sending an ActionMessage wrapped around
>> the CommandMessage and RemotingMessage.  Is that wrapping what
>> NetConnection does?
>>
>> I'm tempted to try to refactor amf.js into several AS classes.  Is that
>> worth doing or are there bigger fish to fry?
>>
>> The amf.js code includes a Promise implementation.  If we refactor to
>>AS,
>> should we try to use promises or make the API more compatible with
>>regular
>> Flex?  I'm leaning towards compatibility with regular Flex.
>>
>> Thoughts?
>> -Alex
>>
>> On 8/21/17, 11:02 AM, "Harbs" <[hidden email]
>> > wrote:
>>
>> >There’s probably an advantage to converting it to FlexJS. You could
>> >probably leverage BinaryData for some of the functionality.
>> >
>> >You can also create typedefs if you want.
>> >
>> >> On Aug 21, 2017, at 8:53 PM, PKumar <[hidden email]
>> > wrote:
>> >>
>> >> Alex,
>> >>
>> >> As per my analysis & testing, AMFJS supports following features:
>> >>
>> >> - All dataType serialization & deserialization support including
>> >>Object ,
>> >> Vector
>> >> -  Connection with BlazeDS
>> >> - Conection with AMFPHP
>> >> -  Class Mapping Support using Alias Name & Class
>> >> -   Inbuilt support for sending AMF request  & response
>> >>
>> >> I also checked James ward implementation but that does  not support
>> >>vector
>> >> and blazeds connectivity.
>> >>
>> >> I prepared  a demo for class mapping and blazeDs connection. If  you
>> >>want to
>> >> check, please let me know. I will share on github.
>> >>
>> >> one query i want  to ask , can we convert this amfJS library to
>>FlexJS
>> >> Typedef  just like createJS library?
>> >>
>> >>
>> >> Regards,
>> >> Prashant
>> >>
>> >>
>> >>
>> >> -
>> >> Regards,
>> >> Prashant
>> >> --
>> >> View this message in context:
>> >>https://na01.safelinks.protection.outlook.com/?url=
>> http%3A%2F%2Fapache-fl
>> 
ex-users.246.n4.nabble.com%2FRemote-object-for-Flex-JS-tp15510p1578
2.
>>
>> 
html=02%7C01%7C%7C1af098eb84194e4a169c08d4e8bebf0f%7Cfa7b1b5a7b344
38
>>
>> 
794aed2c178decee1%7C0%7C0%7C636389353321386860=9Vgilc%2FEEN6eQEGj
Dw
>>
>> >>mmQV8N952XqBSbgweg1VQ41g4%3D=0
>> >> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>> >
>>
>>
>>
>> --
>> If you reply to this email, your message will be added to the discussion
>> below:
>> 
>>https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-fl
>>ex-users.246.n4.nabble.com%2FRemote-object-for-Flex-JS-=02%7C01%
>>7C%7C3a1ce1deff3f47dff8ef08d4ea413522%7Cfa7b1b5a7b34438794aed2c178decee1%
>>7C0%7C0%7C636391013164618149=%2FOcSNyohTV1%2FJaKe%2BgW%2BHspE%2FV%2
>>FtaoyEdCq2YOzUmq4%3D=0
>> tp15510p15798.html
>> To start a new topic under Apache Flex Users, email
>> ml+s246n1...@n4.nabble.com
>> To unsubscribe from Apache Flex Users, click here
>> 
>>>lex-users.246.n4.nabble.com%2Ftemplate%2FNamlServlet.jtp%3Fmacro%3Dun
>>subscribe_by_code%26node%3D1%26code%3DcHJhc2hha3VtYXJAZ21haWwuY29tfDF8LTU
>>0MTcyMzE2NA=02%7C01%7C%7C3a1ce1deff3f47dff8ef08d4ea413522%7Cfa7b1b5a
>>7b34438794aed2c178decee1%7C0%7C0%7C636391013164618149=oG9TQOL2WHDIm
>>7ixmXea4gFCoUw4j8b0HUsYOw7f4Pk%3D=0==>
>> .
>> NAML
>> 
>>

Re: Remote object for Flex JS

2017-08-23 Thread PKumar
Alex,

It will really great, if this works same or mostly similar as regular Flex
SDK.

One more point on amfJS library , it also supports class mapping. It has
one method *registerClasses* that can be used for Java class to flex
mapping.

On 23-Aug-2017 11:12 AM, "Alex Harui-2 [via Apache Flex Users]" <
ml+s246n15798...@n4.nabble.com> wrote:

> So, I played around with AMF today, adding SWF code for RemoteObject.  For
> me, the RemoteObjectAMFTest in examples/flexjs is working against the
> SampleAmfWebApp in examples/amf for both SWF and JS.  I don't think I had
> to touch the JS code in amf.js.  That's better than I was expecting.  Am I
> not doing something right or is there some other problem that needs
> solving?
>
> Some observations along the way:
>
> I was able to talk to the server in SWF code just by using
> NetConnection.call and passing in CommandMessages and RemotingMessages,
> but the amf.js code seems to be sending an ActionMessage wrapped around
> the CommandMessage and RemotingMessage.  Is that wrapping what
> NetConnection does?
>
> I'm tempted to try to refactor amf.js into several AS classes.  Is that
> worth doing or are there bigger fish to fry?
>
> The amf.js code includes a Promise implementation.  If we refactor to AS,
> should we try to use promises or make the API more compatible with regular
> Flex?  I'm leaning towards compatibility with regular Flex.
>
> Thoughts?
> -Alex
>
> On 8/21/17, 11:02 AM, "Harbs" <[hidden email]
> > wrote:
>
> >There’s probably an advantage to converting it to FlexJS. You could
> >probably leverage BinaryData for some of the functionality.
> >
> >You can also create typedefs if you want.
> >
> >> On Aug 21, 2017, at 8:53 PM, PKumar <[hidden email]
> > wrote:
> >>
> >> Alex,
> >>
> >> As per my analysis & testing, AMFJS supports following features:
> >>
> >> - All dataType serialization & deserialization support including
> >>Object ,
> >> Vector
> >> -  Connection with BlazeDS
> >> - Conection with AMFPHP
> >> -  Class Mapping Support using Alias Name & Class
> >> -   Inbuilt support for sending AMF request  & response
> >>
> >> I also checked James ward implementation but that does  not support
> >>vector
> >> and blazeds connectivity.
> >>
> >> I prepared  a demo for class mapping and blazeDs connection. If  you
> >>want to
> >> check, please let me know. I will share on github.
> >>
> >> one query i want  to ask , can we convert this amfJS library to  FlexJS
> >> Typedef  just like createJS library?
> >>
> >>
> >> Regards,
> >> Prashant
> >>
> >>
> >>
> >> -
> >> Regards,
> >> Prashant
> >> --
> >> View this message in context:
> >>https://na01.safelinks.protection.outlook.com/?url=
> http%3A%2F%2Fapache-fl
> >>ex-users.246.n4.nabble.com%2FRemote-object-for-Flex-JS-tp15510p15782.
>
> >>html=02%7C01%7C%7C1af098eb84194e4a169c08d4e8bebf0f%7Cfa7b1b5a7b34438
>
> >>794aed2c178decee1%7C0%7C0%7C636389353321386860=9Vgilc%2FEEN6eQEGjDw
>
> >>mmQV8N952XqBSbgweg1VQ41g4%3D=0
> >> Sent from the Apache Flex Users mailing list archive at Nabble.com.
> >
>
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-
> tp15510p15798.html
> To start a new topic under Apache Flex Users, email
> ml+s246n1...@n4.nabble.com
> To unsubscribe from Apache Flex Users, click here
> 
> .
> NAML
> 
>




-
Regards,
Prashant
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15803.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Re: Remote object for Flex JS

2017-08-23 Thread Fréderic Cox
Great Alex, thanks for looking into this.
I would also lean towards compatibility with regular Flex.

2017-08-23 7:42 GMT+02:00 :

> Bonjour,
>
> En congés jusqu'au 4 septembre, je prendrais connaissance de votre message
> à mon retour.
>
> Cordialement,
>
> Vincent/AFTER24
>
>
>
>


Re: Remote object for Flex JS

2017-08-23 Thread Piotr Zarzycki
Hi Alex,

Thank you! I would vote for getting API as close as it was in an old Flex.

Piotr

2017-08-23 7:41 GMT+02:00 Alex Harui :

> So, I played around with AMF today, adding SWF code for RemoteObject.  For
> me, the RemoteObjectAMFTest in examples/flexjs is working against the
> SampleAmfWebApp in examples/amf for both SWF and JS.  I don't think I had
> to touch the JS code in amf.js.  That's better than I was expecting.  Am I
> not doing something right or is there some other problem that needs
> solving?
>
> Some observations along the way:
>
> I was able to talk to the server in SWF code just by using
> NetConnection.call and passing in CommandMessages and RemotingMessages,
> but the amf.js code seems to be sending an ActionMessage wrapped around
> the CommandMessage and RemotingMessage.  Is that wrapping what
> NetConnection does?
>
> I'm tempted to try to refactor amf.js into several AS classes.  Is that
> worth doing or are there bigger fish to fry?
>
> The amf.js code includes a Promise implementation.  If we refactor to AS,
> should we try to use promises or make the API more compatible with regular
> Flex?  I'm leaning towards compatibility with regular Flex.
>
> Thoughts?
> -Alex
>
> On 8/21/17, 11:02 AM, "Harbs"  wrote:
>
> >There’s probably an advantage to converting it to FlexJS. You could
> >probably leverage BinaryData for some of the functionality.
> >
> >You can also create typedefs if you want.
> >
> >> On Aug 21, 2017, at 8:53 PM, PKumar  wrote:
> >>
> >> Alex,
> >>
> >> As per my analysis & testing, AMFJS supports following features:
> >>
> >> - All dataType serialization & deserialization support including
> >>Object ,
> >> Vector
> >> -  Connection with BlazeDS
> >> - Conection with AMFPHP
> >> -  Class Mapping Support using Alias Name & Class
> >> -   Inbuilt support for sending AMF request  & response
> >>
> >> I also checked James ward implementation but that does  not support
> >>vector
> >> and blazeds connectivity.
> >>
> >> I prepared  a demo for class mapping and blazeDs connection. If  you
> >>want to
> >> check, please let me know. I will share on github.
> >>
> >> one query i want  to ask , can we convert this amfJS library to  FlexJS
> >> Typedef  just like createJS library?
> >>
> >>
> >> Regards,
> >> Prashant
> >>
> >>
> >>
> >> -
> >> Regards,
> >> Prashant
> >> --
> >> View this message in context:
> >>https://na01.safelinks.protection.outlook.com/?url=
> http%3A%2F%2Fapache-fl
> >>ex-users.246.n4.nabble.com%2FRemote-object-for-Flex-
> JS-tp15510p15782.
> >>html=02%7C01%7C%7C1af098eb84194e4a169c08d4e8be
> bf0f%7Cfa7b1b5a7b34438
> >>794aed2c178decee1%7C0%7C0%7C636389353321386860=
> 9Vgilc%2FEEN6eQEGjDw
> >>mmQV8N952XqBSbgweg1VQ41g4%3D=0
> >> Sent from the Apache Flex Users mailing list archive at Nabble.com.
> >
>
>


Re: Re: Remote object for Flex JS

2017-08-22 Thread vincent
Bonjour,

En congés jusqu'au 4 septembre, je prendrais connaissance de votre message à 
mon retour.

Cordialement,

Vincent/AFTER24





Re: Remote object for Flex JS

2017-08-22 Thread Alex Harui
So, I played around with AMF today, adding SWF code for RemoteObject.  For
me, the RemoteObjectAMFTest in examples/flexjs is working against the
SampleAmfWebApp in examples/amf for both SWF and JS.  I don't think I had
to touch the JS code in amf.js.  That's better than I was expecting.  Am I
not doing something right or is there some other problem that needs
solving?

Some observations along the way:

I was able to talk to the server in SWF code just by using
NetConnection.call and passing in CommandMessages and RemotingMessages,
but the amf.js code seems to be sending an ActionMessage wrapped around
the CommandMessage and RemotingMessage.  Is that wrapping what
NetConnection does?

I'm tempted to try to refactor amf.js into several AS classes.  Is that
worth doing or are there bigger fish to fry?

The amf.js code includes a Promise implementation.  If we refactor to AS,
should we try to use promises or make the API more compatible with regular
Flex?  I'm leaning towards compatibility with regular Flex.

Thoughts?
-Alex

On 8/21/17, 11:02 AM, "Harbs"  wrote:

>There’s probably an advantage to converting it to FlexJS. You could
>probably leverage BinaryData for some of the functionality.
>
>You can also create typedefs if you want.
>
>> On Aug 21, 2017, at 8:53 PM, PKumar  wrote:
>> 
>> Alex,
>> 
>> As per my analysis & testing, AMFJS supports following features:
>> 
>> - All dataType serialization & deserialization support including
>>Object ,
>> Vector
>> -  Connection with BlazeDS
>> - Conection with AMFPHP
>> -  Class Mapping Support using Alias Name & Class
>> -   Inbuilt support for sending AMF request  & response
>> 
>> I also checked James ward implementation but that does  not support
>>vector
>> and blazeds connectivity.
>> 
>> I prepared  a demo for class mapping and blazeDs connection. If  you
>>want to 
>> check, please let me know. I will share on github.
>> 
>> one query i want  to ask , can we convert this amfJS library to  FlexJS
>> Typedef  just like createJS library?
>> 
>> 
>> Regards,
>> Prashant
>> 
>> 
>> 
>> -
>> Regards,
>> Prashant
>> --
>> View this message in context:
>>https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-fl
>>ex-users.246.n4.nabble.com%2FRemote-object-for-Flex-JS-tp15510p15782.
>>html=02%7C01%7C%7C1af098eb84194e4a169c08d4e8bebf0f%7Cfa7b1b5a7b34438
>>794aed2c178decee1%7C0%7C0%7C636389353321386860=9Vgilc%2FEEN6eQEGjDw
>>mmQV8N952XqBSbgweg1VQ41g4%3D=0
>> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>



Re: Remote object for Flex JS

2017-08-21 Thread Harbs
I think rewriting it in ActionScript makes sense.

> On Aug 21, 2017, at 10:26 PM, piotrz  wrote:
> 
> Alex,
> 
> I was thinking about using those JS library wrap up it same as we did with
> MDL. SWF part write on our own, but I have no idea how hard it can be.
> 
> Thanks,
> Piotr
> 
> 
> 
> -
> Apache Flex PMC
> piotrzarzyck...@gmail.com
> --
> View this message in context: 
> http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15786.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.



Re: Remote object for Flex JS

2017-08-21 Thread piotrz
Alex,

I was thinking about using those JS library wrap up it same as we did with
MDL. SWF part write on our own, but I have no idea how hard it can be.

Thanks,
Piotr



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15786.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-21 Thread Alex Harui
Do you mean we should rewrite amfjs in ActionScript?

Get Outlook for Android<https://aka.ms/ghei36>


From: piotrz <piotrzarzyck...@gmail.com>
Sent: Monday, August 21, 2017 11:04:56 AM
To: users@flex.apache.org
Subject: Re: Remote object for Flex JS

I would go with conversion. We could have our own API, suitable to the needs.
No matter in which direction it will go having AMF on board will be huge
addition.

Piotr



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-flex-users.246.n4.nabble.com%2FRemote-object-for-Flex-JS-tp15510p15784.html=02%7C01%7C%7C06ba328091ff4451091e08d4e8bf7cda%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636389356507672230=k0PObFQ%2BKNslNKbxmNYHLQ6B6Cak6GAAv6ZNUXMkMhU%3D=0
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-21 Thread piotrz
I would go with conversion. We could have our own API, suitable to the needs.
No matter in which direction it will go having AMF on board will be huge
addition.

Piotr



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15784.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-21 Thread Harbs
There’s probably an advantage to converting it to FlexJS. You could probably 
leverage BinaryData for some of the functionality. 

You can also create typedefs if you want.

> On Aug 21, 2017, at 8:53 PM, PKumar  wrote:
> 
> Alex,
> 
> As per my analysis & testing, AMFJS supports following features:
> 
> - All dataType serialization & deserialization support including  Object ,
> Vector
> -  Connection with BlazeDS
> - Conection with AMFPHP
> -  Class Mapping Support using Alias Name & Class
> -   Inbuilt support for sending AMF request  & response
> 
> I also checked James ward implementation but that does  not support vector
> and blazeds connectivity. 
> 
> I prepared  a demo for class mapping and blazeDs connection. If  you want to 
> check, please let me know. I will share on github.
> 
> one query i want  to ask , can we convert this amfJS library to  FlexJS
> Typedef  just like createJS library? 
> 
> 
> Regards,
> Prashant
> 
> 
> 
> -
> Regards,
> Prashant
> --
> View this message in context: 
> http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15782.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.



Re: Remote object for Flex JS

2017-08-21 Thread PKumar
Alex,

As per my analysis & testing, AMFJS supports following features:

- All dataType serialization & deserialization support including  Object ,
Vector
-  Connection with BlazeDS
- Conection with AMFPHP
-  Class Mapping Support using Alias Name & Class
-   Inbuilt support for sending AMF request  & response

I also checked James ward implementation but that does  not support vector
and blazeds connectivity. 

I prepared  a demo for class mapping and blazeDs connection. If  you want to 
check, please let me know. I will share on github.

one query i want  to ask , can we convert this amfJS library to  FlexJS
Typedef  just like createJS library? 


Regards,
Prashant



-
Regards,
Prashant
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15782.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Re: Remote object for Flex JS

2017-08-20 Thread vincent
Bonjour,

En congés jusqu'au 4 septembre, je prendrais connaissance de votre message à 
mon retour.

Cordialement,

Vincent/AFTER24





Re: Remote object for Flex JS

2017-08-20 Thread Alex Harui
Hi Prashant.

What do we know about amf.js?  Does it mostly work?  The README only
mentions sending and receiving packet headers.  Do we need more than that?
  If it mostly works, then have we talked to the author about donating the
code?

Did we rule out using James Ward's AMF implementation?

Or do folks think we should just write our own?

Thanks,
-Alex

On 8/19/17, 9:10 AM, "PKumar"  wrote:

>Alex,
>
>Current implementation of AMF is dependent on third party JavaScript
>library.  If that JS library changes in future then FlexJS AMF feature may
>impact. So can we  implement same type of library in flexJS only?
>Following is the third party library URL:
>
>https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.co
>m%2Femilkm%2Famfjs=02%7C01%7C%7Ce45b6cdea1224f14a0e008d4e71d2f0c%7Cfa
>7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636387559905269418=onanCVBE
>Ytv9Pu8BvXf8KCsjuh9y7Gh1w77TdR8EfnY%3D=0
>
>Good part is that this library is licensed under Apache License 2.0
>
>
>
>-
>Regards,
>Prashant
>--
>View this message in context:
>https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-fle
>x-users.246.n4.nabble.com%2FRemote-object-for-Flex-JS-tp15510p15775.ht
>ml=02%7C01%7C%7Ce45b6cdea1224f14a0e008d4e71d2f0c%7Cfa7b1b5a7b34438794
>aed2c178decee1%7C0%7C0%7C636387559905269418=o%2Btyo%2BXIwvztKVam2w2L
>hybYlRTOFNTNgbSAy71PSIo%3D=0
>Sent from the Apache Flex Users mailing list archive at Nabble.com.



Re: Remote object for Flex JS

2017-08-19 Thread PKumar
Alex,

Current implementation of AMF is dependent on third party JavaScript
library.  If that JS library changes in future then FlexJS AMF feature may
impact. So can we  implement same type of library in flexJS only?
Following is the third party library URL:

https://github.com/emilkm/amfjs

Good part is that this library is licensed under Apache License 2.0 



-
Regards,
Prashant
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15775.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-19 Thread piotrz
Hi Alex,

I think it would be good if you could take a look into branch feature/amf -
I don't remember what Carlos did there, but this branch is failing for some
reason. 

I just refreshed it by newest changes from develop. It has branches in
Falcon, typedefs and it's building as pipeline [1].

I will try to ping Carlos off the list.

[1] https://goo.gl/fh3v1L

Thanks, 
Piotr 



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15774.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-18 Thread Alex Harui
Hi,

I think I have time to help with AMF for JS if help is needed.
Let me know.

Thanks,
-Alex

On 8/16/17, 1:05 AM, "Fréderic Cox"  wrote:

>Ok thanks for the update Prashant!
>
>On Tue, Aug 15, 2017 at 6:33 PM, PKumar  wrote:
>
>> Hi Frederic,
>>
>> I debug the JavaScript API and found that issue. amfphp  service sending
>> the
>> object header and  amf JavaScript API does not support  object in
>>header.
>> So  getting the following exception,
>>
>> "Only string header data supported."
>>
>> i will setup amfphp ant my side and analyze  it further.
>>
>> Regards,
>> Prashant
>>
>>
>>
>> -
>> Regards,
>> Prashant
>> --
>> View this message in context: http://apache-flex-users.
>> 246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15751.html
>> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>>



Re: Remote object for Flex JS

2017-08-16 Thread Fréderic Cox
Ok thanks for the update Prashant!

On Tue, Aug 15, 2017 at 6:33 PM, PKumar  wrote:

> Hi Frederic,
>
> I debug the JavaScript API and found that issue. amfphp  service sending
> the
> object header and  amf JavaScript API does not support  object in header.
> So  getting the following exception,
>
> "Only string header data supported."
>
> i will setup amfphp ant my side and analyze  it further.
>
> Regards,
> Prashant
>
>
>
> -
> Regards,
> Prashant
> --
> View this message in context: http://apache-flex-users.
> 246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15751.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>


Re: Remote object for Flex JS

2017-08-13 Thread piotrz
Hi,

Branch with initial AMF support has been refreshed by newest code. [1]

[1] https://github.com/apache/flex-asjs/tree/feature/amf

Thanks,
Piotr



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15728.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-07 Thread PKumar
I will create a Jira for this.

On 07-Aug-2017 8:26 PM, "Alex Harui-2 [via Apache Flex Users]" <
ml+s246n15621...@n4.nabble.com> wrote:

> Can someone create a JIRA and put in a test case against a working
> endpoint?  It might make it easier for others to try and help.
>
> Thanks,
> -Alex
>
> On 8/7/17, 12:39 AM, "Fréderic Cox" <[hidden email]
> > wrote:
>
> >Could it have anything to do with the C extension plug-in for AMFPHP? Or
> >compression?
> >
> >On Mon, Aug 7, 2017 at 9:39 AM, Fréderic Cox <[hidden email]
> >
> >wrote:
> >
> >> Ok thanks for the update Prashant! If there is anything I can help with
> >> please let me know.
> >>
> >> On Sun, Aug 6, 2017 at 3:52 PM, PKumar <[hidden email]
> > wrote:
> >>
> >>> As per my analysis,  this issue is related to JAVAScript api  over
> >>>that i
> >>> developed the  FlecJS wrapper code to call AMF end points.
> >>>
> >>> I tested this API with BlazeDS java end point and it  really works. I
> >>>am
> >>> further looking the java script API to fix this issue.
> >>>
> >>> Regards,
> >>> Prashant
> >>>
> >>>
> >>>
> >>> -
> >>> Regards,
> >>> Prashant
> >>> --
> >>> View this message in context:
> >>>https://na01.safelinks.protection.outlook.com/?url=
> http%3A%2F%2Fapache-f
> >>>lex-users.2=02%7C01%7C%7Cd2c9e8c0b0224c553eeb08d4dd67804a%7Cfa7
>
> >>>b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63637688493162=fK9cB8X
>
> >>>UCMHqPW4xnPsKaKRXjucuXn2ceefR3PTnAKA%3D=0
> >>> 46.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15613.html
> >>> Sent from the Apache Flex Users mailing list archive at Nabble.com.
> >>>
> >>
> >>
>
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-
> tp15510p15621.html
> To start a new topic under Apache Flex Users, email
> ml+s246n1...@n4.nabble.com
> To unsubscribe from Apache Flex Users, click here
> 
> .
> NAML
> 
>




-
Regards,
Prashant
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15625.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-07 Thread Alex Harui
Can someone create a JIRA and put in a test case against a working
endpoint?  It might make it easier for others to try and help.

Thanks,
-Alex

On 8/7/17, 12:39 AM, "Fréderic Cox"  wrote:

>Could it have anything to do with the C extension plug-in for AMFPHP? Or
>compression?
>
>On Mon, Aug 7, 2017 at 9:39 AM, Fréderic Cox 
>wrote:
>
>> Ok thanks for the update Prashant! If there is anything I can help with
>> please let me know.
>>
>> On Sun, Aug 6, 2017 at 3:52 PM, PKumar  wrote:
>>
>>> As per my analysis,  this issue is related to JAVAScript api  over
>>>that i
>>> developed the  FlecJS wrapper code to call AMF end points.
>>>
>>> I tested this API with BlazeDS java end point and it  really works. I
>>>am
>>> further looking the java script API to fix this issue.
>>>
>>> Regards,
>>> Prashant
>>>
>>>
>>>
>>> -
>>> Regards,
>>> Prashant
>>> --
>>> View this message in context:
>>>https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-f
>>>lex-users.2=02%7C01%7C%7Cd2c9e8c0b0224c553eeb08d4dd67804a%7Cfa7
>>>b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63637688493162=fK9cB8X
>>>UCMHqPW4xnPsKaKRXjucuXn2ceefR3PTnAKA%3D=0
>>> 46.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15613.html
>>> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>>>
>>
>>



Re: Remote object for Flex JS

2017-08-07 Thread Fréderic Cox
Could it have anything to do with the C extension plug-in for AMFPHP? Or
compression?

On Mon, Aug 7, 2017 at 9:39 AM, Fréderic Cox  wrote:

> Ok thanks for the update Prashant! If there is anything I can help with
> please let me know.
>
> On Sun, Aug 6, 2017 at 3:52 PM, PKumar  wrote:
>
>> As per my analysis,  this issue is related to JAVAScript api  over that i
>> developed the  FlecJS wrapper code to call AMF end points.
>>
>> I tested this API with BlazeDS java end point and it  really works. I am
>> further looking the java script API to fix this issue.
>>
>> Regards,
>> Prashant
>>
>>
>>
>> -
>> Regards,
>> Prashant
>> --
>> View this message in context: http://apache-flex-users.2
>> 46.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15613.html
>> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>>
>
>


Re: Remote object for Flex JS

2017-08-07 Thread Fréderic Cox
Ok thanks for the update Prashant! If there is anything I can help with
please let me know.

On Sun, Aug 6, 2017 at 3:52 PM, PKumar  wrote:

> As per my analysis,  this issue is related to JAVAScript api  over that i
> developed the  FlecJS wrapper code to call AMF end points.
>
> I tested this API with BlazeDS java end point and it  really works. I am
> further looking the java script API to fix this issue.
>
> Regards,
> Prashant
>
>
>
> -
> Regards,
> Prashant
> --
> View this message in context: http://apache-flex-users.
> 246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15613.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>


Re: Remote object for Flex JS

2017-08-06 Thread PKumar
As per my analysis,  this issue is related to JAVAScript api  over that i
developed the  FlecJS wrapper code to call AMF end points.

I tested this API with BlazeDS java end point and it  really works. I am 
further looking the java script API to fix this issue.

Regards,
Prashant



-
Regards,
Prashant
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15613.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-03 Thread PKumar
I am also getting same issue. I am trying to figure out the cause.

On 03-Aug-2017 2:20 PM, "Fréderic Cox [via Apache Flex Users]" <
ml+s246n15596...@n4.nabble.com> wrote:

> Any luck?
>
> On Tue, Aug 1, 2017 at 8:58 PM, Fréderic Cox <[hidden email]
> > wrote:
>
> > Yes you can use the mentioned URL for testing. You can use the function
> > getCountries in the Geo service
> >
> > Verstuurd vanaf mijn iPhone
> >
> > > Op 1 aug. 2017 om 18:01 heeft PKumar <[hidden email]
> > het
> > volgende geschreven:
> > >
> > > I will  check it and send you sample working code. Can I use the
> > mentioned
> > > URL for testing.
> > >
> > > On 01-Aug-2017 2:19 AM, "Fréderic Cox [via Apache Flex Users]" <
> > > [hidden email] >
> wrote:
> > >
> > >> The error is:
> > >>
> > >> Fault: code: -1000 message: Could not connect to the server. detail:
> > Could
> > >> not reach AMF endpoint. data: null --- Endpoint:
> > >> http://winkelbeheer.cityfashion.be/amfphp/gateway.php (I added the
> URL
> > >> part)
> > >>
> > >> http://winkelbeheer.cityfashion.be/amfphp/gateway.php is a valid
> AMFPHP
> > >> endpoint which works fine in the regular Flex SDK
> > >>
> > >> On Mon, Jul 31, 2017 at 10:45 PM, Fréderic Cox <[hidden email]
> > >> >
> > >> wrote:
> > >>
> > >>> I have tried tonight on getting this to work but it did not work for
> > me.
> > >> I
> > >>> am getting a FaultEvent returned immediately.
> > >>>
> > >>> https://github.com/pkumar-ghub/AMFService is what I used. It did
> not
> > >> work
> > >>> when I added the .swc in my library folder (some errors regarding
> the
> > >>> imports could not be found) but then I copied the source files in my
> > >>> project and could compile.
> > >>>
> > >>> However the FaultEvent is immediately returned. What can I do to
> debug
> > >>> here?
> > >>>
> > >>>
> > >>> On Thu, Jul 27, 2017 at 10:31 AM, Christian Kostenzer <
> > >>> [hidden email] >
>
> > >> wrote:
> > >>>
> >  Thanks - I will look at that and come back to you for setting up
> the
> >  environment.
> > 
> >  Regards
> > 
> >  __
> > 
> >  Mag.(FH) Christian Kostenzer
> >  Gärberbach 1
> >  6020 Innsbruck Land I
> > 
> >  fon: +43 676 3327320 <+43%20676%203327320> <+43%20676%203327320>
> >  fax: +43 810 9554 249195 <+43%20810%209554249195>
> <+43%20810%209554249195>
> >  Email: [hidden email]
> > >> 
> >  Web: www.kostenzer.net
> >  UID: ATU56508014
> > 
> > > Am 27.07.2017 um 09:06 schrieb piotrz <[hidden email]
> > >> >:
> > >
> > > Hi Chris,
> > >
> > > Wow! :) Thank you for interesting in that. Some time ago Carlos
> [1]
> >  started
> > > initial work on that creating separate branch in FlexJS framework
> >  repository
> > > [2]. I encourage you to ask any technical things where to start in
> > >> that
> > > thread. [1].
> > >
> > > In general you will have to work in framework code itself, so I
> would
> > >> be
> > > happy to help you setup environment for that purpose if you
> needed.
> > > I will refresh "amf" branch today with newest code from "develop".
> > >
> > > [1]
> > > http://apache-flex-development.247.n4.nabble.com/FlexJS-
> >  AMF-branch-feature-amf-Starting-the-effort-Special-
> >  Thanks-to-PKumar-td59640.html
> > > [2] https://github.com/apache/flex-asjs/tree/feature/amf
> > >
> > > Thanks,
> > > Piotr
> > >
> > >
> > >
> > >
> > >
> > > -
> > > Apache Flex PMC
> > > [hidden email]  type=node=15577=4>
> > > --
> > > View this message in context: http://apache-flex-users.2
> >  46.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15514.html
> > > Sent from the Apache Flex Users mailing list archive at
> Nabble.com.
> > 
> > 
> > >>>
> > >>
> > >>
> > >> --
> > >> If you reply to this email, your message will be added to the
> discussion
> > >> below:
> > >> http://apache-flex-users.246.n4.nabble.com/Remote-
> > object-for-Flex-JS-
> > >> tp15510p15577.html
> > >> To start a new topic under Apache Flex Users, email
> > >> [hidden email] 
> > >> To unsubscribe from Apache Flex Users, click here
> > >>  > template/NamlServlet.jtp?macro=unsubscribe_by_code=1=
> > cHJhc2hha3VtYXJAZ21haWwuY29tfDF8LTU0MTcyMzE2NA==>
> > >> .
> > >> NAML
> > >>  > template/NamlServlet.jtp?macro=macro_viewer=instant_
> > 

Re: Remote object for Flex JS

2017-08-03 Thread Fréderic Cox
Any luck?

On Tue, Aug 1, 2017 at 8:58 PM, Fréderic Cox  wrote:

> Yes you can use the mentioned URL for testing. You can use the function
> getCountries in the Geo service
>
> Verstuurd vanaf mijn iPhone
>
> > Op 1 aug. 2017 om 18:01 heeft PKumar  het
> volgende geschreven:
> >
> > I will  check it and send you sample working code. Can I use the
> mentioned
> > URL for testing.
> >
> > On 01-Aug-2017 2:19 AM, "Fréderic Cox [via Apache Flex Users]" <
> > ml+s246n15577...@n4.nabble.com> wrote:
> >
> >> The error is:
> >>
> >> Fault: code: -1000 message: Could not connect to the server. detail:
> Could
> >> not reach AMF endpoint. data: null --- Endpoint:
> >> http://winkelbeheer.cityfashion.be/amfphp/gateway.php (I added the URL
> >> part)
> >>
> >> http://winkelbeheer.cityfashion.be/amfphp/gateway.php is a valid AMFPHP
> >> endpoint which works fine in the regular Flex SDK
> >>
> >> On Mon, Jul 31, 2017 at 10:45 PM, Fréderic Cox <[hidden email]
> >> >
> >> wrote:
> >>
> >>> I have tried tonight on getting this to work but it did not work for
> me.
> >> I
> >>> am getting a FaultEvent returned immediately.
> >>>
> >>> https://github.com/pkumar-ghub/AMFService is what I used. It did not
> >> work
> >>> when I added the .swc in my library folder (some errors regarding the
> >>> imports could not be found) but then I copied the source files in my
> >>> project and could compile.
> >>>
> >>> However the FaultEvent is immediately returned. What can I do to debug
> >>> here?
> >>>
> >>>
> >>> On Thu, Jul 27, 2017 at 10:31 AM, Christian Kostenzer <
> >>> [hidden email] >
> >> wrote:
> >>>
>  Thanks - I will look at that and come back to you for setting up the
>  environment.
> 
>  Regards
> 
>  __
> 
>  Mag.(FH) Christian Kostenzer
>  Gärberbach 1
>  6020 Innsbruck Land I
> 
>  fon: +43 676 3327320 <+43%20676%203327320>
>  fax: +43 810 9554 249195 <+43%20810%209554249195>
>  Email: [hidden email]
> >> 
>  Web: www.kostenzer.net
>  UID: ATU56508014
> 
> > Am 27.07.2017 um 09:06 schrieb piotrz <[hidden email]
> >> >:
> >
> > Hi Chris,
> >
> > Wow! :) Thank you for interesting in that. Some time ago Carlos [1]
>  started
> > initial work on that creating separate branch in FlexJS framework
>  repository
> > [2]. I encourage you to ask any technical things where to start in
> >> that
> > thread. [1].
> >
> > In general you will have to work in framework code itself, so I would
> >> be
> > happy to help you setup environment for that purpose if you needed.
> > I will refresh "amf" branch today with newest code from "develop".
> >
> > [1]
> > http://apache-flex-development.247.n4.nabble.com/FlexJS-
>  AMF-branch-feature-amf-Starting-the-effort-Special-
>  Thanks-to-PKumar-td59640.html
> > [2] https://github.com/apache/flex-asjs/tree/feature/amf
> >
> > Thanks,
> > Piotr
> >
> >
> >
> >
> >
> > -
> > Apache Flex PMC
> > [hidden email] 
> > --
> > View this message in context: http://apache-flex-users.2
>  46.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15514.html
> > Sent from the Apache Flex Users mailing list archive at Nabble.com.
> 
> 
> >>>
> >>
> >>
> >> --
> >> If you reply to this email, your message will be added to the discussion
> >> below:
> >> http://apache-flex-users.246.n4.nabble.com/Remote-
> object-for-Flex-JS-
> >> tp15510p15577.html
> >> To start a new topic under Apache Flex Users, email
> >> ml+s246n1...@n4.nabble.com
> >> To unsubscribe from Apache Flex Users, click here
> >>  template/NamlServlet.jtp?macro=unsubscribe_by_code=1=
> cHJhc2hha3VtYXJAZ21haWwuY29tfDF8LTU0MTcyMzE2NA==>
> >> .
> >> NAML
> >>  template/NamlServlet.jtp?macro=macro_viewer=instant_
> html%21nabble%3Aemail.naml=nabble.naml.namespaces.
> BasicNamespace-nabble.view.web.template.NabbleNamespace-
> nabble.view.web.template.NodeNamespace=
> notify_subscribers%21nabble%3Aemail.naml-instant_emails%
> 21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
> >>
> >
> >
> >
> >
> > -
> > Regards,
> > Prashant
> > --
> > View this message in context: http://apache-flex-users.
> 246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15585.html
> > Sent from the Apache Flex Users mailing list archive at Nabble.com.
>


Re: Remote object for Flex JS

2017-08-01 Thread Fréderic Cox
Yes you can use the mentioned URL for testing. You can use the function 
getCountries in the Geo service

Verstuurd vanaf mijn iPhone

> Op 1 aug. 2017 om 18:01 heeft PKumar  het volgende 
> geschreven:
> 
> I will  check it and send you sample working code. Can I use the mentioned
> URL for testing.
> 
> On 01-Aug-2017 2:19 AM, "Fréderic Cox [via Apache Flex Users]" <
> ml+s246n15577...@n4.nabble.com> wrote:
> 
>> The error is:
>> 
>> Fault: code: -1000 message: Could not connect to the server. detail: Could
>> not reach AMF endpoint. data: null --- Endpoint:
>> http://winkelbeheer.cityfashion.be/amfphp/gateway.php (I added the URL
>> part)
>> 
>> http://winkelbeheer.cityfashion.be/amfphp/gateway.php is a valid AMFPHP
>> endpoint which works fine in the regular Flex SDK
>> 
>> On Mon, Jul 31, 2017 at 10:45 PM, Fréderic Cox <[hidden email]
>> >
>> wrote:
>> 
>>> I have tried tonight on getting this to work but it did not work for me.
>> I
>>> am getting a FaultEvent returned immediately.
>>> 
>>> https://github.com/pkumar-ghub/AMFService is what I used. It did not
>> work
>>> when I added the .swc in my library folder (some errors regarding the
>>> imports could not be found) but then I copied the source files in my
>>> project and could compile.
>>> 
>>> However the FaultEvent is immediately returned. What can I do to debug
>>> here?
>>> 
>>> 
>>> On Thu, Jul 27, 2017 at 10:31 AM, Christian Kostenzer <
>>> [hidden email] >
>> wrote:
>>> 
 Thanks - I will look at that and come back to you for setting up the
 environment.
 
 Regards
 
 __
 
 Mag.(FH) Christian Kostenzer
 Gärberbach 1
 6020 Innsbruck Land I
 
 fon: +43 676 3327320 <+43%20676%203327320>
 fax: +43 810 9554 249195 <+43%20810%209554249195>
 Email: [hidden email]
>> 
 Web: www.kostenzer.net
 UID: ATU56508014
 
> Am 27.07.2017 um 09:06 schrieb piotrz <[hidden email]
>> >:
> 
> Hi Chris,
> 
> Wow! :) Thank you for interesting in that. Some time ago Carlos [1]
 started
> initial work on that creating separate branch in FlexJS framework
 repository
> [2]. I encourage you to ask any technical things where to start in
>> that
> thread. [1].
> 
> In general you will have to work in framework code itself, so I would
>> be
> happy to help you setup environment for that purpose if you needed.
> I will refresh "amf" branch today with newest code from "develop".
> 
> [1]
> http://apache-flex-development.247.n4.nabble.com/FlexJS-
 AMF-branch-feature-amf-Starting-the-effort-Special-
 Thanks-to-PKumar-td59640.html
> [2] https://github.com/apache/flex-asjs/tree/feature/amf
> 
> Thanks,
> Piotr
> 
> 
> 
> 
> 
> -
> Apache Flex PMC
> [hidden email] 
> --
> View this message in context: http://apache-flex-users.2
 46.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15514.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
 
 
>>> 
>> 
>> 
>> --
>> If you reply to this email, your message will be added to the discussion
>> below:
>> http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-
>> tp15510p15577.html
>> To start a new topic under Apache Flex Users, email
>> ml+s246n1...@n4.nabble.com
>> To unsubscribe from Apache Flex Users, click here
>> 
>> .
>> NAML
>> 
>> 
> 
> 
> 
> 
> -
> Regards,
> Prashant
> --
> View this message in context: 
> http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15585.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-01 Thread PKumar
I will  check it and send you sample working code. Can I use the mentioned
URL for testing.

On 01-Aug-2017 2:19 AM, "Fréderic Cox [via Apache Flex Users]" <
ml+s246n15577...@n4.nabble.com> wrote:

> The error is:
>
> Fault: code: -1000 message: Could not connect to the server. detail: Could
> not reach AMF endpoint. data: null --- Endpoint:
> http://winkelbeheer.cityfashion.be/amfphp/gateway.php (I added the URL
> part)
>
> http://winkelbeheer.cityfashion.be/amfphp/gateway.php is a valid AMFPHP
> endpoint which works fine in the regular Flex SDK
>
> On Mon, Jul 31, 2017 at 10:45 PM, Fréderic Cox <[hidden email]
> >
> wrote:
>
> > I have tried tonight on getting this to work but it did not work for me.
> I
> > am getting a FaultEvent returned immediately.
> >
> > https://github.com/pkumar-ghub/AMFService is what I used. It did not
> work
> > when I added the .swc in my library folder (some errors regarding the
> > imports could not be found) but then I copied the source files in my
> > project and could compile.
> >
> > However the FaultEvent is immediately returned. What can I do to debug
> > here?
> >
> >
> > On Thu, Jul 27, 2017 at 10:31 AM, Christian Kostenzer <
> > [hidden email] >
> wrote:
> >
> >> Thanks - I will look at that and come back to you for setting up the
> >> environment.
> >>
> >> Regards
> >>
> >> __
> >>
> >> Mag.(FH) Christian Kostenzer
> >> Gärberbach 1
> >> 6020 Innsbruck Land I
> >>
> >> fon: +43 676 3327320 <+43%20676%203327320>
> >> fax: +43 810 9554 249195 <+43%20810%209554249195>
> >> Email: [hidden email]
> 
> >> Web: www.kostenzer.net
> >> UID: ATU56508014
> >>
> >> > Am 27.07.2017 um 09:06 schrieb piotrz <[hidden email]
> >:
> >> >
> >> > Hi Chris,
> >> >
> >> > Wow! :) Thank you for interesting in that. Some time ago Carlos [1]
> >> started
> >> > initial work on that creating separate branch in FlexJS framework
> >> repository
> >> > [2]. I encourage you to ask any technical things where to start in
> that
> >> > thread. [1].
> >> >
> >> > In general you will have to work in framework code itself, so I would
> be
> >> > happy to help you setup environment for that purpose if you needed.
> >> > I will refresh "amf" branch today with newest code from "develop".
> >> >
> >> > [1]
> >> > http://apache-flex-development.247.n4.nabble.com/FlexJS-
> >> AMF-branch-feature-amf-Starting-the-effort-Special-
> >> Thanks-to-PKumar-td59640.html
> >> > [2] https://github.com/apache/flex-asjs/tree/feature/amf
> >> >
> >> > Thanks,
> >> > Piotr
> >> >
> >> >
> >> >
> >> >
> >> >
> >> > -
> >> > Apache Flex PMC
> >> > [hidden email] 
> >> > --
> >> > View this message in context: http://apache-flex-users.2
> >> 46.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15514.html
> >> > Sent from the Apache Flex Users mailing list archive at Nabble.com.
> >>
> >>
> >
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-
> tp15510p15577.html
> To start a new topic under Apache Flex Users, email
> ml+s246n1...@n4.nabble.com
> To unsubscribe from Apache Flex Users, click here
> 
> .
> NAML
> 
>




-
Regards,
Prashant
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15585.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-01 Thread piotrz
I think we don't have it working yet fully with FlexJS. There were some work
done by Carlos in this branch, but I do not know where it is ended.

I will ping him on the dev list to describe where he ended with his job, but
maybe everything is in the thread which I've provided.

Yesterday I've merged code from our develop branch to "amf", so everything
is fresh.

Piotr 



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15583.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-01 Thread Fréderic Cox
I tried it in a FlexJS project. The AMF.js file inclusion also showed correctly 
in index.html in the bin folder

Verstuurd vanaf mijn iPhone

> Op 1 aug. 2017 om 13:17 heeft piotrz  het volgende 
> geschreven:
> 
> Hi Frederic,
> 
> Thanks for trying it. Just one question - did you try use this swc in Flex
> project or some FlexJS project ? I thought that provided library by Prashant
> is for use in FlexJS projects, but maybe I'm wrong.
> 
> Piotr
> 
> 
> 
> -
> Apache Flex PMC
> piotrzarzyck...@gmail.com
> --
> View this message in context: 
> http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15581.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-08-01 Thread piotrz
Hi Frederic,

Thanks for trying it. Just one question - did you try use this swc in Flex
project or some FlexJS project ? I thought that provided library by Prashant
is for use in FlexJS projects, but maybe I'm wrong.

Piotr



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15581.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-07-31 Thread Fréderic Cox
The error is:

Fault: code: -1000 message: Could not connect to the server. detail: Could
not reach AMF endpoint. data: null --- Endpoint:
http://winkelbeheer.cityfashion.be/amfphp/gateway.php (I added the URL part)

http://winkelbeheer.cityfashion.be/amfphp/gateway.php is a valid AMFPHP
endpoint which works fine in the regular Flex SDK

On Mon, Jul 31, 2017 at 10:45 PM, Fréderic Cox 
wrote:

> I have tried tonight on getting this to work but it did not work for me. I
> am getting a FaultEvent returned immediately.
>
> https://github.com/pkumar-ghub/AMFService is what I used. It did not work
> when I added the .swc in my library folder (some errors regarding the
> imports could not be found) but then I copied the source files in my
> project and could compile.
>
> However the FaultEvent is immediately returned. What can I do to debug
> here?
>
>
> On Thu, Jul 27, 2017 at 10:31 AM, Christian Kostenzer <
> christ...@kostenzer.net> wrote:
>
>> Thanks - I will look at that and come back to you for setting up the
>> environment.
>>
>> Regards
>>
>> __
>>
>> Mag.(FH) Christian Kostenzer
>> Gärberbach 1
>> 6020 Innsbruck Land I
>>
>> fon: +43 676 3327320
>> fax: +43 810 9554 249195
>> Email: christ...@kostenzer.net
>> Web: www.kostenzer.net
>> UID: ATU56508014
>>
>> > Am 27.07.2017 um 09:06 schrieb piotrz :
>> >
>> > Hi Chris,
>> >
>> > Wow! :) Thank you for interesting in that. Some time ago Carlos [1]
>> started
>> > initial work on that creating separate branch in FlexJS framework
>> repository
>> > [2]. I encourage you to ask any technical things where to start in that
>> > thread. [1].
>> >
>> > In general you will have to work in framework code itself, so I would be
>> > happy to help you setup environment for that purpose if you needed.
>> > I will refresh "amf" branch today with newest code from "develop".
>> >
>> > [1]
>> > http://apache-flex-development.247.n4.nabble.com/FlexJS-
>> AMF-branch-feature-amf-Starting-the-effort-Special-
>> Thanks-to-PKumar-td59640.html
>> > [2] https://github.com/apache/flex-asjs/tree/feature/amf
>> >
>> > Thanks,
>> > Piotr
>> >
>> >
>> >
>> >
>> >
>> > -
>> > Apache Flex PMC
>> > piotrzarzyck...@gmail.com
>> > --
>> > View this message in context: http://apache-flex-users.2
>> 46.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15514.html
>> > Sent from the Apache Flex Users mailing list archive at Nabble.com.
>>
>>
>


Re: Remote object for Flex JS

2017-07-31 Thread Fréderic Cox
I have tried tonight on getting this to work but it did not work for me. I
am getting a FaultEvent returned immediately.

https://github.com/pkumar-ghub/AMFService is what I used. It did not work
when I added the .swc in my library folder (some errors regarding the
imports could not be found) but then I copied the source files in my
project and could compile.

However the FaultEvent is immediately returned. What can I do to debug here?


On Thu, Jul 27, 2017 at 10:31 AM, Christian Kostenzer <
christ...@kostenzer.net> wrote:

> Thanks - I will look at that and come back to you for setting up the
> environment.
>
> Regards
>
> __
>
> Mag.(FH) Christian Kostenzer
> Gärberbach 1
> 6020 Innsbruck Land I
>
> fon: +43 676 3327320
> fax: +43 810 9554 249195
> Email: christ...@kostenzer.net
> Web: www.kostenzer.net
> UID: ATU56508014
>
> > Am 27.07.2017 um 09:06 schrieb piotrz :
> >
> > Hi Chris,
> >
> > Wow! :) Thank you for interesting in that. Some time ago Carlos [1]
> started
> > initial work on that creating separate branch in FlexJS framework
> repository
> > [2]. I encourage you to ask any technical things where to start in that
> > thread. [1].
> >
> > In general you will have to work in framework code itself, so I would be
> > happy to help you setup environment for that purpose if you needed.
> > I will refresh "amf" branch today with newest code from "develop".
> >
> > [1]
> > http://apache-flex-development.247.n4.nabble.
> com/FlexJS-AMF-branch-feature-amf-Starting-the-effort-
> Special-Thanks-to-PKumar-td59640.html
> > [2] https://github.com/apache/flex-asjs/tree/feature/amf
> >
> > Thanks,
> > Piotr
> >
> >
> >
> >
> >
> > -
> > Apache Flex PMC
> > piotrzarzyck...@gmail.com
> > --
> > View this message in context: http://apache-flex-users.
> 246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15514.html
> > Sent from the Apache Flex Users mailing list archive at Nabble.com.
>
>


Re: Remote object for Flex JS

2017-07-27 Thread Christian Kostenzer
Thanks - I will look at that and come back to you for setting up the 
environment.

Regards

__

Mag.(FH) Christian Kostenzer
Gärberbach 1
6020 Innsbruck Land I

fon: +43 676 3327320
fax: +43 810 9554 249195
Email: christ...@kostenzer.net
Web: www.kostenzer.net
UID: ATU56508014

> Am 27.07.2017 um 09:06 schrieb piotrz :
> 
> Hi Chris,
> 
> Wow! :) Thank you for interesting in that. Some time ago Carlos [1] started
> initial work on that creating separate branch in FlexJS framework repository
> [2]. I encourage you to ask any technical things where to start in that
> thread. [1]. 
> 
> In general you will have to work in framework code itself, so I would be
> happy to help you setup environment for that purpose if you needed.
> I will refresh "amf" branch today with newest code from "develop".
> 
> [1]
> http://apache-flex-development.247.n4.nabble.com/FlexJS-AMF-branch-feature-amf-Starting-the-effort-Special-Thanks-to-PKumar-td59640.html
> [2] https://github.com/apache/flex-asjs/tree/feature/amf
> 
> Thanks,
> Piotr
> 
> 
> 
> 
> 
> -
> Apache Flex PMC
> piotrzarzyck...@gmail.com
> --
> View this message in context: 
> http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15514.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.



Re: Remote object for Flex JS

2017-07-27 Thread piotrz
Hi Chris,

Wow! :) Thank you for interesting in that. Some time ago Carlos [1] started
initial work on that creating separate branch in FlexJS framework repository
[2]. I encourage you to ask any technical things where to start in that
thread. [1]. 

In general you will have to work in framework code itself, so I would be
happy to help you setup environment for that purpose if you needed.
I will refresh "amf" branch today with newest code from "develop".

[1]
http://apache-flex-development.247.n4.nabble.com/FlexJS-AMF-branch-feature-amf-Starting-the-effort-Special-Thanks-to-PKumar-td59640.html
[2] https://github.com/apache/flex-asjs/tree/feature/amf

Thanks,
Piotr





-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15514.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-07-27 Thread Christian Kostenzer
Hi Piotr,
we are also interested on AMF. Do have more detailled information on that 
„task“ ? Maybe we can help.

Regards
Chris




> Am 27.07.2017 um 07:53 schrieb piotrz :
> 
> Hi Alina,
> 
> It would be awesome if someone would pickup the task of writing AMF for
> FlexJS. 
> Volunteers are very welcome! :) 
> 
> Piotr
> 
> 
> 
> -
> Apache Flex PMC
> piotrzarzyck...@gmail.com
> --
> View this message in context: 
> http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15512.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.



Re: Remote object for Flex JS

2017-07-26 Thread piotrz
Hi Alina,

It would be awesome if someone would pickup the task of writing AMF for
FlexJS. 
Volunteers are very welcome! :) 

Piotr



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15512.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Remote object for Flex JS

2017-07-26 Thread PKumar
​Check the  following URL,

https://github.com/pkumar-ghub/AMFService

-Class mapping is  not implemented. ​

On Thu, Jul 27, 2017 at 10:10 AM, Alina Kazi [via Apache Flex Users] <
ml+s246n15510...@n4.nabble.com> wrote:

> What statement we can use instead of
>
> import mx.rpc.remoting.RemoteObject;
>
>
>
> for flexjs development in vscode
>
>
>
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-users.246.n4.nabble.com/Remote-
> object-for-Flex-JS-tp15510.html
> To start a new topic under Apache Flex Users, email
> ml+s246n1...@n4.nabble.com
> To unsubscribe from Apache Flex Users, click here
> 
> .
> NAML
> 
>



-- 
*Regards,*
Prashant Kumar* | *Mob.: +91 8408811225




-
Regards,
Prashant
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Remote-object-for-Flex-JS-tp15510p15511.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.