Login in tree

Dears,
i have tree and interactive report , when i enter in node dispaly it in the report , but why login page dispaly
http://41.41.94.126:8080/apex/f?p=102:16:2772368168856101:::::
username : ahmed
password : 123

Yes, you've hard-coded the session ID. Your SQL should be more like
select case when connect_by_isleaf = 1 then 0
            when level = 1             then 1
            else                           -1
       end as status,
       level,
       "COST_NAME_A" as title,
       null as icon,
       "COST_NO" as value,
       null as tooltip,  
'f?p='||:APP_ID||':16:'||:APP_SESSION||'::::P22_SELECTED_NODE:'||COST_NO
from "#OWNER#"."TM_COST_UNITS_TREE"
start with "PARENT_NO" is null
connect by prior "COST_NO" = "PARENT_NO"

Similar Messages

  • NCL 2.0 SP2 nautilus problem

    Hello,
    NCL 2.0 SP2 installed on SLED 11.
    Everything works fine: i can login / browse trees and contexts.
    But if i click after login in nautilus on "Novell-Services" two new windows are openend.
    In the first window i can see my tree, but a double click shows me only an empty content.
    In the second window i can see "All Connections" and "Available Connections" but both show me only my already connected servers (connected over Novell client login script).
    With NCL 1.x "All Connections" showed me all my NetWare servers which SLP discovered.
    Is this a bug or a new feature? How can i display an browse to all my NetWare servers?
    Thank you in advance
    Andreas

    On Tue, 07 Jul 2009 12:08:08 +0000, Andreas Ebert wrote:
    > does anybody also have this problem?
    I see the same behavior. I've asked Novell if this is a bug or a change
    in functionality in the latest client.
    Joe Marton
    Novell Knowledge Partner
    SUSE Linux Enterprise 11 is ready for action.

  • Help needed on WebUI! Emergency!

    Please anybody knows this problem tells me how to solve this problem: after a new installation of 9iFS R1, I see that there is no compiled .class files such as login.class, tree.class, container.class.. But these files did exist in my former iFS ifsjsp folder. So I erased them and hope the java servelet will regeneate all these files. But it didn't. Now the iFS is started normally, I can see all the agents, server, service are OK, the DavServer is running, but ServiceWarmupAgent stops. Everytime when I try to access the webui, it reports "Service Temporarily Unavailable". How to fix this problem? I copied all class files from another computer, it is not working. Could anybody tell me how to reset the java servelet? I don't want to reinstall the iFS since there is a lot of files and users there. Thanks a lot!

    Solved by regenerating the IFSSYS. Backup all files before doing that.

  • Tree is not appearing after login

    Hi,
    We have created a tree in 0 page.So we are able to access the same tree in all pages. I am having around 10 pages in my application with one standard tabset.
    Now my question is whenever i login for the first time tree is not appearing. If i navigate to another page thru tab then it's appearing. If i navigate to another page and come back to the earlier page then also it's appearing. Without navigation between the pages i am not able to see the tree.
    My tree is based on temporary table. I am creating this table at application process level AFTER_AUTHENTICATION if this table is not present.
    Then i am doing insertion of records in to this temp table at application process level after BEFORE_BOX_BODY.
    My tree will be created based on this table.
    This problem is coming only when i login in to the application.
    Once i login and navigate to another page then tree is appearing.
    Thanks in Advance...
    Ramesh P.

    Scott,
    I have changed some properties like Display points in htmldb.oracle.com application as per my existing application.
    Now it's not working. Can you see this application on htmldb.oracle.com and let me know your comments.
    If i put Display point for Page 0 as "Page Template Region 1" then it's not appering for the first time.
    If i use Display point as "Page Template Body(1)" then
    It's appearing for the first time also. But it's displaying in the middle not at left side.
    I am using Page template as "whitebg-two-level-tabs-sidebar"
    Thanks,
    Ramesh P.

  • Comment modifier la fenêtre de login qui se lance lorsque l'on démarre l'interface opérateur ?

    Bonjour,
    Voilà j'utilise TestStand 3.5 et LabView 8, et j'ai créé une interface opérateur. Mon problème c'est que mon interface doit fonctionner avec des écrans tactiles. Lorsque je lance l'interface, TestStand fait apparaitre sa fenêtre de login, c'est là que j'ai un petit souci. Pour selectionner le nom de opérateur qui doit se logger, cela n'est pas tres facile (cause ecran tactile). Je voudrais alors savoir si il est possible de modifier la fenêtre de login ou la remplacer pour permettre une selection plus aisée ????
    Merci de toute l'aide que vous pourrez m'apporter.
    Will W.

    Bonjour,
    La procédure de Login est incluse dans la séquence FrontEndCallaback.seq ( <TestStand>\Components\NI(ou User)\Callabacks\FrontEnd ). Ainsi vous pouvez modifier la procédure de Login en modifiant directement cette séquence.
    Le lien ci-dessous vous aidera certainement :
    How to Modify/Customize Front End Callbacks in TestStand :
    http://venus.ni.com/stage/utf8/niepd_web_display.DISPLAY_EPD4?p_answer=&p_guid=B45EACE3E9FB56A4E0340...
    En espérant avoir répondu à la question,
    Cordialement,
    Benjamin M
    NIF

  • How to avoid login page in List Tree

    Hi group,
    I am new to APEX and I have added a tree list to my application.
    The problem is when I click into the link of the tree list, it always redirects me to the login page.
    Is any setting that I am missing?
    This tree list was created into the page "0".
    Thanks in advance.
    Kind regards,
    Francisco

    Hi
    jyothi
    thanks for the response
    i was following yours thread of Tree the same problem is thr in my tree its also nt retaining the current possition after collapsing it and this is my code can you please help me in this and i have try your javascript also but were to put it i m not getting the solution was gien to u by andyand vee, please please help me
    this my code
    select
      case
        when connect_by_isleaf = 1 then
          0
        when level = 1 then
          1
        else
          -1
      end as status,
      level,
      case
        when PAGE_NUMBER is null then
          MENU_ITEM_NAME
        else
          MENU_ITEM_NAME || ' (' || PAGE_NUMBER || ')'
      end as title,
      null as icon,
      MENU_ITEM_ID as value,
      null as tooltip,
      case
        when PAGE_NUMBER IS NULL then
          NULL
        else
         'f?p=&APP_ID.:' || PAGE_NUMBER || ':&APP_SESSION.'
      end as link
    from   #OWNER#.D_MENU_ITEM
    start with IS_ROOT = 'Y'
    connect by prior MENU_ITEM_ID = PARENT_ITEM_ID
    order siblings by SEQUENCE_NUMBEREdited by: shadab550 on Mar 15, 2012 10:09 AM

  • NAL tries to login to another tree

    One of my users has changed jobs and is now logging into a different
    tree
    (please don't ask why we have more than one tree). When the NAL
    explorer
    runs, it logs her into the current tree, but the old tree is still
    listed in
    the NAL explorer and it keeps prompting her to login to the old tree.
    We have put /singletree=<treename> in the login script, but doesn't
    seem to
    help matters.
    Is there a quick soloution i can use or do i need to manually strip
    out all
    information about the old tree from the registry?
    Many Thanks
    Janine

    I have already try that and it is still trying to log in to the other
    tree.
    Maybe there it is something else trying to connect. Can you think of
    anything else?
    Thanks for you help.
    Janine
    "Peter van der Woude" <[email protected]> wrote in
    message
    news:v_Aqb.1549$[email protected]..
    > Janine,
    >
    > There is a hidden directory C:\Nalcache that holds references to
    previously
    > installed apps.
    > Close NAL and delete references to the old tree, or remove the
    directory
    > alltogether.
    >
    > Peter
    >
    > "Janine" <[email protected]> wrote in message
    > news:%epqb.605$[email protected]..
    > > One of my users has changed jobs and is now logging into a
    different
    tree
    > > (please don't ask why we have more than one tree). When the NAL
    explorer
    > > runs, it logs her into the current tree, but the old tree is still
    listed
    > in
    > > the NAL explorer and it keeps prompting her to login to the old
    tree.
    > >
    > > We have put /singletree=<treename> in the login script, but
    doesn't seem
    > to
    > > help matters.
    > >
    > > Is there a quick soloution i can use or do i need to manually
    strip out
    > all
    > > information about the old tree from the registry?
    > >
    > > Many Thanks
    > >
    > > Janine
    > >
    > >
    >
    >

  • Missing Images and CSS when going to portal/server.pt can't login

    Hi,
    I installed WebCenterInteraction_10.3.0.0.0 on Windows and followed all the steps mentioned in the install doc. Deployed the portal.ear and here is what I see on the command line after deployment:
    Task #1 (InitPortalObjects) END (OK)
    Task #2 (CheckDevKit) END (OK)
    Task #3 (InitializePaths) END (OK)
    Task #4 (InitializeApplication) END (OK)
    Task #5 (InitializeAppWarmUpHelper) END (OK)
    Task #6 (InitializeImageServerHelper) END (OK)
    Task #7 (InitializeConfigHelper) END (OK)
    Task #8 (InitializeResourceManager) END (OK)
    Task #9 (LoadVersionHelper) END (OK)
    Task #10 (InitializeActivitySpaces) END (OK)
    Task #11 (InitializeVarPacks) END (OK)
    Task #12 (InitializeImageServerHelperPartII) END (OK)
    Task #13 (InitializeObjects) END (OK)
    Task #14 (LoadCustomLoads) END (OK)
    Task #15 (CheckDBVersion) END (OK)
    Aqualogic Interaction startup successful.
        ======= Diagnostic Run Complete =======
        Startup completion percentage: 100% (50 steps out of 50 complete)
        ===== Portal should now start successfully ===== But when I go to http://localhost:7001/portal/server.pt I don't see any images and the css is not applied so can't login. Any idea what might be wrong. Here is the Apache httpd.conf
    Include "C:/bea/alui/plumtreeconf/"
    # Based upon the NCSA server configuration files originally by Rob McCool.
    # This is the main Apache server configuration file.  It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.0/> for detailed information about
    # the directives.
    # Do NOT simply read the instructions in here without understanding
    # what they do.  They're here only as hints or reminders.  If you are unsure
    # consult the online docs. You have been warned. 
    # The configuration directives are grouped into three basic sections:
    #  1. Directives that control the operation of the Apache server process as a
    #     whole (the 'global environment').
    #  2. Directives that define the parameters of the 'main' or 'default' server,
    #     which responds to requests that aren't handled by a virtual host.
    #     These directives also provide default values for the settings
    #     of all virtual hosts.
    #  3. Settings for virtual hosts, which allow Web requests to be sent to
    #     different IP addresses or hostnames and have them handled by the
    #     same Apache server process.
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path.  If the filenames do *not* begin
    # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
    # with ServerRoot set to "C:/Program Files/Apache Group/Apache2" will be interpreted by the
    # server as "C:/Program Files/Apache Group/Apache2/logs/foo.log".
    # NOTE: Where filenames are specified, you must use forward slashes
    # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
    # If a drive letter is omitted, the drive on which Apache.exe is located
    # will be used by default.  It is recommended that you always supply
    # an explicit drive letter in absolute paths, however, to avoid
    # confusion.
    ### Section 1: Global Environment
    # The directives in this section affect the overall operation of Apache,
    # such as the number of concurrent requests it can handle or where it
    # can find its configuration files.
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # NOTE!  If you intend to place this on an NFS (or otherwise network)
    # mounted filesystem then please read the LockFile documentation (available
    # at <URL:http://httpd.apache.org/docs/2.0/mod/mpm_common.html#lockfile>);
    # you will save yourself a lot of trouble.
    # Do NOT add a slash at the end of the directory path.
    ServerRoot "C:/Program Files/Apache Group/Apache2"
    # ScoreBoardFile: File used to store internal server process information.
    # If unspecified (the default), the scoreboard will be stored in an
    # anonymous shared memory segment, and will be unavailable to third-party
    # applications.
    # If specified, ensure that no two invocations of Apache share the same
    # scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK.
    #ScoreBoardFile logs/apache_runtime_status
    # PidFile: The file in which the server should record its process
    # identification number when it starts.
    PidFile logs/httpd.pid
    # Timeout: The number of seconds before receives and sends time out.
    Timeout 300
    # KeepAlive: Whether or not to allow persistent connections (more than
    # one request per connection). Set to "Off" to deactivate.
    KeepAlive On
    # MaxKeepAliveRequests: The maximum number of requests to allow
    # during a persistent connection. Set to 0 to allow an unlimited amount.
    # We recommend you leave this number high, for maximum performance.
    MaxKeepAliveRequests 100
    # KeepAliveTimeout: Number of seconds to wait for the next request from the
    # same client on the same connection.
    KeepAliveTimeout 15
    ## Server-Pool Size Regulation (MPM specific)
    # WinNT MPM
    # ThreadsPerChild: constant number of worker threads in the server process
    # MaxRequestsPerChild: maximum  number of requests a server process serves
    <IfModule mpm_winnt.c>
    ThreadsPerChild 250
    MaxRequestsPerChild  0
    </IfModule>
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    # Change this to Listen on specific IP addresses as shown below to
    # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
    #Listen 12.34.56.78:80
    # Listen 80
    Listen 80
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available _before_ they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    LoadModule access_module modules/mod_access.so
    LoadModule actions_module modules/mod_actions.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_module modules/mod_auth.so
    #LoadModule auth_anon_module modules/mod_auth_anon.so
    #LoadModule auth_dbm_module modules/mod_auth_dbm.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    LoadModule cgi_module modules/mod_cgi.so
    #LoadModule dav_module modules/mod_dav.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    LoadModule dir_module modules/mod_dir.so
    LoadModule env_module modules/mod_env.so
    #LoadModule expires_module modules/mod_expires.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule headers_module modules/mod_headers.so
    LoadModule imap_module modules/mod_imap.so
    LoadModule include_module modules/mod_include.so
    #LoadModule info_module modules/mod_info.so
    LoadModule isapi_module modules/mod_isapi.so
    LoadModule log_config_module modules/mod_log_config.so
    LoadModule mime_module modules/mod_mime.so
    #LoadModule mime_magic_module modules/mod_mime_magic.so
    #LoadModule proxy_module modules/mod_proxy.so
    #LoadModule proxy_connect_module modules/mod_proxy_connect.so
    #LoadModule proxy_http_module modules/mod_proxy_http.so
    #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule negotiation_module modules/mod_negotiation.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    LoadModule setenvif_module modules/mod_setenvif.so
    #LoadModule speling_module modules/mod_speling.so
    #LoadModule status_module modules/mod_status.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule userdir_module modules/mod_userdir.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    #LoadModule ssl_module modules/mod_ssl.so
    LoadModule weblogic_module modules/mod_wl_20.so
    # ExtendedStatus controls whether Apache will generate "full" status
    # information (ExtendedStatus On) or just basic information (ExtendedStatus
    # Off) when the "server-status" handler is called. The default is Off.
    #ExtendedStatus On
    ### Section 2: 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition.  These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed.  This address appears on some server-generated pages, such
    # as error documents.  e.g. [email protected]
    ServerAdmin [email protected]
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    # If this is not set to valid DNS name for your host, server-generated
    # redirections will not work.  See also the UseCanonicalName directive.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    # You will have to access it by its address anyway, and this will make
    # redirections work in a sensible way.
    ServerName localhost:80
    # UseCanonicalName: Determines how Apache constructs self-referencing
    # URLs and the SERVER_NAME and SERVER_PORT variables.
    # When set "Off", Apache will use the Hostname and Port supplied
    # by the client.  When set "On", Apache will use the value of the
    # ServerName directive.
    UseCanonicalName Off
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "C:/Program Files/Apache Group/Apache2/htdocs"
    # Each directory to which Apache has access can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories).
    # First, we configure the "default" to be a very restrictive set of
    # features. 
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # This should be changed to whatever you set DocumentRoot to.
    <Directory "C:/Program Files/Apache Group/Apache2/htdocs">
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.0/mod/core.html#options
    # for more information.
        Options Indexes FollowSymLinks
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
        AllowOverride None
    # Controls who can get stuff from this server.
        Order allow,deny
        Allow from all
    </Directory>
    # UserDir: The name of the directory that is appended onto a user's home
    # directory if a ~user request is received.  Be especially careful to use
    # proper, forward slashes here.  On Windows NT, "Personal/My Website"
    # is a more appropriate choice.
    UserDir "My Documents/My Website"
    # Control access to UserDir directories.  The following is an example
    # for a site where these directories are restricted to read-only.
    # You must correct the path for the root to match your system's configured
    # user directory location, e.g. "C:/WinNT/profiles/*/My Documents/My Website"
    # or whichever, as appropriate.
    #<Directory "C:/Documents and Settings/*/My Documents/My Website">
    #    AllowOverride FileInfo AuthConfig Limit
    #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    #    <Limit GET POST OPTIONS PROPFIND>
    #        Order allow,deny
    #        Allow from all
    #    </Limit>
    #    <LimitExcept GET POST OPTIONS PROPFIND>
    #        Order deny,allow
    #        Deny from all
    #    </LimitExcept>
    #</Directory>
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    # The index.html.var file (a type-map) is used to deliver content-
    # negotiated documents.  The MultiViews Option can be used for the
    # same purpose, but it is much slower.
    DirectoryIndex index.html index.html.var
    # AccessFileName: The name of the file to look for in each directory
    # for additional configuration directives.  See also the AllowOverride
    # directive.
    AccessFileName .htaccess
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    <FilesMatch "^\.ht">
        Order allow,deny
        Deny from all
    </FilesMatch>
    # TypesConfig describes where the mime.types file (or equivalent) is
    # to be found.
    TypesConfig conf/mime.types
    # DefaultType is the default MIME type the server will use for a document
    # if it cannot otherwise determine one, such as from filename extensions.
    # If your server contains mostly text or HTML documents, "text/plain" is
    # a good value.  If most of your content is binary, such as applications
    # or images, you may want to use "application/octet-stream" instead to
    # keep browsers from trying to display binary files as though they are
    # text.
    DefaultType text/plain
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type.  The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    <IfModule mod_mime_magic.c>
        MIMEMagicFile conf/magic
    </IfModule>
    # HostnameLookups: Log the names of clients or just their IP addresses
    # e.g., www.apache.org (on) or 204.62.129.132 (off).
    # The default is off because it'd be overall better for the net if people
    # had to knowingly turn this feature on, since enabling it means that
    # each client request will result in AT LEAST one lookup request to the
    # nameserver.
    HostnameLookups Off
    # EnableMMAP: Control whether memory-mapping is used to deliver
    # files (assuming that the underlying OS supports it).
    # The default is on; turn this off if you serve from NFS-mounted
    # filesystems.  On some systems, turning it off (regardless of
    # filesystem) can improve performance; for details, please see
    # http://httpd.apache.org/docs/2.0/mod/core.html#enablemmap
    #EnableMMAP off
    # EnableSendfile: Control whether the sendfile kernel support is
    # used  to deliver files (assuming that the OS supports it).
    # The default is on; turn this off if you serve from NFS-mounted
    # filesystems.  Please see
    # http://httpd.apache.org/docs/2.0/mod/core.html#enablesendfile
    #EnableSendfile off
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here.  If you *do* define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog logs/error.log
    # LogLevel: Control the number of messages logged to the error.log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    LogFormat "%{Referer}i -> %U" referer
    LogFormat "%{User-agent}i" agent
    # You need to enable mod_logio.c to use %I and %O
    #LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here.  Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    CustomLog logs/access.log common
    # If you would like to have agent and referer logfiles, uncomment the
    # following directives.
    #CustomLog logs/referer.log referer
    #CustomLog logs/agent.log agent
    # If you prefer a single logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog logs/access.log combined
    # ServerTokens
    # This directive configures what you return as the Server HTTP response
    # Header. The default is 'Full' which sends information about the OS-Type
    # and compiled in modules.
    # Set to one of:  Full | OS | Minor | Minimal | Major | Prod
    # where Full conveys the most information, and Prod the least.
    ServerTokens Full
    # Optionally add a line containing the server version and virtual host
    # name to server-generated pages (internal error documents, FTP directory
    # listings, mod_status and mod_info output etc., but not CGI generated
    # documents or custom error documents).
    # Set to "EMail" to also include a mailto: link to the ServerAdmin.
    # Set to one of:  On | Off | EMail
    ServerSignature On
    # Aliases: Add here as many aliases as you need (with no limit). The format is
    # Alias fakename realname
    # Note that if you include a trailing / on fakename then the server will
    # require it to be present in the URL.  So "/icons" isn't aliased in this
    # example, only "/icons/".  If the fakename is slash-terminated, then the
    # realname must also be slash terminated, and if the fakename omits the
    # trailing slash, the realname must also omit it.
    # We include the /icons/ alias for FancyIndexed directory listings.  If you
    # do not use FancyIndexing, you may comment this out.
    Alias /icons/ "C:/Program Files/Apache Group/Apache2/icons/"
    <Directory "C:/Program Files/Apache Group/Apache2/icons">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    # This should be changed to the ServerRoot/manual/.  The alias provides
    # the manual, even if you choose to move your DocumentRoot.  You may comment
    # this out if you do not care for the documentation.
    AliasMatch ^/manual(?:/(?:de|en|es|fr|ja|ko|ru))?(/.*)?$ "C:/Program Files/Apache Group/Apache2/manual$1"
    <Directory "C:/Program Files/Apache Group/Apache2/manual">
        Options Indexes
        AllowOverride None
        Order allow,deny
        Allow from all
        <Files *.html>
            SetHandler type-map
        </Files>
        SetEnvIf Request_URI ^/manual/(de|en|es|fr|ja|ko|ru)/ prefer-language=$1
        RedirectMatch 301 ^/manual(?:/(de|en|es|fr|ja|ko|ru)){2,}(/.*)?$ /manual/$1$2
    </Directory>
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the realname directory are treated as applications and
    # run by the server when requested rather than as documents sent to the client.
    # The same rules about trailing "/" apply to ScriptAlias directives as to
    # Alias.
    ScriptAlias /cgi-bin/ "C:/Program Files/Apache Group/Apache2/cgi-bin/"
    # "C:/Program Files/Apache Group/Apache2/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "C:/Program Files/Apache Group/Apache2/cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>
    # Redirect allows you to tell clients about documents which used to exist in
    # your server's namespace, but do not anymore. This allows you to tell the
    # clients where to look for the relocated document.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar
    # Directives controlling the display of server-generated directory listings.
    # IndexOptions: Controls the appearance of server-generated directory
    # listings.
    IndexOptions FancyIndexing VersionSort
    # AddIcon* directives tell the server which icon to show for different
    # files or filename extensions.  These are only displayed for
    # FancyIndexed directories.
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
    # DefaultIcon is which icon to show for files which do not have an icon
    # explicitly set.
    DefaultIcon /icons/unknown.gif
    # AddDescription allows you to place a short description after a file in
    # server-generated indexes.  These are only displayed for FancyIndexed
    # directories.
    # Format: AddDescription "description" filename
    #AddDescription "GZIP compressed document" .gz
    #AddDescription "tar archive" .tar
    #AddDescription "GZIP compressed tar archive" .tgz
    # ReadmeName is the name of the README file the server will look for by
    # default, and append to directory listings.
    # HeaderName is the name of a file which should be prepended to
    # directory indexes.
    ReadmeName README.html
    HeaderName HEADER.html
    # IndexIgnore is a set of filenames which directory indexing should ignore
    # and not include in the listing.  Shell-style wildcarding is permitted.
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    # DefaultLanguage and AddLanguage allows you to specify the language of
    # a document. You can then use content negotiation to give a browser a
    # file in a language the user can understand.
    # Specify a default language. This means that all data
    # going out without a specific language tag (see below) will
    # be marked with this one. You probably do NOT want to set
    # this unless you are sure it is correct for all cases.
    # * It is generally better to not mark a page as
    # * being a certain language than marking it with the wrong
    # * language!
    # DefaultLanguage nl
    # Note 1: The suffix does not have to be the same as the language
    # keyword --- those with documents in Polish (whose net-standard
    # language code is pl) may wish to use "AddLanguage pl .po" to
    # avoid the ambiguity with the common suffix for perl scripts.
    # Note 2: The example entries below illustrate that in some cases
    # the two character 'Language' abbreviation is not identical to
    # the two character 'Country' code for its country,
    # E.g. 'Danmark/dk' versus 'Danish/da'.
    # Note 3: In the case of 'ltz' we violate the RFC by using a three char
    # specifier. There is 'work in progress' to fix this and get
    # the reference data for rfc1766 cleaned up.
    # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
    # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
    # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
    # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
    # Norwegian (no) - Polish (pl) - Portugese (pt)
    # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
    # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
    AddLanguage ca .ca
    AddLanguage cs .cz .cs
    AddLanguage da .dk
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage en .en
    AddLanguage eo .eo
    AddLanguage es .es
    AddLanguage et .et
    AddLanguage fr .fr
    AddLanguage he .he
    AddLanguage hr .hr
    AddLanguage it .it
    AddLanguage ja .ja
    AddLanguage ko .ko
    AddLanguage ltz .ltz
    AddLanguage nl .nl
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddLanguage pt .pt
    AddLanguage pt-BR .pt-br
    AddLanguage ru .ru
    AddLanguage sv .sv
    AddLanguage zh-CN .zh-cn
    AddLanguage zh-TW .zh-tw
    # LanguagePriority allows you to give precedence to some languages
    # in case of a tie during content negotiation.
    # Just list the languages in decreasing order of preference. We have
    # more or less alphabetized them here. You probably want to change this.
    LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
    # ForceLanguagePriority allows you to serve a result page rather than
    # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
    # [in case no accepted languages matched the available variants]
    ForceLanguagePriority Prefer Fallback
    # Commonly used filename extensions to character sets. You probably
    # want to avoid clashes with the language extensions, unless you
    # are good at carefully testing your setup after each change.
    # See http://www.iana.org/assignments/character-sets for the
    # official list of        .utf7
    AddCharset utf-8       .utf8
    AddCharset big5        .big5 .b5
    AddCharset EUC-TW      .euc-tw
    AddCharset EUC-JP      .euc-jp
    AddCharset EUC-KR      .euc-kr
    AddCharset shift_jis   .sjis
    # AddType allows you to add to or override the MIME configuration
    # file mime.types for specific file types.
    #AddType application/x-tar .tgz
    # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
    # information on the fly. Note: Not all browsers support this.
    # Despite the name similarity, the following Add* directives have nothing
    # to do with the FancyIndexing customization directives above.
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #AddHandler cgi-script .cgi
    # For files that include their own HTTP headers:
    #AddHandler send-as-is asis
    # For server-parsed imagemap files:
    #AddHandler imap-file map
    # For type maps (negotiated resources):
    # (This is enabled by default to allow the Apache "It Worked" page
    #  to be distributed in multiple languages.)
    AddHandler type-map var
    # Filters allow you to process content before it is sent to the client.
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
    # Action lets you define media types that will execute a script whenever
    # a matching file is called. This eliminates the need for repeated URL
    # pathnames for oft-used CGI file processors.
    # Format: Action media/type /cgi-script/location
    # Format: Action handler-name /cgi-script/location
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    I am not expert in these, but please check out the following things and see whether it would solve your issue. (All these changes can be easily rolled back in case I'm wrong :). So make note of what you do)
    As per your httpd.conf, you have chosen an automatic configuration of Apache by OWCI installer itself. What it does is create an imageserver.conf file in a separate directory and these settings will be included in your httpd.conf as you can see in the first line: Include "C:/bea/alui/plumtreeconf/".
    If you check the imageserver.conf in that location, you would find a line like: Alias /imageserver/ "C:/bea/alui/ptimages/imageserver/". This aliases the original path "C:/bea/alui/ptimages/imageserver/" to /imageserver"
    To confirm whether this is done right, check the following:
    1. Acces 'http://<server ip / server name / localhost >/' from your browser
    This should display the Apache home page (as per your httpd.conf, it uses the default port 80; so no port number required)
    2. Access 'http://<server ip>/imageserver/' from your browser
    This should display the directory structure (if its not disabled) inside your 'C:/bea/alui/ptimages/imageserver/' folder. Also confirm that all the subfolders are accessible.
    3. If all the above is right, it means that your imageserver settings are right. Please check your portalconfig.xml for the correct settings: For example, <setting name="HTTPPort"> should be 7001 in your case. If its something else, change it and restart Weblogic for the settings to take effect.
    Hope this helps.

  • No login screen in normal mode boots fine in safe mode

    I have got a compaq persaio f700 went to turn it on to normal mode  nothing I can hear the login alert but nothing
    however I can boot it up in safe mode with no trouble . when I go into device manager i find a yellow triangle next to coprocessor. How or where can I find the coprocessor for this machine I am running vista 32

    Hello @biggreg64 
    To get your issue more exposure I would suggest posting it in the commercial forums since the Compaq Presario F700 Notebook PC series is a commercial product. You can do this here Notebook - HP ProBook, EliteBook, Compaq, Slate/Tablet PC, Armada, LTE
    The support page for your product may be helpful in the meantime: Compaq Presario F700 Notebook PC series.
    I hope this helps!
    Thank you for posting on the HP Forums.
    Please click the "Kudos, Thumbs Up" at the bottom of this post if you want to say "Thanks" for helping!
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    The Great Deku Tree
    I work on behalf of HP.

  • Cannot login with Active Directory Account

    Hello,
    I am testing SnowLeopard (10.6.1) for deployment in my labs for the Spring 2010 semester. We use local home directories. This is a brand new fresh install of SL, on a freshly formatted Hard Drive.
    When bound to Active Directory I can get any AD account that I've tested (5 different accounts) to authenticate except one, which happens to be my own personal AD account.
    The secure.log shows these entries when I attempt to login:
    Oct 9 14:18:29 mac-0017f20fc40 SecurityAgent[209]: User info context values set for ctarbox
    Oct 9 14:18:29 mac-0017f20fc40 authorizationhost[208]: Failed to authenticate user <ctarbox> (tDirStatus: -14090).
    Considering that I could log in with other accounts, and after resetting my AD password then still not being able to authenticate, I came to the conclusion that I had a corrupt OU in Active Directory.
    I contacted one of our AD admins and had him delete both of my AD accounts: ctarbox and ctarbox1 then recreate both accounts. I still cannot login to AD with my ctarbox account.
    I can still login to my current lab machines anywhere on campus running 10.5.8 with ctarbox.
    I am baffled by this. I have been authenticating to Active Directory since 10.1 and have never seen anything like this.
    Any idea, anyone?
    Cheryl Tarbox
    Macintosh Support Specialist
    Binghamton University

    I have found the solution to my problem. I have accounts in two different domains in our AD tree. I'll called these domains Domain A and Domain B.
    Domain A is the primary domain for authentication to our public computing labs.
    Domain B is a secondary domain for authentication to shared resources for faculty/staff.
    Both accounts have the same user ID, but different passwords. In my Directory Utility>Advanced>Administrative window I have the option "Allow authentication from any domain in the forest' checked.
    With this option checked Directory Utility in 10.6.1 will allow me to authenticate Domain B, but not Domain A.
    With this option checked in Directory Utility in 10.5.8 just the opposite is taking place, I can authenticate to Domain A, but not Domain B.
    It seems that somewhere in the upgrade to 10.6.1 the search policy for Active Directory has changed. My workaround is to uncheck this option and specifically choose Domain A in the search policy.

  • Decommissioned a file server, but every mobile account in the place is still trying to connect to it on login!

    A couple of months ago we decommissioned the 10.4.11 xserve that was serving as our LDAP server and home directory server for mobile accounts.  We migrated all of that to a newer 10.6.8 xserve.  It was a fairly rough migration, but we've pretty much sorted it out except for one last annoyance: when you look at System Preferences->Accounts->Login Items for all of our mobile accounts, every single client is still trying to mount an afp share on the old server.  Logging in takes FOREVER because the connection needs to time out, so now my users are no longer logging out/in as often as they should, and so their Home Sync's are getting old.
    When you go to the client's Preferences, the line referencing the old server share is still there, but the minus sign is greyed out so the item cannot be deleted.
    The Kind is listed as "unknown" and there is a grey warning triangle next to it.
    This is clearly some sort of template/Preference that is hardcoded to the old name, and whatever file this is got moved to the new server (which has a different name and different numeric IP address.)  Because even the BRAND NEW users that I have created since after "pdc04.hgbc.com" disappeared are trying to log in to the non-existent share on the non-existent server, too!
    I have tried running grep on the entire disk on one of the clients looking for the string "pdc04", and updated everything that I found using vi directly on the files.  I have tried running grep on select directory trees on the new file server looking for pdc04.  In my grep on the client, I found the string in
         /Library/Managed Preferences/user/loginwindow.plist
         /Library/Managed Preferences/user/complete.plist
    but searching all of the logingwindow.plist and complete.plist files on the new server comes up with nothing.
    Does anyone have any idea where the template or preference or plist is on the server so that I can delete or update the file with the new host name?

    I think that Grant is on the right track -- but the problem is that whatever file that pdc04's Server Manager wrote into is not available to pdc's Server Manager to edit or even display.
    We upgraded mostly by turning off the G5 10.4 xserve and unplugging the fiber-channel RAID (with user accounts on it) and plugging the RAID into a fiber-channel card on the new (to us) Nehalem 10.6 xserve, which we did after using Migration Assistant between the machines.  Then we had various and sundry problems, and we ended up moving all of the mobile account directories to the internal RAID on the new server.
    Clearly there is a file somewhere that acts as a template for mobile accounts and it refers to the old machine but its been moved to the new machine.
    Only two of the mobile accounts have directories in the /Library/Managed Preferences folder.  One of them, ironically, is mine, and my account hasn't worked right since we went to the new server.

  • How to calculate the last selected item in a tree node where we can customize the list to the node.

    Hi,
    I'm new to the Flex field. I got a task where i have a tree (TREE is the id) with X and Y as nodes. In X i have got a list of pages(dataprovider is array collection) added dynamically(means User can configure the pages).On selecting last item(last page) in the list of X node, the  view will be presented with a component say Xlast on the right side which is in view stack. In that component , there is button called NEXT which has to be greyed out for the last page. I tried by calling the below code on viewChange event
    if(viewstack.selectedchild == XlastpageId)
    Nextbtn.enabled = false;
    but this will work only when we know XlastpageId is the lastpage for the tree. but how to implement this when we dont know which is the last page of the X node in a Tree.
    I also tried by calculating the children of the tree on tree click event which is
    if (Tree.selectedItem == TREE.numChildren - 1)
    Nextbtn.enabled = false;
    i know this is wrong because we have 2 children for the tree( X and Y) so it is showing 2-1 and the button is greyed out for the first click.
    Please help me out.
    Thanks in Advance,
    Sw

    Hi,
    According to your post, my understanding is that you want to monitor the last login user’s details.
    There is no out of the box way to achieve it in SharePoint.
    We can use cookie to be a flag for checking whether there is an user just log in. After the page loaded, if the cookie is null, it suggests that there is an user just log in our site, then we
    can get this user’s information using JavaScript Object Model and add the information into a custom list. With this list, we can monitor user’s login details.
    Refer to the following link:
    https://social.technet.microsoft.com/Forums/en-US/0cd4d531-cb61-4d90-aa70-413267f4a735/how-to-know-login-and-logout-details-of-a-user-in-sharepoint-online-2013?forum=sharepointdevelopment
    Besides, here are two similar posts for your reference:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/1a35283e-0f2a-49b8-b330-801a3cfcd890/programatically-get-all-current-logged-in-users-list-for-a-sharepoint-site?forum=sharepointdevelopmentprevious
    https://social.technet.microsoft.com/Forums/en-US/10953be3-cb1c-40c7-9454-545c8338b551/how-to-know-login-users-count-and-their-details-in-sharepoint-2010-web-application?forum=sharepointgeneralprevious
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • OD-Clientusers need long time to login

    Hi there,
    I hope, I can get some help here...
    Running an OD-Master (10.5.8) with nor replikas, I have the problem, that sometimes the User-Login needs some minutes for successfull login.
    What I can do to solve the problem for the moment is to remove and reconnect the clients to the server. But this doesn't solve the problem permanent.
    The DNS is running fine and does not make trouble.
    In serveradmin in the replik-tree window I recognized, that there are three IPs listet (10.0.11.6 (the correct OD-Master), 10.0.11.5 (just LOM of the server) and 10.0.11.7 (another xserve, which does only serve DHCP, DNS and Softwareupdates).
    So I think, here is the reason for my trouble.
    What do you think?
    $ dscl /LDAPv3/127.0.0.1 read /Config/KerberosClient XMLPlist
    offers following:
    XMLPlist:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>edu.mit.kerberos</key>
    <dict>
    <key>domain_realm</key>
    <dict>
    <key>.local</key>
    <string>XSERVER.LOCAL</string>
    <key>local</key>
    <string>XSERVER.LOCAL</string>
    </dict>
    <key>libdefaults</key>
    <dict>
    <key>default_realm</key>
    <string>XSERVER.LOCAL</string>
    </dict>
    <key>realms</key>
    <dict>
    <key>XSERVER.LOCAL</key>
    <dict>
    <key>KADM_List</key>
    <array>
    <string>xserver.local</string>
    <string>10.0.11.6</string>
    <string>10.0.11.7</string>
    <string>10.0.11.5</string>
    </array>
    <key>KDC_List</key>
    <array>
    <string>xserver.local</string>
    <string>10.0.11.6</string>
    <string>10.0.11.7</string>
    <string>10.0.11.5</string>
    </array>
    </dict>
    </dict>
    </dict>
    <key>generationID</key>
    <integer>1320874315</integer>
    </dict>
    </plist>
    $ dscl /LDAPv3/127.0.0.1 read /Config/passwordserver PasswordServerList
    offers the same three IPs in the plist.
    Should I edit the plist(s)?
    If yes: How can I do this?
    What else could I do?
    Thank you for your assistance,
    Peter.

    Peter
    You're welcome!
    Running the "changeip" command is not necessarily a guarantee of anything - especially when it comes to LDAP Services. When doing the initial Promotion to OD Master you should have noticed this disparity? At that point you should have stopped and double-checked everything again. The "scutil" command in conjunction with a properly configured DNS Service is particularly useful in getting things back on track quickly and efficiently.
    It's possible this disparity happened because you used the Server Setup Assistant after the initial Server Install? Unfortunately - if you did - that was your first mistake. Never use the Server Setup Assistant to configure anything other than defining the Server's default administrator account details, its network address and its hostname. As for its hostname you have to decide right at the beginning before doing anything else what this is going to be and you have to try and stick to it. Changing your mind afterwards can potentially break things in a major way.
    If there are no existing DNS servers on your private network you will have to configure the DNS Service on the Server itself (as well as getting the Server fully up to date) before doing anything else. If there is an existing DNS Service create the appropriate records there.
    I don't think the advice in the support document will actually help? Although you could try it if you wish. You might get more mileage from using the "changeip" command? This might bring things back on track and 're-align' the Kerberos Realm to the Server's true hostname? However depending on how mature and extensive your LDAP Database is it may make things actually worse. Even if it worked it may not necessarily help with other services you may or may not be using that depend on LDAP Services. Services such as iCal etc may end up not working at all or being problematic afterwards.
    Ultimately you may be looking at Demotion and Re-promotion? with everything that that means. You have to make sure you prepare the ground properly first. Demotion blows everything to do with your LDAP Database away - users, passwords etc but not home folders.
    For your future reference this is not the appropriate forum to post your question. The 10.5 Server Open Directory Forum is here:
    http://discussions.apple.com/forum.jspa?forumID=1239
    The OSX Server Forum as a whole is here:
    http://discussions.apple.com/category.jspa?categoryID=96
    Tony

  • Multiple users login to 1 server when there are 2?

    This causes high utilization on 1 server every day and very slow logins. How can I fix this?
    Novell Netware, V6.5 Support Pack 9 - Developement Internal Release
    Support Pack Revision 09
    (C) Copyright 1983-2008 Novell Inc. All Rights Reserved. Patent Pending.
    Server Version 5.70.08 June 15, 2010
    Novell eDirectory Version 8.8 SP5 SMP
    NDS Version 20505.07 September 22, 2010

    This is the first server. I had to cut the log short...
    Novell File Server Configuration Report For Server: XYZ
    Novell File Server Configuration Report Created: Thu, Jun 23, 2011 9:38 am
    Novell File Server Configuration Report. [Produced by CONFIG.NLM v3.10.17]
    Novell NetWare 5.70.08 June 15, 2010
    (C) Copyright 1983-2008 Novell Inc. All Rights Reserved.
    Server name...............: XYZ
    OS Version................: v5.70
    OS revision number........: 8
    Product Version...........: v6.50
    Product Revision Number...: 9
    Server Up Time(D:H:M:Sec).: 17:10:49:30
    Serial number.............: XXXXXXXX
    Internal Net. Addr........: 00000000h
    Security Restriction Level: 1
    SFT Level.................: 2
    Engine Type...............: NATIVE
    TTS Level.................: 1
    Total Server memory.......: 3324.88 MB or 3486393344 Bytes
    Processor speed rating....: 262763
    Original cache buffers....: 850095
    Current Cache Buffers.....: 227050
    LRU Sitting Time(D:H:M:S).: 17:10:49:30
    Current FSP's.............: 47
    Current MP FSP's..........: 1320
    Current Receive Buffers...: 2225
    Directory cache buffers...: 0
    Workstations Connected....: 7349
    Max Workstations Connected: 9347
    Server language...........: ENGLISH (4)
    Timesync active...........: Yes
    Time is synchronized......: Yes
    Total Processors..........: 8
    Server DOS Country ID.....: 1
    Server DOS Code Page......: 437
    Boot Loader...............: DOS
    Top of Modules List 282 Modules Loaded.
    ACPIASL.NLM v1.05.16 Jan. 16, 2007 ACPI Architecture Services Layer for ACPI compliant systems
    ACPICA.NLM v1.05.16 Jan. 16, 2007 ACPI Component Architecture for ACPI compliant systems
    ACPICMGR.NLM v1.05.16 Jan. 16, 2007 ACPI Component Manager for ACPI compliant systems
    ACPIDRV.PSM v1.05.19 Jan. 16, 2007 ACPI Platform Support Module for ACPI compliant systems
    ACPIPWR.NLM v1.05.16 Jan. 16, 2007 ACPI Power Management Driver for ACPI compliant systems
    AFPTCP.NLM v2.09.01 Jun. 7, 2010 AFPTCP (Build 212 SP)
    AFREECON.NLM v6.00 Feb. 28, 2006 AdRem Free Remote Console (NCPE)
    APACHE2.NLM v2.00.63 Apr. 25, 2008 Apache Web Server 2.0.63
    APRLIB.NLM v0.09.17 Apr. 25, 2008 Apache Portability Runtime Library 0.9.17
    AUDITLGN.NLM v1.20 May. 30, 2007 Login audit
    AUTHLDAP.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 LDAP Authentication Module
    BACKUPCR.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box DSBackup eMTool
    BACKUPTL.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box DSBackup eMTool
    BSDSOCK.NLM v6.82.02 Dec. 23, 2009 Novell BSDSOCK Module
    BTCPCOM.NLM v7.90 Jul. 9, 2003 BTCPCOM.NLM v7.90.000, Build 253
    BTRIEVE.NLM v7.90 Mar. 21, 2001 BTRIEVE.NLM v7.90.000
    BX2.LAN v4.64 Apr. 8, 2009 Broadcom NetXtreme II Gigabit Ethernet Driver
    CALNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWCalls Runtime Library
    CCS.NLM v27610.01.01 Mar. 30, 2009 Controlled Cryptography Services from Novell, Inc.
    CDBE.NLM v6.01 Sep. 21, 2006 NetWare Configuration DB Engine
    CDDVD.NSS v3.27.03 Jun. 7, 2010 NSS Loadable Storage System (LSS) for CD/UDF (Build 212 MP)
    CERTLCM.NLM v28200902.26 Feb. 26, 2009 Novell SASL EXTERNAL Proxy LCM 2.8.2.0 20090226
    CERTLSM.NLM v28200902.26 Feb. 26, 2009 Novell SASL EXTERNAL LSM 2.8.2.0 20090226
    CIFS.NLM v3.27.03 Jun. 7, 2010 CIFS Semantic Agent (Build 212 MP)
    CIFSPROX.NLM v3.27.03 Jun. 7, 2010 NMAS Proxy for CIFS (Build 212 MP)
    CIOS.NLM v1.60 Feb. 12, 2008 Consolidated IO System
    CLIB.NLM v5.90.15 Mar. 10, 2008 (Legacy) Standard C Runtime Library for NLMs
    CLNNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWClient Runtime Library
    CLXNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWCLX Runtime Library
    COMN.NSS v3.27.03 Jun. 7, 2010 NSS Common Support Layer (COMN) (Build 212 MP)
    CONFIG.NLM v3.10.17 Feb. 12, 2008 NetWare Server Configuration Reader
    CONLOG.NLM v3.01.02 Aug. 8, 2006 System Console Logger
    CONNAUD.NLM v3.17 May. 10, 2005 NLS - Connection Metering
    CONNMGR.NLM v5.60.01 Sep. 7, 2006 NetWare Connection Manager NLM
    CPQSHD.CDM v2.08 Feb. 19, 2008 HP NWPA SCSI Disk Driver
    CPUCHECK.NLM v5.60.01 Dec. 6, 2007 NetWare Processor Checking Utility
    CRLSM.NLM v2.08.01 Mar. 31, 2009 Challenge Response LSM v2.8.1.0
    CSL.NLM v2.06.02 Jan. 13, 2000 NetWare Call Support Layer For NetWare
    CSLIND.NLM v4.21 Dec. 7, 1999 TCPIP CSL INDEPENDENCE MODULE 7Dec99 7Dec99
    DBNET6.NLM v1.45.02 Mar. 16, 2006 Debug Network IO Support
    DFSLIB.NLM v3.27.03 Jun. 7, 2010 DFS Common Library (Build 212 MP)
    DHOST.NLM v10010.97 Sep. 18, 2006 Novell DHost Portability Interface 1.0.0 SMP
    DIAG500.NLM v3.04.03 Oct. 31, 2007 Diagnostic/coredump utility for NetWare 6.x
    DLOG.NLM v6.05.04 Dec. 7, 2006 Debug Memory Log Functions
    DPLSV386.NLM v1.15.01 May. 21, 2007 NetWare 6.x Distributed Print Library - DPLSV386
    DPRPCNLM.NLM v3.00.17 Oct. 10, 2006 Novell NDPS RPC Library NLM
    DS.NLM v20505.07 Sep. 22, 2010 Novell eDirectory Version 8.8 SP5 SMP
    DSAPI.NLM v6.00.04 Jan. 27, 2006 NetWare NWNet Runtime Library
    DSEVENT.NLM v6.01.03 Aug. 26, 2008 NetWare DSEvent Runtime Library
    DSLOADER.NLM v20505.07 Sep. 22, 2010 Novell eDirectory Version 8.8.5 Loader SMP
    DSLOG.NLM v20219.15 May. 12, 2009 DS Log for Novell eDirectory 8.8.0
    EHCIDRV.CAD v1.05 Feb. 26, 2008 Novell Universal Serial Bus EHCI driver
    EMBOX.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box Engine
    EMBOXMGR.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box Manager
    EMBOXMSG.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box Message API
    EMSECURE.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box Security Service
    EPWDLSM.NLM v27000508.12 Aug. 12, 2005 Novell Enhanced Password LSM 2.7.0.0 20050812
    ETADVLSM.NLM v27000508.03 Aug. 3, 2005 Novell Entrust LSM 2.7.0.0 20050803
    ETHERTSM.NLM v3.90 Mar. 20, 2006 Novell Ethernet Topology Specific Module
    FATFS.NLM v1.24 Aug. 27, 2007 FAT Filesystem Module for NetWare
    FILESYS.NLM v5.14 Apr. 16, 2008 NetWare File System NLM
    GAMS.NLM v2.00.01 Sep. 2, 2008 Graded Authentication Management Service
    HEADERS.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 Headers Module
    HOSTMIB.NLM v5.03.01 Dec. 1, 2006 NetWare 5.x/6.x Host Resources MIB
    HPBRAND.NLM v6.11 Aug. 26, 2009 HP Data Protector HPBRAND
    HPINET.NLM v6.11 Aug. 26, 2009 HP Data Protector HPINET
    HPLIBDC.NLM v6.11 Aug. 26, 2009 HP Data Protector HPLIBDC
    HPLIBDE.NLM v6.11 Aug. 26, 2009 HP Data Protector HPLIBDE
    HPQCISS.HAM v1.14 May. 5, 2008 HP SAS/SATA Unified RAID driver
    HT2SOAP.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box HTTP to SOAP shim
    HTTPSTK.NLM v4.03 Sep. 4, 2008 Novell Small Http Interface
    HWDETECT.NLM v1.19.05 Feb. 20, 2003 Novell Hardware Insertion/Removal Detection
    ICEWM.NLM v3.01.02 Oct. 16, 2008 IceWM Dynamic Library for NetWare
    IDEATA.HAM v4.34 May. 5, 2007 Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    IDECD.CDM v4.13 Apr. 4, 2007 Novell ATA/IDE CD/DVD Custom Device Module
    IPMCFG.NLM v1.01.16 Oct. 22, 2005 Web Interface for IP Address Management
    IPMGMT.NLM v1.03.01 May. 29, 2007 TCPIP - NetWare IP Address Management
    JAVA.NLM v1.43 Oct. 16, 2008 java.nlm (based on 1.4.2_18) Build 08101613
    JCLNT.NLM v2.05 Aug. 4, 2010 NetWare JClient-Native (Build 2.5.502)
    JCLNTR.NLM v2.05 Aug. 4, 2010 NetWare JClient-Native Resources (Build 2.5.502)
    JNCPV2.NLM v1.10 Nov. 13, 2003 Native Wrapper Java Class Libraries for NetWare
    JNDPS.NLM v4.30.01 Jun. 12, 2009 Native Wrapper Java Class Libraries for NDPS
    JNET.NLM v1.43 Oct. 16, 2008 Java jnet (based on 1.4.2_18)
    JSMSG.NLM v3.27.03 Jun. 7, 2010 Jetstream Message Layer (Build 212 MP)
    JSOCK.NLM v1.43 Oct. 16, 2008 Support For Java Sockets (loader)
    JSOCK6X.NLM v1.43 Oct. 16, 2008 NetWare 6.x Support For Java Sockets (JDK 1.4.2)
    JSTCP.NLM v3.27.03 Jun. 7, 2010 Jetstream TCP Transport Layer (Build 212 MP)
    JVM.NLM v1.43 Oct. 16, 2008 Java Hotspot 1.4.2_18 Interpreter
    JVMLIB.NLM v1.43 Oct. 16, 2008 Java jvmlib (based on 1.4.2_18)
    LANGMAN.NLM v20504.01 May. 24, 2010 Novell Cross-Platform Language Manager
    LANGMANI.NLM v20504.01 May. 24, 2010 Novell Cross-Platform Language Manager
    LBURP.NLM v20504.02 May. 24, 2010 LDAP Bulkload Update/Replication Protocol service extension for Novell eDirectory 8.8.
    LCMCIFS2.NLM v2.00.09 May. 20, 2008 Windows Native File Access Login Methods (Build 85 SP)
    LCMMD5.NLM v28000806.23 Jun. 23, 2008 Novell SASL DIGEST-MD5 Proxy LCM 2.8.0.0 20080623
    LDAPSDK.NLM v3.05.02 Jun. 29, 2010 LDAP SDK Library (Clib version)
    LDAPX.NLM v3.05.01 Jun. 29, 2010 NetWare Extension APIs for LDAP SDK (Clib version)
    LDAPXS.NLM v3.05.01 Jun. 29, 2010 (Clib version)
    LFS.NLM v5.12 Sep. 21, 2005 NetWare Logical File System NLM
    LIB0.NLM v5.90.15 Mar. 10, 2008 Novell Ring 0 Library for NLMs
    LIBC.NLM v9.00.05 Oct. 3, 2008 Standard C Runtime Library for NLMs [optimized, 7]
    LIBGCC_S.NLM v3.04.03 Apr. 29, 2005 gcc runtime and intrinsics support
    LIBNSS.NLM v3.27.03 Jun. 7, 2010 Generic Library used by NSS (Build 212 MP)
    LLDAPSDK.NLM v3.05.02 Jun. 29, 2010 LDAP SDK Library (LibC version)
    LLDAPSSL.NLM v3.05.01 Jun. 29, 2010 NetWare SSL Library for LDAP SDK (LibC version)
    LLDAPX.NLM v3.05.01 Jun. 29, 2010 NetWare Extension APIs for LDAP SDK (LibC version)
    LOCNLM32.NLM v6.00.04 Nov. 29, 2005 NetWare NWLocale Runtime Library
    LOGGER.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box Logger
    LSAPI.NLM v5.02 Jan. 7, 2003 NLS LSAPI Library
    LSL.MPM v5.70 Feb. 15, 2006 lsl Memory Protection Module
    LSL.NLM v4.86 Feb. 2, 2006 Novell NetWare Link Support Layer
    LSMAFP3.NLM v2.00.11 Jul. 15, 2008 Macintosh Native File Access Login Methods (Build 108 SP)
    LSMCIFS2.NLM v2.00.07 Jul. 15, 2008 Windows Native File Access Login Methods (Build 108 SP)
    LSMMD5.NLM v28000806.23 Jun. 23, 2008 Novell SASL DIGEST-MD5 LSM 2.8.0.0 20080623
    LSSS.NLM v3.40 Jul. 1, 2009 Novell SecretStore LDAP Extension Manager 3.4.1.32
    MAL.NSS v3.27.03 Jun. 7, 2010 NSS Media Access Layer (MAL) (Build 212 MP)
    MALHLP.NLM v3.27.03 Jun. 7, 2010 NSS Configure help messages (Build 212 MP)
    MANAGE.NSS v3.27.03 Jun. 7, 2010 NSS Management Functions (Build 212 MP)
    MASV.NLM v2.00.01 Sep. 2, 2008 Mandatory Access Control Service
    MATHLIB.NLM v4.21 Oct. 14, 1999 NetWare Math Library Auto-Load Stub
    MERGECR.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box DSMerge eMTool
    MERGETL.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box DSMerge eMTool
    MM.NLM v3.22.07 Aug. 20, 2008 NetWare 6.5 Media Manager
    MOD_JK.NLM v1.02.23 Apr. 25, 2008 Apache 2.0 plugin for Tomcat
    MONDATA.NLM v6.00 Jul. 18, 2003 NetWare 5.x/6.x Monitor MIB
    MONITOR.NLM v12.02.02 Apr. 4, 2006 NetWare Console Monitor
    MRTGEXT.NLM v1.46.02 Jan. 3, 2007 MRTG Extention for NetWare
    MSM.NLM v4.12 Aug. 22, 2007 Novell Multi-Processor Media Support Module
    NBI.NLM v3.01.01 Jul. 13, 2007 NetWare Bus Interface
    NCP.NLM v5.61.01 Sep. 30, 2008 NetWare Core Protocol (NCP) Engine
    NCPIP.NLM v6.02.01 Sep. 30, 2008 NetWare NCP Services over IP
    NCPNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWNCP Runtime Library
    NDSAUDIT.NLM v2.09 May. 22, 2003 Directory Services Audit
    NDSIMON.NLM v20505.03 Sep. 9, 2010 NDS iMonitor 8.8.5 SP5
    NEB.NLM v5.60 Sep. 27, 2004 Novell Event Bus
    NETDB.MPM v5.70 Feb. 15, 2006 netdb Memory Protection Module
    NETDB.NLM v4.11.05 Jan. 6, 2005 Network Database Access Module
    NETLIB.NLM v6.50.22 Feb. 12, 2003 Novell TCPIP NETLIB Module
    NETNLM32.NLM v6.01.03 Aug. 26, 2008 NetWare NWNet Runtime Library
    NFAP4NRM.NLM v1.04 Dec. 8, 2003 NFAP Simple Password Management NLM
    NICISDI.NLM v27610.01.01 Mar. 30, 2009 Security Domain Infrastructure
    NILE.NLM v7.00.01 Aug. 20, 2007 Novell N/Ties NLM ("") Release Build with symbols
    NIPPED.NLM v1.03.09 Jul. 11, 2006 NetWare 5.x, 6.x INF File Editing Library - NIPPED
    NIRMAN.NLM v1.06.04 Sep. 18, 2007 TCPIP - NetWare Internetworking Remote Manager
    NIT.NLM v5.90.15 Mar. 10, 2008 NetWare Interface Tools Library for NLMs
    NLDAP.NLM v20505.03 Sep. 9, 2010 LDAP Agent for Novell eDirectory 8.8 SP5
    NLMLIB.NLM v5.90.15 Mar. 10, 2008 Novell NLM Runtime Library
    NLSADPT2.NLM v2.00 Sep. 9, 2003 NLS and Metering adapter for iManager 2.0 plugin
    NLSAPI.NLM v5.02 Aug. 7, 2003 NLSAPI
    NLSLRUP.NLM v4.01.07 May. 10, 2005 NLS - Usage Metering
    NLSLSP.NLM v5.02 May. 25, 2005 NLS - License Service Provider
    NLSMETER.NLM v3.43 May. 10, 2005 NLS - Software Usage Metering Database
    NLSTRAP.NLM v5.02 Feb. 19, 2004 NetWare License Server Trap
    NMAS.NLM v33200904.07 Apr. 7, 2009 Novell Modular Authentication Service 3.3.2.0 20090407
    NMASGPXY.NLM v33200904.07 Apr. 7, 2009 NMAS Generic Proxy 3.3.2.0 20090407
    NMASLDAP.NLM v33200904.07 Apr. 7, 2009 NMAS LDAP Extensions 3.3.2.0 20090407
    NPKIAPI.NLM v3.33 Apr. 16, 2009 Public Key Infrastructure Services
    NPKIJNI.NLM v3.33 Apr. 16, 2009 Public Key Infrastructure Services
    NPKIT.NLM v3.33 Apr. 16, 2009 Public Key Infrastructure Services
    NSPDNS.NLM v6.20.03 Sep. 8, 2003 NetWare Winsock 2.0 NSPDNS.NLM Name Service Providers
    NSPNDS.NLM v6.20 Nov. 12, 2001 NetWare Winsock 2.0 NSPNDS.NLM Name Service Provider
    NSPSLP.NLM v6.20.04 Dec. 6, 2007 NetWare Winsock 2.0 NSPSLP.NLM Name Service Provider
    NSS.NLM v3.27.03 Jun. 7, 2010 NSS (Novell Storage Services) (Build 212 MP)
    NSSIDK.NSS v3.27.03 Jun. 7, 2010 NSS Pool Configuration Manager (Build 212 MP)
    NSSWIN.NLM v3.27.03 Jun. 7, 2010 NSS ASCI Window API Library (Build 212 MP)
    NTLS.NLM v20510.01 Mar. 11, 2009 NTLS 2.0.5.0 based on OpenSSL 0.9.7m
    NVGES.NLM v4.00 May. 30, 2007 NetVision GES Broker for NetWare
    NVLOGREG.NLM v3.50 May. 31, 2007 NetVision Login and Registration API
    NVSA.NLM v4.06 May. 15, 2008 NetVision ServerAlert NLM
    NWAIF103.NLM v7.94 Nov. 30, 2001 nwaif103.nlm v7.94, Build 251 ()
    NWBSRVCM.NLM v7.90 Mar. 20, 2001 NWBSRVCM.NLM v7.90.000, Build 230
    NWENC103.NLM v7.90 Feb. 24, 2001 NWENC103.NLM v7.90.000 (Text Encoding Conversion Library)
    NWI.NLM v2.51 Feb. 11, 2008 NetWare Install (NWI) Module
    NWIDK.NLM v3.01.01 Sep. 19, 2003 CDWare Volume Module
    NWKCFG.NLM v2.16 Jun. 24, 2005 NetWare Kernel Config NLM
    NWMKDE.NLM v7.94 Dec. 11, 2001 NWMKDE.NLM v7.94.251.000
    NWPA.NLM v3.21.02 Oct. 29, 2008 NetWare 6.5 NetWare Peripheral Architecture NLM
    NWPALOAD.NLM v3.00 Jul. 10, 2000 NetWare 5 NWPA Load Utility
    NWSA.NSS v3.27.03 Jun. 7, 2010 NSS NetWare Semantic Agent (NWSA) (Build 212 MP)
    NWSNUT.NLM v7.00.01 Jul. 11, 2008 NetWare NLM Utility User Interface
    NWTERMIO.NLM v1.00 Sep. 11, 2006 NetWare Terminal Emulation
    NWTRAP.NLM v6.00.05 Jun. 6, 2005 NetWare 5.x/6.x Trap Monitor
    NWUCMGR.NLM v1.05 Mar. 14, 2001 NWUCMGR.NLM v1.5 Build 230
    NWUTIL.NLM v3.00.02 Aug. 20, 2007 Novell Utility Library NLM (_NW65[SP7]{""})
    OWCIMOMD.NLM v3.02 Nov. 27, 2007 OpenWBEM CIMOM Daemon with Novell providers
    PARTAPI.NLM v2.00 Apr. 17, 2002 Partition APIs for NetWare 6.1
    PKI.NLM v3.33 Apr. 16, 2009 Novell Certificate Server
    PKIAPI.NLM v2.23.10 Nov. 20, 2004 Public Key Infrastructure Services
    PMLODR.NLM v1.25 Nov. 4, 2004 ENG TEST - PMLodr for NW65
    PMPORTAL.NLM v2.16 Nov. 21, 2003 NetWare License Information Portal
    POLIMGR.NLM v6.27 Nov. 3, 2005 NetWare License Policy Manager
    PORTAL.NLM v4.03 Sep. 22, 2008 Novell Remote Manager NLM
    PS2.NLM v1.01 Oct. 16, 2008 Java - PS/2 Mouse Port Driver Build 081016
    PSA.NSS v3.27.03 Jun. 7, 2010 PSA Posix Semantic Agent (PSA) (Build 212 MP)
    PSVCS.NLM v251.00 Nov. 30, 2001 Portability Services
    PVER500.NLM v3.00 Apr. 27, 2010 ENG TEST - NetWare 6.XX Version Library
    PWDLCM.NLM v28000806.23 Jun. 23, 2008 Novell Simple Password Proxy LCM 2.8.0.0 20080623
    PWDLSM.NLM v28000806.23 Jun. 23, 2008 Novell Simple Password LSM 2.8.0.0 20080623
    QUEUE.NLM v5.60 May. 24, 2001 NetWare Queue Services NLM
    REPAIRCR.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box DSRepair eMTool
    REPAIRTL.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box DSRepair eMTool
    REQUESTR.NLM v5.90.15 Mar. 10, 2008 Novell NCP Requestor for NLMs
    ROLLCALL.NLM v5.00 Jul. 27, 1998 RollCall NLM (101, API 1.0)
    ROTLOGS.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 Log Rotation Utility for NetWare
    RSS.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box Remote Subscription Service
    SAL.NLM v20504.01 May. 24, 2010 Novell System Abstraction Layer Version 8.8.0
    SASDFM.NLM v27610.01.01 Mar. 30, 2009 SAS Data Flow Manager
    SASL.NLM v33200904.07 Apr. 7, 2009 Simple Authentication and Security Layer 3.3.2.0 20090407
    SCHEMACR.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box Schema eMTool
    SCHEMATL.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box Schema eMTool
    SCRCB.NLM v1.00 Oct. 3, 2005 Scripting - LibC-CLib Context Broker
    SERVICTL.NLM v20505.02 Sep. 9, 2010 eDirectory Management Tool Box DSService eMTool
    SERVINST.NLM v5.00.13 Nov. 21, 2005 NetWare 5.x/6.x Instrumentation
    SETBG.NLM v1.01 Oct. 16, 2008 Java - X Window Set Background Frontend Build 081016
    SETMD4.NLM v2.00.01 Jun. 7, 2010 Windows Native File Access CIFS Library (Build 212 SP)
    SGUID.NLM v6.01 Sep. 27, 2002 NetWare GUID Services
    SLP.MPM v5.70 Feb. 15, 2006 slp Memory Protection Module
    SLP.NLM v2.13 Nov. 15, 2005 SERVICE LOCATION PROTOCOL (RFC2165/RFC2608)
    SLPDA.NLM v2.13 Nov. 15, 2005 SERVICE LOCATION NDS DIRECTORY AGENT (RFC2165/RFC2608)
    SLPTCP.NLM v2.13 Nov. 15, 2005 SERVICE LOCATION TCP/UDP INTERFACE (RFC2165/RFC2608)
    SMDR.NLM v6.57.06 Feb. 15, 2010 SMS - Storage Data Requestor
    SMSUT.NLM v1.01.03 Aug. 14, 2007 SMS - Utility Library for NetWare 6.X
    SNMP.MPM v5.70 Feb. 15, 2006 snmp Memory Protection Module
    SNMP.NLM v4.18 Jul. 25, 2006 Netware 4.x/5.x/6.x SNMP Service
    SPMDCLNT.NLM v33200904.07 Apr. 7, 2009 Novell SPM Client for DClient 3.3.2.0 20090407
    SSLDP.NLM v3.40 Jul. 1, 2009 Novell SecretStore LDAP Transport Plugin 3.4.1.32
    SSNCP.NLM v3.40 Jul. 1, 2009 Novell SecretStore NCP Transport Plugin 3.4.1.32
    SSS.NLM v3.40 Jul. 1, 2009 Novell SecretStore 3.4.1.32
    STREAMS.MPM v5.70 Feb. 15, 2006 streams Memory Protection Module
    STREAMS.NLM v6.00.06 May. 4, 2005 NetWare STREAMS PTF
    SYSCALLS.NLM v5.61 Aug. 2, 2007 NetWare Operating System Call and Marshalling Library
    SYSLOG.NLM v6.05.03 Oct. 22, 2007 NetWare Logfile Daemon
    TCP.NLM v6.82.06 Dec. 23, 2009 Novell TCP/IP Stack - Transport module (NULL encryption)
    TCPIP.MPM v5.70 Feb. 15, 2006 tcpip Memory Protection Module
    TCPIP.NLM v6.82.02 Sep. 30, 2009 Novell TCP/IP Stack - Network module (NULL encryption)
    TCPSTATS.NLM v6.50.10 Jun. 20, 2003 Web Interface for Protocol Monitoring
    THREADS.NLM v5.90.15 Mar. 10, 2008 Novell Threads Package for NLMs
    TIMESYNC.NLM v6.61.01 Oct. 14, 2005 NetWare Time Synchronization Services
    TLI.MPM v5.70 Feb. 15, 2006 tli Memory Protection Module
    TLI.NLM v4.30.02 Dec. 19, 2000 NetWare Transport Level Interface Library
    TSAFS.NLM v6.52.09 Oct. 16, 2008 SMS - File System Agent for NetWare 6.X
    TSANDS.NLM v20504.03 May. 25, 2010 TSA for Novell eDirectory 7.x, 8.x
    TUI.NLM v1.05.03 May. 28, 1998 Textual User Interface MOAB_B40.528
    UHCIDRV.CAD v1.07 Feb. 26, 2008 Novell Universal Serial Bus UHCI driver
    UIMON.NLM v1.03 Oct. 16, 2008 UIMON, User interface monitor Build 081016
    UNICODE.NLM v7.00 Oct. 26, 2004 NetWare Unicode Runtime Library (UniLib-based) [optimized]
    USCLSM.NLM v27000507.14 Jul. 14, 2005 Novell Universal SmartCard LSM 2.7.0.0 20050714
    USERLIB.NLM v5.60 Sep. 29, 2008 NetWare Operating System Function Library
    UTILLDAP.NLM v2.00.63 Apr. 25, 2008 Apache 2.0.63 LDAP Authentication Module
    VDISK.NLM v1.00 Nov. 30, 2004 NetWare Virtual Disk
    VERIFY.NLM v1.43 Oct. 16, 2008 Java verify (based on 1.4.2_18)
    VLRPC.NLM v3.27.03 Jun. 7, 2010 DFS Volume Location Database (VLDB) RPC interface (Build 212 MP)
    VMRPC.NLM v3.27.03 Jun. 7, 2010 DFS Volume Manager RPC interface (Build 212 MP)
    VOLMN.NSS v3.27.03 Jun. 7, 2010 NSS Distributed Volume Manager (Build 212 MP)
    VOLSMS.NLM v3.27.03 Jun. 7, 2010 NSS Distributed Volume Manager (Build 212 MP)
    WS2_32.NLM v6.24.01 Feb. 14, 2008 NetWare Winsock 2.0 NLM
    WSPDSI.NLM v6.21.01 Oct. 25, 2005 NetWare Winsock Service 1.0 NLM for Data Stream Interface
    WSPIP.NLM v6.24 Dec. 4, 2007 NetWare Winsock Service 1.0 NLM for TCP and UDP
    WSPSSL.NLM v6.26 Dec. 4, 2007 NetWare Winsock Service 1.0 NLM for SSL
    X509ALSM.NLM v27000508.03 Aug. 3, 2005 Novell Advanced X.509 LSM 2.7.0.0 20050803
    X509LSM.NLM v27000508.03 Aug. 3, 2005 Novell Simple X.509 LSM 2.7.0.0 20050803
    XENGEXP.NLM v27610.01.01 Mar. 30, 2009 NICI Import Restricted XENG from Novell, Inc.
    XENGNUL.NLM v27610.01.01 Mar. 30, 2009 NICI NULL XENG from Novell, Inc.
    XENGUSC.NLM v27610.01.01 Mar. 30, 2009 NICI U.S./Worldwide XENG from Novell, Inc.
    XI18N.NLM v10310.53 Aug. 2, 2005 Novell Cross-Platform Internationalization Package
    XIDEV.NLM v1.02 Oct. 16, 2008 Java - X Window Input Driver Build 081016
    XIM.XLM v27510.02.01 Aug. 25, 2008 Novell NICI Signed Loader
    XINIT.NLM v6.01 Oct. 16, 2008 Java - X Window System initializer Build 081016
    XIS11.NLM v1.00.03 Nov. 18, 2009 XML Integration Service
    XLIB.NLM v11.07 Oct. 16, 2008 Java - XFree86 4.X X11R6 Library (LIBC) Build 081016
    XMGR.NLM v27610.01.01 Mar. 30, 2009 NICI XMGR from Novell, Inc.
    XNGAUSC.NLM v27610.01.01 Mar. 30, 2009 NICI U.S./Worldwide XMGR Assistant XENG from Novell, Inc.
    XSELPROXY.NL v1.01 Oct. 16, 2008 Java - X Selection proxy utility Build 081016
    XSETBG.NLM v6.01 Oct. 16, 2008 Java - X11 Image Loading utility Build 081016
    XSUP.NLM v27610.01.01 Mar. 30, 2009 NICI XSUP from Novell, Inc.
    XVESA.NLM v5.01.02 Oct. 16, 2008 Java - XFree86 4.2.0 Kdrive VESA XServer Build 081016
    ZIP.NLM v1.43 Oct. 16, 2008 Java zip (based on 1.4.2_18)
    ZLSS.NSS v3.27.03 Jun. 7, 2010 NSS Journaled Storage System (ZLSS) (Build 212 MP)
    End of Modules List 282 Modules Loaded.
    Top of LAN Driver Configuration Listing
    Signature.....: HardwareDriverMLID
    CFG Version...: 1.15
    Node Address..: 00215A5D04F4
    Board Number..: 1
    Board Instance: 1
    Media Type....: ETHERNET_II
    MLID Version..: 4.64
    Slot..........: 10039
    I/O...........: None
    Memory........: F8000000h -> F800FFFFh
    IRQ...........: 5
    DMA...........: None
    Logical Name..: BX2_1_EII_EII
    End of LAN Driver Configuration Listing
    Top of Boot Drive Information
    SERVER.EXE loaded from...........: C:\NWSERVER\
    SERVER.EXE version...............: 1357067 bytes 03-09-2011 12:06pm
    Total Space on Drive.............: 496 MB
    Available Space..................: 424 MB
    End of Boot Drive Information
    Top of Storage Device Configuration Information
    Storage Device Summary:
    0x0000 [V100-A100] USB UHCI Controller
    0x0001 [V100-A101] USB UHCI Controller
    0x0002 [V100-A102] USB UHCI Controller
    0x0003 [V100-A103] USB UHCI Controller
    0x0004 [V100-A104] USB EHCI Controller
    0x0005 [V100-A105] USB UHCI Controller
    0x0006 [V025-A0] Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    0x0010 [V025-A0-D0:0] TEAC DV-W28E-RW f/w:G.B2
    0x0007 [V505-A1] HP SAS/SATA Unified RAID Driver
    0x000A [V505-A1-D0:0] HP Smart Array P400 Slot 0 LUN 0
    0x0011 Unidentified Media
    0x0008 [V505-A2] HP SAS/SATA Unified RAID Driver
    0x0009 [V505-A2-D0:0] HP Smart Array P400 Slot 4 LUN 0
    0x000B DOS Partitioned Media
    0x000F [V505-A2-D0:0-PEF3A1] Free Partition Space
    0x000C [V505-A2-D0:0-P0] Big DOS; OS/2; Win95 Partition
    0x000D [V505-A2-D0:0-P1F2] NSS Partition
    0x000E [V505-A2-D0:0-P2902] NSS Partition
    Storage Device Details:
    [V100-A100] USB UHCI Controller
    Media Manager object ID..: 0x0000
    Media Manager Object Type: Adapter
    Driver name..............: UHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 256
    Primary port address.....: 1000
    Primary port length......: 18
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 18
    Interrupt 1..............: Not used
    Slot.....................: 10019
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V100-A101] USB UHCI Controller
    Media Manager object ID..: 0x0001
    Media Manager Object Type: Adapter
    Driver name..............: UHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 257
    Primary port address.....: 1020
    Primary port length......: 18
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 28
    Interrupt 1..............: Not used
    Slot.....................: 10020
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V100-A102] USB UHCI Controller
    Media Manager object ID..: 0x0002
    Media Manager Object Type: Adapter
    Driver name..............: UHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 258
    Primary port address.....: 1040
    Primary port length......: 18
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 38
    Interrupt 1..............: Not used
    Slot.....................: 10021
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V100-A103] USB UHCI Controller
    Media Manager object ID..: 0x0003
    Media Manager Object Type: Adapter
    Driver name..............: UHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 259
    Primary port address.....: 1060
    Primary port length......: 18
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 48
    Interrupt 1..............: Not used
    Slot.....................: 10022
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V100-A104] USB EHCI Controller
    Media Manager object ID..: 0x0004
    Media Manager Object Type: Adapter
    Driver name..............: EHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 260
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 18
    Interrupt 1..............: Not used
    Slot.....................: 10023
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 006C
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V100-A105] USB UHCI Controller
    Media Manager object ID..: 0x0005
    Media Manager Object Type: Adapter
    Driver name..............: UHCIDRV.CAD
    Assigned driver ID.......: 256
    Adapter number...........: 261
    Primary port address.....: 3800
    Primary port length......: 18
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 60
    Interrupt 1..............: Not used
    Slot.....................: 10030
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V025-A0] Novell IDE/ATA/ATAPI/SATA Host Adapter Module
    Media Manager object ID..: 0x0006
    Media Manager Object Type: Adapter
    Driver name..............: IDEATA.HAM
    Assigned driver ID.......: 37
    Adapter number...........: 0
    Primary port address.....: 1F0
    Primary port length......: 8
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: E
    Interrupt 1..............: Not used
    Slot.....................: 0
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: Not used
    Memory 0 length..........: Not used
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V025-A0-D0:0] TEAC DV-W28E-RW f/w:G.B2
    Media manager object ID.....: 0x0010
    Media manager Object Type...: Device
    Device type.................: CD-ROM
    Capacity....................: Unavailable
    Unit Size, in bytes.........: 512
    Sectors.....................: 0
    Heads.......................: 0
    Cylinders...................: 0
    Block size, in bytes........: 134215680
    Activated...................: No
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: Yes
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 0
    Adapter Number..............: 0
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    Removable drive mount status: Dismounted
    Removable drive lock status.: Not locked
    [V505-A1] HP SAS/SATA Unified RAID Driver
    Media Manager object ID..: 0x0007
    Media Manager Object Type: Adapter
    Driver name..............: HPQCISS.HAM
    Assigned driver ID.......: 1285
    Adapter number...........: 1
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 5
    Interrupt 1..............: Not used
    Slot.....................: 10032
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0100
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V505-A1-D0:0] HP Smart Array P400 Slot 0 LUN 0
    Media manager object ID.....: 0x000A
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 979456 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 49321
    Block size, in bytes........: 131072
    Activated...................: Yes
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 0
    Adapter Number..............: 1
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    Unidentified Media
    Media Manager object ID..: 0x0011
    Media Manager Object Type: Media
    Media type...............: Unknown
    [V505-A2] HP SAS/SATA Unified RAID Driver
    Media Manager object ID..: 0x0008
    Media Manager Object Type: Adapter
    Driver name..............: HPQCISS.HAM
    Assigned driver ID.......: 1285
    Adapter number...........: 2
    Primary port address.....: Not used
    Primary port length......: Not used
    Secondary port address...: Not used
    Secondary port length....: Not used
    Interrupt 0..............: 7
    Interrupt 1..............: Not used
    Slot.....................: 4
    DMA0.....................: Not used
    DMA1.....................: Not used
    Memory 0 address.........: 0000
    Memory 0 length..........: 0100
    Memory 1 address.........: Not used
    Memory 1 length..........: Not used
    [V505-A2-D0:0] HP Smart Array P400 Slot 4 LUN 0
    Media manager object ID.....: 0x0009
    Media manager Object Type...: Device
    Device type.................: Magnetic disk
    Capacity....................: 979456 MB
    Unit Size, in bytes.........: 512
    Sectors.....................: 32
    Heads.......................: 255
    Cylinders...................: 49321
    Block size, in bytes........: 131072
    Activated...................: Yes
    Registered..................: Yes
    Functional..................: Yes
    Writable....................: Yes
    Write protected.............: No
    Reserved....................: No
    Removable...................: No
    Read Handicap...............: No
    Offline.....................: No
    Controller Number...........: 0
    Device Number...............: 0
    Adapter Number..............: 2
    System Type.................: 0x90000
    Read after write verify.....: Not supported
    DOS Partitioned Media
    Media Manager object ID..: 0x000B
    Media Manager Object Type: Media
    Media type...............: IBM partition
    [V505-A2-D0:0-PEF3A1] Free Partition Space
    Media Manager object ID......: 0x000F
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: No
    Logical partition............: No
    Beginning sector of partition: 2006780000
    Size, in sectors.............: 640
    [V505-A2-D0:0-P0] Big DOS; OS/2; Win95 Partition
    Media Manager object ID......: 0x000C
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: No
    Beginning sector of partition: 32
    Size, in sectors.............: 1019968
    [V505-A2-D0:0-P1F2] NSS Partition
    Media Manager object ID......: 0x000D
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: Yes
    Beginning sector of partition: 1020000
    Size, in sectors.............: 20480000
    [V505-A2-D0:0-P2902] NSS Partition
    Media Manager object ID......: 0x000E
    Media Manager Object Type....: Partition
    Activated....................: Yes
    Registered...................: Yes
    Functional...................: Yes
    Reserved.....................: Yes
    Logical partition............: Yes
    Beginning sector of partition: 21500000
    Size, in sectors.............: 1985280000
    End of Storage Device Configuration Information
    * Volume Statistics for SYS *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 9934 MB
    Block Size.................: 4 KB
    Total Blocks...............: 2543202
    Free Blocks................: 478208
    Purgable Blocks............: 515511
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147327396
    Sectors per Block..........: 8
    Free Disk Space............: 1868 MB
    Purgable Disk Space........: 2013 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for _ADMIN *
    File System................: Unknown
    Volume Size................: 4 MB
    Block Size.................: 4 KB
    Total Blocks...............: 1024
    Free Blocks................: 1024
    Purgable Blocks............: 0
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2147483647
    Sectors per Block..........: 8
    Free Disk Space............: 4 MB
    Purgable Disk Space........: 0 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    * Volume Statistics for DATA *
    File System................: NSSIDK (Novell Storage Services)
    Volume Size................: 966499 MB
    Block Size.................: 4 KB
    Total Blocks...............: 247423927
    Free Blocks................: 27092763
    Purgable Blocks............: 3932724
    Not Yet Purgable Blocks....: 0
    Total Directory Entries....: 2147483647
    Available Directory Entries: 2145105235
    Sectors per Block..........: 8
    Free Disk Space............: 105831 MB
    Purgable Disk Space........: 15362 MB
    Suballocation..............: OFF
    Compression................: OFF
    Migration..................: OFF
    Volume Name Name Spaces Loaded
    SYS DOS
    SYS MACINTOSH
    SYS NFS
    SYS LONG_NAMES
    _ADMIN DOS
    _ADMIN MACINTOSH
    _ADMIN NFS
    _ADMIN LONG_NAMES
    DATA DOS
    DATA MACINTOSH
    DATA NFS
    DATA LONG_NAMES
    Top of NDS/eDirectory Configuration Listing
    NDS Tree Name............: XXXX_I
    NDS Server Name..........: CN=XXXSVR1NW.OU=OES 2 Netware Servers.OU=OES SERVERS.OU=SERVERS.O=XYZ.T=XYZ_I
    NDS Version..............: v20505.07
    sys:_netware attributes..: Hidden System SubDir ImmediatePurge
    *.NDS files..........: 22529 (56.9 MB)
    *.DSD files..........: 2 (0 bytes)
    *.DSB files..........: 0 (0 bytes)
    NDS.* files..........: 4 (187.4 MB)
    NDS*.LOG files.......: 0 (0 bytes)
    NDO.* files..........: 3 (187.9 MB)
    NDO*.LOG files.......: 0 (0 bytes)
    *.41X files..........: 0 (0 bytes)
    *.OLD files..........: 0 (0 bytes)
    *.DOD files..........: 0 (0 bytes)
    *.DOB files..........: 0 (0 bytes)
    *.__D files..........: 0 (0 bytes)
    *.__B files..........: 0 (0 bytes)
    *.DTD files..........: 0 (0 bytes)
    *.DTB files..........: 0 (0 bytes)
    *.TAO files..........: 0 (0 bytes)
    *.WBQ files..........: 0 (0 bytes)
    Partition Name...........: T=XYZ_I
    Partition Type...........: Master
    Partition State..........: On
    Partition Name...........: OU=PUBLIC.O=XYZ.T=XYZ_I
    Partition Type...........: Master
    Partition State..........: On
    Partition Name...........: OU=STAFF.O=XYZ.T=XYZ_I
    Partition Type...........: Master
    Partition State..........: On
    End of NDS/eDirectory Configuration Listing
    Top of Installed Product List
    Product ID...........: AP2WEB
    Product Version......: 2.0.63
    Product Description..: Apache2 Web Server and Tomcat 4 Servlet Container
    Product ID...........: APACHE2
    Product Version......: 2.0.63
    Product Description..: Apache2 Admin Server
    Product ID...........: BNS
    Product Version......: 1.1.0
    Product Description..: Beans for Novell Services
    Product ID...........: C1RPTING
    Product Version......: 1.3.6
    Product Description..: Reporting Snapin
    Product ID...........: CANWAG
    Product Version......: 11.1.3
    Product Description..: BrightStor ARCserve Backup NetWare Agent
    Product ID...........: CONSOLE1
    Product Version......: 1.3.6
    Product Description..: ConsoleOne 1.3.6h
    Product ID...........: EDIR
    Product Version......: 88.5.0
    Product Description..: eDirectory (tm) 88 SP5
    Product ID...........: EDIR_IR
    Product Version......: 88.5.5
    Product Description..: Novell eDirectory Patch 8.8.5.5
    Product ID...........: EMBOX
    Product Version......: 88.5.0
    Product Description..: eDirectory Management Utilities Toolbox
    Product ID...........: LDAP
    Product Version......: 88.0.0
    Product Description..: LDAP Services
    Product ID...........: NDS8
    Product Version......: 88.5.0
    Product Description..: eDirectory (tm) 88 SP5
    Product ID...........: NICI
    Product Version......: 2.7.6
    Product Description..: Novell International Cryptographic Infrastructure (NICI)
    Product ID...........: NICIU0
    Product Version......: 2.7.6
    Product Description..: NICI U.S./Canada (128bit) Crypto XENG
    Product ID...........: NLS
    Product Version......: 5.0.2
    Product Description..: Novell Licensing Services
    Product ID...........: NMAS
    Product Version......: 3.3.2
    Product Description..: Novell Modular Authentication Service
    Product ID...........: NSN
    Product Version......: 2.0.0
    Product Description..: NSN
    Product ID...........: NSS
    Product Version......: 3.27.03
    Product Description..: NetWare 6.5 post-SP8 NSS 8C
    Product ID...........: NTLS
    Product Version......: 2.0.5
    Product Description..: Novell TLS Library
    Product ID...........: OES
    Product Version......: 2.0.0
    Product Description..: Open Enterprise Server
    Product ID...........: OPENWBEM
    Product Version......: 3.1.0
    Product Description..: OpenWBEM
    Product ID...........: PERVASIV
    Product Version......: 7.9.4
    Product Description..: Pervasive SQL 2000i
    Product ID...........: PHP
    Product Version......: 5.0.5
    Product Description..: PHP
    Product ID...........: PKIS
    Product Version......: 3.3.3
    Product Description..: Novell Certificate Server v3.33
    Product ID...........: PORTAL
    Product Version......: 4.3.0
    Product Description..: NetWare Remote Manager (NRM)
    Product ID...........: Pattern
    Product Version......: 1.0.0
    Product Description..: Management Server
    Product ID...........: Perl
    Product Version......: 5.8.4
    Product Description..: Perl
    Product ID...........: SAS
    Product Version......: 1.7.4
    Product Description..: SSL Security Authentication Services
    Product ID...........: SMS
    Product Version......: 1.1.6
    Product Description..: Storage Management Services (SMS)
    Product ID...........: SPACK
    Product Version......: 6.5.8
    Product Description..: v8.0 Support Pack for NetWare 6.5
    Product ID...........: SS
    Product Version......: 3.4.0
    Product Description..: Novell SecretStore
    Product ID...........: TOMCAT5
    Product Version......: 5.0.30
    Product Description..: Tomcat 5 Servlet Container
    Product ID...........: Tomcat
    Product Version......: 4.1.37
    Product Description..: Tomcat 4 Admin Instance
    Product ID...........: WANMAN
    Product Version......: 1.0.3
    Product Description..: WAN Traffic Manager Services
    Product ID...........: eGuide
    Product Version......: 2.1.2
    Product Description..: eDirectory Address Book Web Application
    Product ID...........: iManager
    Product Version......: 2.7.2
    Product Description..: Novell iManager 2.7.2
    Product ID...........: iMonitor
    Product Version......: 2.4.0
    Product Description..: NDS iMonitor Services
    End of Installed Product List
    Top of Running Java Processes 3 Processes Running
    Class Name...........: org.apache.catalina.startup.Bootstrap
    Class ID.............: 418
    Class State..........: Running
    Class Name...........: org.apache.catalina.startup.Bootstrap
    Class ID.............: 470
    Class State..........: Running
    Class Name...........: org.apache.catalina.startup.Bootstrap
    Class ID.............: 420
    Class State..........: Running
    End of Running Java Processes
    Top of Server Memory Statistics
    Allocated Memory.................: 1316.4 MB
    Cache Buffer Memory..............: 886.9 MB
    Cache Moveable Memory............: 0.0 MB
    Cache Non-moveable Memory........: 0.0 MB
    Code Memory......................: 42.6 MB
    Data Memory......................: 20.7 MB
    Total Work Memory................: 2266.6 MB
    Other Cache Pages Memory.........: 1864.8 MB
    System Memory Under 4GB..........: 3324.9 MB
    Total Known Memory...............: 4864.0 MB
    End of Server Memory Statistics
    Top of file. [SYS:ETC\CRONTAB]
    # Run perl script to rotate logs each midnight.
    0 0 * * * perl sys:/apache2/rotate.pl sys:/apache2/rotate.ini --noscreen
    End of file. [SYS:ETC\CRONTAB]
    Top of file. [SYS:ETC\GATEWAYS]
    # SYS:ETC\GATEWAYS
    # List of unusual routes which must be added to the routing
    # database statically.
    # Normally you will not need this file, as most routing information
    # should be available through the routing protocols.
    # Examples. These entries will not be useful to you.
    #net milnet gateway sj-in5 metric 3 active # to milnet through in5.
    #net arpa gateway sj-in1 passive # to arpanet. in1 is passive.
    #host 130.57.6.40 gateway 192.67.172.55 # route with numbers.
    Net 0 Gateway xx.xxx.xxx.x Metric 1 Passive
    End of file. [SYS:ETC\GATEWAYS]
    Top of file. [SYS:ETC\HOSTS]
    # SYS:ETC\HOSTS
    # Mappings of host names and host aliases to IP address.
    127.0.0.1 loopback lb localhost # normal loopback address
    # examples from Novell network
    130.57.4.2 ta tahiti ta.novell.com loghost
    130.57.6.40 osd-frog frog
    130.57.6.144 sj-in5 in5
    192.67.172.71 sj-in1 in1
    # interesting addresses on the Internet
    xxx.xx.xx.xx sri-nic.arpa nic.ddn.mil nic
    xx.x.x.xx wsmr-simtel20.army.mil simtel20
    xx.xxx.xxx.xxx xyz
    xx.xxx.xxx.xxx xyz_CLUSTER_ZEN_POOL_SERVER
    xx.xxx.xxx.xxx zen
    xx.xxx.xxx.xxx zen
    xx.xxx.xxx.xxx xyz
    xx.xxx.xxx.xxx xyz_xyz.xyz.net xyz_xyz
    End of file. [SYS:ETC\HOSTS]
    Top of file. [SYS:ETC\HOSTNAME]
    xx.xxx.xxx.xxx xyz.xyz.net
    End of file. [SYS:ETC\HOSTNAME]
    Top of file. [SYS:ETC\NETINFO.CFG]
    #!VERSION=2.3
    #! --- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING ----
    #! This file was created by the Internetworking Configuration Console.
    #! It is intended to be modified ONLY by the configurator (INETCFG.NLM).
    #! Tampering with this file may cause severe malfunctioning of the system.
    #! The configurator will check for tampering and abort if it is detected.
    #!SERVERTYPE=NORMAL
    #!UIMODE=NORMAL
    #!BEGINGENLOAD
    LOAD SNMP MonitorCommunity=XYZ ControlCommunity=XYZ TrapCommunity=XYZ
    LOAD BCALLSRV
    #!END
    #!BEGINTSMLOAD
    #!END
    #!BEGINBOARD DRVR=BX2 NAME=BX2_1_EII STATUS=ENABLED NUMPORTS=1 DRVRTYPE=LAN VARIABLEPORTS=NO PORTPARAM=CHANNEL SLOT=10039
    #Transferred from AUTOEXEC.NCF
    #!BEGINPORT NAME=BX2_1_EII NUMBER=1 STATUS=ENABLED FRAMES=YES NUMLINKS=1 MEDIA=EtherTsm WANFRAME=UNCONFIGURED
    #Transferred from AUTOEXEC.NCF
    #!REFCOUNT=1
    LOAD BX2 NAME=BX2_1_EII_EII FRAME=ETHERNET_II SLOT=10039
    #!END
    #!END
    #!BEGINPROTO PROTO=TCPIP STATUS=ENABLED
    LOAD TCPIP
    #Transferred from AUTOEXEC.NCF
    #!BEGINBIND STATUS=ENABLED
    BIND IP BX2_1_EII_EII ARP=Yes Mask=255.255.255.0 Address=xx.xxx.xxx.xxx
    #xx.xxx.xxx.xxx
    #!END
    #!END
    End of file. [SYS:ETC\NETINFO.CFG]
    Top of file. [SYS:ETC\RESOLV.CFG]
    domain xxx.net
    nameserver xx.xxx.xxx.xx
    nameserver xx.xxx.xxx.xx
    End of file. [SYS:ETC\RESOLV.CFG]
    Top of file. [SYS:ETC\SLP.CFG]
    ; This is a sample of the slp configuration file.
    ; Two types of entries can be made: 1) DA entries, 2) SA Register Filters.
    ; The DA entry allows static configuration of a known DA. This would be used
    ; when the DA was out of multicast range and DHCP was not being used to
    ; configure the DA.
    ; The static DA configuration format is as follows 'DA <addr type>, <addr>'.
    ; The first word must be "DA". The addr type is the address type. Currently, only
    ; IPV4 has been defined. IPV6 will be defined in the future. The addr is
    ; the address specified.
    ; The following is an example of a static DA.
    ; DA IPV4, 130.1.1.1
    ; The SA Register Filter would be used when the administrator wanted all services
    ; of a specific service type being mapped to a single scope. For example,
    ; the administrator wanted all "lpr" printers being registered to scope "printer".
    ; The format is as follows: 'REGISTER TYPE "<type name>" to SCOPE "<scope name>"'.
    ; The parser will look for REGISTER, TYPE, and SCOPE as keywords followed by quote on
    ; a single line. Example:
    ; REGISTER TYPE "lpr" to SCOPE "eng"
    ; The last line must contain a line feed and char return. A semi-colon specifies a
    ; comment
    DA IPV4, xx.xxx.xxx.xxx
    DA IPV4, xx.xxx.xxx.xxx SCOPE "SLP_xxxx"
    End of file. [SYS:ETC\SLP.CFG]
    Top of file. [SYS:ETC\TCPIP.CFG]
    AutonomousSystem 0
    Protocol rip off {
    Interface {
    Address 10.224.248.152
    Port BX2_1_EII_EII
    Status on
    Cost 1
    Poison off
    SplitHorizon on
    UpdateTime 30
    GarbageTime 120
    ExpireTime 180
    OriginateDefault off
    Version ripI
    Mode normal
    Protocol egp off {
    Protocol ospf off {
    Interface {
    Address xx.xxx.xxx.xxx
    Port BX2_1_EII_EII
    Status on
    Cost 1
    AreaId 0.0.0.0
    Priority 1
    RetransmissionInterval 5
    TransitDelay 1
    HelloInterval 10
    RouterDeadInterval 40
    Nbma {
    PollInterval 120
    Neighbor {
    Interface {
    Address 10.224.248.152
    AddressMask 255.255.255.0
    Port BX2_1_EII_EII
    Type lan
    RouterDiscovery no
    SolicitationAddress multicast
    NATStatus Disabled
    SecIPStatus Enabled
    SecIPAddress 10.224.248.119
    ArpableSecIP yes
    Stubnet off
    TOSStatus Disabled
    TOSValue 0
    ARPTimerStatus Disabled
    ARPCacheUpdateTimeout 300
    ARPCacheStaleTimeout 300
    GroupedInterface no
    PrimaryInterface no
    LBPolicy 0
    Arpable yes
    NetworkAddress 10.224.248.0
    VIPASupport Enabled
    BdgStatus Enabled
    ForwardIPSourceRouting off
    NATFiltering off
    Deadgatewaydetection off {
    LoadBalancing off {
    LBInterval 2
    FaultTolerance on {
    FTInterval 2
    DefIPAddr 0.0.0.0
    End of file. [SYS:ETC\TCPIP.CFG]
    Top of file. [SYS:ETC\IPWAN.CFG]
    End of file. [SYS:ETC\IPWAN.CFG]
    Top of file. [SYS:SYSTEM\ABEND.LOG]
    File size is 1839096 bytes.
    Only last 200 kbytes of file was scanned.
    PVER: 6.50.09
    Server XYZSVR1NW halted Sunday, June 5, 2011 9:00:00.069 pm
    Abend 1 on P04: Server-5.70.08: Page Fault Processor Exception (Error code 00000000)
    Registers:
    CS = 0008 DS = 0010 ES = 0010 FS = 0010 GS = 0010 SS = 0010
    EAX = 000176D4 EBX = 00000000 ECX = 00000001 EDX = 00000001
    ESI = 00000003 EDI = 0000000C EBP = 00000246 ESP = 7682BE2C
    EIP = 0023D3E9 FLAGS = 00010002
    0023D3E9 8B93C0000000 MOV EDX, [EBX+000000C0]=?
    EIP in SERVER.NLM at code start +0002F2C9h
    Access Location: 0x000000C0
    The violation occurred while processing the following instruction:
    0023D3E9 8B93C0000000 MOV EDX, [EBX+000000C0]
    0023D3EF B8A0860100 MOV EAX, 000186A0
    0023D3F4 85D2 TEST EDX, EDX
    0023D3F6 740C JZ 0023D404
    0023D3F8 48 DEC EAX
    0023D3F9 7409 JZ 0023D404
    0023D3FB 83BBC000000000 CMP [EBX+000000C0], 00000000
    0023D402 75F4 JNZ 0023D3F8
    00

  • About to use my tree for firewood

    I was wondering if someone could maybe clue me into a problem that I am having with my DefaultMutableTree. See, I call a recursive method to get the file system of the computer, which is what is added to the tree. So the user is looking at a tree structure of the file system of their computer. My problem is that when I compile and run my program the tree shows up fine, with no hitches. I have given my code to other friends, and for some of them it does not show up, and throws a null pointer exception at the internal interface of this recursive method. I was wondering what might be causing this? My friends that have problems with the code are running either WIN XP, or Mac OS 10.1.4. Here is the code for the initialization of the tree (This will look ugly on the post, so I would hope that you would take the time to copy and paste this into your editor :D)
    //code start.
    import java.io.*;
    import java.io.File;
    import java.lang.*;
    import java.util.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import java.beans.*;
    import javax.swing.JTree;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.event.TreeSelectionListener;
    import javax.swing.event.TreeSelectionEvent;
    import javax.swing.tree.TreeSelectionModel;
    public class File_Encryptor extends JFrame {
    private JFrame thisFrame = this;
              private JTree tree;
    private JMenuBar jMenuBar1 = new JMenuBar();
              private JMenuItem menuOpen = new JMenuItem("Open");
              private JMenuItem menuSave = new JMenuItem("Save");
              private JMenuItem menuClose = new JMenuItem("Close");
              private JMenuItem menuQuit = new JMenuItem("Quit");
              private JMenuItem menuAbout = new JMenuItem("About this software...");
              private JMenuItem menuAdd = new JMenuItem("Add key and user");
              private JMenuItem menuChange = new JMenuItem("Change buddy key");
              private JMenuItem menuSend = new JMenuItem("Send your buddy key");
              private JMenuItem menuDelete = new JMenuItem("Delete selected buddy key");
              private JMenuItem menuReset = new JMenuItem("Reset your key");
              private JMenuItem menuChangeLogin = new JMenuItem("Change Login");
              private JMenuItem menuHelp = new JMenuItem("Help...");
              private JButton openDir = new JButton("Open path");
              private JTextField jTextField1 = new JTextField();
              private JScrollPane treeView;
              private JScrollPane imageView;
              private JScrollPane textView;
              private String ROOT;
              private File root;
              private DefaultMutableTreeNode top;
              final private DefaultMutableTreeNode FILLER = new DefaultMutableTreeNode(new FileInfo ("about:blank", "about:blank"));
         public File_Encryptor() throws FileNotFoundException, InterruptedException, IOException, ClassNotFoundException {
    super("FILE ENCRYPTOR 1.0");
                   addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
                        System.exit(0);
                   ROOT = getRoot(System.getProperty("user.home"));
                   root = new File(ROOT);                    
                   try{
                   //Create the nodes.
                   top = unfold(root);
                   top.setUserObject(new FileInfo(ROOT,ROOT));
                   tree = new JTree(top);
                   tree.getSelectionModel().setSelectionMode
    (TreeSelectionModel.SINGLE_TREE_SELECTION);
                   Object nodage = top.getNextNode().getUserObject();
                   FileInfo leaf = (FileInfo) nodage;
                   tree.addTreeSelectionListener(new TreeSelectionListener() {
    public void valueChanged(TreeSelectionEvent e) {
    DefaultMutableTreeNode node = (DefaultMutableTreeNode)
    tree.getLastSelectedPathComponent();
    if (node == null) return;
              try{
                        Object nodeInfo = node.getUserObject();
                        FileInfo temp = (FileInfo) nodeInfo;
                        if((node.isLeaf()) && (!(node.isRoot())))
                             System.out.println(temp.Path());
                             //figure out how to place file in editor pane.
                        else
                             return;
                   catch(Exception fubar)
                        fubar.printStackTrace();
                   treeView = new JScrollPane(tree);
                   treeView.setSize(150,450);
                   jTextField1.setMaximumSize(new Dimension(50, 100));
                   jTextField1.setText("PATH");
                   this.getContentPane().add(jTextField1, BorderLayout.EAST);
                   this.getContentPane().add(treeView, BorderLayout.WEST);
    catch(Exception e) {
    e.printStackTrace();
                   jMenuBar1.setBorder(BorderFactory.createEtchedBorder());
                   JMenu menu = new JMenu("File");
                   JMenu about = new JMenu("Help");
                   JMenu keys = new JMenu("Keys");
                   JMenu change = new JMenu("Login");
                   menuQuit.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_Q, ActionEvent.META_MASK));
                   menuQuit.setEnabled(true);
                   menuQuit.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent e) {
                             System.exit(0);
                   menu.add(menuQuit);
                   jMenuBar1.add(menu);
                   jMenuBar1.add(keys);
                   jMenuBar1.add(change);
                   jMenuBar1.add(about);
                   this.setJMenuBar(jMenuBar1);
              public class FileInfo {
              private String path = "";
              private String name = "";
              public FileInfo(String p , String n){
                   path = p;
                   name = n;
              public String toString(){
                   return name;
              public String Path(){
                   return path;
              public static String getFileEx(String po){
              String ext = "";
              int i = po.lastIndexOf('.');
              if(i > 0)
                   ext = po.substring(i-1);
              else
                   ext = null;
              return ext;
              private DefaultMutableTreeNode unfold(File path) {
                   DefaultMutableTreeNode node = new DefaultMutableTreeNode("");
                   Vector Files = new Vector();
                   Vector Direc = new Vector();
                   if((path.isDirectory()) && (path.list().length != 0))
                        node = new DefaultMutableTreeNode(new FileInfo(path.getPath(),path.getName()));
                        File [] childs = path.listFiles();
                        for(int j = 0; j < childs.length; j++)
                             if(childs[j].isDirectory())
                                  Direc.addElement(childs[j]);
                             else
                                  Files.addElement(childs[j]);
                        for(int g = 0; g < Files.size(); g++)
                             Direc.addElement((File)Files.elementAt(g));
                        for(int i = 0; i < Direc.size(); i++)
                             node.add(unfold((File)Direc.elementAt(i)));
                   else if(!(path.isDirectory()))
                        node = new DefaultMutableTreeNode(new FileInfo(path.getPath(),path.getName()));
                   else
                        node = new DefaultMutableTreeNode(new FileInfo(path.getPath(),path.getName()));
                        node.add(new DefaultMutableTreeNode(new FileInfo(null,"<EMPTY FOLDER>")));
                   return node;
              public static String getRoot(String path)
                   int find = path.indexOf(System.getProperty("file.separator"));
                   String root = path.substring(0,find + 1);
                   return root;
    public static void main( String [ ] args )throws FileNotFoundException, InterruptedException, IOException, ClassNotFoundException {
    File_Encryptor show = new File_Encryptor();
    show.setSize(700, 500);
    show.setResizable(false);
    //show.setLocation(100,100);
    show.setVisible(true);
    //code end.
    //well there it is. Hope someone can help me with my problem.
    //I know this code is ugly, but I was trying a bunch of different
    //things hoping something would work. but ehh no such luck.
    //I am running windows 98, yea that's prolly my problem.
    //thank you for your time.

    This will make the code less ugly.
    > //code start.
    import java.io.*;
    import java.io.File;
    import java.lang.*;
    import java.util.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import java.beans.*;
    import javax.swing.JTree;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.event.TreeSelectionListener;
    import javax.swing.event.TreeSelectionEvent;
    import javax.swing.tree.TreeSelectionModel;
    public class File_Encryptor extends JFrame {
    private JFrame thisFrame = this;
              private JTree tree;
    private JMenuBar jMenuBar1 = new JMenuBar();
              private JMenuItem menuOpen = new JMenuItem("Open");
              private JMenuItem menuSave = new JMenuItem("Save");
    private JMenuItem menuClose = new
    w JMenuItem("Close");
              private JMenuItem menuQuit = new JMenuItem("Quit");
    private JMenuItem menuAbout = new JMenuItem("About this software...");
    private JMenuItem menuAdd = new JMenuItem("Add key and user");
    private JMenuItem menuChange = new JMenuItem("Change buddy key");
    private JMenuItem menuSend = new JMenuItem("Send your buddy key");
    private JMenuItem menuDelete = new JMenuItem("Delete selected buddy key");
    private JMenuItem menuReset = new JMenuItem("Reset your key");
    private JMenuItem menuChangeLogin = new
    w JMenuItem("Change Login");
    private JMenuItem menuHelp = new
    w JMenuItem("Help...");
              private JButton openDir = new JButton("Open path");
              private JTextField jTextField1 = new JTextField();
              private JScrollPane treeView;
              private JScrollPane imageView;
              private JScrollPane textView;
              private String ROOT;
              private File root;
              private DefaultMutableTreeNode top;
    final private DefaultMutableTreeNode FILLER = new
    w DefaultMutableTreeNode(new FileInfo ("about:blank",
    "about:blank"));
    public File_Encryptor() throws FileNotFoundException,
    InterruptedException, IOException,
    ClassNotFoundException {
    super("FILE ENCRYPTOR 1.0");
                   addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e)
    dowEvent e) {
                        System.exit(0);
                   ROOT = getRoot(System.getProperty("user.home"));
                   root = new File(ROOT);                    
                   try{
                   //Create the nodes.
                   top = unfold(root);
                   top.setUserObject(new FileInfo(ROOT,ROOT));
                   tree = new JTree(top);
                   tree.getSelectionModel().setSelectionMode
    (TreeSelectionModel.SINGLE_TREE_SELECTION);
                   Object nodage = top.getNextNode().getUserObject();
                   FileInfo leaf = (FileInfo) nodage;
    tree.addTreeSelectionListener(new
    ew TreeSelectionListener() {
    public void
    public void valueChanged(TreeSelectionEvent e) {
    DefaultMutableTreeNode node =
    TreeNode node = (DefaultMutableTreeNode)
    tree.getLastSelectedPathComponent();
    if (node == null) return;
              try{
                        Object nodeInfo = node.getUserObject();
                        FileInfo temp = (FileInfo) nodeInfo;
                        if((node.isLeaf()) && (!(node.isRoot())))
                             System.out.println(temp.Path());
                             //figure out how to place file in editor pane.
                        else
                             return;
                   catch(Exception fubar)
                        fubar.printStackTrace();
                   treeView = new JScrollPane(tree);
                   treeView.setSize(150,450);
    jTextField1.setMaximumSize(new Dimension(50,
    0, 100));
                   jTextField1.setText("PATH");
    this.getContentPane().add(jTextField1,
    1, BorderLayout.EAST);
    this.getContentPane().add(treeView,
    w, BorderLayout.WEST);
    catch(Exception e) {
    e.printStackTrace();
                   jMenuBar1.setBorder(BorderFactory.createEtchedBorder
                   JMenu menu = new JMenu("File");
                   JMenu about = new JMenu("Help");
                   JMenu keys = new JMenu("Keys");
                   JMenu change = new JMenu("Login");
                   menuQuit.setAccelerator(KeyStroke.getKeyStroke(KeyEv
    nt.VK_Q, ActionEvent.META_MASK));
                   menuQuit.setEnabled(true);
                   menuQuit.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent e) {
                             System.exit(0);
                   menu.add(menuQuit);
                   jMenuBar1.add(menu);
                   jMenuBar1.add(keys);
                   jMenuBar1.add(change);
                   jMenuBar1.add(about);
                   this.setJMenuBar(jMenuBar1);
              public class FileInfo {
              private String path = "";
              private String name = "";
              public FileInfo(String p , String n){
                   path = p;
                   name = n;
              public String toString(){
                   return name;
              public String Path(){
                   return path;
              public static String getFileEx(String po){
              String ext = "";
              int i = po.lastIndexOf('.');
              if(i > 0)
                   ext = po.substring(i-1);
              else
                   ext = null;
              return ext;
              private DefaultMutableTreeNode unfold(File path) {
    DefaultMutableTreeNode node = new
    ew DefaultMutableTreeNode("");
                   Vector Files = new Vector();
                   Vector Direc = new Vector();
    if((path.isDirectory()) && (path.list().length !=
    != 0))
    node = new DefaultMutableTreeNode(new
    new FileInfo(path.getPath(),path.getName()));
                        File [] childs = path.listFiles();
                        for(int j = 0; j < childs.length; j++)
                             if(childs[j].isDirectory())
                                  Direc.addElement(childs[j]);
                             else
                                  Files.addElement(childs[j]);
                        for(int g = 0; g < Files.size(); g++)
                             Direc.addElement((File)Files.elementAt(g));
                        for(int i = 0; i < Direc.size(); i++)
                             node.add(unfold((File)Direc.elementAt(i)));
                   else if(!(path.isDirectory()))
    node = new DefaultMutableTreeNode(new
    new FileInfo(path.getPath(),path.getName()));
                   else
    node = new DefaultMutableTreeNode(new
    new FileInfo(path.getPath(),path.getName()));
    node.add(new DefaultMutableTreeNode(new
    new FileInfo(null,"<EMPTY FOLDER>")));
                   return node;
              public static String getRoot(String path)
    int find =
    =
    path.indexOf(System.getProperty("file.separator"));
                   String root = path.substring(0,find + 1);
                   return root;
    public static void main( String [ ] args
    ] args )throws FileNotFoundException,
    InterruptedException, IOException,
    ClassNotFoundException {
    File_Encryptor show = new
    show = new File_Encryptor();
    show.setSize(700, 500);
    show.setResizable(false);
    //show.setLocation(100,100);
    show.setVisible(true);
    //code end.

Maybe you are looking for

  • Can not accept invitation using Mac OS calendar client

    Hi, All! I've a problem accepting invitation using Mac Os X 10 Calendar client. When I create the following event BEGIN:VCALENDAR VERSION:2.0 PRODID:-//Oracle Corporation/CS 7.0.4.16.0//EN BEGIN:VTIMEZONE TZID:Europe/Moscow X-LIC-LOCATION:Europe/Mosc

  • Weird issue occurring after cloning the R12 Vision instance.

    Hi everyone, We are currently evaluating R12 using the Vision DB instance. Since I'm seeing that the apps processes like to have at least 2gb of memory, the initial server just isn't beefy enough for R12 so I cloned it over to a better server followi

  • Acrobat ERROR playing media clip...

    I created a PDF with Mindjet and also got a pdf for testing from them... both create this error: "Acrobat has encountered an error while playing this media clip: The media clip cannot be played in the manner that the author intended. you may need to

  • Business area updation

    we have made a zprogram for updating business area field in bsis & bseg table for particular g/l but it is not getting updated in balance sheet if we see the balance sheet business area wise & the g/l are p/l items

  • Sum GETPIVOTDATA with multiple data item references using Array formula and cell references

    I'm trying to build a single formula referencing a shared pivot table. I would prefer not to create additional pivot tables etc. My criteria is basically the sum of multiple items in the pivot table. I am able to add multiple fields by typing item na