I18N requrements/suport in Solaris 10

Hi,
I am the I18N engineer and I am testing Veritas products on Solaris.
Sometimes I need a information if some programs or functionality in Solaris meet internationalization requirements.
In other words I need to have information if for instance Solaris storage pool supports DBCS/HIASCII.
Is there any place or maybe Solaris engineer/manager person I can ask for I18N requirements?
Kind regards,
Daniel

Is there any place or maybe Solaris engineer/manager person I can ask for I18N requirements?There's a bunch of forums on OpenSolaris that deal with this issue.
http://www.opensolaris.org/os/discussions/
And then scroll down to I18N.
alan

Similar Messages

  • Does  Solaris Intel suport DLink530Tx ethernet card?

    No luck finding a NIC on the Solarisx86 HCL(DLink500Tx is in HCL).Any idea where I can find alternative drivers to try?
    Installion find the Ethernet Controller, but it can't working up.
    Please help me.
    thanks,
    jying

    First you will need to know the vendor-id/device-id numbers for the device. You can download a Windows utility that scans the PCI bus and will show you what those id's are. Sure you might have to put the card into another system but this way you know for sure.
    http://www.upsystems.com.ua/support/alexmina/?HTTP_REFERER=APCIInfo1.4
    Once you have the id number combination, open the /etc/driver_aliases file and look for your vendor/device combination. If the DCA is giving a generic label for the device that means you probably wont find it. Duplicate one of the dnet lines and change the ven/dev to match your card.
    change from
    "pci1109,2400"dnet "pci10b8,2001"dnet "pci2646,1"pcn "pci1022,2000"pcn
    to
    "pciVVVV,DDDD"dnet "pci10b8,2001"dnet "pci2646,1"pcn "pci1022,2000"pcn
    Where VVVV is the new vendor-id and DDDD is the new device-id. Save the update and exit.
    You should use the line for the card the Device configuration guide lists as the supported driver.
    See the DCG at:
    http://docs.sun.com/ab2/coll.214.7/HWCONFIG/@Ab2TocView?Ab2Lang=C&Ab2Enc=iso-8859-1
    Now you have to update the /boot/solaris/devicedb/master file.
    Again dupe the line for the suggested card/driver.
    Change from
    pci1011,14 pci1011,14 net pci dnet.bef "DEC 21041 Ethernet"
    to
    pciVVVV,dddd pciVVVV,dddd net pci dnet.bef "My Card Driver Description"
    save the update and exit.
    At the console: touch /reconfigure, touch devlinks and "reboot"
    Press the escape key during the startup and rescan....you should see the card and be ready to go once it is assigned an IP and all. Remember that the Dec 21040-41 and 21140-43 drivers are all listed as replacement drivers for low end cards. You will have to determine which is which in the Driver_aliases. You may have to try them in turn or something. Let me know how things turn out...
    If someone knows of a way to get the vendor/device ids without the Windows utility I would really like to know what it is.
    Lee

  • Netmask Changes in Solaris 10

    Hi Team,
    We tried to change the netmask and broadcast address in solaris 10 by below steps
    ifconfig ipge0 down
    ifconfig ipge0 <ipaddress> netmask <subnet mask> broadcast <address
    ifconfig ipge0 up
    But interface is not up. The command (ifconfig ipge0 up) is hanged for long time without giving any error.
    So, we changed the new netmask in the /etc/inet/netmasks and rebooted the server. The new changes got affect only after reboot.
    Could you please confirm the Solaris 10 requres reboot for changes in netmask.
    Regards,
    R. Rajesh Kannan.

    No, it doesn't need a reboot.
    In fact, you don't even have to take the interface down....
    I would edit /etc/netmasks so that the correct setting was in there for the next time I booted. Then:
    'ifconfig <interface> netmask + broadcast +' (Yes, with the '+' symbols).
    That should do it. No need to down or up.
    Darren

  • Building eclipse 3.1 on Solaris 10 x86

    I found an easy way to build eclipse on solaris x86, as followed:
    $ JAVA_HOME=/usr/j2se; export JAVA_HOME
    $ ANT_HOME=/home/compl/sfw/apache-ant-1.6.5; export ANT_HOME
    $ PATH=$ANT_HOME/bin:$PATH; export PATH
    $ mkdir -p ~/farm/eclipse-src
    $ cd ~/farm
    $ vi regexrename
    -----start create script regexrename-----
    -enter the following content:
    #!/bin/sh
    echo Renaming $1 to `echo $1 | sed $2`
    mv "$1" "`echo $1 | sed $2`"
    -save and quit vi
    -----end create script regexrename-----
    $ chmod +x regexrename<br />
    $ vi regexreplace
    -----start create script regexreplace-----
    -enter the following content:
    #!/bin/sh
    echo Replacing file $1...
    mv "$1" "$1.replaced"
    sed "$2" "$1.replaced" > "$1"
    -save and quit vi
    -----end create script regexreplace-----
    $ chmod +x regexreplace<br />
    $ cd eclipse-src
    $ unzip ~/Softwares/java/eclipse-sourceBuild-srcIncluded-3.1.zip
    $ vi ./build
    -----start modify script ./build-----
    -change line:
    export ANT_OPTS=-Xmx1000M
    -to
    ANT_OPTS=-Xmx1000M; export ANT_OPTS
    -add a blank line at end of file, to regard the last line to sed-----
    -----end modify script ./build-----
    -----now replace all sparc with i386 in directory and file names,
    -----don't change i386 to x86, although x86 seems better follow eclipse src naming conventions,
    -----or you have to perform some extra modifications on some scripts to correct x86 to i386,
    -----like the awt lib path, that is $JAVA_HOME/jre/lib/sparc on sun machines and
    -----$JAVA_HOME/jre/lib/i386 on intel PCs, NOT $JAVA_HOME/jre/lib/x86-----
    $ find ./ -name \*sparc\* -exec ../regexrename "{}" 's/sparc/i386/g' \;
    Renaming ./plugins/org.eclipse.platform.source.solaris.gtk.sparc to ./plugins/org.eclipse.platform.source.solaris.gtk.i386
    find: stat() error ./plugins/org.eclipse.platform.source.solaris.gtk.sparc/frag ment.xml: No such file or directory
    find: stat() error ./plugins/org.eclipse.platform.source.solaris.gtk.sparc/META -INF: No such file or directory
    find: stat() error ./plugins/org.eclipse.platform.source.solaris.gtk.sparc/buil d.properties: No such file or directory
    find: stat() error ./plugins/org.eclipse.platform.source.solaris.gtk.sparc/abou t.html: No such file or directory
    Renaming ./plugins/org.eclipse.rcp.source.solaris.gtk.sparc to ./plugins/org.eclipse.rcp.source.solaris.gtk.i386
    find: stat() error ./plugins/org.eclipse.rcp.source.solaris.gtk.sparc/build.xml : No such file or directory
    Renaming ./assemble.org.eclipse.sdk.solaris.gtk.sparc.xml.replaced to ./assemble.org.eclipse.sdk.solaris.gtk.i386.xml.replaced
    -----Regarding the errors above, re-run the command to make sure-----
    $ find ./ -name \*sparc\* -exec ../regexrename "{}" 's/sparc/i386/g' \;
    $
    -----now replace all sparc inside all revelant text files with i386-----
    $ find ./ -type f \( -name \*.xml -o -name \*.properties -o -name \*.sh -o -name build \) -exec fgrep -s sparc "{}" \; -exec ../regexreplace "{}" 's/sparc/i386/g' \;
    Replacing file ./build...
    Replacing file ./plugins/org.eclipse.ui.cheatsheets/build.xml...
    Replacing file ./assemble.org.eclipse.sdk.all.xml...
    $
    -----Perform a normal build-----
    $ sh ./build -os solaris -ws gtk -arch i386 -compilelibs
    BUILD SUCCESSFUL
    Total time: 17 minutes 45 seconds
    -----eclipse/eclipse seems remain the one for SPARC arch, update it manually-----
    $ cp launchertmp/eclipse eclipse/
    -----test run the compiled binary-----
    $ eclipse/eclipse
    -----eclipse 3.1 should start-----
    -----Finally, be careful if you want to keep or distribute result/solaris-gtk-i386-sdk.zip,
    -----eclipse/eclipse inside it remains the one for SPARC arch, you may want to
    -----update it first.-----

    bash
    may also need to set path to /usr/sfw/bin/gcc.
    and don't know why need to cp launchertmp/eclipse to overwrite the old one.
    But it do works for us.
    *** Date: Fri May 19 08:51:20 CST 2006
    *** Platform Details:
    *** System properties:
    eclipse.application=org.eclipse.ui.ide.workbench
    eclipse.buildId=M20060118-1600
    eclipse.commands=-os
    solaris
    -ws
    gtk
    -arch
    sparc
    -launcher
    /export/home/looric/eclipse/./eclipse
    -name
    Eclipse
    -showsplash
    600
    -exitdata
    17
    -vm
    /usr/bin/java
    eclipse.product=org.eclipse.sdk.ide
    eclipse.startTime=1147999845899
    eclipse.vm=/usr/bin/java
    eclipse.vmargs=-Xms40m
    -Xmx256m
    -jar
    /export/home/looric/eclipse/./startup.jar
    eof=eof
    file.encoding=UTF-8
    file.encoding.pkg=sun.io
    file.separator=/
    java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment
    java.awt.printerjob=sun.print.PSPrinterJob
    java.class.path=/export/home/looric/eclipse/./startup.jar
    java.class.version=49.0
    java.endorsed.dirs=/usr/jdk/instances/jdk1.5.0/jre/lib/endorsed
    java.ext.dirs=/usr/jdk/instances/jdk1.5.0/jre/lib/ext
    java.home=/usr/jdk/instances/jdk1.5.0/jre
    java.io.tmpdir=/var/tmp/
    java.library.path=/usr/jdk/instances/jdk1.5.0/jre/lib/i386/client:/usr/jdk/instances/jdk1.5.0/jre/lib/i386:/usr/jdk/instances/jdk1.5.0/jre/../lib/i386:/usr/lib
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version=1.5.0_06-b05
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Sun Microsystems Inc.
    java.specification.version=1.5
    java.vendor=Sun Microsystems Inc.
    java.vendor.url=http://java.sun.com/
    java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
    java.version=1.5.0_06
    java.vm.info=mixed mode, sharing
    java.vm.name=Java HotSpot(TM) Client VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Sun Microsystems Inc.
    java.vm.specification.version=1.0
    java.vm.vendor=Sun Microsystems Inc.
    java.vm.version=1.5.0_06-b05
    line.separator=
    org.osgi.framework.bootdelegation=*
    org.osgi.framework.executionenvironment=J2SE-1.5
    org.osgi.framework.language=en
    org.osgi.framework.os.name=SunOS
    org.osgi.framework.os.version=5.10
    org.osgi.framework.processor=x86
    org.osgi.framework.system.packages=javax.accessibility,javax.activity,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.management,javax.management.loading,javax.management.modelmbean,javax.management.monitor,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.management.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.rmi.ssl,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.synth,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.transaction,javax.transaction.xa,javax.xml,javax.xml.datatype,javax.xml.namespace,javax.xml.parsers,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stream,javax.xml.validation,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.dom.events,org.w3c.dom.ls,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers
    org.osgi.framework.vendor=Eclipse
    org.osgi.framework.version=1.3.0
    org.osgi.supports.framework.extension=true
    os.arch=x86
    os.name=SunOS
    os.version=5.10
    osgi.arch=sparc
    osgi.bundles=org.eclipse.core.runtime@2:start, org.eclipse.update.configurator@3:start
    osgi.bundlestore=/export/home/looric/eclipse/configuration/org.eclipse.osgi/bundles
    osgi.configuration.area=file:/export/home/looric/eclipse/configuration/
    osgi.framework=file:/export/home/looric/eclipse/plugins/org.eclipse.osgi_3.1.2.jar
    osgi.framework.beginningstartlevel=1
    osgi.framework.shape=jar
    osgi.framework.version=3.1.2
    osgi.install.area=file:/export/home/looric/eclipse/
    osgi.instance.area=file:/export/home/looric/workspace/
    osgi.instance.area.default=file:/export/home/looric/workspace/
    osgi.logfile=/export/home/looric/workspace/.metadata/.log
    osgi.manifest.cache=/export/home/looric/eclipse/configuration/org.eclipse.osgi/manifests
    osgi.nl=en_US
    osgi.os=solaris
    osgi.splashLocation=/export/home/looric/eclipse/plugins/org.eclipse.platform_3.1.2/splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    osgi.syspath=/export/home/looric/eclipse/plugins
    osgi.ws=gtk
    path.separator=:
    sun.arch.data.model=32
    sun.boot.class.path=/usr/jdk/instances/jdk1.5.0/jre/lib/rt.jar:/usr/jdk/instances/jdk1.5.0/jre/lib/i18n.jar:/usr/jdk/instances/jdk1.5.0/jre/lib/sunrsasign.jar:/usr/jdk/instances/jdk1.5.0/jre/lib/jsse.jar:/usr/jdk/instances/jdk1.5.0/jre/lib/jce.jar:/usr/jdk/instances/jdk1.5.0/jre/lib/charsets.jar:/usr/jdk/instances/jdk1.5.0/jre/classes
    sun.boot.library.path=/usr/jdk/instances/jdk1.5.0/jre/lib/i386
    sun.cpu.endian=little
    sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
    sun.desktop=gnome
    sun.io.unicode.encoding=UnicodeBig
    sun.jnu.encoding=UTF-8
    sun.management.compiler=HotSpot Client Compiler
    sun.os.patch.level=unknown
    user.country=US
    user.dir=/export/home/looric/eclipse
    user.home=/export/home/looric
    user.language=en
    user.name=looric
    user.timezone=PRC
    *** Features:
    org.eclipse.jdt (3.1.2) "Eclipse Java Development Tools"
    org.eclipse.jdt.source (3.1.2) "Eclipse Java Development Tools SDK"
    org.eclipse.pde (3.1.2) "Eclipse Plug-in Development Environment"
    org.eclipse.pde.source (3.1.2) "Eclipse Plug-in Development Environment Developer Resources"
    org.eclipse.platform (3.1.2) "Eclipse Platform"
    org.eclipse.platform.source (3.1.2) "Eclipse Platform Plug-in Developer Resources"
    org.eclipse.rcp (3.1.2) "Eclipse RCP"
    org.eclipse.rcp.source (3.1.2) "Eclipse RCP Plug-in Developer Resources"
    org.eclipse.sdk (3.1.2) "Eclipse Project SDK"
    *** Plug-in Registry:
    org.apache.ant (1.6.5) "Apache Ant" [Resolved]
    org.apache.lucene (1.4.3) "Apache Lucene" [Resolved]
    org.eclipse.ant.core (3.1.1) "Ant Build Tool Core" [Resolved]
    org.eclipse.ant.ui (3.1.2) "Ant UI" [Resolved]
    org.eclipse.compare (3.1.1) "Compare Support" [Resolved]
    org.eclipse.core.boot (3.1.0) "Core Boot" [Resolved]
    org.eclipse.core.commands (3.1.0) "Commands" [Active]
    org.eclipse.core.expressions (3.1.0) "Expression Language" [Active]
    org.eclipse.core.filebuffers (3.1.2) "File Buffers" [Active]
    org.eclipse.core.resources (3.1.2) "Core Resource Management" [Active]
    org.eclipse.core.resources.compatibility (3.1.0) "Core Resource Management Compatibility Fragment" [Resolved]
    org.eclipse.core.runtime (3.1.2) "Core Runtime" [Active]
    org.eclipse.core.runtime.compatibility (3.1.0) "Core Runtime Plug-in Compatibility" [Active]
    org.eclipse.core.variables (3.1.0) "Core Variables" [Resolved]
    org.eclipse.debug.core (3.1.2) "Debug Core" [Active]
    org.eclipse.debug.ui (3.1.2) "Debug UI" [Active]
    org.eclipse.help (3.1.0) "Help System Core" [Active]
    org.eclipse.help.appserver (3.1.0) "Help Application Server" [Resolved]
    org.eclipse.help.base (3.1.0) "Help System Base" [Resolved]
    org.eclipse.help.ui (3.1.1) "Help System UI" [Resolved]
    org.eclipse.help.webapp (3.1.0) "Help System Webapp" [Resolved]
    org.eclipse.jdt (3.1.0) "Eclipse Java Development Tools" [Resolved]
    org.eclipse.jdt.core (3.1.2) "Java Development Tools Core" [Active]
    org.eclipse.jdt.debug (3.1.1) "JDI Debug Model" [Resolved]
    org.eclipse.jdt.debug.ui (3.1.2) "JDI Debug UI" [Resolved]
    org.eclipse.jdt.doc.isv (3.1.2) "Eclipse JDT Plug-in Developer Guide" [Resolved]
    org.eclipse.jdt.doc.user (3.1.1) "Eclipse Java Development User Guide" [Resolved]
    org.eclipse.jdt.junit (3.1.1) "Java Development Tools JUnit support" [Resolved]
    org.eclipse.jdt.junit.runtime (3.1.0) "Java Development Tools JUnit runtime support" [Resolved]
    org.eclipse.jdt.launching (3.1.0) "Java Development Tools Launching Support" [Resolved]
    org.eclipse.jdt.source (3.1.2) "Eclipse Java Development Tools SDK" [Resolved]
    org.eclipse.jdt.ui (3.1.2) "Java Development Tools UI" [Active]
    org.eclipse.jface (3.1.1) "JFace" [Active]
    org.eclipse.jface.text (3.1.2) "JFace Text" [Active]
    org.eclipse.ltk.core.refactoring (3.1.0) "Refactoring Core" [Resolved]
    org.eclipse.ltk.ui.refactoring (3.1.1) "Refactoring UI" [Resolved]
    org.eclipse.osgi.services (3.1.2) "OSGi Release 3 Services" [Resolved]
    org.eclipse.osgi.util (3.1.1) "OSGi R3 Utility Classes" [Resolved]
    org.eclipse.pde (3.1.0) "Eclipse Plug-in Development Environment" [Resolved]
    org.eclipse.pde.build (3.1.2) "Plug-in Development Environment Build Support" [Resolved]
    org.eclipse.pde.core (3.1.1) "Plug-in Development Core" [Resolved]
    org.eclipse.pde.doc.user (3.1.2) "Eclipse Plug-in Development User Guide" [Resolved]
    org.eclipse.pde.junit.runtime (3.1.0) "PDE JUnit Plug-in Test" [Resolved]
    org.eclipse.pde.runtime (3.1.1) "Plug-in Development Environment Runtime" [Resolved]
    org.eclipse.pde.source (3.1.2) "Eclipse Plug-in Development Environment Developer Resources" [Resolved]
    org.eclipse.pde.ui (3.1.2) "Plug-in Development UI" [Resolved]
    org.eclipse.platform (3.1.2) "Eclipse Platform" [Resolved]
    org.eclipse.platform.doc.isv (3.1.2) "Eclipse Platform Plug-in Developer Guide" [Resolved]
    org.eclipse.platform.doc.user (3.1.1) "Eclipse Workbench User Guide" [Resolved]
    org.eclipse.platform.source (3.1.2) "Eclipse Platform Plug-in Developer Resources" [Resolved]
    org.eclipse.rcp (3.1.0) "Eclipse RCP" [Resolved]
    org.eclipse.rcp.source (3.1.2) "Eclipse RCP Plug-in Developer Resources" [Resolved]
    org.eclipse.rcp.source.solaris.gtk.sparc (3.1.2) "Eclipse RCP Plug-in Developer Resources" [Resolved]
    org.eclipse.sdk (3.1.2) "Eclipse Project SDK" [Resolved]
    org.eclipse.search (3.1.2) "Search Support" [Resolved]
    org.eclipse.swt (3.1.0) "Standard Widget Toolkit" [Resolved]
    org.eclipse.swt.gtk.solaris.sparc (3.1.1) "Standard Widget Toolkit for GTK 2.0" [Resolved]
    org.eclipse.team.core (3.1.1) "Team Support Core" [Active]
    org.eclipse.team.cvs.core (3.1.1) "CVS Team Provider Core" [Resolved]
    org.eclipse.team.cvs.ssh (3.1.0) "CVS SSH Core" [Resolved]
    org.eclipse.team.cvs.ssh2 (3.1.0) "CVS SSH2" [Resolved]
    org.eclipse.team.cvs.ui (3.1.1) "CVS Team Provider UI" [Resolved]
    org.eclipse.team.ui (3.1.1) "Team Support UI" [Resolved]
    org.eclipse.text (3.1.1) "Text" [Active]
    org.eclipse.tomcat (4.1.30.1) "Tomcat Wrapper" [Resolved]
    org.eclipse.ui (3.1.2) "Eclipse UI" [Active]
    org.eclipse.ui.browser (3.1.1) "Browser Support" [Resolved]
    org.eclipse.ui.cheatsheets (3.1.1) "Cheat Sheets" [Resolved]
    org.eclipse.ui.console (3.1.2) "Console" [Resolved]
    org.eclipse.ui.editors (3.1.1) "Default Text Editor" [Active]
    org.eclipse.ui.externaltools (3.1.1) "External Tools" [Active]
    org.eclipse.ui.forms (3.1.0) "Eclipse Forms" [Resolved]
    org.eclipse.ui.ide (3.1.1) "Eclipse IDE UI" [Active]
    org.eclipse.ui.intro (3.1.1) "Welcome Framework" [Resolved]
    org.eclipse.ui.presentations.r21 (3.1.0) "R21 Presentation Plug-in" [Resolved]
    org.eclipse.ui.views (3.1.1) "Views" [Active]
    org.eclipse.ui.workbench (3.1.2) "Workbench" [Active]
    org.eclipse.ui.workbench.compatibility (3.1.0) "Workbench Compatibility" [Resolved]
    org.eclipse.ui.workbench.texteditor (3.1.2) "Text Editor Framework" [Active]
    org.eclipse.update.configurator (3.1.0) "Install/Update Configurator" [Active]
    org.eclipse.update.core (3.1.2) "Install/Update Core" [Resolved]
    org.eclipse.update.scheduler (3.1.0) "Automatic Updates Scheduler" [Active]
    org.eclipse.update.ui (3.1.1) "Install/Update UI" [Resolved]
    org.junit (3.8.1) "JUnit Testing Framework" [Resolved]
    system.bundle (3.1.2) "OSGi System Bundle" [Active]
    *** User Preferences:
    #Fri May 19 08:51:21 CST 2006
    /instance/org.eclipse.jdt.ui/org.eclipse.jface.textfont=1|Monospace|10|0|GTK|1|;
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.formatterprofiles.version=8
    /instance/org.eclipse.ui/showIntro=false
    @org.eclipse.ui=3.1.2
    \!/=
    /instance/org.eclipse.ui.ide/platformState=88
    /configuration/org.eclipse.ui.ide/SHOW_WORKSPACE_SELECTION_DIALOG=true
    /instance/org.eclipse.core.resources/version=1
    /instance/org.eclipse.ui.ide/tipsAndTricks=true
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.editor.tab.width=
    @org.eclipse.core.resources=3.1.2
    /instance/org.eclipse.jdt.ui/useQuickDiffPrefPage=true
    @org.eclipse.ui.ide=3.1.1
    @org.eclipse.jdt.ui=3.1.2
    /instance/org.eclipse.jdt.ui/tabWidthPropagated=true
    /configuration/org.eclipse.ui.ide/RECENT_WORKSPACES_PROTOCOL=2
    /configuration/org.eclipse.ui.ide/MAX_RECENT_WORKSPACES=5
    /configuration/org.eclipse.ui.ide/RECENT_WORKSPACES=/export/home/looric/workspace
    /instance/org.eclipse.jdt.ui/fontPropagated=true
    /instance/org.eclipse.jdt.ui/useAnnotationsPrefPage=true
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.javadoclocations.migrated=true
    /instance/org.eclipse.ui.ide/quickStart=true
    file_export_version=3.0
    *** Current Install Configuration:
    Install configuration:
    Last changed on May 19, 2006
    Location: file:/export/home/looric/eclipse/configuration/org.eclipse.update/platform.xml
    Configured sites:
    platform:/base/
    Configured features:
    ID: org.eclipse.platform, Version: 3.1.2
    ID: org.eclipse.rcp, Version: 3.1.2
    ID: org.eclipse.platform.source, Version: 3.1.2
    ID: org.eclipse.jdt, Version: 3.1.2
    ID: org.eclipse.jdt.source, Version: 3.1.2
    ID: org.eclipse.pde, Version: 3.1.2
    ID: org.eclipse.pde.source, Version: 3.1.2
    ID: org.eclipse.sdk, Version: 3.1.2
    ID: org.eclipse.rcp.source, Version: 3.1.2
    Configured plug-ins:
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.core_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.cheatsheets_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.help.base_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ant.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.source_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.cvs.ui_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.runtime_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.help.webapp_3.1.0/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.workbench_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.build_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.osgi.util_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.apache.lucene_1.4.3/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.resources_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.search_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.update.configurator_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.expressions_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.doc.user_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.resources.compatibility_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.tomcat_4.1.30.1/
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.cvs.ssh_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.debug_3.1.1/
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.cvs.ssh2_3.1.0/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.runtime.compatibility_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.update.core_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.debug.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.help.ui_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.presentations.r21_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jface_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.doc.user_3.1.1/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.commands_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.osgi_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.compare_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.rcp.source.solaris.gtk.i386_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.cvs.core_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.sdk_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.update.ui_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.platform.source_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.forms_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.platform.doc.user_3.1.1/
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.intro_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.console_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.help_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.rcp.source_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.filebuffers_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.editors_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.junit.runtime_3.1.0/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.runtime_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.rcp_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jface.text_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.source_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ltk.core.refactoring_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.junit.runtime_3.1.0/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.views_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.doc.isv_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.text_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.swt_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.1.0/
    file:/export/home/looric/eclipse/plugins/org.eclipse.platform_3.1.2/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.swt.gtk.solaris.i386_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.help.appserver_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.apache.ant_1.6.5/
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.variables_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.externaltools_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ant.core_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.core.boot_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.ui_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.update.scheduler_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.debug.core_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.debug.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.team.core_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.ide_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.osgi.services_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.launching_3.1.0.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.ui_3.1.2.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.jdt.junit_3.1.1/
    file:/export/home/looric/eclipse/plugins/org.junit_3.8.1/
    file:/export/home/looric/eclipse/plugins/org.eclipse.ui.browser_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.pde.core_3.1.1.jar
    file:/export/home/looric/eclipse/plugins/org.eclipse.platform.doc.isv_3.1.2/

  • Oracle 8i on Solaris 8

    I am trying to get oracle 8i enterprise server to work on solaris 8
    I have tuned my kernel using /etc/system using this lines
    START oracle mods
    set shmsys:shminfo_shmmax=4294967295
    set shmsys:shminfo_shmmin=1
    set shmsys:shminfo_shmmni=600
    set shmsys:shminfo_shmseg=100
    set semsys:seminfo_semmap=100
    set semsys:seminfo_semmni=1024
    set semsys:seminfo_semmns=14000
    set semsys:seminfo_semmnu=400
    set semsys:seminfo_semume=100
    set semsys:seminfo_semmsl=1024
    set semsys:seminfo_semopm=100
    * Message Queue
    set msgsys:msginfo_msgmap=1024
    set msgsys:msginfo_msgmax=8192
    set msgsys:msginfo_msgmnb=262140
    set msgsys:msginfo_msgmni=1024
    set msgsys:msginfo_msgssz=2048
    set msgsys:msginfo_msgtql=1024
    set msgsys:msginfo_msgseg=4096
    * END oracle mods
    I have also dedicated a port for the listener in the /etc/services
    but I am still haveing the following problems when I try to tnsping my DB it gives me the folling error
    TNS Ping Utility for Solaris: Version 8.1.7.0.0 - Production on 8:08
    (c) Copyright 1997 Oracle Corporation. All rights reserved.
    TNS-03505: Failed to resolve name
    when I do an lsnrctl status it gives me the following print out
    LSNRCTL for Solaris: Version 8.1.7.0.0 - Production on (c) Copyright 1998 Oracle Corporation. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=tomiwa)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Solaris: Version 8.1.7.0.0 - Production
    Start Date 21-MAR-
    Uptime 0 days 3 hr. 13 min. 48 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File /u01/app/oracle/product/8.1.7/network/admin/listener.o
    ra
    Listener Log File /u01/app/oracle/product/8.1.7/network/log/listener.log
    The listener supports no services
    The command completed successfully
    which says at the bottom the listener suports no services.
    when I try using sqlpus internal i get the following
    SQL*Plus: Release 8.1.7.0.0 - Production on Sun
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Enter user-name: internal
    ld.so.1: oracle: fatal: libskgxp8.so: open failed: No such file or directory
    ERROR:
    ORA-24314: service handle not initialized
    can anybody help it is driving me crazy
    null

    Hi,
    from your previous post, are you sure there is no
    error during the installation process? Can you check the
    log file make.log (and other log files also) to see if any
    error there? because from what
    you have said, it seems the installation is not complete(have
    some error). --- especially check if there is errors such
    as "can't find '-lordsdo'".
    Another thing is make sure the LD_LIBRARY_PATH is set correctly.

  • E1000g driver broken on solaris 10 u6; how to report this bug correctly?

    Question also posted in OpenSolaris forums:
    [http://www.opensolaris.org/jive/thread.jspa?messageID=329326]
    While upgrading a T2000 server to solaris 10 update 6 I found that my jumbo
    interfaces report errors on reboot.
    One frequent cause was that the update replaced /kernel/drv/e1000g.conf file
    (I changed the MaxFrameSize line to enable jumbo frames). This in-persistency
    of the file is annoying but well-known (bonus question: can I make changes to
    this file persistent?)
    However, the system still refused to set MTU = 9000 on the interfaces, and by
    default it assigns an MTU=8978 (instead of 16384 or 10244 as expected from
    other systems; we only need 9000 though). Googling showed that a few people
    have also discussed this regression.
    Copying in the driver file (/kernel/drv/sparcv9/e1000g) from Solaris 10 u4
    worked (network goes up, needed MTU is assigned). This doesn't seem like a
    suported and "enterprise" solution, so I want this bug to be known and fixed by
    Sun in the main tree.
    I haven't found any numbered bug report on this matter. How can I submit a bug
    for this regression in Solaris 10 (I couldn't reproduce the problem in OpenSolaris)?
    Can someone with access and skill please post the bug for us? :)
    e1000g driver module versions involved:
    sol10u4 (working): Intel PRO/1000 Ethernet 5.1.11
    sol10u6 (bad MTU limit): Intel PRO/1000 Ethernet 5.2.8
    //Jim Klimov

    Hello again, Mr. Cohen, and thank you for your corrections to my style.
    No offense taken, since it makes sense when you put it this way,
    and the point is taken - I'll try to be that specific next time. Thanks.
    Returning to the problem at hand, however with the abundance of
    Sun's tools to submit bugs (including those you pointed out above),
    I believed I might not know of some one more bugtracker.
    I also thought that "support cases" did differ from "bugs" which arise,
    taking my example, when Sun (or Intel?) took a working e1000g driver
    and "fixed" so it's no longer working - and then Sun releases it into
    the commercial version of the OS this way through all the presumed
    Q&A. And wants commercial users to pay for fixing it back. That's
    the part of the logic I found flawed somehow ;)
    So yes, you can say that I'm "cheap" to pay for Sun fixing something
    they broke themselves.
    I originally posted this report on OpenSolaris forum in hope someone
    would point out my misconfiguration or confirm that the problem exists
    for others.
    That forum (and/or the bugtracker search for keyword e1000g) also have
    a number of posts complaining about the vast number of ways this one
    e1000g driver was broken lately in 90s-100s OpenSolaris builds. Some
    posters even went as far as to suggest that someone reviews all works
    of the engineers and managers who are responsible for these recent
    flawed putpacks, or even provide some disciplinary action.
    I wouldn't go that far, but I was still saddened to find some other bug
    leak into the kinda-stable Solaris.
    //Jim on a mobile

  • Desktop not sharp after installing Solaris 10 8/07 on an Ultra 10

    Hi. I just installed the latest version of Solaris 10 on an Ultra10 and noticed that the desktop is not sharp. It's almost as though everything (background, Launch button, windows, etc) is misty. Oddly, the drop down menu displayed with right-click on the desktop is clear and sharp. Likewise, the contents of the Desktop Background Preferences window is OK, but the desktop selections and title bar are misty. If I try to change the resolution, an error is displayed saying 'The XServer does not suport the XRandR extension'.
    Any ideas?
    Andre.

    I used to have a similar issue when connecting my computer by DVI instead the classic way.
    After applying several updates the issue was gone for Solaris 10, but is still there for SXDE.
    I think it has something to do with video card driver.

  • How to use solaris font in the java

    Hi all!
    I need to use the installed solaris fonts in a swing application. Do you know how to make the installed solaris fonts available in the java runtime environment?
    I have Solaris 8.
    Thanks
    eha

    Hi,
           import java.awt.EventQueue;
    import java.awt.Font;
    import java.awt.GraphicsEnvironment;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    public class Tamil {
         static void showGui(){
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panel = (JPanel) frame.getContentPane();
              JLabel label = new JLabel();
              Font f = new Font("Latha",Font.BOLD,12);
              label.setFont(f);
              label.setText("\u0B85\u0B95\u0BB0\u0BAE\u0BCD");
              panel.add(label);
              frame.setSize(300,300);          
              frame.setVisible(true);
          * @param args
         public static void main(String[] args) {          
              EventQueue.invokeLater(new Runnable()
                   @Override
                   public void run() {
                        showGui();
    }This is just a simple example . Please understand what other people said.
    Please read a tutorial about [i18n|http://java.sun.com/docs/books/tutorial/i18n/index.html]
    Thanks

  • Oracle Management Server fails to start on Solaris 8

    I'm trying to start OMS for oracle9i on a Solaris 8 machine. I type the following command to start OMS;
    oemctl start oms
    OMS then tries to start and after a minute it times out saying look at file $ORACLE_HOME/sysman/log/oms.nohup. When I do this I see the following output;
    Starting the management server at Thu Oct 16 10:40:21 BST 2003
    Management server startup failed. Check the file /space/oracle9i/OraHome1/sysman/log/oms.nohup for details
    served.
    Starting the Oracle Management Server...
    Error starting Oracle Management Server. ORBSingleton: access deniedjava.lang.SecurityException: ORBSingleton: access denied
    at com.sun.corba.se.internal.corba.ORBSingleton.connect(ORBSingleton.java:314)
    at oracle.sysman.vxn.VxnNamingContext.<init>(VxnNamingContext.java:285)
    at oracle.sysman.vxn.VxnNamingContext.getNewContext(VxnNamingContext.java:222)
    at oracle.sysman.vxn.VxnNamingService.getInitialContext(VxnNamingService.java:1072)
    at oracle.sysman.vxn.VxnNamingService.enableBootstrap(VxnNamingService.java:1080)
    at oracle.sysman.vxn.VxnNamingService.init(VxnNamingService.java:238)
    at oracle.sysman.vxn.VxnNamingService.getNamingService(VxnNamingService.java:103)
    at oracle.sysman.vxn.VxnNamingService.getNamingService(VxnNamingService.java:112)
    at oracle.sysman.vxa.VxaAppServer.initServer(VxaAppServer.java:3417)
    at oracle.sysman.vxa.VxaAppServer.main(VxaAppServer.java:3048)
    OMS exited on Thu Oct 16 10:40:25 BST 2003 with return value 56
    Could not start management server. Initialization failure
    Can someone tell me what's going on and how I can solve this. Thanks.

    Further to my original post I turned the verbose option on when trying to start OMS. The output I get is below;
    $ oemctl start oms &
    2313
    $ [Opened /usr/j2se/jre/lib/rt.jar]
    [Opened /usr/j2se/jre/lib/i18n.jar]
    [Opened /usr/j2se/jre/lib/sunrsasign.jar]
    [Loaded java.lang.Object from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.Serializable from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Comparable from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.String from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Class from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Cloneable from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ClassLoader from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Throwable from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Error from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ThreadDeath from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Exception from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.RuntimeException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.ProtectionDomain from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.AccessControlContext from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ClassNotFoundException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.LinkageError from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.NoClassDefFoundError from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ClassCastException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ArrayStoreException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.VirtualMachineError from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.OutOfMemoryError from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.StackOverflowError from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.Reference from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.SoftReference from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.WeakReference from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.FinalReference from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.PhantomReference from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.Finalizer from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Runnable from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Thread from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ThreadGroup from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Dictionary from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Map from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Hashtable from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Properties from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.reflect.AccessibleObject from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.reflect.Member from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.reflect.Method from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.reflect.Constructor from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Collection from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.AbstractCollection from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.List from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.AbstractList from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Vector from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.StringBuffer from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Boolean from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Character from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Number from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Float from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Double from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Byte from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Short from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Integer from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Long from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.NullPointerException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ArithmeticException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Shutdown from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.StrictMath from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.ObjectStreamField from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Comparator from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.String$CaseInsensitiveComparator from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.System from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.AccessController from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Collections from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Random from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Set from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.AbstractSet from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Collections$EmptySet from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Collections$EmptyList from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.AbstractMap from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Collections$EmptyMap from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Collections$ReverseComparator from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ThreadLocal from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.InheritableThreadLocal from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.Guard from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.Permission from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.BasicPermission from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.reflect.ReflectPermission from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.Reference$Lock from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.Reference$ReferenceHandler from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.Finalizer$FinalizerWorker from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.ReferenceQueue from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.ReferenceQueue$Null from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.ReferenceQueue$Lock from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ref.Finalizer$FinalizerWorker$FinalizerThread from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Enumeration from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Hashtable$EmptyEnumerator from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Iterator from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Hashtable$EmptyIterator from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.ObjectStreamClass from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.ObjectStreamClass$ObjectStreamClassEntry from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.ObjectStreamClass$CompareClassByName from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.ObjectStreamClass$CompareMemberByName from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Map$Entry from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Hashtable$Entry from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.Version from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.InputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.FileInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.FileDescriptor from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.OutputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.FileOutputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.FilterInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.BufferedInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.FilterOutputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.PrintStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.BufferedOutputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.Writer from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.OutputStreamWriter from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.io.CharToByteConverter from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.io.Converters from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Stack from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.PrivilegedAction from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.security.action.GetPropertyAction from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.io.CharToByteASCII from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.BufferedWriter from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Compiler from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Compiler$1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.URLStreamHandlerFactory from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$Factory from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.SecureClassLoader from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.URLClassLoader from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$ExtClassLoader from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.security.util.Debug from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.StringTokenizer from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.File from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.FileSystem from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.UnixFileSystem from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.PrivilegedExceptionAction from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$2 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.URL from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.HashSet from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.HashMap from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.HashMap$EmptyHashIterator from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.HashMap$Entry from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.ArrayList from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.URLStreamHandler from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.net.www.protocol.jar.Handler from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$AppClassLoader from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.Launcher$3 from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.net.www.protocol.file.Handler from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.URLClassLoader$1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.EmptyStackException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.PrivilegedActionException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Locale from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath$2 from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath$Loader from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath$JarLoader from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipConstants from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipFile from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.jar.JarFile from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.security.action.LoadLibraryAction from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Runtime from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ClassLoader$4 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ClassLoader$NativeLibrary from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.JarIndex from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.ExtensionDependency from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipEntry from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.jar.JarEntry from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.jar.JarFile$JarFileEntry from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.DataInput from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.DataInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipFile$ZipFileInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.jar.Manifest from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.ByteArrayInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.jar.Attributes from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.jar.Manifest$FastInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.jar.Attributes$Name from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Math from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.jar.JarVerifier from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.ByteArrayOutputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.IOException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.FileNotFoundException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.zip.InflaterInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipFile$1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.zip.Inflater from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath$FileLoader from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.net.www.ParseUtil from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.BitSet from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.Resource from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.URLClassPath$4 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.Package from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.CodeSource from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.Policy from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.Policy$1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.Security from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.Security$1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.Reader from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.BufferedReader from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.InputStreamReader from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.io.ByteToCharConverter from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.io.ByteToCharISO8859_1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.Provider from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.security.provider.Sun from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.security.provider.Sun$1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.sun.rsajca.Provider from /usr/j2se/jre/lib/sunrsasign.jar]
    [Loaded com.sun.rsajca.Provider$1 from /usr/j2se/jre/lib/sunrsasign.jar]
    [Loaded sun.security.provider.PolicyFile from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.PermissionCollection from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.security.provider.PolicyPermissions from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.URLConnection from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.net.www.URLConnection from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.net.www.protocol.file.FileURLConnection from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.ContentHandler from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.UnknownContentHandler from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.net.www.MessageHeader from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.FilePermission from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.FilePermission$1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.RuntimePermission from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.security.cert.Certificate from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxa.VxaOMSPing]
    [Loaded org.omg.CORBA.SystemException from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxx.vxxo.VxxoNullParameterException]
    [Loaded oracle.sysman.vxx.vxxo.VxxoNameNotFoundException]
    [Loaded oracle.sysman.vxx.vxxo.VxxoNameServiceException]
    [Loaded oracle.sysman.vxx.vxxo.VxxoNameServiceNotFoundException]
    [Loaded oracle.sysman.vxx.vxxo.VxxoConst]
    [Loaded oracle.sysman.vxx.vxxo.VxxoName]
    [Loaded oracle.sysman.vxx.vxxo.VxxoLooseName]
    [Loaded sun.io.ByteToCharASCII from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxa.VxaOperations]
    [Loaded oracle.sysman.vxa.VxaAppServerInt]
    [Loaded oracle.sysman.vxa.VxaAppServer]
    [Loaded java.lang.InterruptedException from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxx.VxxAuxFinalizeable]
    [Loaded oracle.sysman.vdb.VdbSession]
    [Loaded oracle.sysman.vdb.VdbCORBASessionOperations]
    [Loaded oracle.sysman.vdb.VdbAutoCommitSession]
    [Loaded oracle.sysman.vxa.VxaExtServiceTracker]
    [Loaded oracle.sysman.vxa.VxaService]
    [Loaded oracle.sysman.vxa.VxaNoSuchServiceException]
    [Loaded org.omg.CORBA.portable.IDLEntity from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.UserException from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vdb.VdbLostConnectionException]
    [Loaded oracle.sysman.vxn.VxnBootstrapException]
    [Loaded oracle.sysman.vxa.VxaStartupException]
    [Loaded oracle.sysman.vdb.VdbSQLException]
    [Loaded oracle.sysman.vxa.VxaMASService]
    [Loaded oracle.sysman.vxa.VxaServiceDefinition]
    [Loaded oracle.sysman.vxa.VxaExtServiceDefinition]
    [Loaded oracle.sysman.vxx.vxxo.VxxoORB]
    [Loaded oracle.sysman.vxx.vxxo.VxxoEMORB]
    [Loaded oracle.sysman.vxx.vxxo.VxxoEMLocalORB]
    [Loaded org.omg.CORBA.Object from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vdu.VduUnAuthorizedAccessException]
    [Loaded oracle.sysman.vdv.VdvNameNotFoundException]
    [Loaded java.io.FileWriter from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.security.util.ManifestEntryVerifier from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.CharacterDecoder from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.BASE64Decoder from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.inprise.vbroker.CORBA.Object]
    [Loaded oracle.sysman.vxa.Vxa]
    [Loaded oracle.sysman.vxa.VxaIncompleteInitException]
    [Loaded java.lang.IllegalArgumentException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.NumberFormatException from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxx.VxxInvalidOEMKeyException]
    [Loaded java.lang.IllegalThreadStateException from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxa.VxaInvalidStateException]
    [Loaded oracle.sysman.vds.VdsInt]
    [Loaded java.lang.IndexOutOfBoundsException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.StringIndexOutOfBoundsException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.UnsatisfiedLinkError from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxx.VxxProperties]
    [Loaded oracle.sysman.vxx.VxxFile]
    [Loaded oracle.sysman.vxx.VxxPropertiesFile]
    [Loaded oracle.sysman.vxx.VxxOMSConfigProperties]
    [Loaded oracle.sysman.vdu.VduException]
    [Loaded oracle.sysman.vxn.VxnPortBoundException]
    [Loaded oracle.sysman.emSDK.common.nls.MessageBundle]
    [Loaded java.util.MissingResourceException from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxx.vxxd.VxxdCrypt]
    [Loaded oracle.sysman.vxx.vxxd.CryptException]
    [Loaded oracle.sysman.vxx.vxxd.VxxdDES]
    [Loaded java.util.Hashtable$Enumerator from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxx.VxxVersion]
    [Loaded java.util.ResourceBundle from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.ResourceBundle$ResourceCacheKey from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.SoftCache from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.misc.SoftCache$ValueCell from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.ListResourceBundle from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.resources.VxaMsgID]
    [Loaded oracle.sysman.resources.VxaMsg]
    [Loaded oracle.sysman.resources.EmptyBundle]
    [Loaded oracle.sysman.resources.VxaMsg_en]
    [Loaded java.text.Format from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.text.MessageFormat from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.text.FieldPosition from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.Date from /usr/j2se/jre/lib/rt.jar]
    OEMCTL for SunOS: Version 9.2.0.1.0 Production
    Copyright (c) 1998, 2002, Oracle Corporation. All rights reserved.
    Starting the Oracle Management Server...[Loaded oracle.sysman.vxx.vxxo.VxxoListOverflowException]
    [Loaded org.omg.CosNaming.NamingContextPackage.AlreadyBound from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CosNaming.NamingContextPackage.CannotProceed from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CosNaming.NamingContextPackage.NotFound from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxn.VxnServiceNotFoundException]
    [Loaded org.omg.CosNaming.NamingContextPackage.InvalidName from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.emSDK.common.corba.InitORBHelper]
    [Loaded org.omg.CORBA.ORB from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.inprise.vbroker.CORBA.ORB]
    [Loaded java.util.Observer from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.orb.ORB]
    [Loaded com.visigenic.vbroker.orb.ObjectId]
    [Loaded com.visigenic.vbroker.orb.ForeignId]
    [Loaded org.omg.CORBA.portable.InputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.orb.GiopStream]
    [Loaded com.visigenic.vbroker.orb.GiopInputStream]
    [Loaded com.visigenic.vbroker.orb.PersistentId]
    [Loaded com.visigenic.vbroker.orb.KeyId]
    [Loaded com.visigenic.vbroker.orb.TransientId]
    [Loaded com.visigenic.vbroker.orb.ServiceId]
    [Loaded org.omg.CORBA.INTERNAL from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.ArrayIndexOutOfBoundsException from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.COMM_FAILURE from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.MARSHAL from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.INV_OBJREF from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.URLNaming.CommFailure]
    [Loaded com.visigenic.vbroker.URLNaming.ReqFailure]
    [Loaded com.visigenic.vbroker.URLNaming.InvalidURL]
    [Loaded org.omg.CORBA.ORBPackage.InvalidName from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.INITIALIZE from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.BAD_PARAM from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.portable.OutputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.orb.GiopOutputStream]
    [Loaded java.net.UnknownHostException from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.portable.ObjectImpl from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.inprise.vbroker.CORBA.portable.ObjectImpl]
    [Loaded com.visigenic.vbroker.orb.ObjectImpl]
    [Loaded org.omg.CORBA.portable.Delegate from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.inprise.vbroker.CORBA.portable.Delegate]
    [Loaded com.visigenic.vbroker.orb.Delegate]
    [Loaded org.omg.CORBA.INTF_REPOS from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.orb.ChainProperties]
    [Loaded java.util.Observable from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.util.PropertyManager]
    [Loaded com.visigenic.vbroker.orb.OrbPropertyManager]
    [Loaded java.lang.SecurityException from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.BAD_OPERATION from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.InstantiationException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.lang.IllegalAccessException from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.TypeCode from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.orb.TypeCode]
    [Loaded org.omg.CORBA.ORBPackage.InconsistentTypeCode from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.TypeCodePackage.BadKind from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.DynAny from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.DynAnyPackage.Invalid from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.orb.SystemProperties]
    [Loaded java.net.MalformedURLException from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.orb.AppletProperties]
    [Loaded java.lang.Package$1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.zip.ZipInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.jar.JarInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.io.PushbackInputStream from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.zip.Checksum from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.util.zip.CRC32 from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.BOA]
    [Loaded com.visigenic.vbroker.orb.BOA]
    [Loaded org.omg.CORBA.OBJ_ADAPTER from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.orb.OrbObject]
    [Loaded com.visigenic.vbroker.orb.DelegateImpl]
    [Loaded com.visigenic.vbroker.orb.StubDelegate]
    [Loaded com.visigenic.vbroker.orb.ProtocolManager$Protocol]
    [Loaded org.omg.CORBA.NO_IMPLEMENT from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.orb.TypeCodeImpl]
    [Loaded org.omg.CORBA.TypeCodePackage.Bounds from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.TCKind from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.InetAddress from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.InetAddressImpl from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.InetAddress$CacheEntry from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.net.InetAddressCachePolicy from /usr/j2se/jre/lib/rt.jar]
    [Loaded sun.security.action.GetIntegerAction from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.util.Property]
    [Loaded java.util.Vector$1 from /usr/j2se/jre/lib/rt.jar]
    [Loaded org.omg.CORBA.Principal from /usr/j2se/jre/lib/rt.jar]
    [Loaded com.visigenic.vbroker.orb.PrincipalImpl]
    [Loaded com.visigenic.vbroker.orb.ServiceInit]
    [Loaded com.visigenic.vbroker.interceptor.Init]
    [Loaded com.visigenic.vbroker.interceptor.BindInterceptor]
    [Loaded com.visigenic.vbroker.interceptor.ClientInterceptorFactory]
    [Loaded com.visigenic.vbroker.interceptor.ServerInterceptorFactory]
    [Loaded com.visigenic.vbroker.orb.PseudoObject]
    [Loaded com.visigenic.vbroker.interceptor.ChainBindInterceptor]
    [Loaded com.visigenic.vbroker.interceptor.ChainBindInterceptorImpl]
    [Loaded com.visigenic.vbroker.interceptor.ChainClientInterceptorFactory]
    [Loaded com.visigenic.vbroker.interceptor.ChainClientInterceptorFactoryImpl]
    [Loaded com.visigenic.vbroker.interceptor.ClientInterceptor]
    [Loaded com.visigenic.vbroker.interceptor.ChainServerInterceptorFactory]
    [Loaded com.visigenic.vbroker.interceptor.ChainServerInterceptorFactoryImpl]
    [Loaded com.visigenic.vbroker.interceptor.ServerInterceptor]
    [Loaded com.visigenic.vbroker.URLNaming.Init]
    [Loaded oracle.sysman.vxn.VxnClientBootstrap]
    [Loaded java.net.SocketException from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.ConnectException from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxn.VxnBadHostException]
    [Loaded oracle.sysman.vxn.VxnBadPortException]
    [Loaded oracle.sysman.vxx.vxxt.VxxtTRACE]
    [Loaded java.io.StringWriter from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.vxx.vxxt.LoggerStream]
    [Loaded java.net.Socket from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.SocketOptions from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.SocketImpl from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.PlainSocketImpl from /usr/j2se/jre/lib/rt.jar]
    [Loaded java.net.ProtocolException from /usr/j2se/jre/lib/rt.jar]
    [Loaded oracle.sysman.resources.VxnMsgID]
    [Loaded oracle.sysman.resources.VxnMsg]
    [Loaded oracle.sysman.resources.VxnMsg_en]
    Timed out trying to start the OMS.
    Please check the file /space/oracle9i/OraHome1/sysman/log/oms.nohup for more details.
    [Loaded java.lang.Shutdown$Lock from /usr/j2se/jre/lib/rt.jar]
    I get a time out after oracle.sysman.resources.VxnMsg_en is loaded. Can someone tell me why this is, is it the version of JRE?

  • Multiple jdk versions on solaris--best practices and advice

    I am a newcomer to solaris system administration (not by choice--I am normally just a Java programmer, but am now responsible for testing code on a new solaris box), so apologies for the newbie questions below.
    #1: is it typical for a brand new solaris install to have multiple versions of Java on it?
    After installation, which left me with this version of solaris:
         SunOS asm03 5.10 Generic_120011-14 sun4v sparc SUNW,SPARC-Enterprise-T5220I find from pkginfo, that their are 2 old versions of java installed:
         SUNWj3dev     J2SDK 1.4 development tools
    SUNWj3dmo     J2SDK 1.4 demo programs
    SUNWj3dvx     J2SDK 1.4 development tools (64-bit)
    SUNWj3irt     JDK 1.4 I18N run time environment
    SUNWj3jmp     J2SDK 1.4 Japanese man pages
    SUNWj3man     J2SDK 1.4 man pages
    SUNWj3rt      J2SDK 1.4 runtime environment
    SUNWj3rtx     J2SDK 1.4 runtime environment (64-bit)
    SUNWj5cfg     JDK 5.0 Host Config. (1.5.0_12)
    SUNWj5dev     JDK 5.0 Dev. Tools (1.5.0_12)
    SUNWj5dmo     JDK 5.0 Demo Programs (1.5.0_12)
    SUNWj5dmx     JDK 5.0 64-bit Demo Programs (1.5.0_12)
    SUNWj5dvx     JDK 5.0 64-bit Dev. Tools (1.5.0_12)
    SUNWj5jmp     JDK 5.0 Man Pages: Japan (1.5.0_12)
    SUNWj5man     JDK 5.0 Man Pages (1.5.0_12)
    SUNWj5rt      JDK 5.0 Runtime Env. (1.5.0_12)
    SUNWj5rtx     JDK 5.0 64-bit Runtime Env. (1.5.0_12)Both of these versions are years old; I am surprised that there is not just a single version of JDK 1.6 installed; it only came out, what, going on 2 years ago? I definitely need JDK 1.6 for all of my software to run.
    On my windows and linux boxes, I never usually have multiple JDKs; I always deinstall the current one before installing a new one. So, I went first to try and deinstall JDK 1.4 by executing
         pkgrm SUNWj3dev SUNWj3dmo SUNWj3dvx SUNWj3irt SUNWj3jmp SUNWj3man SUNWj3rt SUNWj3rtxThe package manager detected dependencies like
    WARNING:
         The <SUNWmccom> package depends on the package currently being removed.
    WARNING:
         The <SUNWmcc> package depends on the package currently being removed.
    [+ 8 more]and I decided to abort deinstallation because I have no diea what all these other programs are, and I do not want to cripple my system.
    If anyone has any idea what programs Sun is shipping that still depend on JDK 1.4, please enlighten me.
    #2: Is there any easy way to not only deinstall, say, JDK 1.4 but also deinstall all packages which depend on it?
    Maybe this is too dangerous.
    #3: Is there at least a way that I can find all the programs which depend on an entire group of packages like
         SUNWj3dev SUNWj3dmo SUNWj3dvx SUNWj3irt SUNWj3jmp SUNWj3man SUNWj3rt SUNWj3rtx?
    The above functionality would have come in real handy if I could have done it before doing what I describe next.
    I next decided to try removing JDK 1.5, so I executed
         pkgrm SUNWj5cfg SUNWj5dev SUNWj5dmo SUNWj5dmx SUNWj5dvx SUNWj5jmp SUNWj5man SUNWj5rt SUNWj5rtxI thought that this command would let me know of any dependencies of ANY of the packages that are listed. It doesn't. Instead, it merely checks the first one, and if no dependencies are found, then removes it before marching down the list. In the case above, it happily removed SUNWj5cfg because there were no dependencies on it. Then it stalled on SUNWj5dev because it found dependencies like:
    WARNING:
         The <SUNWmctag> package depends on the package currently being removed.
    WARNING:
         The <SUNWmcon> package depends on the package currently being removed.
    [+ 3 more]#4: Have I left my JDK 1.5 crippled by removing SUNWj5cfg? Or was this pretty harmless?
    #5: Was I fairly stupid to attempt the deinstallations above in the first place? Do solaris people normally leave old JDKs in place?
    #6: Or is it the case that those dependency warnings are harmless: I can go ahead and remove all old JDKs, because java programs will always find the new JDK and should run just fine with it?
    #7 Whats the deal with solaris and having multiple packages for something like the JDK? With Windows, for instance, the entire JDK has a single installer and deinstaller program. Its much easier to work with that the corresponding Solaris stuff. Do Solaris people simply need that much finer grained control over what gets installed and what doesn't? (Actually, with the Windows JDK, the gui installer program can let you install selected components should you wish; I am just not sure how scriptable this is versus the solaris stuff, which may be more sys admin friendly if you have to administer many machines.)

    The easiest thing to do is to just install the latest into a clean directoryI believe different versions of jdk install into their own separate directory by default. All one needs to do is recreate the symbolic links that point to the version they want to use. The java install documentation has the details.

  • Native2ascii failure -asian locales - Solaris specific.

    I am trying to run the native2ascii utility to convert my asian locale property files to Unicode. The utility works on Windows, HP-UX, and IBM AIX, but fails on Solaris. It does work with ASCII and ISO8859_1 encodings. Below is the error I am getting. I am using 1.4.2_03-b02 on Solaris. Note that when I do look in the /usr/j2se/jre/lib directory, the charsets.jar file is there. Any ideas what I may be missing?
    /usr/j2se/bin/native2ascii -encoding EUC_JP properties/PLMVisResourceBundle_ja_JP.properties com/eai/visweb/properties/PLMVisResourceBundle_ja_JP.properties
    Exception in thread "main" java.lang.NoSuchMethodError: sun.io.CharToByteJIS0208.getIndex1()[S
    at sun.nio.cs.ext.JIS_X_0208$Encoder.<init>(JIS_X_0208.java:77)
    at sun.nio.cs.ext.EUC_JP$Encoder.<init>(EUC_JP.java:210)
    at sun.nio.cs.ext.EUC_JP$Encoder.<init>(EUC_JP.java:199)
    at sun.nio.cs.ext.EUC_JP.newEncoder(EUC_JP.java:46)
    at sun.tools.native2ascii.Main.initializeConverter(Main.java:331)
    at sun.tools.native2ascii.Main.convert(Main.java:110)
    at sun.tools.native2ascii.Main.main(Main.java:376)

    I was able to figure this out, using some of the other native2ascii options. Using -J-verbose showed me that the CharToByteJIS0208 class was found in the i18n.jar file and not the charsets.jar file as I had presumed. Because of the order of loading the JRE jar files by Java and i18n was loaded first. I have overcome this problem by adding the -J-Xbootclasspath/p:"path to charsets.jar" option to the native2ascii command to ensure it finds the class in the right jar file.

  • Codeset conversion on WebLogic v6.0 sp1 (NT/Solaris)

    Hi All,
    I'm using WebLogic v6.0 sp1 on NT and Solaris.
    What i trying to achieve is to convert codeset from unicod(java/jdbc, while
    retrieve from Oracle) to big5(to be display on Chinese OS), and vice versa.
    I read from WebLogic documentation/Advanced Oracle Features that i could weblogic.code
    to whichever codeset desirable.
    But it doesn't seem to work after i alter the settings on Connection Pools/Properties
    on WebLogic console.
    JDBC: v1.2 thin driver.
    Database server: Oracle 8.1.6
    Client: Win2000 (Chinese O/S)
    JDK: 1.3.0
    Really appreciate if anyone could enlighten if you hv encountered this problem
    or hv the solution.
    Many thanks,
    Kevin

    Hi,
    Thanks. I'm currently using getBytes too to convert the char/varchar from Oracle
    db to Big5. It's done on every getString() in the code.
    Is there an alternative way that could do it on JDBC driver level? or on Weblogic
    server level, so that it could reduce on substantial coding efforts.
    I try that on thin driver properties, set weblogic.codeset=Big5, but doesn't seem
    to make any difference.
    Please advise.
    thanks & regards
    "Kevin L. Burns" <[email protected]> wrote:
    This really all depends on how you are displaying the characters. If
    this is via swing, you should read:
    http://java.sun.com/j2se/1.3/docs/guide/intl/fontprop.html#multiple
    If you're writing to a socket, you can get a byte array of the encoded
    chars using String.getBytes and pass in the encoding you desire, e.g.
    Big5 (you'll have to make sure you have i18n.jar since the Big5 encoder
    isn't in rt.jar, see
    http://java.sun.com/j2se/1.3/docs/guide/intl/encoding.doc.html).
    If you just want to display the data to a webapp user you can either
    use
    a PrintWriter, which I have found to be very slow or you can write bytes
    out to the ServletOutputStream using the conversion method I described
    above.
    Kevin Lu wrote:
    Hi All,
    I'm using WebLogic v6.0 sp1 on NT and Solaris.
    What i trying to achieve is to convert codeset from unicod(java/jdbc,while
    retrieve from Oracle) to big5(to be display on Chinese OS), and viceversa.
    I read from WebLogic documentation/Advanced Oracle Features that icould weblogic.code
    to whichever codeset desirable.
    But it doesn't seem to work after i alter the settings on ConnectionPools/Properties
    on WebLogic console.
    JDBC: v1.2 thin driver.
    Database server: Oracle 8.1.6
    Client: Win2000 (Chinese O/S)
    JDK: 1.3.0
    Really appreciate if anyone could enlighten if you hv encountered thisproblem
    or hv the solution.
    Many thanks,
    Kevin

  • Solaris won't shutdown using the init commands

    I tried using the init commands to shut down the system cleanly. It ask me if I'm sure and I respond yes, but nothing ever happens. The the rc# files look fine. Any help would be greatly appreciated. I checked the /etc directory and the /sbin directory but no luck..

    Hi,
    Check /etc/inittab for an entry corresponding to the run-level you want to init to. If you're running Solaris 10 (earlier Solaris-es support this, too), you can still create an inittab entry for the run-levels you want to switch to, but this is doing things in 'LEGACY' mode: meaning, Sun is probably going to do away with direct manipulation of inittab and requre use of the SMF
    Some useful reading/research:
    man inittab and follow the references to other man pages
    John

  • What info do you want about Java i18n?

    Although this forum is an excellent resource for quick answers, it isn't always possible for participants to provide detailed solutions. Are there areas of Java i18n that you'd like to read more about, perhaps via a more lengthy technical article on the JDC? What are your suggestions?
    Regards,
    John O'Conner

    This may not be what you consider i18n, but
    I keep running into time zone problems, most
    recently with a customer in Germany. It seems
    that sometimes Java/Solaris picks up Daylight
    Saving Time correctly and sometimes not. I have
    duplicated the German machine's settings on
    my machine here in California, but it works correctly
    for me. We are using the same JDK exactly. The
    machines are not identical otherwise - the customer
    has a newer, more powerful Sun.
    A discussion of what needs to be done to get time
    zones to work consistently and correctly would be
    extremely valuable. Could it be a certain level of
    JDK (we use 1.3)? Some combination of Solaris
    patches? Environment variables to set? I can
    set a GMT offset explicitly, but we don't want customers
    to have to manually change this twice a year.
    By the way, see bug 4177450, which was closed 3
    years ago. Users on this forum are still reporting
    similar trouble. If this is due to user error rather than
    a bug, it's certainly worth a good description of how
    to do it correctly.

  • BEA JRockit(R) R27.3.1-1-solaris-sparcv9 crashed

    Hi, This happens in solaris sparc machine. Please find the dmp below, could anyone shed some lights on this issue, please?
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=10, si_code=3 si_addr=0xffffffff76a08000
    Version : BEA JRockit(R) R27.3.1-1-85830-1.5.0_11-20070716-1248-solaris-sparcv9
    GC Strategy : Mode: throughput. Currently using strategy: genparpar
    GC Status : OC is not running. Last finished OC was OC#0.
    : YC is not running. Last finished YC was YC#0.
    YC History : Ran 0 YCs since last OC.
    Heap : 0x1700000 - 0x5700000
    Compaction : (no compaction area)
    NurseryList : 0x1700000 - 0x3700000
    KeepArea : (no keeparea in use)
    NurseryMarker: [ 0x26ffff0,  0x2efffe8 ]
    CompRefs : References are compressed.
    <Nov 26, 2007 3:23:40 PM> <Debug> <NodeManager> <Waiting for the process to die: 4083>
    <Nov 26, 2007 3:23:40 PM> <Info> <NodeManager> <Server failed during startup so will not be restarted>
    <Nov 26, 2007 3:23:40 PM> <Debug> <NodeManager> <runMonitor returned, setting finished=true and notifying wai
    ters>
    Thanks
    Tamil

    Solaris installation provides only the details I have pasted already. I dont see the core details. However, I was able to reproduce the problem in windows 64 bit machine. Here is the core details.
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 00:03:36 on Tue Dec 04 20:44:05 2007
    Additional information is available in:
    c:\CT\dev\am\test\cases\wls\jrockit.3684.dump
    c:\CT\dev\am\test\cases\wls\jrockit.3684.mdmp
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error Message: Illegal memory access. [54]
    Exception Rec: EXCEPTION_ACCESS_VIOLATION (00000000c0000005) at 0x000007FF7FC52B00 - memory at 0x0000000000000000 could not be written.
    Minidump : Wrote mdmp. Size is 133MB
    SafeDllMode : -1
    Version : BEA JRockit(R) R27.3.1-1-85830-1.5.0_11-20070716-1248-windows-x86_64
    GC Strategy : Mode: throughput. Currently using strategy: genparpar
    GC Status : OC is not running. Last finished OC was OC#145.
    : YC is not running. Last finished YC was YC#51.
    OC History : Strategy genparpar was used for OC#137.
    : Strategy singleparpar was used for OC#138.
    : Strategy genparpar was used for OC#139 to OC#140.
    : Strategy singleparpar was used for OC#141.
    : Strategy genparpar was used for OC#142 to OC#145.
    YC History : Ran 0 YCs before OC#141.
    : Ran 9 YCs before OC#142.
    : Ran 1 YCs before OC#143.
    : Ran 10 YCs before OC#144.
    : Ran 20 YCs before OC#145.
    : Ran 2 YCs since last OC.
    Heap : 0x0000000010500000 - 0x0000000011E29000
    Compaction : 0x00000000109B7B00 - 0x0000000010B9D200
    NurseryList : 0x0000000010B8C180 - 0x000000001189CF78
    KeepArea : 0x0000000011384B10 - 0x00000000116BCC40
    NurseryMarker: [ 0x0000000011384B10,  0x00000000116BCC40 ]
    CompRefs : References are compressed.
    CPU : Intel Core SSE SSE2 SSE3 SSSE3 Core EM64T
    Number CPUs : 1
    Tot Phys Mem : 2184585216 (2083 MB)
    OS version : Microsoft Windows Server 2003 version 5.2 Service Pack 1 (Build 3790) (64-bit)
    Thread System: Windows Threads
    State : JVM is running
    Command Line : -Dbasedir=c:\CT\dev\am\test\cases\wls -Dims.test.wsdl.validate= -Dims.test.wsdl.validate.exclude=com.rsa.configuration.,com.rsa.authmgr.admin.configuration. -Dam.admin.seedfile.path=../test/config/kh0701.xml -Dam.admin.seedfile.password= -Dims.toplevel.dir=c:\CT\dev\am\test\cases\wls/../../.. -Djava.naming.factory.initial=weblogic.jndi.WLInitialContextFactory -Djava.naming.provider.url=t3s://am-install-w64.das.na.rsa.net:7002/ -Dims.test.admin.login=admin -Dims.test.admin.password=password -Dims.test.admin.ldap=false -Dims.test.admin.activedomain=ims.000000000000000000001000e0011000 -Dam.test.output.debug=false -Dam.test.config.dir.path=../test/config/ -Dam.test.seedfile.name=tknseed_fob_5.xml -Dam.test.64bit.seedfile.name=ENG0103_1_TOKEN.XML -Dam.test.level2=false -Djava.net.preferIPv4Stack=true -Dam.test.server.ipaddress=127.0.0.1 -Dam.test.nodesecret.search=false -Dam.test.nodesecret.path= -DSDCONF_LOC=../test/config/agent_autoreg/sdconf.rec -DSDNDSCRT_LOC=../test/config/agent_autoreg/securid -DSDSTATUS_LOC=../test/config/agent_autoreg/JAStatus.1 -DRSA_LOG_LEVEL=OFF -Dam.install=true -Dam.console.ssl=false -Dims.test.admin.password.install=5uperMan! -Dam.test.ctkip.seedfile.name=tknseed_software.xml -Dtest.ctkip.client_hello.xml=../test/config/ctkip/clienthellopdu.xml -Dam.test.token.import.nickname.seedfile.name=qa_sidsoft_nn.xml -Dam.test.token.import.nicknameserialnum.seedfile.name=qa_sidsoft_nnsn.xml -Dam.test.token.import.serialnum.seedfile.name=qa_sidsoft_sn.xml -Dtest.ctkip.client_provisioning_data=../test/config/ctkip/provisioningData.xml -Dtest.ctkip.client_nonce.xml=../test/config/ctkip/clientnoncepdu.xml -Dam.test.ldap=false -Dam.test.oa.client.type=lac -Dam.test.oa.dac.domain=SID4WIN -Dam.test.oa.run=false -Dam.test.oa.dps.ipaddress=127.0.0.1 -Dam.test.oa.dah.ipaddress=10.104.102.224 -Dam.test.output.debug.prependDate=false -Dam.test.oa.dah.nodesecret.export.path=. -Dam.test.cluster.primary.membernode.hostname.1=w2k3-qa-clstr2 -Dam.test.cluster.primary.membernode.hostname.2=w2k3-qa-clstr3 -Dam.test.cluster.primary.leadernode.hostname=w2k3-qa-clstr1 -Dam.test.cluster.primary.nodes=2 -Dam.test.cluster=false -Dproperties.directory=c:/opt/rsa/am-326425/utils/etc -Djava.library.path.systemtools= -Dbea.home=c:\CT\dev\am\test\cases\wls -Dweblogic.security.TrustKeyStore=CustomTrust -Dweblogic.security.CustomTrustKeyStoreFileName=c:/opt/rsa/am-326425/appserver/jdk/jre/lib/security/cacerts -Dssl.debug= -Dweblogic.StdoutDebugEnabled= -Dims.test.ldap.isAD=false -Dtest.level=1 -Dtest.cluster=false -Dtest.oa=false -Dtest.installer=false -Dtest.runbug=false -Dtest.admin.username=admin -Dtest.admin.password=5uperMan! -Dtest.replicas.count=0 -Dtest.ids.target=SystemIS -Dtest.realm.target=SystemDomain -Dtest.internalids.name=SystemIS -Dtest.systemdomain.name=SystemDomain -Dtest.config.dir=../test/config/ -Dtest.ns.dir=c:\CT\dev\am\test\cases\wls/../../../test/cases/wls/target -Dtest.trust.enabled=false -Dtest.trust.internalids.name=SystemIS -Dtest.trust.systemdomain.name=SystemDomain -Dtest.trust.admin.username=admin -Dtest.trust.admin.password=password -Dtest.trust.cmdclient.username=CmdClient -Dtest.trust.cmdclient.password=password -Dtest.trust.naming.factory.initial=weblogic.jndi.WLInitialContextFactory -Dtest.trust.naming.provider.url=t3://ims0.na.rsa.net:7001/ -Dam.test.config.migration.dir.path=../test/config/migration/6.1/ -Dam.test.config.migration.ldap.name=LDAP-STORE -Dims.test.admin.ldap=false -Dims.test.ldap.isAD=false -Dam.test.config.migration.ldap.enabled= -Dims.test.ldap.url=ldap://blah.na.rsa.net:389/ -Dims.test.ldap.username=uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot -Dims.test.ldap.password=adminadmin -Dtest.ids.target.ldap.url=ldap://blash.na.rsa.net:289 -Dtest.ids.target.ldap.username=uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot -Dtest.ids.target.ldap.password=adminadmin -Dhttp.keepAlive=true -Dhttp.maxConnections=5 -Dtest.cmdclient.username=CmdClient_45b0ormy -Dtest.cmdclient.password=Gy0SGr5mSH -Dtest.node1.provider.url= -Dtest.node2.provider.url= -Dtest.replica1.provider.url= -Dtest.replica2.provider.url= -Dtest.replica1.cmdclient.username=CmdClient -Dtest.replica1.cmdclient.password=password -Dtest.replica2.cmdclient.username=CmdClient -Dtest.replica2.cmdclient.password=password -Dtest.method= -Dsun.java.launcher=SUN_STANDARD org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner testsfile=C:\CT\dev\am\test\cases\wls\junittestcases198292503.properties filtertrace=true haltOnError=false haltOnFailure=false formatter=org.apache.tools.ant.taskdefs.optional.junit.SummaryJUnitResultFormatter showoutput=false formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,C:\CT\dev\am\test\cases\wls\target\test-reports\IGNORETHIS.xml formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter propsfile=C:\CT\dev\am\test\cases\wls\junit533938511.properties
    java.home : C:\opt\rsa\am-326425\appserver\jdk\jre
    j.class.path : C:\CT\dev\am\test\cases\wls\target\test-classes;C:\CT\dev\am\test\cases\wls\target\classes;C:\Documents and Settings\Administrator\.maven\repository\hibernate\jars\hibernate-ejb-persistence-3.2.2.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\weblogic-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\oracle-jdbc\jars\ojdbc14-10.2.0.2.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\framework-common.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\framework-config.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\admin-am.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\radius-core.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\radius-am.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\eap32.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\adjudicator.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\core-api.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\samples.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\common-am.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\amtcgen.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\oa.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\token-transport.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\auth-method-am.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\activity-monitor.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\migration61.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\sms-admin.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\test-command.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\ct-kip.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\cases.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\ims-client.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\ims-server.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\test-command.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\lw-agent.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\liberty.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\systemfields.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\wsapi.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\clu-common.jar;C:\Documents and Settings\Administrator\.maven\repository\altova-xmlspy\jars\xmlspy-schema-2006-sp2.jar;C:\Documents and Settings\Administrator\.maven\repository\caucho\jars\hessian-3.0.19rsa-1.jar;C:\Documents and Settings\Administrator\.maven\repository\httpunit\jars\httpunit-1.6.jar;C:\Documents and Settings\Administrator\.maven\repository\junit\jars\junit-3.8.2.jar;C:\Documents and Settings\Administrator\.maven\repository\jline\jars\jline-0.9.91rsa-1.jar;C:\Documents and Settings\Administrator\.maven\repository\log4j\jars\log4j-1.2.11rsa-2.jar;C:\Documents and Settings\Administrator\.maven\repository\nekohtml\jars\nekohtml-0.7.7.jar;C:\Documents and Settings\Administrator\.maven\repository\jdom\jars\jdom-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-bsafe\jars\jsafe-3.6.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-bsafe\jars\jsafeJCE-3.6.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-bsafe\jars\sslj-4.1.6.3.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-bsafe\jars\rsajsse-4.1.6.3.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-bsafe\jars\certj-2.1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\auth-elements\jars\tcgen-2.0.1-beta.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-beanutils\jars\commons-beanutils-1.7.0.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-collections\jars\commons-collections-3.0.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-httpclient\jars\commons-httpclient-3.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-logging\jars\commons-logging-1.0.4.jar;C:\Documents and Settings\Administrator\.maven\repository\jargs\jars\jargs-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-lang\jars\commons-lang-2.2.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-io\jars\commons-io-1.2.jar;C:\Documents and Settings\Administrator\.maven\repository\axis\jars\axis-1.3.jar;C:\Documents and Settings\Administrator\.maven\repository\jaxrpc\jars\jaxrpc-1.2.jar;C:\Documents and Settings\Administrator\.maven\repository\wsdl4j\jars\wsdl4j-1.5.1.jar;C:\Documents and Settings\Administrator\.maven\repository\commons-discovery\jars\commons-discovery-0.2.jar;C:\Documents and Settings\Administrator\.maven\repository\axis\jars\axis-saaj-1.3.jar;C:\Documents and Settings\Administrator\.maven\repository\springframework\jars\spring-2.0.7.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-aceagent_sdk\jars\authapi-internal-5.0.3.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa-ctkip\jars\ctkip-toolkit-1.2.126.jar;C:\Documents and Settings\Administrator\.maven\repository\ims-soyuz-cd6p1\jars\dataManager.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\am-dataManager.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\aceclntjni.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\sidauthjni.jar;C:\Documents and Settings\Administrator\.maven\repository\easymock\jars\easymock-2.2.jar;C:\Documents and Settings\Administrator\.maven\repository\easymock\jars\easymockclassextension-2.2.jar;C:\Documents and Settings\Administrator\.maven\repository\am-326425\jars\aceclntjni-oo.jar;C:\Documents and Settings\Administrator\.maven\repository\ognl\jars\ognl-2.6.7.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\webservices-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\weblogic-domain-binding-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\weblogic-container-binding-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\diagnostics-binding-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\diagnostics-image-binding-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\wlxbean-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\wlw-langx-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javelinx-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\wlManagementImplSource-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\wlManagementMBean-10.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.antlr.runtime-2.7.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\org.apache.ant.patch-1.6.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.bcel-5.2.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.apache.bcel-5.2.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.commons.collections-3.2.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.commons.lang-2.1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.commons.pool-1.3.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.dom-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.logging-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\org.apache.openjpa-0.9.7.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.xml.security-1.3.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.xml.xmlbeans-2.2.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.logging-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.bea.opensaml-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.xml.staxb.buildtime-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.xml.staxb.runtime-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.annogen-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.kodo-4.1.3.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.kodo.integration-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.kodo.integration.tools-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.process-5.3.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.xml.beaxmlbeans-2.2.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.aspectj.aspectjweaver-5.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.apache.commons.logging-1.1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.springframework.spring-2.0.2.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.springframework.pitchfork-1.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.engine.impl-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.engine.api-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.api-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.impl-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.jdkutils-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.utils-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.providers.utils-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.common.security.providers.env-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.commons.net-1.4.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.el-2.1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxb-2.0.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxws.resolver-2.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxws.rt-2.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxws.saaj.impl-2.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxws.sjsxp-2.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.jaxws.tools-2.0.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.stax.ex-1.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\glassfish.xmlstreambuffer-0.1.117.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.oro-2.0.8.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.activation-1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.annotation-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.interceptor-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.ejb-3.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.jdo-2.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.enterprise.deploy-1.2.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.jms-1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.jsp-2.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.jws-2.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.mail-1.4.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.management.j2ee-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.persistence-1.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.resource-1.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.servlet-2.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.transaction-1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.xml.bind-2.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.xml.soap-1.3.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.xml.stream-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.xml.ws-2.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\javax.xml.rpc-1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache.log4j-1.2.13.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\monfox.dsnmp.agent-4.6.5.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.jsafe-3.5.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.serp-1.12.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.apache-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.beangen-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.beaninfo-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.datasource-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.descriptor-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.repackaged.asm-1.5.2.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.diagnostics.core-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.diagnostics.instrumentor-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.i18n-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.i18n.generator-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.management.core-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.mbean.maker-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.mbean.support-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.messaging.kernel-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.resourcepool-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.rmi.client-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.security.wls-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.saaj-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.stax-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.store-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.store.gxa-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.transaction-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.utils.full-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.utils.classloaders-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.utils.expressions-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.utils.wrapper-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.timers-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.workmanager-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.workarea-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.jatmi-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.weblogic.security-2.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.nodemanager.plugin-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\weblogic\jars\com.bea.core.jmspool-1.0.0.0.jar;C:\Documents and Settings\Administrator\.maven\repository\emma\jars\emma-2.0.5312.jar;C:\Documents and Settings\Administrator\.maven\repository\emma\jars\emma_ant-2.0.5312.jar;C:\Documents and Settings\Administrator\.maven\repository\rsa\jars\maven-rsa-ext-1.1.jar;C:\Documents and Settings\Administrator\.maven\repository\xdoclet\jars\xdoclet-xdoclet-module-1.2.3.jar;C:\Documents and Settings\Administrator\.maven\repository\clover\jars\clover-1.3.13.jar;C:\Documents and Settings\Administrator\.maven\repository\clover\jars\cenquatasks-1.3.14.jar;C:\Documents and Settings\Administrator\.maven\repository\xjavadoc\jars\xjavadoc-1.5-snapshot050611.jar;C:\Documents and Settings\Administrator\.maven\repository\xdoclet\jars\xdoclet-1.2.3.jar;C:\Documents and Settings\Administrator\.maven\repository\hibernate\jars\hibernate-3.2.2.jar;C:\Documents and Settings\Administrator\.maven\repository\hibernate\jars\hibernate-annotations-3.2.1.jar;C:\Documents and Settings\Administrator\.maven\repository\antlr\jars\antlr-2.7.6.jar;C:\Documents and Settings\Administrator\.maven\repository\iscreen\jars\iScreen-1-1-0rsa-1.jar;C:\Documents and Settings\Administrator\.maven\repository\iscreen\jars\iScreen-mvel-1-1-0rsa-1.jar;C:\Documents and Settings\Administrator\.maven\repository\iscreen\jars\mvel-1.1.8-java1.5.0_10.jar;C:\Documents and Settings\Administrator\.maven\repository\asm\jars\asm-1.5.3.jar;C:\Documents and Settings\Administrator\.maven\repository\cglib\jars\cglib-2.1_3.jar;C:\Documents and Settings\Administrator\.maven\repository\odmg\jars\odmg-3.0.jar;C:\Documents and Settings\Administrator\.maven\repository\dom4j\jars\dom4j-1.6.1.jar;C:\Documents and Settings\Administrator\.maven\repository\xerces\jars\xercesImpl-2.7.1.jar;C:\Documents and Settings\Administrator\.maven\repository\xml-apis\jars\xml-apis-1.3.02.jar;C:\Documents and Settings\Administrator\.maven\repository\hsqldb\jars\hsqldb-1.7.2.4.jar;C:\Documents and Settings\Administrator\.maven\repository\opensymphony-oscache\jars\oscache-2.3.2rsa-1.jar;C:\Documents and Settings\Administrator\.maven\repository\j2ee\jars\j2ee-1.5.jar;C:\Documents and Settings\Administrator\.maven\repository\xml-apis\jars\xml-apis-1.3.03.jar;C:\Documents and Settings\Administrator\.maven\repository\xerces\jars\xercesImpl-2.8.0.jar;C:\Documents and Settings\Administrator\.maven\repository\xml-resolver\jars\xml-resolver-1.1.jar;C:\CT\library\apache-maven\1.1\lib\ant-launcher-1.6.5.jar;C:\CT\library\apache-maven\1.1\lib\ant-1.6.5.jar;C:\CT\library\apache-maven\1.1\lib\ant-junit-1.6.5.jar
    j.lib.path : C:\opt\rsa\am-326425\appserver\jdk\jre\bin;.;C:\WINDOWS\system32;C:\WINDOWS;c:\opt\rsa\am-326425\appserver\jdk\jre\bin;c:\opt\instantclient_10_2;C:\cygwin\bin;c:\CT\library\apache-maven\1.1\bin;c:\CT\library\activetcl\8.4.11\linux-x86\bin;C:\cygwin\bin;C:\cygwin\bin;C:\cygwin\usr\local\bin\;C:\cygwin\usr\sbin;c:\opt\instantclient_10_2;C:\cygwin\bin;c:\CT\library\apache-maven\1.1\bin;c:\CT\library\activetcl\8.4.11\linux-x86\bin;C:\cygwin\bin;C:\cygwin\bin;C:\cygwin\usr\local\bin\;C:\cygwin\usr\sbin;c:\opt\rsa\am-325621\db\bin;c:\opt\rsa\am-325471\db\bin;c:\opt\rsa\am-325281\db\bin;c:\opt\rsa\am-325250\db\bin;c:\opt\rsa\am-325240\db\bin;c:\opt\rsa\am-324877\db\bin;c:\opt\rsa\am-324751\db\bin;c:\opt\rsa\am-324743\db\bin;c:\opt\rsa\am-324632\db\bin;c:\opt\rsa\am-324516\db\bin;c:\opt\rsa\am-324412\db\bin;c:\opt\rsa\am-324131\db\bin;c:\opt\rsa\am-das-323485\db\bin;c:\opt\rsa\am-das-323453\db\bin;c:\opt\rsa\am-das-323386\db\bin;c:\opt\rsa\am-das-323315\db\bin;c:\opt\rsa\am-das-323052\db\bin;c:\opt\rsa\am-das-322733\db\bin;c:\opt\rsa\am-das-322676\db\bin;c:\opt\rsa\am-das-322622\db\bin;c:\opt\rsa\am-das-322471\db\bin;c:\opt\rsa\am-das-322445\db\bin;c:\opt\rsa\am-das-322264\db\bin;c:\opt\rsa\am-das-321939\db\bin;c:\opt\rsa\am-das-321144\db\bin;c:\opt\rsa\am-321052\db\bin;c:\opt\rsa\am-321006\db\bin;c:\opt\rsa\am-320711\db\bin;c:\opt\rsa\am-320613\db\bin;c:\opt\rsa\am-320550\db\bin;c:\opt\rsa\am-320535\db\bin;c:\opt\rsa\am-320466\db\bin;c:\WINDOWS\system32;c:\WINDOWS;c:\WINDOWS\System32\Wbem;C:\cygwin\bin
    JAVA_HOME : c:\opt\rsa\am-326425\appserver\jdk

Maybe you are looking for