Accessing nested child in model to populate datafield in datagrid.

I am using Rails + Flex and I have problems to access nested
xml in a datagrid.datafield.
I reproduce this in a simple mxml sample:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute" width="954">
<mx:Model id="md">
<root>
<e1>el1</e1>
<e2>el2</e2>
<child>
<c1>c1</c1>
<c2>c2</c2>
</child>
<e3>el3</e3>
</root>
</mx:Model>
<mx:DataGrid id="myGrid"
dataProvider="{md}" >
<mx:columns>
<mx:DataGridColumn dataField="e1"/>
<mx:DataGridColumn dataField="e2"/>
<mx:DataGridColumn dataField="child"/>
<mx:DataGridColumn dataField="child.c1"/>
<mx:DataGridColumn dataField="e3"/>
</mx:columns>
</mx:DataGrid>
</mx:Application>
Basically, at runtime the content of 3rd column is object
(alright) and the 4th column is empty whereas it should be "c1".
Am I doing something obviously wrong ?
Thanks for any help.
Romain.

http://www.adobe.com/devnet/flex/articles/e4x_03.html
http://www.adobe.com/devnet/flex/articles/e4x_04.html
you can use the labelfunction

Similar Messages

  • Accessing nested UIComponents

    The aim of the script is to be able to access component's
    chldren, and their children, and their children, etc... by their
    index.
    I've tried the following:
    // script
    public function deployNesting():void {
    var container:Canvas= new Canvas();
    var chldA:Canvas = new Canvas();
    var chldB:Canvas = new Canvas();
    var chldC:Canvas = new Canvas();
    this.addChild(this.container);
    this.container.addChild(chldA);
    this.container.addChild(chldB);
    this.container.addChild(chldC);
    return;
    public function accessNesting():void {
    trace(this.childAt(0).childAt(0))
    // error 1119*
    trace(this.childAt(0).numChildren)
    // error 1119*
    return;
    *1119 : Access of possibly undefined property numChildren
    through a reference with static type
    flash.display:DisplayObject.
    I'm aware that such nesting is not usually a best practice,
    but in some cases it is required, and I would appreciate an advice
    on this issue.
    a.neko

    Well... It's time to assume the therapeutical values of this
    forum in my particular case : ) One more time, just after recurring
    to all posiible ways to solve it, and afterwards posting a topic
    here, I change my approach and find the solution...
    In this case it is required to cast the return of all the
    getChildAt() in the nesting structure, except the last one.
    You can access a nested child to add a new child to it's
    display list as follows:
    Canvas(this.getChildAt(0)).addChild(chldC);
    Accessing a deeply nested child's name property looks as
    follows:
    Canvas((Canvas(this.getChildAt(0))).getChildAt(0)).getChildAt(0).name;
    etc...
    Somewhat complicated, but solves the problem of accessing
    nested children when, for instance, the variables used to create
    them are gone, or to freely iterate through nested display lists...
    (Verified with Flex 2.0 Builder mx.* components, but I
    suppose it works also for flash.display.* objects.)
    a.neko

  • How to apply a change from logical to retional model without populate eryth

    How to apply a change from logical model to retional model without populate everything? Thanks!

    I know it. Thanks!

  • How create Nested Child Nodes in XML Forms

    Hello All:
                        I am very new to XML Forms/KM. I am trying to figure out a way to create Nested Child Nodes schema in XML Forms. Is there a way we can do it?
    Thanks and Regards,
    Vasu.

    Document document;
    NodeList[] dataNodeList=new NodeList[2];
    NodeList nodeList=document.getElementsByTagName("MyData");
    for(int i=0; i<nodeList.getLength(); i++)
    dataNodeList=nodeList.getChildNodes();

  • Unable to access nested managed bean property in JSF 1.2.9

    In an old version of JSF, namely 1.2-b20-FCS from April/21/2006, I could access nested properties of a managed bean. So I had a managed bean OuterBean, and in JSF I could write
    <h:inputText value="#{outerBean.innerBean1.propertyA"/>
    The Java class OuterBean has a member function
    InnerBean OuterBean.getInnerBean1();
    That is, there is a function getInnerBean1() taking no arguments, and it returns something which in my example above is the class InnerBean.
    Class InnerBean has a member function getPropertyA().
    But in the latest JSF from July/17/2008, this nested stuff is not working.
    Simple access like #{outerBean.propertyA} works, but nested access like #{outerBean.innerBean.propertyA} does not.
    The exception is something like
    org.apache.jasper.el.JspELException: /whatever/mypage.jsp(71,15) '#{outerBean.innerBean.username}' Error reading 'innerBean' on type
    mypackage.OuterBean at org.apache.jasper.el.JspValueExpression.getValue(JspValueExpression.java:107) at javax.faces.component.UIOutput.getValue(UIOutput.java:184) at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getValue(HtmlBasicInputRenderer.java:201) at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.getCurrentValue(HtmlBasicRenderer.java:284) at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeEnd(HtmlBasicRenderer.java:154) at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:861) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:946) at javax.faces.render.Renderer.encodeChildren(Renderer.java:148) at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:837) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:936) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942) at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271) at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:202) at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:109) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266) atThanks.

    Sorry, it looks fine to me. In my original post, I had the call stack in code and for some reasons the newlines were removed. So let me try again in text, but putting two newlines. Hope it works this time:
    org.apache.jasper.el.JspELException: /whateverr/mypage.jsp(71,15) '#{outerBean.innerBean.property}' Error reading 'innerBean' on type mypackage.OuterBean at
    org.apache.jasper.el.JspValueExpression.getValue(JspValueExpression.java:107) at javax.faces.component.UIOutput.getValue(UIOutput.java:184) at
    com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getValue(HtmlBasicInputRenderer.java:201) at
    com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.getCurrentValue(HtmlBasicRenderer.java:284) at
    com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeEnd(HtmlBasicRenderer.java:154) at
    javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:861) at
    javax.faces.component.UIComponent.encodeAll(UIComponent.java:946) at
    javax.faces.render.Renderer.encodeChildren(Renderer.java:148) at
    javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:837) at
    javax.faces.component.UIComponent.encodeAll(UIComponent.java:936) at
    javax.faces.component.UIComponent.encodeAll(UIComponent.java:942) at
    com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271) at
    com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:202) at
    com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:109)
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) at
    com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) at
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:266) at
    Edited by: sn72 on Sep 21, 2008 10:21 AM
    Edited by: sn72 on Sep 21, 2008 10:22 AM

  • Cannot access class oracle.jheadstart.model.adfbc.JhsApplicationModuleImpl;

    Error(2,38): cannot access class oracle.jheadstart.model.adfbc.JhsApplicationModuleImpl; file oracle\jheadstart\model\adfbc\JhsApplicationModuleImpl.class not found
    Hi,
    I am working on demo application from JHeadstart Developer's Guide (ch2). I got the above error when I tried to test the ADF BC.
    I checked the Project properties of the model and there was no jheadstart subfolder under oracle folder.
    I followed the install.html for JHeadstart download without problem.
    I am wondering if the .jar files from JHeadstart that I copied to Jdeveloper is where the issue is?
    Any help is much appreciated.
    Ahsan

    Sandra,
    Thanks for your prompt and helpful response.
    When you are at page 2-9 in the Getting Started chapter, you should not have run the Application Generator yet, therefore your Application Module should not extend JhsApplicationModuleImpl yet.
    CORRECT.
    Or did you explicitly set the ADF BC Base Class properties to JhsApplicationModuleImpl?
    YES I DID THIS.
    The paragraph that describes this does mention that JHeadstart sets it up for you, you don't have to do it yourself. Is that where the confusion originated?
    YES I UNDERSTOOD THIS ALSO BUT THE CONFUSION WAS NOT HERE.
    MY SUGGESTION: if you modified the first sentence on page 2-10 to something like (You need to 'run the JAG' before you do Right-click the "HRService"Application Module and choose 'Test' 'otherwise you will get an error') would resolve the confusion for me.

  • How can i access my childs messages from my phone or computer?

    I need to access my childs phone messages, texts and photos, both out going and incoming. There has been activity late at night and i want to know if he is safe.

    Yes, a code is sent to the phone. You must enter this code into the web page or app in order to start receiving texts on the computer or another portable device. This is to prevent people from spying on you without your knowledge.
    I understand there is no single correct parenting advice, and we must adapt. In our house, the rules are: you do not own the phone until you pay the entire cost of service, no passwords on the device or any app that the parents do not know, random and on demand "safety checks" can be done at any time, and phone must be handed over at anytime. Removal of the phone is also a form of punishment. All apps are set up on the Apple family so we must approve before downloaded. Any app that I cannot get into due to a password that is not known gets deleted. I use the term "trust but verify" with them, but basically, if their age ends in "teen" truth gets distorted, no matter how good of a parent you are. They will always come back with "don't you trust me." (answer - most of the time, but not enough with real life situations that you won't get yourself in trouble) and I need privacy (answer - life lesson, anything you put on line is not private so you might as well start understanding that now)

  • How to access a nested child tag values in  XML Object(getting error:No Such variable)

    Hi,
    I could see the XML object data and while accessing a perticular attribute let say "SlotA"  it is showing "No such variable Error".
    I appreciate any of your  inputs or suggestions to solve this error.
    You can find the screen snapshot of the problem as part of the attachment here.
    Thanks in advance
    CSNPrasad.

    Dear Natasha,
    Thanks for your mails & cooperation as well.
    This time i  have added the trace() and can see the value.Now the problem is "can't access a property or method of a null object reference"
    Noe: This code mxml file is called at Runtime based on the data defined in the XMLSocket data.
    I need to display Remote devices like davice1,device2 device3 etc. these are added/delete at any time ,so we need to show same changes in UI at Runtime.
    I implemented Polymorphism concept to construct the device object at runtime like follows
    var device:Object;
    for each (var deviceData:XML indeviceListXML..Device)
                        device = getBatteryBay(deviceData.deviceId)
                        // If device already exists with the deviceId, update the details
                        // Else create a newdevice and add it to the container for displaying it.
                                                                                    if (device == null)
                            if (device.Type == "DEVICE1")
                                device = new Device1();
                            else if (device.Type == "DEVICE2")
                            device = new Device2();
                            else
                                device = new DefaultDevice();
                            device.id = deviceData.deviceId;
                          device.name = deviceData.devicename;
                         device.setData(deviceData);
    Here new Device1(); and new Device2() are the UIComponents and created at Runtime, upto here no problem to display, when i try to setData to the devices it is throwing error
    "can't access a property or method of a null object reference". because Device1 and Device2 has Child components like "DataIndicator" and need to set properties to these components which are not created yet.
    I appreciate any of your Input or suggestions at the earliest
    Thanks in Advance
    Regards

  • Best Practices for Accessing the Configuration data Modelled as XML File in

    Hi,
    I refer the couple of blof posts/Forum threads on How to model and access the Configuration data as XML inside OSB.
    One of the easiest and way is to
    Re: OSB: What is best practice for reading configuration information
    Another could be
    Uploading XML data as .xq file (Creating .xq file copy paste all the Configuration as XML )
    I need expert answers for following.
    1] I have .xsd file which is representing the Configuration data. Structure of XSD is
    <FrameworkConfig>
    <Config type="common" key="someKey">proprtyvalue</Config>
    <FrameworkConfig>
    2] As my project will move from one env to another the property-value will change according to the Environment...
    For Dev:
    <FrameworkConfig>
    <Config type="common" key="someKey">proprtyvalue_Dev</Config>
    <FrameworkConfig>
    For Stage :
    <FrameworkConfig>
    <Config type="common" key="someKey">proprtyvalue_Stage</Config>
    <FrameworkConfig>
    3] Let say I create the following Folder structure to store the Configuration file specific for dev/stage/prod instance
    OSB Project Folder
    |
    |---Dev
    |
    |--Dev_Config_file.xml
    |
    |---Stage
    |
    |--Stahe_Config_file.xml
    |
    |---Prod
    |
    |-Prod_Config_file.xml
    4] I need a way to load these property file as xml element/variable inside OSb message flow.?? I can't use XPath function fn:doc("URL") coz I don't know exact path of XMl on deployed server.
    5] Also I need to lookup/model the value which will specify the current server type(Dev/Stage/prod) on which OSB MF is running. Let say any construct which will act as a Global configuration and can be acccessible inside the OSb message flow. If I get the vaalue for the Global variable as Dev means I will load the xml config file under the Dev Directory @runtime containing key value pair for Dev environment.
    6] This Re: OSB: What is best practice for reading configuration information
    suggest the designing of the web application which will serve the xml file over the http protocol and getting the contents into variable (which in turn can be used in OSB message flow). Can we address this problem without creating the extra Project and adding the Dependencies? I read configuration file approach too..but the sample configuration file doesn't show entry of .xml file as resources
    Hope I am clear...I really appreciate your comments and suggestion..
    Sushil
    Edited by: Sushil Deshpande on Jan 24, 2011 10:56 AM

    If you can enforce some sort of naming convention for the transport endpoint for this proxy service across the environments, where the environment name is part of the endpoint you may able to retrieve it from $inbound in the message pipeline.
    eg. http://osb_host/service/prod/service1 ==> Prod and http://osb_host/service/prod/service2 ==> stage , then i think $inbound/ctx:transport/ctx:uri can give you /service/prod/service1 or /service/stage/service1 and applying appropriate xpath functions you will be able to extract the environment name.
    Chk this link for details on $inbound/ctx:transport : http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/userguide/context.html#wp1080822

  • Best pattern to signal a parent control from a deeply nested child control

    #1
    The application i created hosts intially a logincontrol.
    The login control signals the application with
    OnAuthenticationPassed to move states.
    This state change removes the login control and loads the
    administration control.
    this one level nesting is okay to be handled by having the
    parent listen to an event the child makes... but when multiple
    levels of nesting occurs... chaining events just to propagate the
    message up .. is not a flexible solution... example:
    The administration control hosts a lot of specific task
    controls.
    [ArticleManagement - (contains categorymanagement, new
    article, edit article -- further nesting controls)]
    eventually the session will die out on the server... so when
    a task (example: submit new article) the server response will be:
    <response>
    <isAuthenticated value="false" />
    </response>
    I will then have to propagate this message up to the
    application parent level so that administration control panel is
    removed and replaced with the login control.
    what is the best way to handle this?
    #2
    what are common transition patterns when removing one panel
    and putting another in its place? [i'm an application developer not
    an animator.]
    thanks,
    Leblanc Meneses

    thanks for the bubbling information. for a minute I thought i
    had to create a singleton to centralize registering events. I'm
    glad the framework manages this inside UIComponent .. less things i
    have to worry about.
    about animiation: thanks first of all.. looking nice now.
    my current implementation works but you can see where the
    viewstack starts and ends by when the control and leaves, enters
    the scene through the animation.
    If i change the viewstack width and height to 100% i loose
    the ability to center the inner contents...
    i want the viewstack width and height to 100% and still be
    able to center vertically and horizontally the inner contents. do
    you know how to do this?
    Thanks again,
    Leblanc Meneses
    <mx:states>
    <mx:State name="OnAuthenticationPassed">
    <mx:SetProperty name="selectedChild"
    target="{this.viewstack1}" value="{this.administrationmain1}" />
    </mx:State>
    </mx:states>
    <mx:Script>
    <![CDATA[
    import flash.events.*;
    import mx.effects.easing.Bounce;
    public function init():void
    //register to global event manager
    this.addEventListener("OnAuthenticationPassed",
    OnAuthenticationPassed);
    this.addEventListener("OnAuthenticationFailed",
    OnAuthenticationFailed);
    private function OnAuthenticationPassed(event:Event):void
    this.currentState="OnAuthenticationPassed";
    private function OnAuthenticationFailed(event:Event):void
    this.currentState="";
    this.viewstack1.selectedChild = this.login1;
    ]]>
    </mx:Script>
    <mx:Parallel id="outEffect">
    <mx:Dissolve duration="1000" alphaFrom="1.0"
    alphaTo="0.0"/>
    <mx:Move duration="500" xTo="-9000" xFrom="0" />
    </mx:Parallel>
    <mx:Parallel id="inEffect">
    <mx:Dissolve duration="1000" alphaFrom="0.0"
    alphaTo="1.0"/>
    <mx:Move duration="500" xTo="0" xFrom="-9000" />
    </mx:Parallel>
    <mx:ViewStack id="viewstack1" resizeToContent="true"
    horizontalCenter="0" verticalCenter="-5">
    <comp:login id="login1"
    hideEffect="{this.outEffect}" showEffect="{this.inEffect}"
    />
    <administration:administrationmain
    id="administrationmain1"
    hideEffect="{this.outEffect}" showEffect="{this.inEffect}"
    />
    </mx:ViewStack>

  • What property is the current step name in MainSequen​ce (client sequence) stored in to access in a process model?

    I'm trying to get the name of the current step that is about to be run in the MainSequence from a Process Model. This will be accessed in a "ProcessModelPreStep" callback. Thanks!

    Hi
    (TestStand 2.0.1f1)
    I have a attached an example ProcessModelPreStep callback to get that step name. I use the NameOf ( Parameters.Step).
    I hope this is what you are after.
    Regards
    Ray Farmer
    Regards
    Ray Farmer
    Attachments:
    SequentialModel.seq ‏161 KB

  • Accessing Webservice DataControl in Model

    hi,
    i have requirement where i want to access web service data control in ADF model ...
    regards
    Kiran

    Kiran S,
    Data controls are things that make model data available to the UI, so on the surface, what you are asking for isn't possible (actually, you didn't ask for anything, just made a statement :) )
    Have you considered using a web service proxy class in your model project to access the information?
    Can you share a better use case that might enable someone to give a better suggestion?
    John

  • Access nested h:dataTable programatically in Java

    Hi everyone. I've got an h:dataTable which is nested three levels deep, but also within some other components. Does anyone have a good solution to get a handle on the rowData() of the internally nested tables? Do I need to recursively traverse all of the children searching for a table? It's hard to use UIComponent.findComponent("") because the table ID is dynamically generated... etc.
    The first level table is bound to a backing bean where I am attempting to get these references.
    Thoughts? Thanks!

    Anyway, I did a quick create and test and it just worked..
    MyBeanpublic class MyBean {
        private HtmlDataTable parent;
        private HtmlDataTable child;
        private List<MyData> list;
        public MyBean() {
            list = new ArrayList<MyData>();
            list.add(new MyData("parent1", "nested1a", "nested1b", "nested1c"));
            list.add(new MyData("parent2", "nested2a", "nested2b", "nested2c"));
            list.add(new MyData("parent3", "nested3a", "nested3b", "nested3c"));
        public void submit() {
            System.out.println(child.getRowData());
        public HtmlDataTable getParent() {
            return parent;
        public HtmlDataTable getChild() {
            return child;
        public List<MyData> getList() {
            return list;
        public void setParent(HtmlDataTable parent) {
            this.parent = parent;
        public void setChild(HtmlDataTable child) {
            this.child = child;
        public void setList(List<MyData> list) {
            this.list = list;
    }MyDatapublic class MyData {
        private String value;
        private List<MyData> list;
        public MyData() {
        public MyData(String value) {
            this.value = value;
        public MyData(String value, String... nestedValues) {
            this(value);
            this.list = new ArrayList<MyData>();
            for (String nestedValue : nestedValues) {
                this.list.add(new MyData(nestedValue));
        public String getValue() {
            return value;
        public List<MyData> getList() {
            return list;
        public void setValue(String value) {
            this.value = value;
        public void setList(List<MyData> list) {
            this.list = list;
        public String toString() {
            return value;
    }JSF<h:form>
        <h:dataTable binding="#{myBean.parent}" value="#{myBean.list}" var="parentItem">
            <h:column>
                <h:dataTable binding="#{myBean.child}" value="#{parentItem.list}" var="childItem">
                    <h:column>
                        <h:commandButton value="#{childItem.value}" action="#{myBean.submit}" />
                    </h:column>
                </h:dataTable>
            </h:column>
        </h:dataTable>
    </h:form>

  • Trouble accessing a child of an XMLList

    I load an XML object with formed xml. I can use the object to trace the xml I can even display the attributes of the parent node. I can get a count of the children using the length().
    What I can do is access the data of a child node. What I get if I try xmlobj.child("somechild").toString() is a blank. No error occur.
    Thanks for any help/

    My code I found that the child("node name") doesn't work using the ordinal does. I'm reading the xml file contents.opf
    What I want to see is the text data of the metadata child.
    private function readOPFFile(fileName:String):void{
    var inStream:FileStream = new FileStream();  
    var inFile:File = targetDir;inFile = inFile.resolvePath(fileName);
    inStream.open(inFile, FileMode.READ);
    var metadata:String = "metadata"; 
    try {theOPFContent = inStream.readUTFBytes(inStream.bytesAvailable).toString();
    // trace(theOPFContent);theOPFXML = 
    new XML(theOPFContent);
    // trace(theOPFXML.attributes().toXMLString()); 
    trace("The Namespace::Name " + theOPFXML.child(0).child(0).child(0).name()); // I see the child name with namespace 
    trace("The Namespace::Name " + theOPFXML.child(0).child(0).child(1).name()); 
    trace(theOPFXML.child(0).child(0).child(0).toString()); 
    trace(theOPFXML.children()[0].children()[0].children()[0].toString()); 
    trace(theOPFXML.children()[0].children()[0].children()[1].toString());
    // trace(theOPFXML.children()[1].toXMLString());  
    trace(theOPFXML.children()[1].children()[0].attributes()[1]); 
    trace(theOPFXML.children()[2].children()[0].attributes()[0]); 
    trace(theOPFXML);}
    catch(e:EOFError){ 
    trace(e);

  • Migrating from Access to Oracle - Captured Model did not convert

    I'm trying to convert an Access database 2003 to Oracle using SQL Developer. I've worked through the migration process to the point where I need to convert the Captured Model to a Converted Model. The first time I ran that step, the application told me there were some issues with some indexes and didn't convert my captured model. I decided to delete my captured model and rerun the process from the point where I import the .xml file and recreate the captured model. I then tried again to create my Converted Model and again it didn't generate. The Converting Database dialog box tells me that it's 'converting the database' and it's 'transforming identifiers' but it just hangs and does nothing. What did I do wrong and how to I correct my issue so that I can create my Converted Model?
    Thank you.

    I was able to get past the Capture Model "hang up" business about three weeks ago. (I'm trying to migrate the Access 2003 Northwind db to APEX 3.2/Oracle 10g.) I found a thread in another forum that noted the problem could be due to a memory issue. This particular post referred to an omwb.bat file in a folder omwb. This may have been referring to an earlier version of SQL Developer -- I could not find the bat file. I'm using SQL Developer Version 2.1.1.64.45. I did, although find a sqldeveloper.bat file in my installation path: C:\Software\sqldeveloper_2.1.1.64.45\sqldeveloper\sqldeveloper\bin. In that file there is one very long java command. And at the very start of that command, I changed
    from: java -Xmx640M -Xms128M .................
    to: java -Xmx1024M -Xms640M ................
    In the java documentation (http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html) this notes that changing these parameters effect the size of the initial and maximum memory allocation pool.
    So that was pretty great -- that it worked. I am at the point now where I've retrieved it all into APEX but it is all invalid and there are so many issues going on all at once that I need to put the project on hold. There is not very much management patience for something like this that goes on and on. Maybe I'll work on it a bit at night now.
    Hope the memory thing helps someone.

Maybe you are looking for

  • How to setup a usb printer on the usb port of a network storage drive

    I have searched the forums and dont see any real info on this.. I have  a usb based officejet 7590 , winxp, and a iomega home media network storage drive the printer works fine when I install it on the local usb port of the laptop BUT its not clear h

  • Profitability Analysis not generated in Contract billing Document

    I have created the Billing document against the contract order but the Profitability Analysis is not getting generated.  But any sale order related billing document is created; system automatically creates the Profitability Analysis. Can you tell me

  • How to extract html file and folder from jar file

    Hi all , I should to submit my project tomorrow . plz help me . In my project jar file I have html page that should run when I use the program, I can't extract it . Also it have folder that contain some files that My program should use it . I dont kn

  • Send a reminder mail to employess for balance confirmations(FI)

    Hi guys, I have developed one Z report which when I execute it generates a letter in notepad giving the information about balance confirmations. But now the requirement is that when i execute the report it shud genearte the letter and send mails to o

  • Clickable link in Spry

    If a spry field displays data which contains a link like this one: <a href="www.website.com">www.website.com</a> How can I make it clickable, not just display it as a plain text???