Hi Alex,

There are also references for other objects.

May you look at the emulations:

https://drive.google.com/open?id=1SGxAfW7bUk2GA-xD2tbMLpyHj0Ev74Vx
https://drive.google.com/open?id=1OlmWCQ3X3gJZGuFs4kNfpOr8oUFUfuup
https://drive.google.com/open?id=1pMVqwZP7x6_O23u_P2gtX2VTthmYkkLV
https://drive.google.com/open?id=1ttCNWpqItzqKfjhLscezXGpAUmFa8b7I

Thanks,
Serkan

16.10.2018 21:26 tarihinde Alex Harui yazdı:

HI Serkan,

JobXMLtoView and ViewToJobXML are already using e4x so they should work as-is.

That makes me wonder if your app is actually using XMLDocument or not or you just ran into this problem trying to use HTTPMultiService.  A search of your code on your GitHub did not show any use of XMLDocument.

IMO, you could copy the code for HTTPMultiService and its AbstractOperation and just comment out RESULT_FORMAT_XML for now.

HTH,

-Alex

*From: *Serkan Taş <[email protected]>
*Reply-To: *"[email protected]" <[email protected]>
*Date: *Tuesday, October 16, 2018 at 11:01 AM
*To: *"[email protected]" <[email protected]>
*Subject: *Re: Work on Emulation

Hi Alex,

There are two cases, one of them is my project the other is related with Http services :

1.
I my case,  two transformation classes used for to/from xml with flex view.

/https://github.com/likyateknoloji/pinaraui-royale/blob/master/PinaraUI/src/com/likya/pinara/utils/JobXmlToView.a <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Flikyateknoloji%2Fpinaraui-royale%2Fblob%2Fmaster%2FPinaraUI%2Fsrc%2Fcom%2Flikya%2Fpinara%2Futils%2FJobXmlToView.a&data=02%7C01%7Caharui%40adobe.com%7Cb8ed4cbd61f644b7eebe08d63391686f%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636753096951377158&sdata=WSXwYyWCUb7x2%2FbW2DzKoCCd2zIJSTYJauYwe8GZYJc%3D&reserved=0>s https://github.com/likyateknoloji/pinaraui-royale/blob/master/PinaraUI/src/com/likya/pinara/utils/ViewToJobXml.as <https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Flikyateknoloji%2Fpinaraui-royale%2Fblob%2Fmaster%2FPinaraUI%2Fsrc%2Fcom%2Flikya%2Fpinara%2Futils%2FViewToJobXml.as&data=02%7C01%7Caharui%40adobe.com%7Cb8ed4cbd61f644b7eebe08d63391686f%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636753096951387154&sdata=eILGFGI7F6sc18aFY8YbUgJBVpO47D3slYdp1Ve19OM%3D&reserved=0>/

And i am not sure but there are some code pieces using xpath kind of controls/searches in source base AFAIR.

Having all xml functionality in Royale will be nice of course but if you think that  it is better to use e4x for all my code base  i may think on that.

2.
Currently i am working on HTTPMultiService  because as we discussed previously to create fiber HTTPServiceWrapper class and extend it from *mx.rpc.http.HTTPMultiService *

There are two classes :
*
mx.rpc.http.HTTPMultiService * and *mx.rpc.http.mxml.HTTPMultiService* and extends from *mx.rpc.http.HTTPMultiService

mx.rpc.http.HTTPMultiService *has referance for class *AbstractOperation. * This class has emulation for package *mx.rpc* but not for *mx.rpc.http * which has references flash.xml.XMLDocument, flash.xml.XMLNode and mx.rpc.xml.SimpleXMLDecoder, mx.rpc.xml.SimpleXMLEncoder.*

*When i am  emulating *mx.rpc.http.AbstractOperation *i needed to emulate all XML thing.*

*If it is possible to use e4x for these classes also i may do it. I have to check all my emulation classes to remember the work i have done yesterday :) It is getting harder to recover as life goes.

Thanks
Serkan

16.10.2018 20:24 tarihinde Alex Harui yazdı:

    Hi Serkan,

    After looking at the XMLDocument/XMLNode API, it might be a
    manageable amount of work to map it to e4x.

    On the other hand, if your response from the server is a string in
    XML format, you can create an e4x XML object by doing:

        Var xml:XML = new XML(stringFromServer);

    It will parse the string in the constructor.

    Then instead of accessing a childNodes array, you get an XMLList
    that has an array-like API by calling:

        Var xmlChildren:XMLList = xml.children();

    Then instead of an XMLNode you get an XML node:

        Var xmlChildNode:XML = xmlChildren[i];

    HTH,

    -Alex

    *From: *Serkan Taş <[email protected]>
    <mailto:[email protected]>
    *Reply-To: *"[email protected]"
    <mailto:[email protected]> <[email protected]>
    <mailto:[email protected]>
    *Date: *Tuesday, October 16, 2018 at 10:15 AM
    *To: *"[email protected]" <mailto:[email protected]>
    <[email protected]> <mailto:[email protected]>
    *Subject: *Re: Work on Emulation

    I am using xml for communicating with a Java application over http
    (POST/GET) with rest way.  Send/Receive xml.

    I need to replace this messsaging infrastructure with a
    lightweight approach but not now.

    Reproducing all XML staff may need too much time for sure and i am
    not sure how to go with XML/XMLList and e4x how much time it may
    take.

    Let me go step by step, discuss and see what can i do.

    Serkan.

    16.10.2018 19:58 tarihinde Alex Harui yazdı:

        I suppose you could try to reproduce XMLDocument.  The only
        reason it doesn’t exist is because nobody has needed it so
        far, but creating that could be a lot of work.  Is there a
        reason you don’t want to use XML/XMLList and e4x?  Does your
        app decode SOAP responses or are you using
        SimpleXMLDecoder/Encoder for some other network/server
        communication?

        -Alex

        *From: *Serkan Taş <[email protected]>
        <mailto:[email protected]>
        *Reply-To: *"[email protected]"
        <mailto:[email protected]> <[email protected]>
        <mailto:[email protected]>
        *Date: *Tuesday, October 16, 2018 at 9:40 AM
        *To: *"[email protected]"
        <mailto:[email protected]> <[email protected]>
        <mailto:[email protected]>
        *Subject: *Work on Emulation

        Hi,

        When i have to use xml classes like SimpleXMLDecoder,
        SimpleXMLEncoder, etc. I need some class implentations like
        XMLNode, XMLType,XMLDocument. I created the emulations of
        Encode and Decoder and  created classes XMLNode,
        XMLType,XMLDocument with empty methods and some variables.

        What will be the Royale approach for XML operations or will
        there be ?

        Thanks
        Serkan









Reply via email to