Node id problem

Hi this is my problem.i have a jtree which a user adds nodes to and from.now, when a duplicate is added to the tree, i assign a unique index to the end of the defaultmutabletreenode, for example, if i have "book" and i input another entry called"book" the new book becomes book[1] anothre book entry would be added as book[2] etc...
Now, each time the user adds an entry to the jtree, i try to create a similar entry to be outputted to an xml file. i can create the root ok, and i can creare an element ok too, doc.createElement("book");, happy days. But, lets now imagine that i have already outputted an entry to the xml file that looks like <book /> and a new entry also called "book" is ready to be outputted. This new book entry will look like "book[1]" before it is written to the xml file, where the [1] is a unique identifier for this node. what i now do is, try to create an element like so:
doc.createElementNS("book[1]", "book"); with "book[1]" as the unique identifier, yet this throws an exception saying that there are illegal characters present. Fair enough, but i really need to know how to use the above method properly.i will need to have a unique identifier for duplicates, so i can distinguish between them when i want to retrieve a node uniquely to append a child onto it or add a value to it.i will not be able to do this if there are duplicates.can some1 please help me as to how, i can uniquely keep track of each node that i output to an xml file.
please help!

What you're doing is trying to generate:<book>
  <book:book xmlns:book="book[1]"/>
</book>Which isn't legal, as the namespace must be a URI, and 'book[1]' isn't a legal URI.
You could legally use a urn or an http url or something as the namespace to mean 'this thing called book is in fact of a completely unrelated type to the other things called book in this list', in which case your XML will be:<book>
  <book:book xmlns:book="http://my.doman.com/book1"/>
</book>But it would be very wierd to use the namespace URI mearly to provide uniqueness, and any other XML tools won't be expecting that sort of use, whereas some will work out the box with @xml:id, and many will work with @id using a DTD or schema.
<book>
  <book id='z1'/>
</book>Pete

