XML to a mx:list/

I have this XML sheet:
http://www.franticphotos.com/0personal0/flex/CFC/Tree.xml
Can I display all the labels using the <mx:list> tag?
Even the childred? Ive been able to display all the parents, but
not the childeren.. Will I have to do a loop through the XML sheet
or something?

If It's possible to modify your xml, you could replace parent
by child, I think It's important to have the same name for nodes
you want to display in your tree.

Similar Messages

  • [svn] 2942: Add webapps/webtier/WEB-INF/flex/flex-sdk-description. xml to the ignore list.

    Revision: 2942
    Author: [email protected]
    Date: 2008-08-21 07:52:24 -0700 (Thu, 21 Aug 2008)
    Log Message:
    Add webapps/webtier/WEB-INF/flex/flex-sdk-description.xml to the ignore list.
    Property Changed:
    flex/sdk/trunk/webapps/webtier/WEB-INF/flex/

    java.lang.ClassNotFoundException: flex.messaging.HttpFlexSession
    This class exists in flex-messaging-core.jar
    Looks like BlazeDS libraries are not loaded. Check if BlazeDS libraries exists in your WEB-INF/lib directory.
    webapps\{yourwebapp}\WEB-INF\lib
    Hope it helps you.

  • Is there anyway to create a xml file from a list so that xml file is available like an RSS.xml

    Hello
    My objective is to have a xml file created from a list for anonymous access.  The SharePoint RSS feed is a .aspx file not xml, as shown below: 
    _layouts/listfeed.aspx?List=21c2cdaa%2D52f3%2D4057%2Db674%2D45e63ba77e31&View=535eb328%2Db5fb%2D45c5%2D8fe8%2Da130e92afc41
    Also, is there a way to do this so that the xml content has current data like the list.
    Thank you for any insight and direction.

    Hi,
    According to your post, my understanding is that you wanted to create a xml file from a SharePoint list.
    To generate a XML file, we can use the SharePoint Object Model or PowerShell to achieve it.
    Generate a hierarchical XML file from SharePoint list using Client Object Model.
    http://maxderungs.wordpress.com/2012/05/12/generate-a-hierarchical-xml-file-from-sharepoint-list/
    Get SharePoint list items and export them to XML using PowerShell
    http://www.robertkuzma.com/2012/09/get-sharepoint-list-items-and-export-them-to-xml-using-powershell/
    More reference:
    http://www.robertkuzma.com/2010/08/how-to-create-a-custom-xml-output-using-sharepoint-services-3-0/
    http://traceynolte.com/blog/convert-sharepoint-list-to-xml/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • XML data into Combo & List

    Hi
    I am too new to this and still tring to learn. Well here is what I am into. I am trying to make a simple product catalog, using native components
         a combobox to display DISTINCT health issues
         a listbox to display the products associated to the selected health issue item in ComboBox
         a textarea to display complete information about the selected product in listbox
    Data comes from single external xml file.
    I was able to start off with Combo, but I don't know how to display DISTINCT ITEMS IN IT? Now it display all items including duplicates. Then I added eventlistener to Combo, which on change, the data for selected item is displyed in Textarea, but i don't know how to hook this to List component.
    All files available here:
    https://docs.google.com/folder/d/0ByHOlDbL5njbX1FFd1UtTFNzMTg/edit
    Sure some of you can do it so easy. Appreciate your time and help.
    Thank you
    Kristtee

    Filter the XML before using it to create your dataProvider http://joshblog.net/2007/05/17/filter-xml-data-with-e4x-in-flash-part-2/

  • Load XML file into either List MyType or ObservableCollection MyType

    I have been searching and trying different suggestions for three days now, full time.  I am building a universal app for Windows 8.1 and Windows Phone 8.1.  The problem, apparently, is that doing this is different between Windows 7.1, Windows
    Phone 7.1, Windows 8, Windows 8.1, Windows Phone 8.1, and Windows 8.1 universal apps.  You find hundreds of different ways of doing this, none of which work.
    My XML file is of the form:
    <?xml version="1.0" encoding="utf-16"?>
    <ArrayOfPrize xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <Prize>
        <PrizeName>Dog</PrizeName>
        <PrizePath>http://www.dog.com</PrizePath>
        <PrizeOwner>System</PrizeOwner>
        <PrizeChecked>false</PrizeChecked>
        <Won>false</Won>
      </Prize>
    </ArrayOfPrize>
    I get errors like you can't do this with non-public types to header is missing, or I get a deaklock.  Every suggestion I have tried has led to either the same error message as the last one, or the same as some previous error message.  Microsoft
    conveniently left out this common case in their Universal App samples.  Please don't refer me to other articles, because if they were on the internet I have probably already tried them.  Sorry, my frustration is showing through.  Feel free to
    refer me to other articles.
    Below is my latest attempt that does not work:
    public async Task<T> ReadObjectFromXmlLocalFile(string filename)
     try
      T objectFromXml = default(T);
      XmlSerializer serializer = new XmlSerializer(typeof(T));
      Windows.Storage.StorageFolder localFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
      StorageFile file = await localFolder.GetFileAsync(filename);
      string xmlText = await FileIO.ReadTextAsync(file);
      StringReader reader = new StringReader(xmlText);
      objectFromXml = (T)serializer.Deserialize(reader);
      return objectFromXml;
     catch (Exception e)
      ErrorBucket.AddError(e.Message);
      return default(T);
    Incidentally, every folder path leads to either C:\Data\SharedData... or C:\Data\Users..., which is very strange, since my project is not even on the C drive.  I have recreated the directory structure that it is looking for and put my files there, but
    eventually this is going to be an issue.  The program used to look in the correct place and then it stopped and starting looking in C:\Data, and I have no idea why.
    Larry Maturo

    Try code below.  I always like to write XML from the code before reading.  It is easier to debug the class formats when writing than reading.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Data;
    using System.Xml;
    using System.Xml.Serialization;
    using System.Xml.Schema;
    using System.IO;
    namespace XMLSerialize
    class Program
    const string FILENAME = @"c:\temp\test.xml";
    static void Main(string[] args)
    ArrayOfPrize arrayOfPrize = new ArrayOfPrize(){
    prizes = new List<Prize>(){
    new Prize(){
    prizeName = "Dog",
    prizePath = "http://www.dog.com",
    prizeOwner = "System",
    prizeChecked = false,
    won = false
    XmlSerializer serializer = new XmlSerializer(typeof(ArrayOfPrize));
    StreamWriter writer = new StreamWriter(FILENAME);
    serializer.Serialize(writer, arrayOfPrize);
    writer.Flush();
    writer.Close();
    writer.Dispose();
    XmlSerializer xs = new XmlSerializer(typeof(ArrayOfPrize));
    XmlTextReader reader = new XmlTextReader(FILENAME);
    ArrayOfPrize newArrayOfPrize = (ArrayOfPrize)xs.Deserialize(reader);
    [Serializable, XmlRoot("ArrayOfPrize")]
    public class ArrayOfPrize
    [XmlElement("Prize")]
    public List<Prize> prizes;
    [Serializable, XmlRoot(ElementName = "Prize")]
    public class Prize
    [XmlElement("PrizeName")]
    public string prizeName { get; set; }
    [XmlElement("PrizePath")]
    public string prizePath { get; set; }
    [XmlElement("PrizeOwner")]
    public string prizeOwner { get; set; }
    [XmlElement("PrizeChecked")]
    public Boolean prizeChecked { get; set; }
    [XmlElement("Won")]
    public Boolean won { get; set; }
    jdweng

  • How to extract data from xml field to dropdown list?

    Hi,
    I have designed a form and connected to a SQL server database using a web service. The XML data retrieved from wsdl connection is currently hold in a text field called 'XMLfield'. I need to extract the data such as 'PersonnelName' from XMLfield into a dropdown list. I used the following code and I do not get any error, but nothing come up and all my fields in the forms become bank when i click the dropdown list.
    I would appreciate it if anyone can help me with this issue.
    form1.DropDownList::click - (JavaScript, client)
    xfa.datasets.data.loadXML(form1.XMLfield.rawValue,0,1);
    form1.XMLfield.rawValue = xfa.datasets.data.saveXML();
    var dataGroup = xfa.resolveNode("xfa.data.Timesheet.Personnel.PersonnelName");
    var dataGroupLength = dataGroup.nodes.length;
    if (dataGroupLength == 0) {
      xfa.host.messageBox("There are no parts in the XML doc");
    else {
      for (var i=0; i < dataGroupLength; i++){
        this.addItem(dataGroup.nodes.item(i).nodes.item(0).value);
    Thanks,
    Roya

    Hi Roya,
    I think the loadXML will override your form data, so blanking out your fields.  You could try loading the xml data at the xfa.datasets level (that is xfa.datasets.loadXML(form1.XMLfield.rawValue,0,1);) or using E4X to process the XML.
    Another option though might be more rework is to use the Acrobat SOAP api which will return you a JavaScript object so you wont have to do any XML work.
    There's a good intro to the SOAP api here, http://www.avoka.com/blog/page/11/.
    Regards
    Bruce

  • XML form field choice list to be populated by collaboration room names

    I would like to create a news form used within collaboration rooms where one field should include the name of the room where the news entry is created.
    Preferably this should be done automatically as works for date and author fields ($date, $sap_user), but could also be done manually if there is a way to populate the list with all available room names. If so, how do I get these to show up in the XML forms builder. There is a property 'Room' with sub-property 'Name' in the builder's property menu, but I can't see how to use this to get the room name displayed in the form.
    Henning

    Steve
    Thanks!  After working with the example you sent me, I was able to get it to work -- great!  However, this method seems to overwrite all the other XML in my xfa:data -- not great!
    For example, without the script, I have something like this in my form data variable after a form is completed and submitted:
    - <xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/" timeStamp="2010-08-05T15:07:02Z" uuid="62d739de-6eb3-4ae2-8cfc-4eab0dd87f17">
    - <xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/">
    - <xfa:data>
    - <root>
    - <performanceReview>
    <badgeNumber>8107</badgeNumber>
    <associateName>NATHAN JANNASCH</associateName>
    <department>Information System</department>
    <section>IS - System Devlopment</section>
    <jobFamily>Professional Staff</jobFamily>
    <GLBadge />
    <groupLeader />
    </performanceReview>
    <FSTARGETURL_ />
    </root>
    </xfa:data>
    However, when I use the script as you described above and in your sample to load the data for the dropdown list, I get this in my form data variable:
    - <xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/" timeStamp="2010-08-05T15:10:17Z" uuid="62d739de-6eb3-4ae2-8cfc-4eab0dd87f17">
    - <xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/">
    - <xfa:data>
    - <GroupLeaders>
    - <GroupLeader>
    <GLBadge type="varchar">8103</GLBadge>
    <GLName type="nvarchar">AARON MEISTER</GLName>
    </GroupLeader>
    - <GroupLeader>
    <GLBadge type="varchar">5221</GLBadge>
    <GLName type="nvarchar">AB EDMONDS</GLName>
    </GroupLeader>
    </GroupLeaders>
    </xfa:data>
    It looks like the data the script loads is overwriting all of my other xfa:data.  This is quite bad, as my process is dependent upon this data.  Is there a way to append the dropdownlist data to the xfa:data, or perhaps load it into another node, rather than overwriting the existing xfa:data elements?
    Thanks!
    Toby

  • Videophone example, XML result into a list?

    In the video phone application, the reg.cgi appears to ouput a list of 'friends' in xml format
    (from regcgi)
    for f in friends:
        print "\t<friend>\n\t\t<user>%s</user>" % (xml.sax.saxutils.escape(f), )
        c = db.cursor()
        c.execute("select m_username, m_identity from registrations where m_username = ? and m_updatetime > datetime('now', '-1 hour')", (f, ))
        for result in c.fetchall():
            eachIdent = result[1]
            if not eachIdent:
                eachIdent = ""
            print "\t\t<identity>%s</identity>" % (xml.sax.saxutils.escape(eachIdent), )
            if f != result[0]:
                print "\t\t<registered>%s</registered>" % (xml.sax.saxutils.escape(result[0]), )
        print "\t</friend>"
    and the flash app appears to get the results as follows
    (from httpmanager)
    else if (result.result.hasOwnProperty("friend"))
                        // party query response
                        remote = result.result.friend as Object;
                        if (remote.hasOwnProperty("user") && remote.hasOwnProperty("identity"))
                            var identityString:String = remote.identity
                            var userString:String = remote.user;
                            var r:IdManagerEvent = new IdManagerEvent("lookupSuccess", userString, identityString);
                            dispatchEvent(r);
    and it places a call to one of the 'friends' as follows
    (from the videophone app file)
    else if (e.type == "lookupSuccess")
                        // party query response
                        var i:IdManagerEvent = e as IdManagerEvent;
                        placeCall(i.user, i.id);   
    My query is, how would I take the full list that was returned as XML, and for example, populate a list with that data?
    How do you iterate through the list, extracting the required values and put them into a list?
    Im new to flash, and trying to get my head around how to do these simple things...
    Can anyone shed any light, as Im learning loads, but keep hitting struggling points like this as I dont have a clue how flash does these things, and dont know what to investigate... Once a pointer in the right direction is given,  a small example like this is shown, I can take it from there, and investigate/learn more.
    t

    Hi ken_from_uk,
    you can convert your xml to an array collection and you can easily iterate using for loop and access the values in the list ...You can see the code below how to convert xml to ArrayCollection...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="convertXMLtoArrayCollection()">
    <mx:Script>
      <![CDATA[
       import mx.collections.ArrayCollection;
       import mx.rpc.xml.SimpleXMLDecoder;
       private var arrayCollection:ArrayCollection = new ArrayCollection();
       private function convertXMLtoArrayCollection():void
        var xml:XML = new XML(xmlStates.toString());
        var xmlDoc:XMLDocument = new XMLDocument(xml);
        var decoder:SimpleXMLDecoder = new SimpleXMLDecoder(true);
        var resultObj:Object = decoder.decodeXML(xmlDoc);
        if(resultObj.states.state is ArrayCollection)
         arrayCollection = resultObj.states.state as ArrayCollection;
        else if(resultObj.states.state is Object)
         arrayCollection.addItem(resultObj.states.state);
      ]]>
    </mx:Script>
    <mx:XML xmlns="" id="xmlStates">
      <states>
          <state>
              <name_state>State x:</name_state>
              <code_state>X</code_state>
              <cities>
                  <city>
                      <name_city>City One</name_city>
                      <population_city>20000</population_city>
                  </city>
                  <city>
                      <name_city>City Two</name_city>
                      <population_city>10000</population_city>
                  </city>
                  <city>
                      <name_city>City Three</name_city>
                      <population_city>80000</population_city>
                  </city>
              </cities>
          </state>
          <state>
              <name_state>State y:</name_state>
              <code_state>X</code_state>
              <cities>
                  <city>
                      <name_city>City Four</name_city>
                      <population_city>50000</population_city>
                  </city>
                  <city>
                      <name_city>City Five</name_city>
                      <population_city>40000</population_city>
                  </city>
                  <city>
                      <name_city>City Six</name_city>
                      <population_city>70000</population_city>
                  </city>
              </cities>
          </state>
      </states>
    </mx:XML>
    </mx:Application>
    Thanks,
    Bhasker Chari

  • Xml import with bullet list like images

    Hi!
    I have a xml file with data that i would like to import to indesign. ANd that works great.
    But i have a minor issue. I have a kind of a bullet list something like this:
    my xml looks like this:
    <mytext>
    1 some text
    2 some text
    3 some text
    <mytext/>
    the bullets is pictures (or perhaps numberd bullets if its possible to style them in my XML)
    is there any solution to make this possible?
    <mytext>
    [include my  1 image here] some text
    [include my  2 image here] some text
    [include my  3 image here] some text
    <mytext/>
    I have tried to use CDATA in my xml file and included the path for my images, but the result is that "<image src..." is written as text not as a image..
    PLS help me, before i go nuts!
    /MK

    Your XML is going to need to be formatted something like this:
    <image href="file:///../images/bullet.png"></image>
    <BulletText>Some text here...</BulletText>
    In order to get the images in. The above has the images in a sub-folder of the ID document. There is also a tab between the close image tag and the BulletText tag (which is why I included the screen shot.
    Mike

  • From XML to mx.control.List

    var x:XML;
    x = <data><employees><employee label="A, Jean-Paul" data="23511"/>
              <employee label="B, John" data="12345"/>
              <employee label="C, John" data="23456"/>
              <employee label="D, Kelly" data="34567"/>
               <employee label="E, Martin" data="45678"/>
              <employee label="F, Stacey" data="56789"/>
              <employee label="G, Tracy" data="67890"/>
    </employees></data>;

    OK, doing a bit of guessing here, but in your getSuggestions() method, change this...:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    theList.dataProvider = x.employee;
    ... to this:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    theList.dataProvider = x.employees.employee;
    Next guess would be to change your xmlLabelParser() method from this...:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    return item.employees.employee.label;
    ... to this:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    return lxmx.@label;
    Peter

  • Read XML file to dropdown list and sort alphabetically

    I have a custom vbs script that reads a text file and creates a dropdown list to web page. How I can sort the list alphabetically? Should I read the values to array, sort it and after that put sorted values to dropdown list?

    <html>
    <head>
    <script language="vbscript">
    Sub window_onload()
    test.Value = 3
    End Sub
    </script>
    </head>
    <body>
    <select id="test" width=40>
    <option value="1">one is the number</option>
    <option value="2" selected="selected">two is the number</option>
    <option value="3">three is the number</option>
    </select>
    </body>
    </html>
    If you found this post helpful, please "Vote as Helpful". If it answered your question, remember to "Mark as Answer"
    MCC & PowerShell enthusiast
    http://oliver.lipkau.net/blog

  • No XML file for VO listed in AM, possible to extend?

    In the AM oracle.apps.ar.hz.components.account.contact.server.HzPuiActContRoleAM the VO HzPuiActRoleListVO exists however there is no XML file for this VO - what am I missing? Is it possible to extend the VO?
    - Resolved
    Edited by: user602400 on Jun 19, 2012 8:14 AM

    even though name of VO is Name=HzPuiActRoleListVO
    actual location and name is oracle.apps.ar.hz.components.lookup.server.HzPuiLookupVO.
    you will get files here:
    cd $JAVA_TOP/oracle/apps/ar/hz/components/account/contact/server

  • Append xml node into a list

    Hi,
    In an embedded sub process with looping logic, we have a db adapter call.
    We are trying to insert the single response object from each of the db adapter call into a list.
    Problem we are facing is the list is not able to append the new db response into the list.
    AppendToList is not of help. XSLT construct copy-to was not of help.
    Using the following three messages
    Msg1: - Loop Interation 1
    <elementCollection>
    <element>aaa</element>
    </elementCollection>
    Msg2: - Loop Interation 2
    <elementCollection>
    <element>bbb</element>
    </elementCollection>
    Msg3: - Loop Interation 3
    <elementCollection>
    <element>ccc</element>
    </elementCollection>
    to be inserted into the following message
    Result: - After all the iterations
    <elementCollection>
    <element>aaa</element>
    <element>bbb</element>
    <element>ccc</element>
    </elementCollection>
    Any help/pointers will be appreciated.
    Edited by: 905033 on Jul 4, 2012 10:32 PM
    provided sample messages
    Edited by: 905033 on Oct 23, 2012 2:55 AM

    Please see the transformation bellow... I've built a quick sample and it worked for me.
    Cheers,
    Vlad
    It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts).
    https://forums.oracle.com/forums/ann.jspa?annID=893
    <xsl:stylesheet version="1.0"
      <xsl:param name="Variable_2"/>
      <xsl:param name="Variable_3"/>
      <xsl:template match="/">
        <ns0:elementCollection>
          <xsl:for-each select="ns0:elementCollection/ns0:element">
            <ns0:element>
              <xsl:value-of select="."/>
            </ns0:element>
          </xsl:for-each>
          <xsl:for-each select="$Variable_2/ns0:elementCollection/ns0:element">
            <ns0:element>
              <xsl:value-of select="."/>
            </ns0:element>
          </xsl:for-each>
          <xsl:for-each select="$Variable_3/ns0:elementCollection/ns0:element">
            <ns0:element>
              <xsl:value-of select="."/>
            </ns0:element>
          </xsl:for-each>
        </ns0:elementCollection>
      </xsl:template>
    </xsl:stylesheet>

  • Statique load of XML file with List choose

    Hi,
    So let me explain my problem:
    - I have some XML files: (in my <fx:Declaration>)
        <fx:XML id="flexang" source="xml/flex-ang.xml" />
        <fx:XML id="flexastro" source="xml/flex-astro.xml" />
        <fx:XML id="flexber" source="xml/flex-ber.xml" />
    - I have a List constructed as follows:
    (in my  <fx:Declaration>)
        <fx:Model id="anim">
          <states>
        <state label="Anguinéa" data="animations/flex-ang.swf"/>
        <state label="Mouvement rétrograde" data="animations/flex-astro.swf"/>
        <state label="Bielle de Bérard" data="animations/flex-ber.swf"/>
          </states>
        </fx:Model>
    (and then)
          <mx:List id="source" width="100%" color="blue"
               dataProvider="{anim.state}"
               change="selectedListItem = List(event.currentTarget).selectedItem;"/>
    (with public var selectedListItem:Object;)
    My List is built to load dynamicaly some SWF files
          <mx:SWFLoader id="animation"
                source="{selectedListItem.data}"
                autoLoad="true"
                width="100%"/>
    - But now I want to display the corresponding. So I tried to contruct the String of the XML id from the selectedListItem.data:
    private function xmlFile(swf:String):String
                var pref:String;
            var tab=swf.split(".",2);
            tab=tab[0].split("/",2);
            pref=tab[1];
            pref=pref.split("-").join("");
            return pref;
    This gives me, for example, "flexang" from "animations/flex-ang.swf". But my problem is that I want to put my XML file in my RichText area:
            <s:RichEditableText id="codeView" editable="false" textFlow="{TextFlowUtil.importFromXML(xmlFile(selectedListItem.data))}" />
    But xmlFile returns a String! and I do not know how to specify that it is a XML id.
    I hope I am clear enough.
    Thanks if you try to help me

    Wait that wasn't right.  Try:
    TextFlow="{TextFlowUtil.importFromXML(this[xmlFile(selectedListItem.data)])}

  • Is it possible to use List Type in XML schema within the SOA Rule author?

    Is it possible to use List Type in XML schema within the SOA Suite Rule author? The reason is that with the following XSD, Rule author generates XML facts of type "List" for the element "ResultSet". Basically I want to check the Input facts (Input1, Input2, Input3) for some conditions and then assign action to the element Resultset of type List (array). The output Resultset can contain multiple values based on the input facts. My problem is that I am unable to see the ResultSet in the "Assign" action type of the action block. Is it possible to use the Resultset of type List with the Rule author or is there any limitation on the rule author and any workaround for this?
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/ns/TestMultipleOutputs"
    elementFormDefault="qualified">
    <element name="TestMultipleOutputs">
    <complexType>
    <sequence minOccurs="0">
    <element name="Input1" type="string" minOccurs="0"/>
    <element name="Input2" type="string" minOccurs="0"/>
    <element name="Input3" type="string" minOccurs="0"/>
    <element name="ResultSet" type="string" minOccurs="0"
    maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    --Thanks a lot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Richard,
    I have slightly modified the xml schema you suggested and was able to import into the rule author. the following is the modified XSD. Rule Author created a List type for the "ResultSet" . I still don't see "Resultset" in the assign action, so I tried creating RL function in order to assign the output to the "Resultset", but was unsuccessful so far. can you please let me know how to populate the resultset with the output values? Thanks a lot.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema attributeFormDefault="unqualified"
    xmlns:ns1="http://www.oracle.com/ns/TestComplexOutputs"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/ns/TestComplexOutputs"
    xmlns:tns="http://www.oracle.com/ns/TestComplexOutputs"
    elementFormDefault="qualified">
    <xsd:element name="TestComplexOutputs">
    <xsd:complexType>
    <xsd:sequence minOccurs="0">
    <xsd:element name="Input1" type="xsd:string" minOccurs="0"/>
    <xsd:element name="Input2" type="xsd:string" minOccurs="0"/>
    <xsd:element name="Input3" type="xsd:string" minOccurs="0"/>
    <xsd:element name="ResultSet" type="tns:ResultSetType" minOccurs="0"
    maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:complexType name="ResultSetType">
    <xsd:sequence>
    <xsd:element name="ResultSet" type="tns:ResultSetStructure" minOccurs="1"
    maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="ResultSetStructure">
    <xsd:sequence>
    <xsd:element name="ErrorReason">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string"/>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>

Maybe you are looking for

  • Adobe Acrobat 6.0 Standard question

    I purchased Adobe Acrobat 6.0 Standard many years ago. I loaded in on my new HP Pavilion and tried to update to a recent version through the downloads available on the Adobe website. I was only able to dowload up to version 6.06. There wasn't a 7.0 s

  • Initial Load Error - No generation performed. Call transaction GN_START

    Hi Folks, We are doing middleware configuration for data migration between R3->CRM.Have followed "Best Practies" configuration Guide. System Using; CRM 2007 and ECC6.0 Issue While performing initial load, system is throwing the error as 001- No gener

  • Vga to

    Hi , i connected my hp envy desktop through a vga cable with a dvi converter , but the monitor doesnt get a signal , and goes to sleep mode , do i need to connect 2 dvi converters on both sides ?? Or but a new dvi cable ?? Or it should work with only

  • Strange behaviour on reading procfs

    Hello, I have a strange behaviour reading process table from procfs. Some processes have a resident size and image size of 0 (zero). So I wrote a little test program and generated a 32bit binary. It gave me the same result. After I made a 64bit binar

  • Introducing JavaStates - a new API for state based GUI development in Swing

    JavaStates partially implements the semantics of D Harel' statecharts. It is currently hosted as source forge project: [https://sourceforge.net/projects/javastates/] , and has been used for several years for teaching Java Swing and the specification