Necessary [Public] rights on the tree

Hi,
I moved from a situation where [Public] had all attributes read to [Root], to a situation where [Public] has only a few attributes on [Root] (now [This] has all attributes to [Root] so each user can only see his attributes).
Users see the majority of their applications in the Novell window but I have found (at least) one app that requires I put back the [Public] trustee (all attributes) on [Root]. I don't know which attributes have an impact here.
Any hint on how I could troubleshoot this?

What is failing about this app?
I've run ZDM with a similar setup as yours and it should work w/o issue if I recall.

Similar Messages

  • Problems to browse the tree

    Hello,
    i just installed the Evaluation Copy eDirectory 8.8 on a server (SuSE 9.3)
    in my testing environment (based on vmware). The NDS is up (i see activate
    in ndstrace) and i can browse for the tree from a different SuSE 9.3 with
    NCL 1.0, but if i try to browse for the context, then i get an error: No
    Access for Tree "Treename" and when i try to browse for Servers, i only get
    an empty list.
    When i try to login, with manually filled out context and/or Server, then i
    get the error message:
    Connection through Server not Possible:[TREENAME].
    Error:NWCCOpenConnByName:NWE - Server not found
    (Had to translate this Message from German to english ;-) )
    With iManager Mobile 2.5 i can login. I have a look to the [Public] Trustee
    of the Tree and there is the Browse Right enabled. So i think that it
    should be possible to browse for context and server, but my box did not do
    that.
    Any Suggestions for me? Sorry for my bad Knowledge of eDirectory, but the
    last time i had to do with eDirectory is sometime ago (Update CNE4 to
    CNE5 :-) )
    Thank You
    Kai Schmidt

    linuxjoe wrote:
    > That is not what I mean. You go into Server Settings and setup the SLP
    > configuration. It is one of the last configuration screens. In there you
    > will specify the Scope and IP address of your DA. Then it will start
    > working.
    OK, i tried this way, but it will also be the same.
    After i try to setup eDir 8.8 i have switched back to eDir 8.7 with the
    latest Patch to 8.7.3.7.
    I have setup one SLP DA with default settings, only edit the slp.conf to
    told them to act as an DA. Then i have install eDir 8.7. Once finished and
    start the NDS Demon, i tried to have a look if SLP found the service with
    slptool which is successfully.
    After that, i have install a second server with eDir like above, but the SLP
    Demon did not act as DA. I test successfully to find the ndap service with
    slptool. Also i configure successfully the NDS with ndsconfig to add the
    new Server to my tree.
    Then i install on a third Machine a client. I also configure there SLP and i
    found successfully the ndap.novell service.
    So i install the Novell Client and fire up again the machine after
    Installation was succesfull (including novfs). I configure the Client as
    follows:
    - SLP for Name Resolution
    - default for SCOPE (because i did not configure it in slp.conf, and the
    standard Scope is default if unconfigured)
    - DA List with IP Address of DA was automatical read from slp.conf.
    But if i try to login i also get the same Errors:
    - i can browse for the tree
    - i can´t browse for context (No ACCESS to Tree "TREENAME")
    - i get an empty list, if i browse for servers
    - if i try to login with manually inserted context and server, i get the
    Error Message:
    Connection through Server not Possible:[TREENAME].
    Error:NWCCOpenConnByName:NWE - Server not found
    After that i installed Console ONE 1.3.6e and there i get an Error -748 time
    out when i try to look into NDS.
    Then i installed iManager Mobile, and i can login through iManager. It was
    also possible to make some Operations on NDS like the creation of User, and
    Partitions.
    So i tried also to login directly on the servers and workstation with the
    ndslogin tool on the console, and it was also possible to login on each
    server and on the workstation.
    So now i am very confused about this. I can login with iManager and
    ndslogin, but can't login with Novell Client and Console ONE.
    Greetings
    Kai Schmidt

  • Could not open scratch file because the file is locked or you do not have the necessary access rights.

    could not open scratch file because the file is locked or you do not have the necessary access rights.

    It means what it says: Check your file permissions on your scratch disk.
    Mylenium

  • Package Body in the tree doesn't show all procedures

    I am using Sql Developer 1.0.0.14.67 on Win XP Professional,
    DB servers Oracle 9i on both Linux Red HAt and Win XP Professional
    I have troubles with one of packages - in the tree under Package Body SQL Developer doesn't show all procedures of this package body.
    On the right panel all package body source is shown, but in the tree under Package Body it shows names of only procedures up to certain line in the source code - up to line where first Private (not included in Package Spec) procedure code starts.
    BUT, there are more Public procedures in package body below this Private procedure - and all of procedures below first private are not included in the tree under Package Body

    I find this quite annoying. I cannot use the navigation panel on the left to find the location of all functions and procedures in the package body. The 'missing' procedures are listed under the package spec, and double clicking on them takes me to the spec and not the body.
    I'm running v1.2.1.32.13. Is this a know issue and is there a fix planned?

  • How to count the tree levels?

    Hi..
    I'm a new memeber here.. and I have a problem :S
    My problem is about counting the maximum number of a tree levels.
    the question was: write a methode that receives a root of a binary tree and returns the maximum number of levels it has.
    I wrote the following methodes:
    public void depth() {
    System.out.print(depthHelper(root));
    private int depthHelper(TreeNode node) {
    int level = 1;
    if (node == null) {
    return 0;
    level = level + depthHelper(node.rightNode);
    return level;
    The problem is that these methodes count levels from one side which is the right side or left side if I wrote "node.leftNode".
    SO, how can I count them from both sides?
    I'll be very glad if you help me.

    It's often best to start with standard recursive tree traversal algoritm,
    private dH(TreeNode node) {
       if (node != null) {
          dH(node.leftNode);
          dH(node.rightNode);
    }You must keep track of the current depth and the maximum depth so far. The current depth is easy. You just increment it each time you go deeper.
    private dH(TreeNode node, int current) {
       if (node != null) {
          dH(node.leftNode, current + 1);
          dH(node.rightNode, current + 1);
    }The maximum depth is global to the tree so you should keep it outside the method. In each recursive step you compare it to the current depth
    int maximum = 0;
    private dH(TreeNode node, int current) {
       if (node != null) {
          if (current > maximum)
             maximum = current;
          dH(node.leftNode, current + 1);
          dH(node.rightNode, current + 1);
    }Now maximum contains the maximum depth.

  • How to solve the tree update problem

    Hi all,
    I met a urgent problem, I defined two tree control over two JScrollPanes.
    two JScrollPanes are in a JSplitPane which is located in another JSplit's left. The left JSplitPane and another JTextarea both are in another JSplitPane.they are layouted as:
    JTree1 | JTextArea
    JTree2 | JTextArea
    I want to achieve this: when I clicked a node in JTree1,then JTree2 is changed in the viewport according to the content of the clicked node.
    I use the following essential code :
    public class TNTree extends JTree {
    private TemplateFrame frame1;
    public TNTree(TemplateFrame frame/*,XTree tree*/)
    this.frame1=frame;
    getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
    setShowsRootHandles(true);
    setEditable(false);
    try{
    treeModel=initTree();
    setModel(treeModel);
    jbInit();
    }catch(Exception e){}
    this.addMouseListener(new MouseAdapter(){
    public void mouseClicked(MouseEvent e) {
    TreePath tp=getPathForLocation(e.getX(), e.getY());
    pt.x=e.getX();
    pt.y=e.getY();
    try{
    if((e.getModifiers()&InputEvent.BUTTON1_MASK)==InputEvent.BUTTON1_MASK)
    setSelectionPath(tp);
    if(e.getClickCount()==1){
    if((tp!=null)&&(!isIn((DefaultMutableTreeNode)tp.getLastPathComponent())))
    {    tempStr=((DefaultMutableTreeNode)tp.getLastPathComponent()).toString();
    Connection con=getConnection();
    PreparedStatement pstmt;
    pstmt=con.prepareStatement("select content from template ,tcontent"+
    " where template.tcode=tcontent.tcode and name=?");
    pstmt.setString(1,tempStr);
    ResultSet rset=pstmt.executeQuery();
    String str="";
    if(rset.next()){
    str=rset.getString(1);
    treeStr=str;
    System.out.println(treeStr);
    // frame1.xTree =new XTree(frame1,str);
    // frame1.xTree=new XTree(frame1);
    frame1.xTree.refresh( str );
    frame1.jScroll.getViewport().add(frame1.xTree);
    // frame1.repaint();
    if(e.getClickCount()==2){
    }else
    }catch(Exception e1){e1.printStackTrace();}
    public class XTree extends JTree {
    private TemplateFrame frame;
    public XTree(TemplateFrame frame) throws ParserConfigurationException
    this.frame=frame;
    refreshTextFlag=false;
    strBuffer=new StringBuffer();
         getSelectionModel().setSelectionMode( TreeSelectionModel.SINGLE_TREE_SELECTION );
         setShowsRootHandles( true );
         setEditable( false );
         dbf = DocumentBuilderFactory.newInstance();
         dbf.setValidating( false );
         db = dbf.newDocumentBuilder();
    treeModel = buildWelcomeTree();
    setModel(treeModel );
    TreeTXT = "";
    try{
    jbInit();
    catch(Exception e){
    //e.printStackTrace();
    Error err = new Error();
    eBuffer.append(err.getValue("Err#4"));
    eBuffer.append("\r\n");
    public void refresh( String text ) //throws ParserConfigurationException
    try{
    treeModel=buildTree(text);
    setModel( treeModel );
    TreeTXT = text;
    }catch(Exception e){
    // e.printStackTrace();
    Error err = new Error();
    eBuffer.append(err.getValue("Err#1"));
    eBuffer.append("\r\n");
    public class TemplateFrame extends JFrame
    static XTree xTree=null;
    static TNTree tnTree;
    xTree=new XTree(this);
    tnTree=new TNTree(this);
    jScrollLeft.getViewport().add(tnTree);
    void fileOpen_ActionPerformed(ActionEvent e)
    String fileName = "";
    BufferedReader reader;
    String line;
    StringBuffer xmlText;
    JFileChooser chooser = new JFileChooser();
    Container parent = jMenuItem4.getParent();
    int choice = chooser.showOpenDialog(parent);
    int returnVal = chooser.showOpenDialog(this);
    if(returnVal == JFileChooser.APPROVE_OPTION) {
    textMessage.setText("You chose to open this file: " +
    chooser.getSelectedFile().getAbsolutePath() );
    // chooser.getSelectedFile().getName());
    fileName = chooser.getSelectedFile().getAbsolutePath();
    path=fileName;
    if(fileName.substring(fileName.length()-3,fileName.length()).equalsIgnoreCase("xml"))
    //Will fix future
    try{
    reader = new BufferedReader( new FileReader( fileName ) );
    xmlText = new StringBuffer();
    while ( ( line = reader.readLine() ) != null )
    xmlText.append( line+"\n" );
    reader.close();
    //refresh the xml tree
    xTree.refresh( xmlText.toString() );
    textArea.setText( xmlText.toString() ) ;
    /*Set the title*/
    //fTitle = chooser.getSelectedFile().getName();
    fTitle = chooser.getSelectedFile().getName();
    this.setTitle(fTitle/*+mTitle */ );
    //Sign the editor has a file
    dirty = true;
    }catch(Exception Mye) {
    textMessage.setText("Error occured when opening the file");
    }else{
    textMessage.setText("Error occured when the opening file is not a xml file");
    Now my problem is when in TemplateFrame cl*** I call open method including import xTree.refresh(string),I can get the right results ,the JTree2 is refreshed correctly,but when in TNTree cl*** I call the xTree.refresh(String),I met a java.lang.nullpointer exception , How can I solve this problem?
    Are there other better ways to slove this problem?

    Hm ...
    what should it be otherwise?- You said, the problem is calling frame1.xTree.refresh(str) - and the NullPointerException is thrown there - so there are only 2 possibilities - frame1 is null or xTree is null. So please add the following code before this line ...
    if (frame1==null) { System.out.println("frame1 is null"); }
    else if (frame1.xTree==null) { System.out.println("frame1.xTree is null"); }
    else System.out.println("None of them is null - I haven't read the runtime error correctly");and then you will see, where the problem is :)
    greetings Marsian

  • Is there a way to "mix" the nodes and leaves of the tree so if they are at the same level, they will display in a specified order.

    Is there a way to "mix" the nodes and leaves of the tree so that even if they are at the same level (1,2,3...), they will display in a specified order (via sort sequence, alphabetical, etc.).
    History:
    We are using the Tree UI element to display/manage a material bom interface. We seem to be running into an issue with displaying the nodes/leaves of the tree.. regardless of the order that the context is built (which is currently the order of the exploded BOM from from CS_BOM_EXPL_MAT_V2), the bom is displayed with the nested boms at the top of each level and the single materials below them. For example. If  TK1 contains Material1, Material2, Material3, Kit1(containing component1, comp2, comp3), Material4, Kit2(containing comp4, comp5, comp6), and Material5 (in this order), the tree will display with the A level node as TK1, the next node as Kit1 (with its subleaves of comp1,comp2,comp3), Kit2(with subleaves of comp4,comp5,comp6), THEN Material1, material2, material3, material4, material5.  Our users are adamant about the items displaying in the correct order (which should be alphabetical based on the description for one report and by location for purposes of inventory for another). I've searched but not been able to locate a similar question. If I've missed it, please point me in the right direction. The users want the tree,  not a "tree" table.  This is our first attempt at the tree, so maybe we're missing something basic?
    TK1
    -Mat1
    -Mat2
    -Mat3
    -Kit1
    --Comp1
    --Comp2
    --Comp3
    -Mat4
    -Kit2
    --Comp4
    --comp5
    --comp6
    -Material5
    displays as
    TK1
    -Kit1
    --Comp1
    --Comp2
    --Comp3
    -Kit2
    --Comp4
    --Comp5
    --Comp6
    -Mat1
    -Mat2
    -Mat3
    -Mat4
    -Mat5

    co-workers said example picture is misleading.. we can make the order work if everything is a "folder" but not a mix of "folders" and "files" (if making a visual reference to the windows browser). i.e - a file is represented as an empty folder.
    TK1    
    . Mat1
    . Mat2
    . mat3
    > kit1   
    .. comp1
    .. comp2
    .. comp3
    . mat4
    > kit2
    .. comp4
    .. comp5
    .. comp6
    . mat5
    displays at
    TK1
    > kit1
    .. comp1
    .. comp2
    .. comp3
    > kit2
    .. comp4
    .. comp5
    .. comp6
    . mat1
    . mat2
    . mat3
    . mat4
    . mat5
    we can make it work if everything is a folder. This is our current workaround.
    TK1
    > mat1
    > mat2
    > mat3
    v kit1 (when expanded)
    .. comp1
    .. comp2
    .. comp3
    > mat4
    > kit2 (when not expanded)
    > mat5

  • How to binding incoming xml node list to the tree control as dataProvider

    Recently, I faced into one issue: I want to binding incoming xml node (it's not avaliable at start) list to the tree control as a dataProvider.
    Since the incoming xml node list is not avaliable at beginning but I needs to bind it to the tree, so I create one virtual one in the xml, and prepare to remove it before the tree is shown. (ready for the actual node adding). But It did not work.
    Please see the presudo-code here:
    1.  Model layer(CsModel.as)
    public class CsModel
            [Bindable]
            public var treeXML:XML=<nodes><car label="virtualOne" id="1">
                                   </car></nodes>;
            (Here, I want to build binding relationship on the <car/> node,
             one 'virtual/stub' node is set here with lable="virtualOne".
             But this node will be deleted after IdTree
             control is created completely.)      
            [Bindable]
            public var treeData:XMLList =new XMLListCollection(treeXML.car);
    2. view layer(treePage.mxml)
            private var _model:CsModel = new CsModel();
            private function addNode():void
                    var newNode:XML=<car/>;
                    newNode.@label="newOne";
                    newNode.@id=1;
                    _model.treeXML.appendChild(newNode);
                             private function cleanData():void
                                     delete _model.treeXML.car;
            <mx:VBox height="100%" width="100%">
            <mx:Button label="AddNode" click="addNode()" />
            <mx:Tree id="IdTree"  labelField="@label"
              creationComplete="cleanData()"
              dataProvider="{_model}"/>
        </mx:VBox>
    3. Top view layer (App.Mxml)
    <mx:application>
        <treePage />
    </mx:application>
    For method: cleanData(),It's expected that when the treePage is shown, we first delete the virutalOne to provide one 'clear' tree since we don't want show virtualOne to the user. The virutalOne node just for building the relationship between treeData and treeXML at beginning. But the side effect of this method, I found, is that the relationship between treeXML and treeData was cut off. And this leads to that when I added new node (by click the 'addNode' button) to the xmlXML, the xmlData was not affected at all !
    So Is there any other way to solve this issue or bind the incoming xml node list to the xmlListCollection which will be used as Tree control's dataProvider ?

    If u want to display the name : value then u can do like this
    <xsl:eval>this.selectSingleNode("name").nodeName</xsl:eval> : <xsl:value-of select="name" />

  • How to make the tree sibling nodes sorting  in memory per the VO default?

    Hi,
    I have a question on the uncommitted tree nodes sorting. The tree was built using the same VO with the view link to itself (parent/child relation). I have defined a default sorting on my VO. Now if I insert a node to the tree, the sibling nodes may not sort correctly if it is not committed. I tried to insert it to the RowsetIterator at the right position, it seems OK. but when you right click or something that make the tree to refresh, the order will mess up. If I do an auto save after each action, everything looks OK. But the fusion pattern is to do a global save, I have to manipulate the tree with the uncommitted data. I know I can set the view object's SQL mode to do the in-memory sorting. But not sure if it works on the tree structure, because it is not a single RowsetIteroator.. Can someone give an advice? Many thanks.
    Edited by: user736572 on Jan 20, 2012 2:48 PM

    Thanks Sudipto for trying to help. I did try that, and as I mentioned in the previous posting, it doesn't work for the tree nodes (multiple RowSetIterator). the following is my code, where the treeVO is the vo instance for the firstLevel tree nodes and it has view link to its children. I am not sure how to sort all children for each level. Even for the first level where I did the explicit sorting in memory, it still not sorting at all.
    treeVO.setSortBy("code");
    treeVO.setQueryMode(ViewObject.QUERY_MODE_SCAN_ENTITY_ROWS|ViewObject..QUERY_MODE_SCAN_DATABASE_TABLES);
    treeVO.executeQuery();

  • Expand the tree by default

    Hi,
    I have a tree component  in my Application and I have given the dataprovider as XMLListCollection. I would like to have the entire tree as expanded mode(all children) by default. To achieve this, I tried expandItem() method but I couldn't see the entire tree as expanded when I load my application.
    Any solution will be helpful for me a lot!
    Thanks in Advance,
    Srinivasan S

    A more elegant solution ( in my opinion ) would be to extend the Tree component and implement the desired behavior in a much nicer fashion. It is true that we already have expandChildrenOf(); method that is really great, but if we want to have a nice feature that instantaneously expands or collapses the whole tree more easily ( without having to rewrite the same conditions and who knows what each time we want such a functionality ) then I think that it would be much nicer to extend the Tree component, add the desired feature and start using that custom component instead.
    Here's a fast example ( make sure to place this class into a "components" folder if you want to test it ):
    package components
        import mx.controls.Tree;
        * Custom <code>Tree</code> class with custom behavior.
        public class ExpandableTree extends Tree
            * Flag telling if the tree is expanded or not.
            protected var _isExpanded:Boolean = false;
            * Constructor.
            public function ExpandableTree()
                super();
            * Used to expand or collapse the <code>Tree</code>.
            * @param value Flag telling if we should expand or collapse the <code>Tree</code>.
            protected function expandCollapseTree(value:Boolean):void
                // Return if there's no data to expand or collapse.
                if (this.dataProvider == null)
                    // The flag should be "false" if no expanding has occurred.
                    _isExpanded = false;
                    return;
                // Expand or collapse the children.
                this.expandChildrenOf(this.dataProvider[0], value);
            //  Overridden methods
            * @inheritDoc
            override protected function updateDisplayList(w:Number, h:Number):void
                // Expand or collapse the Tree.
                expandCollapseTree(_isExpanded);
                super.updateDisplayList(w, h);
            //  Setters and getters
            * Set a flag telling if the <code>Tree</code> should be expanded or callapsed.
            public function set expanded(value:Boolean):void
                // Make sure that the passed value is not the current state.
                if (value == _isExpanded) return;
                _isExpanded = value;
                // Invalidate the display list to signal the change.
                this.invalidateDisplayList();
            * Returns the current state of the <code>Tree</code>.
            public function get expanded():Boolean
                return _isExpanded;
    Obviously, you can always extend this "skeleton component" and add even more features. Also, there's another fast example to demonstrate the usage of the component I've just posted above ( it's really simple ):
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
        xmlns:mx                    = "http://www.adobe.com/2006/mxml"
        xmlns:components            = "components.*"
        backgroundColor             = "0xFFFFFF"
        backgroundGradientColors    = "[0xFFFFFF, 0xFFFFFF]"
        layout                      = "vertical">
        <mx:XMLList id="treeData">
            <node label="Mail Box">
                <node label="Inbox">
                    <node label="Marketing"/>
                    <node label="Product Management"/>
                    <node label="Personal"/>
                </node>
                <node label="Outbox">
                    <node label="Professional"/>
                    <node label="Personal"/>
                    <node label="Outbox">
                        <node label="Professional"/>
                        <node label="Personal"/>
                    </node>
                </node>
                <node label="Spam"/>
                <node label="Sent"/>
            </node>   
        </mx:XMLList>
        <components:ExpandableTree
            id              = "cmpExpandableTree"
            width           = "400"
            height          = "300"
            showRoot        = "false"
            expanded        = "true"
            labelField      = "@label"
            dataProvider    = "{treeData}"/>
        <mx:HBox width="400">
            <mx:Button
                label       = "Collapse"
                width       = "100%"
                click       = "cmpExpandableTree.expanded = false;"/>
            <mx:Button
                label       = "Expand"
                width       = "100%"
                click       = "cmpExpandableTree.expanded = true;"/>
        </mx:HBox>
    </mx:Application>
    So, this would be the "neater solution" ( in my opinion ). But simply using expandChildrenOf(); and passing in the item from where you want to rest of the nodes to expand is just as valid.
    With kind regards,
    Barna Biro

  • How to use the drop event of the tree control in LabVIEW 8.20?

    Hi,
                I am using the two tree controls in my application to provide a option for the user to drag and drop item from one tree to the other.  I have to validate the user selection. I tried to capture the user drop event  using the event structure. The problem I am facing is, I am not able to drop the item even though i have wired a constant true to the filter(Accepted?) in the event case. I have enable the property(Allow droping) in the right menu of the tree control also.
              While configuring an event case for (drop, drag entered and some thing like this) only I am getting the problem otherwise it is working fine.  
    What do i need to do to caprture the drop event ?
    Is there any way to avoid the item duplication while droping a new item in the tree control ?
    or how can i do this?
    Thanks,
    Pandiarajan R

    Hi Pandiarajan,
    I hope you are doing well today! There is a lengthy discussion on the Tree Control Drag & Drop feature at this forums post including contributions from the developer of the Drag & Drop feature:
    Tree Control Drag & Drop in LabVIEW 8
    By avoiding item duplication, do you mean that you don't want the same item to be in the old tree control or do you not want more than one item in the new tree control?
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • How do I create a Public Group on the Calendar Server?

    How do I create a Public Group on the Calendar Server?
    <P>
    Anyone can create Private Groups or Member Only Groups. You must be given
    administrative rights to create Public Groups on the Calendar Server. The
    Calendar Server Admin (SYSOP) can give anyone rights to create Public Groups by
    using the uniadmrights tool.
    <P>
    Go to /users/unison/bin/
    and run the uniadmrights
    tool. Some sample syntax:
    <P>
    To list all users with administrative rights:<P>
    % uniadmrights -ls -host yourhostname
    <P>
    To give John Smith, a user on node 10000, rights to administer Public Groups:<P>
    % uniadmrights -e "S=Smith/G=John" -add -pgrp -n 10000
    <P>
    In Calendar Server 4.0, you also have the option of using the Admin Server GUI
    to assign Administrative
    rights (instead of using the command-line method) by going to User Management,
    Administration Rights.
    <P>
    With the proper administrative rights, log into the Calendar Client. Go to Options,
    Manage Groups to create a new group. Choose PUBLIC from the dropdown window,
    add your users and/or resources and click OK to create the Public Group which
    can be seen by all users on the local Calendar Server.

    The following is info that I found in another post that I have been trying to follow.
    MrHoffman      New England
    Re: Configure DNS - OS X Server Next Steps
    Feb 13, 2011 6:36 AM (in response to Jimbooooooo)
    You're setting up internal DNS services, you referenced your ISP DNS servers and you should not have, and now those servers have no translations for your hosts. This is a common misconfiguration.
    See [configuring DNS on Mac OS X Server|http://labs.hoffmanlabs.com/node/1436] for how to set up your internal DNS server.
    And if there are any references to your ISP DNS servers here (within your client settings, within your server settings, your Airport settings, etc), then you're usually going to have DNS and connectivity problems. You're running a server now, so you'll be running your own services, and (particularly because of NAT here) referencing only your own DNS server(s).
    You may be setting up external DNS (if and when you need that), but that should happen after you set up your internal DNS. The above article has a link to setting up external DNS, when you get around to that, if/when you need in-bound connections into your LAN.

  • For some reason, when I access FINDER I only can see my files alphabetically, by kind, date etc. In can't see the "tree" of the folders. How can I show the files contained in a folder as a group?

    How can I:
    - Display the tree structure of the folders.
    - Display my files grouped by folders

    Do you mean when you do a Save, or when you click on the Finder icon on your Dock?
    If it's the former click on the arrow to the right of the Save to reveal full finder.
    If it's the latter show the Finder Sidebar and choose your Home folder.

  • JTree - need to get the value of a node at a specific node in the tree

    For Example here is a tree:
    Root
    -Item1
    A
    B
    C
    -Item2
    A
    B
    C
    Scenario: Somebody selects B in Item2 from the tree and drags it to a JList. Need to be able to tell the JList that the B came from Item2 and not Item1. So how do I get the Item1, Item2 value? Thanks in advance for all your help.
    Here is the code I am working with...so I have a TreeSelectionEvent(e), a DefaultMutableTreeNode(node) and my JTree(mainTree)
    public void valueChanged(TreeSelectionEvent e) {
    DefaultMutableTreeNode node = (DefaultMutableTreeNode) mainTree.getLastSelectedPathComponent();
    getChildren(node);

    public void valueChanged(TreeSelectionEvent e) {
       javax.swing.tree.TreePath path = e.getPath();
       ...Then use path.getLastPathComponent() and path.getParentPath().getLastPathComponent() methods.
    Tristan

  • How to read the configuration of tree table from the variant of Personalization of the Tree UIBB?

    Hi Experts !
    I have created an application using  Tree UIBB to display the list output along with personalization property. The user can save the settings of the output table such as shuffling of column position and hiding / display of columns in the variant.
    The export to excel button gives the output as per the current variant but I need to develop a custom export to excel button, on action of which I need to read the currently selected variant and the visble columns from the variant.
    I found that CL_FPM_TREE_ASSISTANCE gets the variant and columns from the personalization object, however, I am unable utilize it in my custom code.
    Please help or suggest any class which I can utilize.
    Thanks !

    Aristos Queue wrote:
    Alias name here wrote:
    ..second post telling me the 'propertys' of a control have nothing to do with the value is bizzare - via 'properties' for a LV control is the ONLY way to configure the specific type of a numeric...so via the numeric 'property nodes' should\would be able to query it's configuration.
    I do not see any way to set these things through the properties...
    I think he means by right clicking the control on the front panel and configuring with the properties dialog. The properties are exposed there, but not within the property nodes.
    Edit: You beat me.
    CLA, LabVIEW Versions 2010-2013

Maybe you are looking for

  • Journal Entry for Service Tax Non-Deductible.

    Dear Experts, I have created an A/P Invoice for a Service item with Service Tax Non-Deductible(100%). For that we got the journal entry as below. Journal Entry Edu. Cess on Service Tax Payable Dr.                   00 HCess on ST Payable Dr.         

  • ICloud seemed to have lost some old back up-went from a iPhone4 to a 3GS (temporary) back to a iPhone4

    Hi guys Hope someone can help me here- I broke my iPhone4 at Xmas and found as it was out of warranty I had to buy a replacement for £119 -fair enough! So whilst not being able to afford this being January the worst month for self employment I borrow

  • Questions in ADF (ViewObjectImpl VS ViewObject) -- (Row VS ViewRowImpl)

    I have some confusion between (ViewObjectImpl VS ViewObject) -- (Row VS ViewRowImpl) this is the code i mean this code from oracle slides public void init() { DBTransactionImpl trx = (DBTransactionImpl)getDBTransaction(); ApplicationModuleImpl am =(A

  • Ctrl+Right Click not working

    Hi all, I am using EP version 6.4 and ESS/MSS 100 SP 22. Backend system is ECC 5.0 and SAP-HR/EA-HR SP75. I am unable to do end user personalization in the portal iviews. Ctrl+Right Click is not working. Any idea whether this works on this version or

  • Problem in undeploy in version 9.0

    I am Using Sun Java System Application Server 9.0 on solaris 10.0 I can deploy an web application but at the time of un deploy it stops the server. How can I undeploy the web application.