General Stack Trace and Exception Question

I hope this is the correct forum to post to ... well here goes...
The Big Picture:
I�m using the org.xml.sax package (along with their subsequent �helper� and �ext� packages) to parse huge XML files.
Some references:
DefaultHandler -> org.xml.sax.DefaultHandler (Default base class for SAX2 event handlers)
CustomHandler -> mypackage.CustomHandler (which extends the above DefaultHandler)
SAXException -> org.xml.sax.SAXException (thrown by many methods defined in the DefaultHandler)
The story:
I�ve made a class which extends the DefaultHandler class; (CustomHandler). The DefaultHandler class has a bunch of methods declared in it that I overwrite, which all claim to throw these SAXExceptions. My overwritten methods defined in CustomHandler had also been written to throw those SAXExceptions.
My Overwritten Methods: (you�ll see why the �throw� part is commented a little later)
//Methods in SAX DocumentHandler
    public void startDocument(){//throws SAXException{
    public void endDocument(){//throws SAXException{
    public void startElement(String uri, String localName, String qName, Attributes attrs){//throws SAXException{
    public void endElement(String uri, String localName, String qName){//throws SAXException{
    public void characters(char buf[], int offset, int len){//throws SAXException{
The Code Executes like This:
try{
     File xmlFile = new File(getFileName());
     CustomHandler myHandler = new CustomHandler();
     saxParser.parse(xmlFile, myHandler); //<- Important Line
     myHandler.reportSomeXmlInfoAboutTheFile(); //<- Ignore this command
}catch(ParserConfigurationException pce){
            pce.printStackTrace();       
}catch(SAXException sax){
            sax.printStackTrace();
}catch(IOException ioe){
            ioe.printStackTrace();
}Sample Stack Trace: (The ArrayIndexOutOfBoundsException was set up to be thrown for the sake of discussion)
java.lang.ArrayIndexOutOfBoundsException: 5
at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:691)
at org.apache.crimson.parser.Parser2.parse(Parser2.java:337)
at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:448)
at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
at javax.xml.parsers.SAXParser.parse(SAXParser.java:281)
at saxparserexercise.DriverClass.exercise(DriverClass.java:58) //<- Last (un Native to ME � not java) execution stack point
at saxparserexercise.Main.<init>(Main.java:38)
at saxparserexercise.Main.main(Main.java:59)
The Problem:
Its about my stack traces� they all map through the above noted �Important Line� instead of through my overwritten methods in CustomHandler (where I cause the ArrayIndexOutOfBoundsException) So, therefore I thought I�d try commenting out those �throws SAXException� parts in the method declarations of my CustomHandler class� Diddn�t change a thing. Thus my question is�
The Question:
What changes or modifications can I make such that the Stack Trace I receive will map to exactly where the problem occurs in my code� does that make sense?

I suspect it may be because your version of Catalina was compiled without debugger support. From what I remember this strips line numbers from generated class files.
You'll need to download either a debug-enabled version of Catalina, or pull down the source and rebuild the system.
Unless I'm barking up the wrong tree.
J

Similar Messages

  • Oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

  • WLST, how do I suppress unwanted stack traces and make WLST less verbose?

    Hi everyone,
    I've just started out with WLST but have ended up somewhat confused. My script works as intended but is very verbose.
    Suppose I want to log in:
    try:
         connect(user, "wrong_password", url)
    except WLSTException, err:
         print str(err)
         print "Run with option \"-h\" for help"The password is wrong so I get something like this printed out by me:
    {noformat}
    Error occured while performing connect : User: wm714, failed to be authenticated. Use dumpStack() to view the full stacktrace
    {noformat}
    But I also get a totally unwanted Java stack trace (before my message):
    {noformat}This Exception occurred at Fri May 21 15:49:01 CEST 2010.
    javax.naming.AuthenticationException [Root exception is java.lang.SecurityException: User: wm714, failed to be authenticated.]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:42)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:783)
    at weblogic.jndi.WLInitialContextFactoryDelegate.pushSubject(WLInitialContextFactoryDelegate.java:677)
    {noformat}
    I don't want to confuse the user with all that! I found this:
    http://objectmix.com/weblogic/529822-wlst-exception-handling-unwanted-stack-trace.html
    Which discusses WLS.commandExceptionHandler.setSilent(1) I'm running on WLS 10.3.0.0 and can execute that statement but it has no effect. I didn't even know about the WLS-object and I can find no documentation on commandExceptionHandler.
    On the matter of verbosity, is there any way to get rid of stuff like:
    Location changed to domainRuntime tree. This is a read-only tree with DomainMBean as the root.
    For more help, use help(domainRuntime)I avoid using the "interactive" commands like cd and use stuff like getMBean("domainRuntime:/ServerRuntimes/" + appServer.getName()
    + "/JMSRuntime/" + appServer.getName() + ".jms/JMSServers") but I still get the clutter printed out.
    Thanks!

    Workaround:
    wlstOut = tempfile.mktemp(suffix="_wlst.txt")
    redirect(wlstOut, "false")
    ... do useful stuff
    stopRedirect()
    os.remove(wlstOut)I would have preffered to turn off the messages (yes I could try /dev/null) but this will do. A funny thing is that the stack trace I wrote about doesn't appear in the log file. Somehow "redirect" must have a nice side effect.
    /Roger

  • JDialog subclass for optionally showing stack trace from exceptions?

    hi,
    does anyone know of some code/jar that includes a widgit that displays an error message, and has a button for toggling an exception stack trace on or off?
    this would be like the segmentation fault dialog on windows except instead of the grungy register contents you'd get the grungy stack trace..
    just trying to avoid having write one myself.. :)
    thanks,
    asjf

    this sounds like one:
    http://www.yworks.com/products/yDoc/showcase/batik-1.5/org/apache/batik/util/gui/JErrorPane.html

  • CORBA properties, turning off stack trace on exception

    Is there a property when using the Sun ORB that will turn off the stack trace when a system exception occurs. I am already handling the system exceptions, so I really don't need the call stack from a 201 error.
    Thanks!
    evic

    Thank you for the clarification, Rob. I'll file an enhancement request
    right away.
    Christophe
    Rob Woollen wrote:
    WLS will log all transaction rollbacks. You'll have to file an enhancement
    request with [email protected] if you want to supress that behavior.
    -- Rob
    Christophe Warland wrote:
    A part of our architecture is based on rollbacks in an entity bean
    (RequiresNew) that we control from a stateless sessionbean
    (NotSupported). Everything works great, including the recovery mechanism
    inside the stateless sessionbean. We are very happy with that.
    However, WebLogic prints out an Exception stack trace everytime a
    rollback occurs, eventough our code in the SLSB is managing rollback and
    recovery by catching the RemoteException thrown by the container.
    So, how do I turn off that StackTrace without introducing transaction
    semantics inside my SLSB?
    Thanks,
    Christophe

  • Handling long stack traces in exceptions

    If something goes wrong in my program... I get about 150 line stack trace caused by overlayed modal dialogs and swings shameless use of methods. My question is that how will I ever fiqure out what went wrong at the few first lines?

    hi,
    if you're working under Linux, just press SHIFT and PAGE UP. If you're working under Windows you'll have to log the console output as follows:
    1. One of the first operations in your main method should be this:
    System.setErr(System.out);2. The command line option you use to start the virtual machine should look like this:
    java [options,...] MyClass > log.txt
    This will create the file log.txt where everything sent to the standart output will be saved.
    PS: You may get some problems when running this more than once during one windows session because Windows sometimes doesn't close the file. Open files can't be overwritten and so you'll have to restart whenever this occurs.
    best regards, Michael

  • Get the entire stack trace of exception ?

    Hi!
    If the JVM prints this :
    Caused by: java.sql.BatchUpdateException: ORA-00001: unique constraint (FOO.BAR) violated
    at oracle.jdbc.driver.DatabaseError.throwBatchUpdateException(DatabaseError.java:367)
    at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:9040)
    at org.jboss.resource.adapter.jdbc.WrappedStatement.executeBatch(WrappedStatement.java:517)
    at org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:58)
    at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:242)
    ... 73 more
    then how do I get the missing 73 lines ?

    Why would you want to? they are shorthand indicating that they were thrown from the same method: From the API Docs
    Note the presence of lines containing the characters "...".
    These lines indicate that the remainder of the stack trace for this exception matches the indicated number of frames from the
    bottom of the stack trace of the exception that was caused by this exception (the "enclosing" exception).
    This shorthand can greatly reduce the length of the output in the common case where a wrapped exception is thrown from same method
    as the "causative exception" is caught. ~Tim
    Message was edited by:
    SomeoneElse
    Message was edited by:
    SomeoneElse

  • Stack traces and Errors - Portal

    Hello,
    I would like to know what information does the stack trace contain? Is this information, sensitive, can it lead to security threat?
    Errors presented on the portal screen, e.g. 500 Internal Server Error can that lead to security threat?
    If yes, What kind of error message can be presented and how can that be configured in portal?
    Thank you in advance.
    Best regards,
    Dharmi

    Hi,
    it's not a problem to change default error pages (see this [wiki|http://wiki.sdn.sap.com/wiki/display/EP/CustomizingErrorMessagesinPortal]). So you can minimize the risk of leaking sensitive information pretty easily. The users will get less scared  of error messages as well
    Cheers

  • Exception Handling and Stack Traces in JDK 1.1.8

    Hi,
    I'm presently maintain and upgrading a Web-Objects 4.5 application that uses the JDK 1.18. There are two constantly recurring exceptions that keep getting thrown, exceptions for which there are no stack traces. These are exceptions thrown by methods that do not presently have throws or try/catch code associated with them.
    My questions are:
    1) Why are there no stack traces available? Is it because the exception handling code is not there, or could there be another reason?
    2) Will the inclusion of exception-handling code ALWAYS lead to stack traces and messages becoming available (if I put a e.printStackTrace() in my catch(Excetion e) clause), or will there be situations where it will not be available?
    3) What is the best way for me to handle these types of exceptions in order to gain the most information possible about their root causes and possible solutions?
    Thanks for your help.

    I have never seen a case where there was no stack trace.
    I have seen cases where the stack trace does not provide line numbers. I have also seen cases where it is less than useful as it terminates on a native call (which is to be expected.)
    However, if you don't call printStackTrace() then you don't get it. And if you catch an exception an throw a different one you also loose information. So you might want to check those possibilities.

  • Java Exception Stack Trace

    Whenever an exception object is created, its constructor is called. This constructor, calls super class constructor to fill in the exception stack trace and then the constructor uses printStackTrace() method to print the stack trace.
    This should print the stack trace automatically on the std out.
    However, in our exception handling code, unless we specifically use printStackTrace() it does not print stack trace.
    What is the reason for this?

    Hi,
    I am aware that not all Exceptions print stack trace to std out.
    I am specifically refering to SQLException. The constructor source code is
    public SQLException(String reason) {
         super(reason);
         this.SQLState = null;
         this.vendorCode = 0;
         if (!(this instanceof SQLWarning)) {
         if (DriverManager.getLogWriter() != null) {
              printStackTrace(DriverManager.getLogWriter());
    }

  • How to get stack trace of an exception

    Hi,
    I want to get whole stack trace and show it in a new Frame instead of showing on command line.
    when I say,
    e.getMessage();
    it gives just first line, not rest of the part.
    Can anybody help me with that?
    Thanks in advance.

    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw);
    e.printStackTrace(pw);
    String stackTrace = sw.toString();

  • Server Side stack trace

    Hi:
    I am using weblogic 704 on solaris box. I have a clustered (2) environment. I
    am getting the following exception very frequently. My question is how do we turn
    off the server side stack trace?
    Start server side stack trace:
    java.rmi.MarshalException: error marshalling return; nested exception is:
    java.io.NotSerializableException:
    .... etc
    End server side stack trace
    ; nested exception is:
    ... etc.
    This server side stack trace happens only for this exception. I have some other
    NullPointer exception etc. But its not coming for those exception.
    Any help?
    THanks

    I think I found it myself. Uncheck the "Instrument Stack Traces" check box under
    debugging. I did this and monitoring the logs.
    Let me know if this is incorrect.
    Thanks

  • Make java run without printing the stack trace

    I have a GUI program which appears to work for all test cases. Basically what it does is prints out data from a linked list allowing the user to traverse the list with Next and Previous buttons which call a list iterator next/previous method call, and then display the current item in the list. The original problem arose when dealing with alternating calls to next and previous, which since list iterator does not have a current pointer, returned the same element ad infinitum. I modified the method to check for alternating button presses, and it seems to work, except for cases where there are two elements in the list. In this case it still works, printing the correct element, but it also prints to the command line an Exception in Thread AWT...NoSuchElementException. My question is, is there any way to tell the program to not print out this stack trace and just keep running quietly through the Exception?

    I'm not an expert at error handling, but wouldn't it work to put the code that throws the exception in a try/catch block?
    like
    try {
        //code that causes exception
    } catch (NoSuchElementException e) {
        //do nothing
    }Might not work, but it's worth a try...

  • How to get Java source in applet stack trace to debug Java security manager

    How can I get line numbers for Java source in stack traces for my applet? I'm having a problem with my code-signing certificate. On one of my applets, I consistently get a NullPointerException inside the security dialog code in the JDK. As a result, either the "trust this applet" dialog never appears, or even though it appears, it defaults to untrusted because of the exception, so I can't access any local files (and that's a bit of a problem for an applet whose sole purpose is to upload files to our server). I unzipped src.zip in my JDK directory and set the debug flag for my Ant <javac> task as well as set debuglevel to "lines." Anything else? Here's the trace that I'm getting so far. See that after the NullPointerException it assumes that the user has denied permission. If I could read this Java source maybe I could figure out why it hates my code-signing certificate (jarsigner, BTW, never complains when I verify my jar).
    security: Blacklist file not found or revocation check is disabled
    security: Accessing keys and certificate in Mozilla user profile: null
    security: Loading Root CA certificates from D:\Program Files (x86)\Java\jre6\lib\security\cacerts
    security: Loaded Root CA certificates from D:\Program Files (x86)\Java\jre6\lib\security\cacerts
    security: Loading Deployment certificates from C:\Users\Rich\AppData\LocalLow\Sun\Java\Deployment\security\trusted.certs
    security: Loaded Deployment certificates from C:\Users\Rich\AppData\LocalLow\Sun\Java\Deployment\security\trusted.certs
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA has been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: Start checking trusted extension for this certificate
    security: Start comparing to jurisdiction list with this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    java.lang.NullPointerException
         at com.sun.deploy.ui.UIFactory.showSecurityDialog(Unknown Source)
         at com.sun.deploy.security.TrustDeciderDialog.showDialog(Unknown Source)
         at com.sun.deploy.security.X509Util.showSecurityDialog(Unknown Source)
         at com.sun.deploy.security.TrustDecider.isAllPermissionGranted(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.isTrustedByTrustDecider(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.getTrustedCodeSources(Unknown Source)
         at com.sun.deploy.security.CPCallbackHandler$ParentCallback.strategy(Unknown Source)
         at com.sun.deploy.security.CPCallbackHandler$ParentCallback.openClassPathElement(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.getJarFile(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.access$700(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.ensureOpen(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$JarLoader.<init>(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath$3.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getLoader(Unknown Source)
         at com.sun.deploy.security.DeployURLClassPath.getResource(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    security: User has denied the priviledges to the code
    security: Adding certificate in Deployment denied certificate store
    security: Added certificate in Deployment denied certificate store
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA has been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: Start checking trusted extension for this certificate
    security: Start comparing to jurisdiction list with this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment denied certificate store

    Rats, now that I look at the stack trace and compare to what's in the JDK srce.zip, it appears that most of this code is not part of the JDK source. I don't see any com/sun/deploy, etc.

  • Empty Weblogic Server 8.1 SP1 Repeating Stack Trace

    Thanks in advance for any help and attention!
              An instance of Weblogic 8.1 SP1 on our UAT environment keeps on spitting out stack traces even though the only user accessing WL is via the admin console. There are no applications deployed on this platform.
              The stack trace is also intermittent and can't be attributed to a specific action. This is occuring on our UAT environment and on a WL install which is a copy of our production environment. But we don't get these stack traces on production??
              Here are some details of the server hosting WL 8.1 SP1 in our UAT environment.
              Operating System/Hardware:
              Solaris VM (build Solaris_JDK_1.2.2_10, native threads, sunwjit)
              Operating System SunOS abcu012-ukzr 5.8 Generic_108528-23
              sun4u sparc SUNW,Sun-Fire-V210
              JVM Used by WebLogic:
              Weblogic JVM Java(TM) 2 Runtime Environment,
              Standard Edition (build 1.4.2-b28)
              Java HotSpot(TM) Client VM (build 1.4.2-b28, mixed mode)
              I have listed the full stack trace and config.xml below...
              <?xml version="1.0" encoding="UTF-8"?>
              <Domain ConfigurationVersion="8.1.0.0" Name="abc">
              <Server AcceptBacklog="100"
              CustomIdentityKeyStoreFileName="/apps/bea/user_projects/domains/abc/certificates/pwls.jks"
              CustomIdentityKeyStorePassPhrase="XXXXX"
              CustomIdentityKeyStoreType="JKS"
              CustomTrustKeyStoreFileName="/apps/bea/user_projects/domains/abc/certificates/cacert.jks"
              CustomTrustKeyStorePassPhrase="XXXXX"
              CustomTrustKeyStoreType="JKS" GracefulShutdownTimeout="5"
              IgnoreSessionsDuringShutdown="true"
              KeyStores="CustomIdentityAndCustomTrust" ListenAddress=""
              ListenPort="7001" Name="abcu012-ukzr" NativeIOEnabled="true"
              ReliableDeliveryPolicy="RMDefaultPolicy" ServerVersion="8.1.1.0"
              StdoutEnabled="false" TunnelingEnabled="true" WeblogicPluginEnabled="true">
              <SSL Enabled="true" HostnameVerificationIgnored="false"
              IdentityAndTrustLocations="KeyStores" ListenPort="7002"
              Name="abcu012-ukzr" ServerPrivateKeyAlias="wls" ServerPrivateKeyPassPhrase="XXXXX"/>
              <Log FileName="/apps/bea/logs/abcu012-ukzr/abc/server.log"
              Name="abcu012-ukzr" RotationType="byTime"/>
              <WebServer KeepAliveSecs="120"
              LogFileName="/apps/bea/logs/abcu012-ukzr/abc/access.log" Name="abcu012-ukzr"/>
              <ExecuteQueue Name="weblogic.kernel.Default" ThreadCount="30"/>
              </Server>
              <JMSFileStore Directory="rmfilestore" Name="FileStore"/>
              <WSReliableDeliveryPolicy DefaultRetryCount="10"
              DefaultTimeToLive="60000" Name="RMDefaultPolicy" Store="FileStore"/>
              <Security Name="abc" PasswordPolicy="wl_default_password_policy"
              Realm="wl_default_realm" RealmSetup="true">
              <weblogic.security.providers.authentication.DefaultAuthenticator
              Name="Security:Name=myrealmDefaultAuthenticator" Realm="Security:Name=myrealm"/>
              <weblogic.security.providers.authentication.DefaultIdentityAsserter
              ActiveTypes="AuthenticatedUser"
              Name="Security:Name=myrealmDefaultIdentityAsserter" Realm="Security:Name=myrealm"/>
              <weblogic.security.providers.authorization.DefaultRoleMapper
              Name="Security:Name=myrealmDefaultRoleMapper" Realm="Security:Name=myrealm"/>
              <weblogic.security.providers.authorization.DefaultAuthorizer
              Name="Security:Name=myrealmDefaultAuthorizer" Realm="Security:Name=myrealm"/>
              <weblogic.security.providers.authorization.DefaultAdjudicator
              Name="Security:Name=myrealmDefaultAdjudicator" Realm="Security:Name=myrealm"/>
              <weblogic.security.providers.credentials.DefaultCredentialMapper
              Name="Security:Name=myrealmDefaultCredentialMapper" Realm="Security:Name=myrealm"/>
              <weblogic.management.security.authentication.UserLockoutManager
              Name="Security:Name=myrealmUserLockoutManager" Realm="Security:Name=myrealm"/>
              <weblogic.management.security.Realm
              Adjudicator="Security:Name=myrealmDefaultAdjudicator"
              AuthenticationProviders="Security:Name=myrealmDefaultAuthenticator|Security:Name=myrealmDefaultIdentityAsserter"
              Authorizers="Security:Name=myrealmDefaultAuthorizer"
              CredentialMappers="Security:Name=myrealmDefaultCredentialMapper"
              DefaultRealm="true" DisplayName="myrealm"
              FullyDelegateAuthorization="true"
              Name="Security:Name=myrealm"
              RoleMappers="Security:Name=myrealmDefaultRoleMapper"
              UserLockoutManager="Security:Name=myrealmUserLockoutManager"/>
              </Security>
              <EmbeddedLDAP Credential="{3DES}XPMACNvHFn4=" Name="abc"/>
              <SecurityConfiguration
              Credential="XXXXX"
              Name="abc" RealmBootStrapVersion="1"/>
              <Realm FileRealm="wl_default_file_realm" Name="wl_default_realm"/>
              <FileRealm Name="wl_default_file_realm"/>
              <PasswordPolicy Name="wl_default_password_policy"/>
              <JMSServer Name="WSStoreForwardInternalJMSServerabcu012-ukzr"
              Store="FileStore" Targets="abcu012-ukzr">
              <JMSQueue CreationTime="1073401554039"
              JNDIName="jms.internal.queue.WSStoreForwardQueue"
              JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSStoreForwardQueueabcu012-ukzr"/>
              <JMSQueue CreationTime="1073401554605"
              JNDIName="jms.internal.queue.WSDupsEliminationHistoryQueue"
              JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSDupsEliminationHistoryQueueabcu012-ukzr"/>
              </JMSServer>
              <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
              InitialCapacity="5" MaxCapacity="25" Name="RolhPool"
              Password="{3DES}bz9CieW2/7g=" Properties="user=rolhdb"
              Targets="abcu012-ukzr" TestConnectionsOnCreate="false"
              TestConnectionsOnRelease="false"
              TestConnectionsOnReserve="false"
              TestTableName="SQL SELECT 1 FROM DUAL" URL="jdbc:oracle:thin:@XXXXX"/>
              <JDBCTxDataSource JNDIName="jdbc/rolh/ds" Name="RolhDS"
              PoolName="RolhPool" Targets="abcu012-ukzr"/>
              <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
              InitialCapacity="5" MaxCapacity="25" Name="qualificationsPool"
              Password="{3DES}wIVVxk0Zjk8=" Properties="user=qualdb"
              Targets="abcu012-ukzr" TestConnectionsOnCreate="false"
              TestConnectionsOnRelease="false"
              TestConnectionsOnReserve="false"
              TestTableName="SQL SELECT 1 FROM DUAL" URL="jdbc:oracle:thin:@XXXXX"/>
              <JDBCTxDataSource JNDIName="jdbc/qual/ds" Name="QualDS"
              PoolName="qualificationsPool" Targets="abcu012-ukzr"/>
              <JMSConnectionFactory JNDIName="abc.jms.connectionFactory"
              MessagesMaximum="-1" Name="abcJMSConnectionFactory" Targets="abcu012-ukzr"/>
              <JMSFileStore
              Directory="/apps/bea/user_projects/domains/abc/abcJMSFileStore" Name="abcJMSFileStore"/>
              <JMSServer Name="abcJMSServer" Targets="abcu012-ukzr">
              <JMSQueue CreationTime="1073406122951"
              JNDIName="abc.jms.queue.qualifications"
              JNDINameReplicated="false" Name="Qualifications"/>
              <JMSQueue CreationTime="1075485561981"
              JNDIName="abc.jms.queue.printService"
              JNDINameReplicated="false" Name="PrintQueue"/>
              <JMSQueue CreationTime="1075994883296"
              JNDIName="abc.jms.queue.applicationRejection"
              JNDINameReplicated="false" Name="ApplicationRejection"/>
              <JMSQueue CreationTime="1075994920032"
              JNDIName="abc.jms.queue.correspondence"
              JNDINameReplicated="false" Name="Correspondence"/>
              <JMSQueue CreationTime="1075994977728"
              JNDIName="abc.jms.queue.crbResponse"
              JNDINameReplicated="false" Name="CRBResponse"/>
              <JMSQueue CreationTime="1075995041107"
              JNDIName="abc.jms.queue.licenceReturn"
              JNDINameReplicated="false" Name="LicenceReturn"/>
              <JMSQueue CreationTime="1075995091920"
              JNDIName="abc.jms.queue.paymentApplications"
              JNDINameReplicated="false" Name="PaymentApplications"/>
              <JMSQueue CreationTime="1075995123366"
              JNDIName="abc.jms.queue.CardSecured"
              JNDINameReplicated="false" Name="CardSecured"/>
              <JMSQueue CreationTime="1075995158136"
              JNDIName="abc.jms.queue.CardsProduced"
              JNDINameReplicated="false" Name="CardsProduced"/>
              <JMSQueue CreationTime="1075995199128"
              JNDIName="abc.jms.queue.CardsDestroyed"
              JNDINameReplicated="false" Name="CardsDestroyed"/>
              <JMSQueue CreationTime="1112361191613"
              JNDIName="abc.jms.queue.basAccepted"
              JNDINameReplicated="false" Name="BASAccepted"/>
              <JMSQueue CreationTime="1121364464738"
              JNDIName="abc.jms.queue.faultLogging" Name="FaultLogging"/>
              </JMSServer>
              <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
              InitialCapacity="5" MaxCapacity="25" Name="PrintPool"
              Password="XXXXX" Properties="user=intdb"
              Targets="abcu012-ukzr" TestConnectionsOnCreate="false"
              TestConnectionsOnRelease="false"
              TestConnectionsOnReserve="false"
              TestTableName="SQL SELECT 1 FROM DUAL" URL="jdbc:oracle:thin:@XXXXX"/>
              <JDBCTxDataSource JNDIName="jdbc/print/ds" Name="PrintDS"
              PoolName="PrintPool" Targets="abcu012-ukzr"/>
              <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
              InitialCapacity="5" MaxCapacity="25" Name="intPool"
              Password="XXXXX" Properties="user=intdb"
              Targets="abcu012-ukzr" TestConnectionsOnCreate="false"
              TestConnectionsOnRelease="false"
              TestConnectionsOnReserve="false"
              TestTableName="SQL SELECT 1 FROM DUAL" URL="jdbc:oracle:thin:@XXXXXe"/>
              <Log FileName="/apps/bea/logs/abcu012-ukzr/abc/domain.log" Name="abc"/>
              <JDBCTxDataSource JNDIName="jdbc/dhc/ds" Name="dhcDS"
              PoolName="intPool" Targets="abcu012-ukzr"/>
              <JDBCTxDataSource JNDIName="jdbc/fault/ds" Name="FaultDS"
              PoolName="intPool" Targets="abcu012-ukzr"/>
              <JDBCTxDataSource JNDIName="jdbc/int/ds" Name="IntDS"
              PoolName="intPool" Targets="abcu012-ukzr"/>
              </Domain>
              CLASSPATH=::/apps/java/j2sdk_nb/j2sdk1.4.2/jre/lib/rt.jar:/server/lib/webservices.jar:/apps/dm/dmapp/dfc/dfc/conf/config:/app
              s/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-pki-api.jar:/apps/bea/user_projects/domains/XXXXX
              /XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-openpgp-provider.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/X
              XXXX/XXXXX/cryptix-message-api.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-jce-provid
              er.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-jce-api.jar:/apps/bea/user_projects/do
              mains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/X
              XXXX/certpath-api-compat.jar
              PATH=/apps/dm/dmapp/product/5.2/bin:/apps/dm/dmapp/dba:/apps/oracle/product/9.2/bin:/export/home/kicha/XXXXXTools:/usr/bin:/u
              sr/ucb:/etc:
              * To start WebLogic Server, use a username and *
              * password assigned to an admin-level user. For *
              * server administration, use the WebLogic Server *
              * console at http://[hostname]:[port]/console *
              LD_LIBRARY_PATH=/apps/java/j2sdk_nb/j2sdk1.4.2/lib:/apps/dm/dmapp/product/5.2/bin:/apps/dm/dmapp/fulltext/verity271/_ssol26/b
              in::oracle:/usr/lib:/apps/bea/weblogic81/server/lib/solaris:/apps/bea/weblogic81/server/lib/solaris/oci920_8
              * Warning: This script is DEPRECATED. Please *
              * don't start new Domains with this script. Use *
              * scripts generated by Domain Configuration *
              * Wizard instead. *
              CLASSPATH=/apps/bea/jdk141_03/lib/tools.jar:/apps/bea/weblogic81/server:/apps/bea/weblogic81/server/lib/weblogic_sp.jar:/apps
              /bea/weblogic81/server/lib/weblogic.jar:::/apps/java/j2sdk_nb/j2sdk1.4.2/jre/lib/rt.jar:/server/lib/webservices.jar:/apps/dm/
              dmapp/dfc/dfc/conf/config:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-pki-api.jar:/apps/b
              ea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-openpgp-provider.jar:/apps/bea/user_projects/domains
              /XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-message-api.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/
              XXXXX/XXXXX/cryptix-jce-provider.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-jce-api.
              jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix.jar:/apps/bea/user_projects/domains/XXXXX
              /XXXXXu014-ukcr/upload/XXXXX/XXXXX/certpath-api-compat.jar
              PATH=.:/apps/bea/weblogic81/server/bin:/apps/bea/jdk141_03/jre/bin:/apps/bea/jdk141_03/bin:/apps/bea/weblogic81/server/lib/so
              laris:/apps/dm/dmapp/product/5.2/bin:/apps/dm/dmapp/dba:/apps/oracle/product/9.2/bin:/export/home/kicha/XXXXXTools:/usr/bin:/
              usr/ucb:/etc:
              * To start WebLogic Server, use a username and *
              * password assigned to an admin-level user. For *
              * server administration, use the WebLogic Server *
              * console at http://<hostname>:<port>/console *
              + /apps/bea/jdk141_03/bin/java -server -Xms1280m -Xmx1280m -XX:NewSize=384m -XX:MaxNewSize=384m -XX:SurvivorRatio=15
              -Djava.library.path=/apps/bea/weblogic81/server/lib/solaris:/apps/dm/dmapp/dfc/dfc
              -DXXXXX.war=/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/XXXXX.war -classpath
              /apps/bea/jdk141_03/lib/tools.jar:/apps/bea/weblogic81/server:/apps/bea/weblogic81/server/lib/weblogic_sp.jar:/apps/bea/weblo
              gic81/server/lib/weblogic.jar:::/apps/java/j2sdk_nb/j2sdk1.4.2/jre/lib/rt.jar:/server/lib/webservices.jar:/apps/dm/dmapp/dfc/
              dfc/conf/config:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-pki-api.jar:/apps/bea/user_pr
              ojects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-openpgp-provider.jar:/apps/bea/user_projects/domains/XXXXX/XXX
              XXu014-ukcr/upload/sia/XXXXX/cryptix-message-api.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/
              cryptix-jce-provider.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix-jce-api.jar:/apps/be
              a/user_projects/domains/XXXXX/XXXXXu014-ukcr/upload/XXXXX/XXXXX/cryptix.jar:/apps/bea/user_projects/domains/XXXXX/XXXXXu014-u
              kcr/upload/XXXXX/XXXXX/certpath-api-compat.jar -Dweblogic.Name=XXXXXu012-ukzr -Dweblogic.management.username=kicha
              -Dweblogic.management.password=kicha_111 -Dweblogic.ProductionModeEnabled=
              -Djava.security.policy=/apps/bea/weblogic81/server/lib/weblogic.policy weblogic.Server
              <Jan 23, 2006 3:39:13 PM GMT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Server VM
              Version 1.4.1_03-b02 from Sun Microsystems Inc.>
              <Jan 23, 2006 3:39:14 PM GMT> <Info> <Configuration Management> <BEA-150016> <This server is being started as the
              administration server.>
              <Jan 23, 2006 3:39:14 PM GMT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP1 Fri Jun 20 23:06:40 PDT
              2003 271009
              WebLogic XMLX Module 8.1 SP1 Fri Jun 20 23:06:40 PDT 2003 271009>
              <Jan 23, 2006 3:39:15 PM GMT> <Notice> <Management> <BEA-140005> <Loading domain configuration from configuration repository
              at /apps/bea/user_projects/domains/XXXXX/./config.xml.>
              Full thread dump Java HotSpot(TM) Server VM (1.4.1_03-b02 mixed mode):
              "ExecuteThread: '6' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x3111e8 nid=0x4b in Object.wait()
              [9ba81000..9ba81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e8a28> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e8a28> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '5' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0xf87420 nid=0x4a in Object.wait()
              [9bb81000..9bb81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e8250> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e8250> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '4' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x1141418 nid=0x49 in Object.wait()
              [9bc81000..9bc81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e7a48> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e7a48> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '3' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0xe5b600 nid=0x48 in Object.wait()
              [9bd81000..9bd81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e7270> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e7270> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '2' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0xaa9998 nid=0x47 in Object.wait()
              [9be81000..9be81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e6a98> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e6a98> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '1' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x7c65f8 nid=0x46 in Object.wait()
              [9bf81000..9bf81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e62c0> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e62c0> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '0' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x3fccf8 nid=0x45 in Object.wait()
              [9ca81000..9ca81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <aa5e5ac8> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <aa5e5ac8> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" daemon prio=5 tid=0xf7efd8 nid=0x44 waiting for monitor entry
              [9c081000..9c081994]
                   at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:93)
                   - waiting to lock <bede1b00> (a java.lang.String)
                   at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" daemon prio=5 tid=0x12737d0 nid=0x43 waiting for monitor entry
              [9c181000..9c181994]
                   at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:93)
                   - waiting to lock <bede1b00> (a java.lang.String)
                   at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" daemon prio=5 tid=0xb70fd0 nid=0x42 in Object.wait()
              [9c281000..9c281994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bede6ab8> (a [Lweblogic.socket.PosixSocketInfo$FdStruct;)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
                   - locked <bede6ab8> (a [Lweblogic.socket.PosixSocketInfo$FdStruct;)
                   - locked <bede1b00> (a java.lang.String)
                   at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              "SSLListenThread.Default" prio=5 tid=0x7475a8 nid=0x41 runnable [9c381000..9c381994]
                   at java.net.PlainSocketImpl.socketAccept(Native Method)
                   at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
                   - locked <bedffc38> (a java.net.PlainSocketImpl)
                   at java.net.ServerSocket.implAccept(ServerSocket.java:448)
                   at javax.net.ssl.impl.SSLServerSocketImpl.accept(Unknown Source)
                   at weblogic.t3.srvr.ListenThread.accept(ListenThread.java:715)
                   at weblogic.t3.srvr.ListenThread.run(ListenThread.java:291)
              "ListenThread.Default" prio=5 tid=0x588628 nid=0x40 runnable [9c481000..9c481994]
                   at java.net.PlainSocketImpl.socketAccept(Native Method)
                   at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
                   - locked <bedeeb68> (a java.net.PlainSocketImpl)
                   at java.net.ServerSocket.implAccept(ServerSocket.java:448)
                   at java.net.ServerSocket.accept(ServerSocket.java:419)
                   at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:24)
                   at weblogic.t3.srvr.ListenThread.accept(ListenThread.java:715)
                   at weblogic.t3.srvr.ListenThread.run(ListenThread.java:291)
              "Thread-9" daemon prio=5 tid=0xac6f28 nid=0x3f in Object.wait() [9c581000..9c581994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bec9b7d0> (a java.util.TaskQueue)
                   at java.util.TimerThread.mainLoop(Timer.java:429)
                   - locked <bec9b7d0> (a java.util.TaskQueue)
                   at java.util.TimerThread.run(Timer.java:382)
              "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" daemon prio=5 tid=0x8967e0 nid=0x3e in Object.wait() [9c681000..9c681994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bec26738> (a weblogic.jms.backend.BETimerTree)
                   at weblogic.jms.backend.BETimerTree.execute(BETimerTree.java:146)
                   - locked <bec26738> (a weblogic.jms.backend.BETimerTree)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              "Thread-8" prio=5 tid=0x5b0260 nid=0x3d in Object.wait() [9c781000..9c781994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bec01568> (a java.util.TaskQueue)
                   at java.util.TimerThread.mainLoop(Timer.java:429)
                   - locked <bec01568> (a java.util.TaskQueue)
                   at java.util.TimerThread.run(Timer.java:382)
              "Thread-7" prio=5 tid=0x874ef8 nid=0x3c in Object.wait() [9c881000..9c881994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bebe7048> (a java.util.TaskQueue)
                   at java.util.TimerThread.mainLoop(Timer.java:429)
                   - locked <bebe7048> (a java.util.TaskQueue)
                   at java.util.TimerThread.run(Timer.java:382)
              "Thread-6" prio=5 tid=0xdec010 nid=0x3b in Object.wait() [9c981000..9c981994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <bebbdb08> (a java.util.TaskQueue)
                   at java.util.TimerThread.mainLoop(Timer.java:429)
                   - locked <bebbdb08> (a java.util.TaskQueue)
                   at java.util.TimerThread.run(Timer.java:382)
              "weblogic.health.CoreHealthMonitor" daemon prio=5 tid=0x5eebd8 nid=0x39 waiting on condition [9dd81000..9dd81994]
                   at java.lang.Thread.sleep(Native Method)
                   at weblogic.t3.srvr.CoreHealthMonitorThread.run(CoreHealthMonitorThread.java:124)
              "Thread-4" prio=5 tid=0x665808 nid=0x38 in Object.wait() [9de81000..9de81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be635fa0> (a java.util.TaskQueue)
                   at java.util.TimerThread.mainLoop(Timer.java:429)
                   - locked <be635fa0> (a java.util.TaskQueue)
                   at java.util.TimerThread.run(Timer.java:382)
              "VDE Transaction Processor Thread" prio=2 tid=0xcc5480 nid=0x36 in Object.wait() [9df81000..9df81994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be5537b8> (a com.octetstring.vde.backend.standard.TransactionProcessor)
                   at java.lang.Object.wait(Object.java:426)
                   at com.octetstring.vde.backend.standard.TransactionProcessor.waitChange(TransactionProcessor.java:355)
                   - locked <be5537b8> (a com.octetstring.vde.backend.standard.TransactionProcessor)
                   at com.octetstring.vde.backend.standard.TransactionProcessor.run(TransactionProcessor.java:215)
              "ExecuteThread: '2' for queue: 'weblogic.admin.RMI'" daemon prio=5 tid=0x2f6f68 nid=0x35 in Object.wait()
              [9e081000..9e081994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4c3e50> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4c3e50> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '1' for queue: 'weblogic.admin.RMI'" daemon prio=5 tid=0x64eb90 nid=0x34 in Object.wait()
              [9e181000..9e181994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4c3998> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4c3998> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '0' for queue: 'weblogic.admin.RMI'" daemon prio=5 tid=0x365e50 nid=0x33 in Object.wait()
              [9e281000..9e281994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4c34c0> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4c34c0> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '1' for queue: 'weblogic.admin.HTTP'" daemon prio=5 tid=0xcc3d88 nid=0x32 in Object.wait()
              [9e381000..9e381994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4c2a40> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4c2a40> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'" daemon prio=5 tid=0x9e9708 nid=0x31 in Object.wait()
              [9e481000..9e481994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4c2560> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4c2560> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "weblogic.security.SpinnerRandomSource" daemon prio=5 tid=0xcc3fb8 nid=0x30 in Object.wait() [9e581000..9e581994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4b4410> (a java.lang.Object)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.security.SpinnerRandomBitsSource.run(SpinnerRandomBitsSource.java:60)
                   - locked <be4b4410> (a java.lang.Object)
                   at java.lang.Thread.run(Thread.java:536)
              "weblogic.time.TimeEventGenerator" daemon prio=9 tid=0x9d9550 nid=0x2f in Object.wait() [9e681000..9e681994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4b31a8> (a weblogic.time.common.internal.TimeTable)
                   at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:271)
                   - locked <be4b31a8> (a weblogic.time.common.internal.TimeTable)
                   at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:118)
                   at java.lang.Thread.run(Thread.java:536)
              "ExecuteThread: '4' for queue: 'weblogic.kernel.System'" daemon prio=5 tid=0x2d94e0 nid=0x2e in Object.wait()
              [9e781000..9e781994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4b2930> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4b2930> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '3' for queue: 'weblogic.kernel.System'" daemon prio=5 tid=0x2d8960 nid=0x2d in Object.wait()
              [9e881000..9e881994]
                   at java.lang.Object.wait(Native Method)
                   - waiting on <be4b2470> (a weblogic.kernel.ExecuteThread)
                   at java.lang.Object.wait(Object.java:426)
                   at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:145)
                   - locked <be4b2470> (a weblogic.kernel.ExecuteThread)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:164)
              "ExecuteThread: '2' for queue: 'weblogic.kernel.System'" daemon prio=5 tid=0x52bd58 nid=0x2c in Object.wait()
              [9e981000..9e981994]
                   at java.lang.Object.wait(Native Method)
                   

    What about Red Hat 7.2 ?
    I do not understand very well if this version has anything to do with the
    ones mentioned on supported platforms
    thanks
    "Raj Alagumalai" <[email protected]> escribió en el mensaje
    news:[email protected]..
    Campot,
    Unfortunately WLS 8.1 sp1 is not supported on RedHat 7.1
    http://e-docs.bea.com/wls/certifications/certs_810/overview.html#1043408
    should provide you more information on this.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Campot" <[email protected]> wrote in message
    news:[email protected]..
    Can I install WebLogic Server 8.1 SP1 on Linux Redhat 7.1?
    I looked the documentation and it is not clear if the server runs on
    this
    Linux version
    Thanks

Maybe you are looking for

  • HP 2005pr USB 2.0 Port Replicator - Video not with my Surface Pro 3

    Hi everyone, I've spent tons of hours already trying to get the HP 2005pr USB 2.0 Port Replicator working with my Surface Pro 3 and no luck. I mean, the USB replication / hub works, meaning that if I plug in a USB mouse / keyboard, they work. It reco

  • How to put the swf in sub directory

    Would you guys let me know how to put the *.swf file which has *.flv in sub directory other than root. I've tried many things none of them working. a regular *.swf are OK. But if that swf file related with *.flv. that Swf has to be in root directory

  • Saving a interactive form into the application

    hi gurus, I have developed an application which contains interactive form design by getting values from the back end r/3 system. The PDF is being populated by getting the data from the back end.Now my problem is that I need to open this PDF in an ext

  • ADVANCED SEARCH - dropdown values deletion

    Hi all, We are on SRM 7.1. query: For the employee self service role,for teh link ADVANCED SEARCH,in the dropdown,I want to display only 1 values i.e. PO and Shopping cart.Can someone direct me how can  configure that? I klnow the default value in dr

  • Error while registering xsd

    I got the below error when I run the procedure BEGIN dbms_xmlschema.registerSchema( schemaurl => 'http://HDHDW0035:8080/MYFILE.xsd', schemadoc => '<?xml version="1.0" encoding="ISO-8859-1" ?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xml