What is "node #-1"?

I am opening a .step file in Adobe Toolkit, creating an animation, saving it as a ud3 file, and opening it within Acrobat 3D. Everything works fine, except over in my model tree, above where the components are listed, the top-most level in the tree is called "node #-1".
All I want to do is change this level to say Parts List or something. I can change all the other components in the toolkit, but this one comes over in the conversion or something and I can't modify it anywhere it seems like...
Anyone know what this is? Javascript or something?

Hello,
thanks for the file i have analysed your issue, this is a bug.
We are working on this for a future version of APEX, but nothing has been scheduled yet and I am not able to provide a date or version for the implementation of the fix
Best Regards
william gallego
A3D QE Team

Similar Messages

  • What is Node Manager ?

    Hi
    I have been reading documents on Oracle Fusion Middleware 11g. At lot of places 'Node Manager' is mentioned across these documents.
    Please can someone explain here what is Node Manager and what it is its role in OFMW 11g ?
    Cheers
    Mayur

    Hi Mayur,
    For more details please refer to: http://weblogic-wonders.com/weblogic/2010/06/18/weblogic-initials/
    <b><font color=maroon> What is NodeManager?</font></b>
    A Node Manager process is not associated with a specific WebLogic domain but with a machine. Node Manager process to control server instances in any WebLogic Server domain until the server instances reside on the same machine as the Node Manager process.
    Node Manager is a WebLogic Server utility that enables you to start, shut down, and restart Administration Server and Managed Server instances from a remote location. Although Node Manager is optional, it is recommended if your WebLogic Server environment hosts applications with high availability requirements.
    A Node Manager process is not associated with a specific WebLogic domain but with a machine. You can use the same Node Manager process to control server instances in any WebLogic Server domain, as long as the server instances reside on the same machine as the Node Manager process.
    <b><font color=maroon>Why We Need Nodemanagers?</font></b>
    1). It can Start, Shut Down, and Restart an Administration Server which has assigned a Machine.
    2). It can Start, Shut Down, and Restart an Managed Server which has assigned a Machine.
    3). It can Restart Administration and Managed Servers. (Crash Recovery of Servers is an Interesting feature)
    4). It can be used to Monitor Servers and View Log Data
    <b><font color=maroon>Types of NodeManagers?</font></b>
    *1). Java Based Nodemanager:* This can be used in Windiows as well as UNIX based Operating systems. Java Based Node Manager is not supported on Open VMS, OS/390, AS400, UnixWare, or Tru64 UNIX.
    *2). Script Based Nodemanager:* This nodemanager can be used in UNIX based operating systems. The advantage of the script-based Node Manager is that it can remotely manage servers over a network that has been configured to use SSH.
    For More Information on NodeManager please refer to:
    http://download.oracle.com/docs/cd/E13222_01/wls/docs90/server_start/nodemgr.html
    And
    http://blogs.oracle.com/jamesbayer/2010/01/weblogic_nodemanager_quick_sta.html
    Thanks
    Jay SenSharma

  • What is node and how to create a node in logical database in reports.

    What is the purpose of this nodes. Show me one example program using these nodes.Clearly show me an example with explanation. If this is taking any table means.Plz give me a clear example with my ztable.
    Tables : zptable1
    fields in this table are f1,
                                    f2,
                                    f3.

    hi,
    The sole effect of the NODES statement is to copy data from logical databases to executable programs. It defines an interface work area and is allowed only in the global declaration section of executable programs that are linked to a logical database, and in the database program of logical databases. node must be the name of a node of the logical database. NODES declares a table work area node for the respective node. The data type of the table work area is either predefined in the node of the logical database or can be chosen from a list using addition TYPE.
    The nodes of the structure of a logical database are maintained in transaction SE36
    for more go to transaction ABAPHELP and write Nodes you will get examples there and explanation
    thanks
    Sachin

  • Question:  what is node limit on RAC?

    Any body know what is the max number of node the RAC can has?
    Thanks,

    Why do you ask?
    Practically, the limit is far, far more likely to be dictated by your application(s) than by Oracle. As with any scale out solution, there is a declining marginal benefit as you add nodes. Beyond that, individual applications are generally not built in such a way that they scale nearly as well as RAC itself does. So you are almost always limited by the scalability of your application long before you are limited by the scalability of RAC.
    Justin

  • HT5093 What collada nodes are supported in iBooks author?

    There are many, many nodes available within the Collada framework, and iBooks only supports a handful of these. For instance, iBooks supports uv mapped textures, but not alpha channel maps.  I think it supports animation, but I don't know what are the limitations of this.  I am mystified why Apple, as the software author, does not provide a fuller documentation, or at least answer these types of basic questions themselves directly.  I don't know of other software authors that don't answer questions about their software!

    or at least answer these types of basic questions themselves directly.
    If you mean here, know that the forums are strictly user-to-user.
    think it supports animation, but I don't know what are the limitations of this.
    Have you tried using the support contact and phone number in the 8.23 email from iTunes Connect.

  • Hi what is Node Indexer concept?

    I created a xml file "com.day.cq.wcm.core.impl.servlets.contentfinder.NodeNameIndexerImpl" in my project under 'config.author' folder. i done this to enable Auto-Suggestions when i try to search for something. After adding this patch the Auto-Suggest is working pretty fine. Now i want to know how this change enables the auto-suggests, i dont know what is going behind the screen. Can anyone help me out in this...

    I created a xml file "com.day.cq.wcm.core.impl.servlets.contentfinder.NodeNameIndexerImpl" in my project under 'config.author' folder. i done this to enable Auto-Suggestions when i try to search for something. After adding this patch the Auto-Suggest is working pretty fine. Now i want to know how this change enables the auto-suggests, i dont know what is going behind the screen. Can anyone help me out in this...

  • Getting the XPath from a Node

    Hey Folks, have a scenario where i need to link my data, i.e one node points to another node, e.g
    <data>
    <liability id="1">
    <value> 10000 </value>
    </liability>
    <asset id = "2">
    <value> 20000 </value>
    </asset>
    </data>
    so take the case above, i have a house which is an asset and i have a mortgage(liability) on that house, now i want to show that in my asset that there is a liability on this asset, so i need to come up with a way to link my asset to a liability, now easiest way in my thinking is just point to the XPath of the liability!! Now problem is this, at the data level that im working at, i know what data node im working on but i dont know its absolute path, in my case the above XML is just a snippet of what im dealing with, there is more hierarchical levels in my document!! Maybe im blind but i couldnt see from the API how to get the XPath of a node?? is there existing API which does this or will i have to go ahead and write something to come up with the XPath!! or does anyone have any other suggestions as to how i would do my link??
    The way i see my XML when finished is something like this
    <data>
    <liability id="1">
    <value> 10000 </value>
    </liability>
    <asset id = "2">
    <value> 20000 </value>
    <liability> /data/liability[@id='1'] </liability>
    </asset>
    </data>
    any thoughts are welcome,
    cheers,
    LL

    A better design would be to make your "id" attribute the key... looking back at your post, it seems that you have done that already. So your XML should just look something like this:<data>
    <liability id="1">
    <value> 10000 </value>
    </liability>
    <asset id = "2" liabilityid="1">
    <value> 20000 </value>
    </asset>
    </data>Then when your code needs to match the liability to the asset, you can easily build the XPath to find it. (Of course if there can be more than one liability per asset, you shouldn't use a liabilityid attribute as I did in the example.)
    PC&#178;

  • How to disable a node in ADF Tree Table?

    Hi,
    I'm using JDeveloper version - 11.1.1.7
    I have a requirement to disable the nodes in Tree table based on status of the node. How can I achieve this?
    Any inputs would be helpful.
    Thanks
    Ravi

    Hi,
    you cannot disable nodes in the sense that they cannot be expanded or selected. What you can do though is to ignore node selections in a custom selection handler or to render the node different (e.g. using an output text component instead of a command link or image etc.). What is your functional requirement for what disabled nodes should not do
    Frank

  • The term "invalid node structure"

    can anyone out there explain (in real simple terms please) what "invalid node structure" means. this appeared when i ran disk utility and attempted to verify my start up disk. one day the disk was perfect, the next day it had invalid node structure and "needs to be repaired". so i started up from the install dvd and then ran disk utilities on the offending disk. the start up disk then indicated all was perfect. i restarted from the normal drive and again ran the utilities test. all is fine. so what is a node and how does it become invalid structurally and why did it get well by itself????

    Google "invalid node structure" and you'll find many mentions of this problem. It basically means a directory entry on your disk has become corrupted. Running Disk Utility's Repair Disk option can sometimes repair the problem. If not, Disk Warrior from http://alsoft.com/ is my disk repair tool of choice.

  • DTN - Hide top node

    I have created my site navigation and it has four nodes
    NODE ONE contains two nodes -> NODE TWO AND NODE THREE
    NODE TWO contains one node -> NODE FOUR
    NODE ONE is a second level navigation item so the user would click the NODES Tab and see NODE ONE Tab displayed.
    In the DTN I would like the user to see only NODE TWO (with expand icon) and NODE THREE I don't want NODE ONE to appear for a third time (as it already appears on the second level navigation and the page title bar.  How do I set the Navigation up to ignore the top node?

    Hi
    What the node one, two, three and four is?
    Roles? Workset? Page?

  • Leaf nodes in Flex cluster

    Hi,
      can somebody explain what leaf nodes in flex cluster are?from documentation I see that they are nodes which dont have access to storage and they communicate with hub nodes.
      Can they have oracle db instances?If so how is data transfered between hub and leaf nodes?Through interconnect?Doesn't it overload the interconnect?
    Thanks
    Sekar

    Sekar_BLUE4EVER wrote:
    Thanks Aman...Still confused about this...Consider the following scenario
    |       H1       |<------->  |        H2         |   <------> |       H3        |
    |                   |              |                      |               |                    |
    | L1  L2  L3  |              | L1   L2   L3   |               | L1  L 2 L3   |
    | _________|              |___________|               |__________|
    H depicts the hub nodes and L depict the leaf nodes.Assume each Hub node has 3 leaf nodes attached to them.
    Suppose L1 connected to H1 needs a block and modifies it and after sometime L1 connected to H2 needs the same block then it must follow the same 2 way/3 way grant as in normal cache fusion right?
    Does this actually increase the number of hops since the leaf nodes are not directly connected?
    Do we have any control over the leaf node to hub node mapping or is it all automatically managed?
    Thanks
    The blocks are going to be accessed, modified at the Hub nodes only AFAIK as the Hub nodes are considered as DB Nodes. The Leaf Nodes are going to be considered as the Application Nodes. That's the reason, it's better to set up the instances running on the Hub Nodes only rather than the Leaf Nodes. Even if the instance runs on a Leaf Node, the communication is between the Hub and Leaf node only and it won't do any harm as both the nodes-Hub and Leaf(and the other nodes in the Leaf group) would be talking to each other directly. There is no VIP required on the Leaf Nodes so the connections by the database users would be only on the Hub Nodes, I guess and that means, the block movement would remain essentially the same.
    The number of network hops are reduced as you won't be having a requirement to have too many Hub Nodes since each Hub node can connect to  64(?) Leaf Nodes. So essentially, in your case, you would need only 4 Interconnects (2 on one Hub Node and 1 each on the remaining two) for the private interconnect and just 3 network links for the storage for each Hub node.
    I am not sure that I understood the last question of yours.
    HTH
    Aman....

  • Problems getting text content of text node?

    Hi all,
    I am currently somewhat puzzled why one of the simplest parts of my code doesn't work. I am trying to get the text content of a text node (XmlValue.getNodeType() correctly returns TEXT_NODE) in Java, but what I get is always the text of the entire document retrieved from the database (no matter what text node I consult in the entire document!). Is this expected behaviour? The method I am using to retrieve the data is XmlValue.getNodeValue(), but playing around with other functions didn't show any success either.
    So my question is: what am I doing wrong here? I hope someone in here can help me with my rather stupid problem :-)
    Thanks for your help,
    Alex

    Hello Rucong,
    thanks for your quick answer. I am sorry for the delay - I was away for a couple of days.
    I boiled down my code to a simple example - however can't believe it's the query itself (since it's really basic). But maybe you see something I am missing?
    Here is my sample code that exhibits this behaviour:
              XmlManagerConfig managerConfig = new XmlManagerConfig();
              EnvironmentConfig envConfig = new EnvironmentConfig();
              envConfig.setAllowCreate(false);
              envConfig.setInitializeCache(true);
              envConfig.setInitializeLocking(false);
              envConfig.setInitializeLogging(true);
              envConfig.setTransactional(false);
              envConfig.setErrorStream(System.out);
              Environment env = new Environment(new File("D:\\dbhome"), envConfig);
              XmlManager manager = new XmlManager(env, managerConfig);
              XmlManager.setLogLevel(XmlManager.LEVEL_ALL, true);
              XmlManager.setLogCategory(XmlManager.CATEGORY_ALL, true);
              XmlContainerConfig containerConfig = new XmlContainerConfig();
              containerConfig.setAllowCreate(true);
              XmlContainer container = manager.openContainer("mpeg7samples.dbxml", containerConfig);
              XmlQueryContext context = container.getManager().createQueryContext();
              String query = "for $a in collection('mpeg7samples.dbxml') return $a";
              XmlResults result = container.getManager().query(query, context);
              while (result.hasNext()) {
                   XmlValue v = result.next();
                   if (v.getNodeType() != XmlValue.DOCUMENT_NODE)
                        throw new Exception();
                   v = v.getFirstChild();
                   if (v.getNodeType() != XmlValue.TEXT_NODE)
                        throw new Exception();
                   System.out.println(v.getNodeValue());
                   break;
              container.close();
              manager.close();
    This code executes a simple query and then dumps the first text node of the first retrieved document. As stated before the System.out.println() call dumps the text of the entire document (including <?xml...?> at the beginning and so on) though.
    Any ideas?
    Thanks in advance for your help,
    Alex

  • What state gets saved when a JPD goes to frozen state?

    Hi,
    I need to know what state of JPD gets saved when it goes into frozen state after some error. Is it just the non-transient member variables that get persisted? Or is there any information about the point at which the failure occurs in the JPD's execution flow?
    For example, lets say that I have a stateful JPD which does the following:
    1) Initialize a BufferedFileReader from the input file path
    2) Read the file line-by-line:
    for (; (this.currentLine = this.reader.readLine()) != null; )
    ++this.currentLineIndex;
    doWork();
    If there's a failure while processing, say line# N, then will I be able to get this 'currentLineIndex' value when I unfreeze the JPD and utilize it to seek the file till that line and start from there? From where will the JPD start execution when I unfreeze it? With what state of member variables and from what method/node/line will it start?
    I don't know how it works internally, any information regarding what state/execution-context gets persisted when a JPD freezes will be helpful.
    Thanks,
    Balwinder

    A failure causes the transaction that was processing to rollback, so all state changes are lost since the previous commit point. What get's frozen is the request message that started processing of the current transaction.
    When the process is unfrozen, the original request message is dispatched causing a new transaction to start and the request is processed again.

  • This node already exists: /content/geometrixx/en

    Hi,
    While I try to login from the geometrix site login page,  Im getting the below exception.We have our own authentication handler and we tried to apply that to geometrixx site, and we restricted the /content/geometrixx/en ,so now all the pages under en will be restricted now.So, If I try to access /content/geometrixx/en.html , I will be redirected to login.html, so that I need to give my credentials there and login.We are using closed user group to implement the authhandler.But when I give the credentials it is giving the node already exixts exception. May I know what does "node already exists" mean.
    Thanks,
    Balaji

    First of all its 500 so plz check the error.log if you are getting any exception.
    Suggestion:
    Are you submitting the form using method "POST" to custom servlet? if yes, then when you submit then better try to submit form request using method "POST" to current page (POST selector) and then proceed from there else use "GET" to submit to custom servlet ("SlingAllMethodsServlet)"

  • How to connect to a specific server node?

    Hi,
    For support purposes, I would need to know how I could force the connection to a specific server node?
    For example, I have the following info in my jcmon:
    Idx
    Name
    Cluster
    Debug
    HTTP
    HTTPS
    P4
    Telnet
    SDM
    Id
    Port
    Port
    Port
    Port
    Port
    Port
    0
    dispatcher
    17313700
    50000
    50100
    50101
    50104
    50108
    0
    1
    server0
    17313750
    50121
    0
    0
    0
    0
    0
    2
    server2
    17313752
    50131
    0
    0
    0
    0
    0
    3
    SDM
    0
    50003
    50119
    0
    0
    0
    50118
    I would like to be able to choose which specific node I'm to use.
    Thank you,
    Jerome M.

    Jerome,
    If by "specific server node" you mean the chice between server0 or server2, there is no choice.
    You can connect only to dispatcher via dispatcher port.
    Dispatcher will make sure your subsequent requests will be processed by the same server node, but, to my best knowledge, it is not possible to tell dispatcher what server node to use for initial connection.
    Why do you need this option?
    Maybe we can suggest you some other working solution.
    Regards,
    Slava

Maybe you are looking for