Similar Messages

  • IMac (March 2009) - Invalid Node Structure problem

    Hi All
    I was using my iMac as normal yesterday, when suddenly the system ground to a halt (something I never seen since using OS X). As I had work to do, after about an hour, I restarted, expecting it to be an app misbehaving or something straight forward, but on restart the same thing happened almost straight away.
    So, I restarted again, only for the iMac to get stuck on the blue screen which follows the grey 'cog' screen. After looking through these discussions, and some other Mac forums, I booted from the installer disk, tried to run Disk Utility, which found issues and couldn't repair the disk.
    I then tried Safe-User mode and fsck, which reported the aforementioned Invalid Node Structure problem. After checking a few more forums, I thought I would try to Erase the disk and reinstall Mac OS. I restored from my Time Machine backup, and finally got it to start, but the system moved at a snail's pace, and wouldn't open any apps or files.
    I've tried again with fsck, and also fsck_hfs -r /dev/disk0s2 but all I get is the same error message:
    disk0s2: I/O error.
    Invalid Node Structure
    (4, 38403)
    ** Volume check failed.
    /dev/rdisk0s2 (hfs) EXITED WITH SIGNAL 8
    So, does anyone know if there is anything I can do to save the iMac? Or does it need a new HD? It is my primary work computer, so I really need to get it back, and after buying it in the UK, am now in France for 6 weeks, so it's difficult for me to take it to an Apple specialist.
    Any help would be greatly appreciated, thanks in advance,
    Daniel

    As the last user stated, Disk Warrior maybe able to correct it, however if you search the net, you will see there are more than one user with this problem. I had the same problem, however, my machine is out of warranty, It started like you are saying, I RAN disk warrior which corrected the problem long enough to boot the system. In a matter of 10 minutes or so, the system started pausing (apps hung, but in a matter of seconds recovered). I was checking the disk with fsck_hfs and fsck while booted from a USB drive with a maintenance install of 10.5.6. After running fsck the 5th time with different options suggested from the internet, I rebooted with my disk warrior DVD only to find the drive NOT mounted, Drive utility see's it (even can attempt to run disk repair, but it locks up the system when trying this). Disk Warrior doesn't even see the disk to run a directory repair, although in the "check s.m.a.r.t status it sees it as a sata device, and SAYS ITS NORMAL).
    Since my iMac was out of warranty, I followed the online instructions to replace the hard drive (not too difficult) and everything is fine now.
    The old drive still wont mount, but another utility I bought (data rescue II) has been able to quick scan it and access all the data, even though it wont clear a fsck fsck_hfs or disk warrior, anyways, get it back while you can, IT IS THE hard drive itself, and lots of other iMac users online with the same issue (can you say WHY is my iMac SOOO HOT on the apple in the back (right where the drive is and not sufficient cooling in my opinion, but hey, some people might want to lay their computers face down and fry eggs on the it or something... ))
    -SD

  • Do I use same oracle account on 2 cluster nodes cause problem?

    Do I use same oracle account on 2 cluster nodes cause problem?
    If I use same oracle account on 2 cluster nodes running 2 database, when failover happens, 2 database will be running on one node, does 2 oracle account make SHM ... memory conflict?
    or do I have to use oracle01 account on node1, oracle02 account on node2? Can not use same name account?
    Thanks.

    I'm not 100% certain I understood the question, so I'll rephrase them and answer them.
    Q. If I have the same Oracle account on each cluster node, e.g. uid=100 (oracle) gid=100 (oinstall), groups dba=200, can I run two databases, one on each cluster node without problems?
    A. Yes. Having multiple DBs on one node is not a problem and doesn't cause shared memory problems. Obviously each database needs a different database name and thus different SID.
    Q. Can I have two different Oracle accounts on each cluster node e.g. uid=100 (oraclea) gid=100 (oinstall), groups dba=200 and e.g. uid=300 (oracleb) gid=100 (oinstall), groups dba=200, and run two databases, one for each Oracle user?
    A. Yes. The different Oracle user names would need to be associated with different Oracle installations, i.e. Oracle HOMEs. So you might have /oracle/oracle/product/10.2.0/db_1 (oraclea) and /oracle/oracle/product/11.0.1.0/db_1 (oracleb). The ORACLE_HOME is then used to determine the Oracle user name by checking the user of the Oracle binary in the ${ORACLE_HOME}/bin directory.
    Tim
    ---

  • JTree multiple nodes selection problem !

    I can not make my JTree to be in multiple node selection mode.
    I have custom tree model and tree node class, the tree model class
    implements javax.swing.tree.TreeModel, and the tree node is an ordinary
    Java object.
    In this setting, my JTree is always in single selection mode.
    I have tried set the selection model after the JTree has initialized, and
    it didn't work.
    What I missed in TreeModel implementation ? Or should my tree node class
    also implements javax.swing.tree.TreeNode ?
    Don't tell me just call
    xxtree.getSelectionModel().setSelectionMode(javax.swing.tree.TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION);
    It didn't work.

    Just in case anyone wants to know, I did find the magic number of files, and what the problem is. I talked with tech suppot at Adobe, and they know the problem exists, but won't fix it. I did put in a request in the "Request a Feature" form. Read on:
    The magic number is 40 Canon 1Ds Mark III Raw files, and clicking on three or more keywords. The key to not having the numbers of keywords counted incorrectly in the filter pane is to click on the keywords as fast as you can before it starts to write to the metadata. If you click on each keyword one at a time, and wait about a second or more between selecting the keywords, then the counts in the filter panel for the number of keywords is not correct in relation to the number of files that you have chosen to apply keywords to. The cure for this is to click as many keywords as possible as fast as you can before the software starts incorporating the keywords into the metadata.
    I would suggest to Adobe, that a nice feature would be that one could click on as many keywords as one would want, to as many files one would want, and then have a button or icon that would enable one to then apply all the keywords at once, instead of applying them as you click them as it is now. I also would love it if Adobe fixed it now instead of waiting to fix it in the version of CS5. Someone on Adobe's support line told me that Adobe would rather wait to put this into the CS5 version than fix it now. I don't think that is right, but heck, I am only one guy who depends on this software to provide images keyworded to my clients in a timely manner. I would never run my business like this Adobe. If there is a problem, and there is, please fix it now, or give me some of my money back since your product has a design flaw that is having a negative impact in my ability to to my job and run my business.
    Thanks!
    Daniel Root
    Portland, OR

  • Content node name problem during creation on portal 9.2 cm filesystem repo

    Hi all,
    We are developing a portal site using weblogic portal server 9.2.
    We are using the portal built-in content management system of the portal admin app. And We use the filesystem repository (with library service disabled) to store our content data by following the setup on documentatation.
    We use the create_db.cmd script to create the cms tables in a oracle database. The input contents' binary files and metadata are successfully stored in the filesystem directory and database correspondingly.
    However, we encountered some bugs/unexpected behaviour on creating/uploading binary data when using the content creation form.
    The problem is that when we try to create a content with one (required and primary) binary property, the node name of the new content does not always follow the name input by the user. The content node name will changed according to the uploaded file or the binary property name defined in content type, which are unexpected behaviour. In fact, we expect the node name stay as the same (with extension padded) of what user input on creating it and the property's filename should use this name.
    When we use the WYSIWYG editor to create the document of the binary property, after saving the document, the filename of this binary property automatically changed to the content type's property name, after clicking save button on the content, the node name of the content changed to the content type's property name too!
    When we upload file for this binary property, the property 's filename changed to the uploaded file's filename, and changing the node name of that content too!
    We would like to know what would cause this kind of misbehaviour/bug,
    could it be caused by misconfiguration on server? the filesystem repository? the database scheme?
    Any helps or suggestions on it would be greatly appreciated.
    Best Regards,
    Keaton

    Thanks for the reply jalpesh, you answered the filename on file upload method.
    But what about the filename changes due to create document (WYSIWYG editor) method. The content filename changed to the property-name.ext about saving the content, which is quite a strange behaviour. As the user will not be able to add the same type of content on current directory cause the content filename follow the property-name.ext and cause same filename conflicts when saving.
    We are using the weblogic portal server 9.2 MP 2 with oracle database (bea type 4 connection driver).
    Any advices or suggestions?
    Regards,
    Keaton

  • RAC node startup problem

    Hi,
    Hi We have a 2 node RAC setup. Its been working fine. But After an improper machine shutdown,Second node in the RAC is not starting up. Primary node is coming up fine.
    In the alertlog of the second node...it gives the message
    "lmon registered with NM - instance id 2 (internal mem no 1)"
    After the above message it is not progressing.
    In the LMON trace file following entries lines are written.
    *** SESSION ID:(3.1) 2006-10-17 16:51:25.966
    GES IPC: Receivers 3 Senders 3
    GES IPC: Buffers Receive 1000 Send (i:1430 b:1430) Reserve 1000
    GES IPC: Msg Size Regular 396 Batch 2048
    Batch msg size = 2048
    Batching factor: enqueue replay 48, ack 53
    Batching factor: cache replay 34 size per lock 56
    kjxggin: receive buffer size = 32768
    kjxgmin: SKGXN ver (2 1 Oracle 9i Reference CM)
    *** 2006-10-17 16:51:29.512
    kjxgmrcfg: Reconfiguration started, reason 1
    kjxgmcs: Setting state to 0 0.
    *** 2006-10-17 16:51:29.527
    Name Service frozen
    kjxgmcs: Setting state to 0 1.
    kjfcpiora: publish my weight 19490
    *** 2006-10-17 16:56:38.362
    kjxgfipccb: msg 0x0xbc063dc, mbo 0x0xbc063d8, type 24, ack 0, ref 0, stat 3
    kjxgfipccb: Send timed out, stat 3 inst 0, type 24, tkt (0,0)
    Submitting asynchronized dump request [2]
    gsdctl is running fine.
    oracm has also come up without any problems.
    cluster_database=true in both the instances.
    Can any body please let me know what can be the problem.
    Thanks in advance.
    Regards,
    Aditya.

    If you have access to metalink - 276434.1 is the document id you need to follow.
    syntax to change vip is:
    srvctl modify nodeapps -n <NODENAME> -A <NEW_VIP_IP_OR_NAME>/<SUBNET_IP>/<INTERFACE_NAME>

  • Formula node parenthesis problems

    Hi Y'all,
       I'm going cross-eyed trying to figure out what is wrong with the equation that I'm trying to use in a formula node. I've attached both the VI (version LabVIEW 2009) and the error msg. Unfortunately there are a couple more of these, but maybe if I get the problem with this one pointed out to me ...
    Thanks!
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion
    Solved!
    Go to Solution.
    Attachments:
    Calculate Discharge coeff.vi ‏7 KB

    Ha ha ha, thank goodness for Mac's. When I went back and replaced all the "-" with "-" it fixed the problem. The problem was that I had copied/pasted from a pdf document, and what was displayed in the formula node wasn't what it was seeing! So much for WYSIWYG!
    What a PAIN! It didn't say "What the heck is this weird character", told me that I alternately was missing a right hand parenthesis, or a semi-colon.
    Thanks,
    Message Edited by LV_Pro on 10-21-2009 12:39 PM
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • Formula Node or problem

    Hi,
    I'm having a problem using the formula node.
    The output variable is always 1, but I notice that if the code was:
    if(N != 1)
    L = 1;
    else
    L = 0;
    The program work ok.
    Thanks,
    Sílvia
    Attachments:
    1.png ‏5 KB
    1.png ‏5 KB

    Your screen shot shows if(N!=1||N!=2).  That is if N is not equal to 1 OR N is not equal to 2.  Well, since N can never be equal to 1 and 2 at the same time, of course the statemenet always evaluates to True.
    If N=0  True OR True = True
    If N=1  False OR True = True
    If N=2  True OR False = True
    If N=3  True OR True = True

  • Dynamic node Creation Problem

    Hi all,
    I am trying to create a node through Java code bellow is the code
    IWDNodeInfo graph = wdContext.nodeGraph().getNodeInfo();
    for(int i=0;i<10;i++)
         int nodeNumber = i+4;
         IWDNodeInfo seriseNode = graph.addChild("Serise"+nodeNumber,null,true,false,false,false,false,false,null,null,null);
         seriseNode.addAttribute("S"+nodeNumber+"_size","com.sap.dictionary.double");
         seriseNode.addAttribute("S"+nodeNumber+"_xVal","com.sap.dictionary.double");
         seriseNode.addAttribute("S"+nodeNumber+"_yVal","com.sap.dictionary.double");
         //seriseNode.addAttribute("S"+nodeNumber+"_tooltip","com.sap.dictionary.string");
         IWDNode node = wdContext.nodeGraph().getChildNode("Serise"+nodeNumber,IWDNode.NO_SELECTION);
         IWDNodeElement nodeElem = node.createElement();
         nodeElem.setAttributeValue("S"+nodeNumber+"_xVal",new Double(0));
         nodeElem.setAttributeValue("S"+nodeNumber+"_yVal",new Double(0));
         nodeElem.setAttributeValue("S"+nodeNumber+"_size",new Double(0));
         node.addElement(nodeElem);
    IWDNode node = wdContext.nodeGraph().getChildNode("Serise4",IWDNode.NO_SELECTION);
    node.getCurrentElement().getAttributeAsText("S4_size");
    now it is giving me null pointer exception at last line any idea why it coming.
    Thanks

    Hi,
    This problem is solved but now there is another problem,
    I am creating a Node and attributes at runtime and want to bind to a business graphics UI element bellow is the code for that
    IWDPoint se_point = (IWDPoint) view.createElement(IWDPoint.class,"Series"+seriseNumber+"_Point");
    se.setPoint(se_point);
    se.getPoint().bindValueSource("Graph.Serise"+seriseNumber);
    se.setLabel(supp.getSupplier_Name());
    IWDNumericValue numXVal = (IWDNumericValue) view.createElement(IWDNumericValue.class,"S_"+seriseNumber+"numXVal");
    numXVal.bindValue("Graph.Series"+seriseNumber+".S"+seriseNumber+"_xVal");
    numXVal.setType(WDValueTypeEnumeration.X);
    numXVal.setValue(supp.getXcord());
    and it gives bellow error for last line in the code
    com.sap.tc.webdynpro.progmodel.context.ContextException: Node(GraphView.Graph): no child node 'Series1' at index -1
    Can any one help in this
    Thanks

  • Abrupt shutdown of master node causes problem

    A service in usmbcom1 (LMID ) makes tpacall to a service which is
    present in
    both usmbapp1 ( master node LMID ) and usmbapp2 ( slave node LMID
    ) ( HERE
    usmbcom1 , usmbapp1 and usmbapp2 are LMIDs whereas the
    corresponding physical m/cs unames are usmbd5 , usmbd3 and usmbd4
    They are separate sun boxes) . LDBAL = Y and tpacall is done at
    25 / sec.
    Now there are 2 scenarios.
    1. While tpacall is in progress we kill the servers in usmbapp1
    using
    kill command ( not kill -9) . Then clean up the ipcs. Only
    few ( 3-5 out of a
    total of 5000 ) messages were lost . This is understandable since
    messages
    which were already in the queue got lost). The rest of the messages
    were
    processes by usmbapp2.
    2. In this case we switched off the sun box usmbapp1 ( m/c name
    usmbd3)
    while tpacall was in progress. This time we lost approx 50% of
    the
    messages. However if we go to the slave m/c i.e usmbapp2 and manually
    make it master ( tmadmin ... master) ., then from that point of
    time we stopped
    losing messages.
    Does that mean manual intervention is necessary if DBBL goes
    down? Is there anything which I am missing out while configuring
    the system?

    Hi Scott,
    You did understand the scenario and the problems.
    The answers are quite convincing.
    Actually the QA team here are doing failover testing
    and they have both these ( kill and m/c shutdown)
    as their test cases.
    However I would like to know about what you meant
    by High Availability Solutions.
    Do you also mean that if I shutdown my master m/c
    then no event would be written in the ULOG of slave,
    which can be monitored and used to convert the slave
    into master programatically ( I mean thru tpadmcall)
    Thanks
    Somashish
    Scott Orshan <[email protected]> wrote:
    Hi,
    I'm not sure if I completely comprehend your situation,
    but let me take
    a guess.
    When you killed the processes (including the Bridge),
    which by the way
    is a bad thing to do to TUXEDO, TCP notified the other
    connected nodes
    that the connection had dropped. This happens fairly quickly.
    But if you just turn off a machine, TCP may not detect
    it until it times
    out, which can take several minutes. Since TUXEDO was
    doing Round Robin
    load balancing, half the requests were sent to the Bridge,
    with a
    destination of the dead machine.
    To answer your final question, the DBBL has to be migrated
    manually,
    unless you are using one of our High Availability solutions
    that uses an
    external monitor.
    The reason is that it is very hard to distinguish between
    a network
    failure or slowdown, and a real failure of the Master
    node. And it would
    be very bad to have two machines in the domain acting
    as the Master.
         Scott Orshan
         BEA Systems
    Somashish Gupta wrote:
    A service in usmbcom1 (LMID ) makes tpacall to a servicewhich is
    present in
    both usmbapp1 ( master node LMID ) and usmbapp2 ( slavenode LMID
    ) ( HERE
    usmbcom1 , usmbapp1 and usmbapp2 are LMIDs whereas the
    corresponding physical m/cs unames are usmbd5 , usmbd3and usmbd4
    They are separate sun boxes) . LDBAL = Y and tpacallis done at
    25 / sec.
    Now there are 2 scenarios.
    1. While tpacall is in progress we kill the serversin usmbapp1
    using
    kill command ( not kill -9) . Then clean up theipcs. Only
    few ( 3-5 out of a
    total of 5000 ) messages were lost . This is understandablesince
    messages
    which were already in the queue got lost). The restof the messages
    were
    processes by usmbapp2.
    2. In this case we switched off the sun box usmbapp1( m/c name
    usmbd3)
    while tpacall was in progress. This time we lost approx50% of
    the
    messages. However if we go to the slave m/c i.e usmbapp2and manually
    make it master ( tmadmin ... master) ., then from thatpoint of
    time we stopped
    losing messages.
    Does that mean manual intervention is necessary if DBBLgoes
    down? Is there anything which I am missing out whileconfiguring
    the system?

  • Hierarchy node authorization problem

    Hi All,
    We are on SP10 for BI.
    We are restricting user to a node (fund center) in the hierarchy (based on fund centers).
    1) When a user executes the query and selects a node (in the filter
    selection criteria) to which he is authorized, the output of the query is
    restricted to the authorized node. This is what we want. Test is successful.
       After the query is executed, when the user tries to play around with the
    Fund Center info-object by moving it to the Free Characteristics space and
    back to the Rows, the node restriction still works and the user is again
    restricted to the authorized node. This is what we want. Test is successful.
    2) When a user executes the query and selects a higher node (in the filter
    selection criteria) to which he is NOT authorized, the output of the query
    is still restricted to the authorized node. This is what we want. Test is
    successful.
       After the query is executed, when the user tries to play around with the
    Fund Center info-object by moving it to the Free Characteristics space and
    back to the Rows, the node restriction no longer works and the user is now
    able to the data for the complete hierarchy. Now here our security fails and
    we do not want this to happen.
    Possible approach for a solution:
    We would want the user to see only the authorized nodes in the filter
    selection criteria. By doing this, the user will not be able select any
    other nodes and would be restricted to Testing scenario 1, thus avoiding testing scenario 2. Is this approach feasible? I found couple of OSS note but none of them exactly match to our situation here. Did anyone encounter this problem?
    Is there any other solution for this problem?
    Thanks,
    Jay

    Hello,
    this is interesting and sounds like system failure.
    I would suggest to open an OSS message and explain the system behaviour to the support. I'm sure they can help you.
    For me it sounds like the node authorization restriction should be active anytime.
    Best, Michael

  • Node/NodeList problem [XML/DOM]

    Problem: IJava code is not printing out the 2nd node but rather printing the 1st one twice from the XML file.
                            Node firstChildren = doc.getFirstChild();
                   String nodeName1 = firstChildren.getNodeName();
                   System.out.println(nodeName1);
                   Node nextNode = firstChildren.getNextSibling();
                   String nodeName = nextNode.getNodeName();
                   System.out.println(nodeName);the XML looks like this:
    <Office>
                 <Employee Employeename="Ryan">
                            <Position>Claims</Position>
                 </Employee>
    </Office>The Java code prints out:
    Office
    Office
    Also is there a way/method to get the values of an element without making the element values into attributes? getNodeValues returns null for elements.

    Not sure your question, You should only have one node at the root of the tree, so you shouldn't be getting two different nodes. walking the roots 'siblings'
    An element doesn't have a 'value'. What we perceive a an elements value is just child nodes (Text, Elements, etc) that you need to walk with getFirstChild, getNextSibling, etc.

  • Shake Rendering File out Node Crashing problem

    I have 4.1 with leopard installed on my Imac intel 2.16 core duo machine and every time I try to render a file out node, it crashes or quits unexpectedly. Does this happen with anyone else or can anyone tell me how to fix this problem? Apparently, there have been some issues with this but I cant get a straight answer. Any help would be appreciated. Thanks

    To trash preferences, close down Shake, go to your user directory, then navigate to Library/Preferences and delete the file called com.apple.shake.plist. Empty the trash, then fire up Shake again.
    I had a weird bug today. I was trying to output a single-frame PNG and it came out garbled. I tried all kinds of things like trashing prefs, changing settings, etc. In the end, I outputted it as a TIFF, and converted it in Photoshop, which worked perfectly.
    For your issue, try outputting it as a sequence of TIFF images and see if it works. Just do a short range of frames to test it.

  • Installing grid on two node cluster problems with clufvy

    Hi all
    HPUX itanium 11.31
    has anyone come across the following error when installing grid infra 11.2.0.2. I successfully installed 11.2.0.1 but when it came to install 11.2.0.2 i came across a number of problems
    1. when running
    runcluvfy.sh stage -pre crsinst -n davis,cruz -verbose on
    node cruz i get the following error
    crt0: ERROR couldn't open errno:000000002
    crt0: ERROR couldn't open errno:000000002
    This is successfull on node davis but I wanted to try it from cruz
    2. when installing grid , during the installtion i got the following error
    Remote 'AttachHome' failed on nodes: 'cruz'. Refer to '/u01/app/oraInventory/logs/installActions2011-02-11_11-58-57AM.log' for details.
    You can manually re-run the following command on the failed nodes after the installation:
    /u01/app/11.2.0.2/grid/oui/bin/runInstaller -attachHome -noClusterEnabled ORACLE_HOME=/u01/app/11.2.0.2/grid ORACLE_HOME_NAME=Ora11g_gridinfrahome1 CLUSTER_NODES=davis,cruz "INVENTORY_LOCATION=/u01/app/oraInventory" LOCAL_NODE=<node on which command is to be run>.
    Please refer 'AttachHome' logs under central inventory of remote nodes where failure occurred for more details.
    any help would be appreciated
    Thanks
    Mike

    Welcome to forum,
    Past here the msg error from log '/u01/app/oraInventory/logs/installActions2011-02-11_11-58-57AM.log'.
    Please use formating option "{code}" described in FAQ to post msg logs.
    http://forums.oracle.com/forums/help.jspa
    Regards,
    Levi Pereira

  • Tree2 with node.checked problem

    I have a problem with tomahawk tree2 with checkboxes.
    I use TreeNodeChecked as type of node:
    <t:selectBooleanCheckbox id="folder" value="#{node.checked}" style="cursor:pointer;" onchange="selectGroup(this)">
    When user is clicking on the checkbox and if node has a children then is invoking javascript function named selectGroup, which selects all children nodes of clicked checkbox node.
    But problem exists when clicked node is collapsed.
    Then selected checkboxes after submit is not saved in node.checked fields.
    On the expand nodes is everything ok.
    Who knows why?

    My best guess would be that the nodes that have not been expanded don't actually exist in the HTML. So they cannot send data back to the server. You may want to implement server-side logic to handle this case.

