I’m backlogged on some other stuff.  Hope to get to it this week.

From: Serkan Taş <[email protected]>
Reply-To: "[email protected]" <[email protected]>
Date: Tuesday, May 28, 2019 at 7:03 AM
To: "[email protected]" <[email protected]>
Subject: Re: Work on Emulation

Kindly remind :)
14.05.2019 16:12 tarihinde Serkan Taş yazdı:
Hi Alex,

I prepared sample project. Please find : 
https://drive.google.com/open?id=1jc0H1cf-Z2WJjeQy8Cy3rOuphrGjiNoL<https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdrive.google.com%2Fopen%3Fid%3D1jc0H1cf-Z2WJjeQy8Cy3rOuphrGjiNoL&data=02%7C01%7Caharui%40adobe.com%7Ca6a204ba7ed14aab8d9908d6e3754ef4%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636946490316602123&sdata=NC61NofUEP5iIQkGnJT01BMPGma30E3XfMMEUH3cxnw%3D&reserved=0>

You have to set to env vars for local to build the project :

CLOSURE_HOME
ROYALE_DIST_HOME

Thanks,
Serkan.
10.05.2019 00:53 tarihinde Serkan Taş yazdı:
Thanks :)
9.05.2019 19:35 tarihinde Piotr Zarzycki yazdı:
Well I explained to you how to check whether they are the latest, so you have 
your guarantee. :)

czw., 9 maj 2019 o 18:34 Serkan Taş 
<[email protected]<mailto:[email protected]>> 
napisał(a):

I checked my git repo and it was good but to guarantee i downloaded the latest 
binaries from the url Piotr sent and tested with the latest binaries rather 
than the one I build locally  and getting the error below.

[cid:[email protected]]

And the js file :


32: 
main.mtest.Wrapper.prototype.http_$$www_adobe_com$2008$flex$model$internal__initialize
 = function() {
33:  
main.mtest.model_internal.org.apache.royale.utils.Language.closure(this.http_$$www_adobe_com$2008$flex$model$internal__propagateEvents,
 this, 'http://www.adobe.com/2008/flex/model/internal::propagateEvents');
34:  
main.mtest.model_internal.org.apache.royale.utils.Language.closure(this.http_$$www_adobe_com$2008$flex$model$internal__propagateEvents,
 this, 'http://www.adobe.com/2008/flex/model/internal::propagateEvents');
35: };

May be I am missing something,

Thanks,
Serkan
8.05.2019 06:19 tarihinde Alex Harui yazdı:
Look at the commits and see if the change I made is in the source.

Make sure you delete all of your bin/js-debug folders.

HTH,
-Alex

From: Serkan Taş 
<[email protected]><mailto:[email protected]>
Reply-To: "[email protected]"<mailto:[email protected]> 
<[email protected]><mailto:[email protected]>
Date: Tuesday, May 7, 2019 at 7:48 AM
To: "[email protected]"<mailto:[email protected]> 
<[email protected]><mailto:[email protected]>
Subject: Re: Work on Emulation

Hi Alex,

After getting the latest version I am still getting the same error. How can I 
check that I pulled the version that you have fixed ?

Thanks,
Serkan
25.04.2019 08:46 tarihinde Alex Harui yazdı:
File a bug an attach _Super_UserOps.js and _Super_UserOps.as and UserOps.js and 
UserOps.as

Thanks,
-Alex

From: Serkan Taş 
<[email protected]><mailto:[email protected]>
Reply-To: "[email protected]"<mailto:[email protected]> 
<[email protected]><mailto:[email protected]>
Date: Wednesday, April 24, 2019 at 8:52 PM
To: "[email protected]"<mailto:[email protected]> 
<[email protected]><mailto:[email protected]>
Subject: Re: Work on Emulation

Hi Alex,

I am still working on the issue which is related with third party library that 
we have discussed months ago.

I am not sure how to get rid of the error below, may be anyone on the list have 
an idea.

I am getting error below on chrome console:

[cid:[email protected]]

Here is the _Super_UserOps.as source piece which couses the error :

model_internal::initialize();

converted to _Super_UserOps.js :

com.adobe.fiber.core.model_internal.org.apache.royale.utils.Language.closure(this.http_$$www_adobe_com$2008$flex$model$internal__initialize,
 this, 'http://www.adobe.com/2008/flex/model/internal::initialize')();


content of the file 
model_internal.as<https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmodel_internal.as&data=02%7C01%7Caharui%40adobe.com%7Ca6a204ba7ed14aab8d9908d6e3754ef4%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636946490316612121&sdata=vOQKzJr3D1C%2Fr5yv5gULFPMAkZuXlwEe3v7eR4HtDRw%3D&reserved=0>
 :

package com.adobe.fiber.core
{
   public namespace model_internal = 
"http://www.adobe.com/2008/flex/model/internal";<http://www.adobe.com/2008/flex/model/internal>;
}


Ant the class piece which initialize the fault and and result functions that is 
the parent class of _Super_UserOps.as :

      model_internal function initialize() : void
      {
         
this.serviceControl.addEventListener(ResultEvent.RESULT,model_internal::propagateEvents);
         
this.serviceControl.addEventListener(FaultEvent.FAULT,model_internal::propagateEvents);
      }

Any help kindly appreciated,
Thanks
Serkan
13.04.2019 00:34 tarihinde Alex Harui yazdı:

Hi Serkan,



Does it call the faultHandler instead?  If so, there should be an error message 
in the fault event.



What kind of service is UserOps?  I would set breakpoints and debug to make 
sure it actually sent something (and maybe use a network monitor to see what 
was sent and to where).  And then verify that the code that finally sends 
(maybe via XmlHTTPRequest) also set up listeners for events and set breakpoints 
on those low-level event handlers.



You can also use the network monitor against the Flex app and compare what is 
being sent to what Royale is sending.



HTH,

-Alex



On 4/12/19, 2:25 PM, "Serkan Taş" 
<[email protected]><mailto:[email protected]> wrote:



    Hi Alex,



    I have service call in my project.



    <userops:UserOps id="userOpsService"

    result="userOpsService_resultHandler(event)"

    fault="userOpsService_faultHandler(event)" />



    Normally, I expect to call the result method

    userOpsService_resultHandler for successfull operations, but it does not.



    Which way I should go through to find out what is going on after calling

    the service ?



    Thanks,

    Serkan










--

Piotr Zarzycki

Patreon: 
https://www.patreon.com/piotrzarzycki<https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.patreon.com%2Fpiotrzarzycki&data=02%7C01%7Caharui%40adobe.com%7Ca6a204ba7ed14aab8d9908d6e3754ef4%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636946490316622114&sdata=8Q0BGCbUowrhy8xBnt%2FluHGS6zuSGgbQrmnVeowUPMU%3D&reserved=0>




Reply via email to