Maybe you are looking for

  • Cannot send email using gmail account

    Within the last month or so, sending mail from my gmail id in Thunderbird fails. Receiving works fine. I'm running windows 7 on a desktop. Status says - 'connected to smtp.gmail.com...' Error message is - 'Sending of message failed. The message could

  • Crystal Report not Adopting all possible Dropdown Values from BEx Variable

    Hi all, I am having an issue in a Crystal report where the drop down parameter that is sourced from a BEx query variable does not include all the possible values in the cube (or in master data). After learning my lesson the first time of not changing

  • File path control: invoke file browser activation

    Hi there, on the front panel of a vi I want a file path control to open automatically the file browser window when the user clicks into the path control. Is there any way to do that programmatically after the mouse down event has been fired? I couldn

  • Is anyone having trouble with vocal glitching in playback?

    Listening back to vocals with the full band, one vocal track sounds weirdly garbled/distorted (almost auto-tuned sounding, not over-driven). But when I listen to it "solo," it sounds normal. This only happens on certain tracks and I can't seem to fix

  • Logic is correct or not

    data : begin of it_zmm_isslip occurs 0.         include structure zmm_isslip. data : flag(1). data : end of it_zmm_isslip. controls : tab201 type tableview using screen '0100'. data: ok_code type sy-ucomm,       save_ok like ok_code. selection-screen