WLS 6.0 NPE/exits in initializeRealm on startup

I followed the procedure to convert my WLS 5.1 instance to WLS 6.0. When I start it, it gives the
following exception and exits.
The last thing it does before this is open fileRealm.properties (below).
<Dec 22, 2000 12:51:39 PM PST> <Emergency> <Server> <Unable to initialize the se
rver: 'Fatal initialization exception
Throwable: java.lang.NullPointerException
java.lang.NullPointerException
at weblogic.security.SecurityService.initializeRealm(SecurityService.java:26
6)
at weblogic.security.SecurityService.initialize(SecurityService.java:121)
at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:343)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
at weblogic.Server.main(Server.java:35)
'>
$ cat fileRealm.properties
#Fri Dec 22 12:46:41 PST 2000
acl.reserve.weblogic.jdbc.connectionPool.highscore=everyone
acl.modify.weblogic.jndi.weblogic.fileSystem=everyone
acl.reserve.weblogic.jdbc.connectionPool.sessionDatabasePool=everyone
acl.execute.weblogic.servlet.ConsoleHelp=everyone
acl.execute.weblogic.servlet.AdminRealm=system
acl.lookup.weblogic.jndi.weblogic.fileSystem=everyone
acl.execute.weblogic.servlet.AdminEvents=system
acl.lookup.weblogic.jndi.weblogic.ejb=system
acl.list.weblogic.jndi.weblogic.rmi=everyone
acl.reserve.weblogic.jdbc.connectionPool=system
acl.execute.weblogic.servlet.T3AdminMain=system
acl.execute.weblogic.servlet.AdminVersion=system
acl.execute.weblogic.servlet.AdminConnections=system
acl.lockServer.weblogic.admin=system
acl.execute.weblogic.servlet.AdminClients=system
acl.reserve.weblogic.jdbc.connectionPool.docPool=everyone
acl.reserve.weblogic.jdbc.connectionPool.commercePool=everyone
acl.shutdown.weblogic.admin=system
acl.boot.weblogic.server=system,everyone
acl.execute.weblogic.servlet.AdminMain=system
acl.reserve.weblogic.jdbc.connectionPool.ticketDatabasePool=everyone
acl.list.weblogic.jndi.weblogic.fileSystem=everyone
acl.lookup.weblogic.jndi.weblogic=everyone
acl.modify.weblogic.jndi.weblogic.rmi=everyone
acl.write.weblogic.workspace=system,everyone
acl.modify.weblogic.jndi.weblogic=system,guest
acl.list.weblogic.jndi.weblogic=system
acl.execute.weblogic.servlet.AdminThreads=system
acl.execute.weblogic.servlet.HighScoreServlet=everyone
acl.read.weblogic.workspace=system,everyone
acl.lookup.weblogic.jndi.weblogic.rmi=everyone
acl.modify.weblogic.admin.acl=system
acl.execute.weblogic.servlet.AdminJDBC=system
acl.execute.weblogic.servlet.classes=everyone
acl.list.weblogic.jndi.weblogic.ejb=system
acl.execute.weblogic.servlet.wlpsadmin=system
acl.write.managedObject=system
acl.execute.weblogic.servlet.AdminLicense=system
acl.read.managedObject=system
acl.execute.weblogic.servlet.AdminProps=system
user.system=0x5fdab67a48b663eba8cc5e9e880750f10ae579f0
acl.unlockServer.weblogic.admin=system
acl.reset.weblogic.jdbc.connectionPool=system
acl.execute.weblogic.servlet=system,everyone
acl.modify.weblogic.jndi.weblogic.ejb=system,guest

Hi Stephane,
This is sometimes caused by creating and specifying a Caching Realm as the default
realm without pointing the caching realm to a custom realm.
If this is the case set the cachingrealm property to null in your config.xml and
you should be able to start up ok.
Kind Regards,
Richard Wallace
Senior Developer Relations Engineer
BEA Support.
"vaucher" <[email protected]> wrote:
>
Hello Mike,
I have a similar problem to the one you had a while back, but I don't
see any responses.
I have just converted my weblogic properties file
from WLS-5.1 sp 9 to WLS 6.1 sp 1. I don't get any errors appearing
during the conversion. When I start up the "new" app, I get a mysterious
NullPointerException:
Starting WebLogic Server ....
<Jan 7, 2002 5:55:54 PM EST> <Notice> <Management> <Loading configuration
file
./config/GNPDomain/config.xml ...>
<Jan 7, 2002 5:56:01 PM EST> <Emergency> <Server> <Unable to initialize
the server:
'Fatal initialization exception
Throwable: java.lang.NullPointerException
java.lang.NullPointerException
     at weblogic.security.SecurityService.initializeRealm(SecurityService.java:261)
     at weblogic.security.SecurityService.initialize(SecurityService.java:115)
     at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:390)
     at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
     at weblogic.Server.main(Server.java:35)
'>
I don't know what this means or how to debug it. From your posting,
I think it might be due to the security entry in my config.xml file as
you noted in this thread.
I tried to modify my config file
From:
<Security Name="GNPDomain" PasswordPolicy="mypasswordpolicy" Realm="myRealm"/>
<PasswordPolicy MinimumPasswordLength="1" Name="mypasswordpolicy"/>
To:
<Security GuestDisabled="false" Name="GNPDomain"
PasswordPolicy="wl_default_password_policy" Realm="myRealm" SystemUser="system"/>
<PasswordPolicy Name="wl_default_password_policy"/>
to no avail. I don't know where I can find the doc for this. I have
looked at the tutorial which didn't help.
If anyone has an idea of what is wrong, I would be grateful,
Stephane
"mreiche" <[email protected]> wrote:
Thanks for all the responses. Putting the correct system password in
password.ini fixed it.
So...
1) Why did it crash in the first place.
2) What's up with the password when you start WL? Where is this explained?
mike
<[email protected]> wrote:
By copying the <Security...> from mydomain/config.xml, I make it toline 123 (two lines past the
previous attempt).
<!-- This is the broken one generated by the 5.1 -> 6.0 conversion
<Security
Name="test_wlcs"
PasswordPolicy="mypasswordpolicy"
Realm="myRealm"
/>
-->
<!-- Stolen from mydomain/config.xml, name changed to protect the innocent-->
<Security
Name="test_wlcs"
GuestDisabled="false"
/>
And now I get the stack trace below. This just looks like a configproblem - anybody?
Thanks in advance,
Mike
<Dec 22, 2000 1:56:30 PM PST> <Emergency> <Server> <Unable to initializethe server: 'Fatal initialization exception
Throwable: java.lang.SecurityException: Authentication for user systemdenied in realm weblogic
java.lang.SecurityException: Authentication for user system denied
in
realm weblogic
at weblogic.security.acl.Realm.authenticate(Realm.java:209)
at weblogic.security.acl.Realm.getAuthenticatedName(Realm.java:229)
at weblogic.security.acl.internal.Security.authenticate(Security.java:113)
at weblogic.security.SecurityService.initializeSuid(SecurityService.java:293)
at weblogic.security.SecurityService.initialize(SecurityService.java:123)
at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:343)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
at weblogic.Server.main(Server.java:35)
'>
"mreiche" <[email protected]> wrote:
I followed the procedure to convert my WLS 5.1 instance to WLS 6.0.
When I start it, it gives the
following exception and exits.
The last thing it does before this is open fileRealm.properties (below).
<Dec 22, 2000 12:51:39 PM PST> <Emergency> <Server> <Unable to initializethe se
rver: 'Fatal initialization exception
Throwable: java.lang.NullPointerException
java.lang.NullPointerException
at weblogic.security.SecurityService.initializeRealm(SecurityService.java:26
6)
at weblogic.security.SecurityService.initialize(SecurityService.java:121)
at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:343)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
at weblogic.Server.main(Server.java:35)
'>
$ cat fileRealm.properties
#Fri Dec 22 12:46:41 PST 2000
acl.reserve.weblogic.jdbc.connectionPool.highscore=everyone
acl.modify.weblogic.jndi.weblogic.fileSystem=everyone
acl.reserve.weblogic.jdbc.connectionPool.sessionDatabasePool=everyone
acl.execute.weblogic.servlet.ConsoleHelp=everyone
acl.execute.weblogic.servlet.AdminRealm=system
acl.lookup.weblogic.jndi.weblogic.fileSystem=everyone
acl.execute.weblogic.servlet.AdminEvents=system
acl.lookup.weblogic.jndi.weblogic.ejb=system
acl.list.weblogic.jndi.weblogic.rmi=everyone
acl.reserve.weblogic.jdbc.connectionPool=system
acl.execute.weblogic.servlet.T3AdminMain=system
acl.execute.weblogic.servlet.AdminVersion=system
acl.execute.weblogic.servlet.AdminConnections=system
acl.lockServer.weblogic.admin=system
acl.execute.weblogic.servlet.AdminClients=system
acl.reserve.weblogic.jdbc.connectionPool.docPool=everyone
acl.reserve.weblogic.jdbc.connectionPool.commercePool=everyone
acl.shutdown.weblogic.admin=system
acl.boot.weblogic.server=system,everyone
acl.execute.weblogic.servlet.AdminMain=system
acl.reserve.weblogic.jdbc.connectionPool.ticketDatabasePool=everyone
acl.list.weblogic.jndi.weblogic.fileSystem=everyone
acl.lookup.weblogic.jndi.weblogic=everyone
acl.modify.weblogic.jndi.weblogic.rmi=everyone
acl.write.weblogic.workspace=system,everyone
acl.modify.weblogic.jndi.weblogic=system,guest
acl.list.weblogic.jndi.weblogic=system
acl.execute.weblogic.servlet.AdminThreads=system
acl.execute.weblogic.servlet.HighScoreServlet=everyone
acl.read.weblogic.workspace=system,everyone
acl.lookup.weblogic.jndi.weblogic.rmi=everyone
acl.modify.weblogic.admin.acl=system
acl.execute.weblogic.servlet.AdminJDBC=system
acl.execute.weblogic.servlet.classes=everyone
acl.list.weblogic.jndi.weblogic.ejb=system
acl.execute.weblogic.servlet.wlpsadmin=system
acl.write.managedObject=system
acl.execute.weblogic.servlet.AdminLicense=system
acl.read.managedObject=system
acl.execute.weblogic.servlet.AdminProps=system
user.system=0x5fdab67a48b663eba8cc5e9e880750f10ae579f0
acl.unlockServer.weblogic.admin=system
acl.reset.weblogic.jdbc.connectionPool=system
acl.execute.weblogic.servlet=system,everyone
acl.modify.weblogic.jndi.weblogic.ejb=system,guest

Similar Messages

  • Exit code 2150 during startup

    Hi
    I just deployed spme sca files on 7.2 server. The deployment failed because server could not start. Now I could not start the server even from SAP MMC.
    Here is the log trace
    [Thr 4628] Thu Jul 08 14:11:14 2010
    F  [Thr 4628] *** LOG => State changed from 0 (Initial) to 1 (Waiting to start).
    F  [Thr 4628] *** LOG    state real time: 35.498 CPU time: 0.515 sys, 14.125 usr
    F  [Thr 4628] *** LOG    total real time: 35.498 CPU time: 0.515 sys, 14.125 usr
    F  [Thr 4628]
    F  [Thr 4628] *** LOG => State changed from 1 (Waiting to start) to 2 (Starting framework).
    F  [Thr 4628] *** LOG    state real time: 0.000 CPU time: 0.000 sys, 0.000 usr
    F  [Thr 4628] *** LOG    total real time: 35.498 CPU time: 0.515 sys, 14.125 usr
    F  [Thr 4628]

    J Thu Jul 08 14:11:17 2010
    J  36.904: [GC 36.905: [ParNew: 94269K->10703K(137472K), 0.0351075 secs] 94307K->10742K(203008K), 0.0352486 secs] [Times: user=0.03 sys=0.00, real=0.03 secs]

    J Thu Jul 08 14:11:18 2010
    J  38.118: [GC 38.118: [ParNew: 102351K->27209K(137472K), 0.0575850 secs] 102391K->27249K(203008K), 0.0577076 secs] [Times: user=0.09 sys=0.00, real=0.06 secs]

    J Thu Jul 08 14:11:19 2010
    J  Heap
    J   par new generation   reserved 183296K, committed 183296K, used 60102K [0x119c0000, 0x1ccc0000, 0x1ccc0000)
    J    eden space 91648K,  35% used [0x119c0000, 0x139df4c0, 0x17340000)
    J    from space 45824K,  59% used [0x1a000000, 0x1ba924f8, 0x1ccc0000)
    J    to   space 45824K,   0% used [0x17340000, 0x17340000, 0x1a000000)
    J   concurrent mark-sweep generation reserved 734208K, committed 65536K, used 39K [0x1ccc0000, 0x20cc0000, 0x499c0000)
    J   concurrent-mark-sweep perm gen reserved 409600K, committed 131072K, used 23142K [0x499c0000, 0x519c0000, 0x629c0000)

    F [Thr 3456] Thu Jul 08 14:11:19 2010
    F  [Thr 3456] *** LOG => SfCJavaVm: exit hook is called. (rc = 2150)

    F  ********************************************************************************
    F  *** ERROR => Java node 'server0' terminated with exit code 2150.
    F  ***
    F  *** Please see section 'Java program exit codes'
    F  *** in SAP Note 1316652 for additional information and trouble shooting advice.
    F  ********************************************************************************
    Is there anyway to start the server?
    Thanks
    Vidyadhar

    Hello Vidyadhar
    Are there any errors in std_server0.out log that can help troubleshoot the problem?
    Maybe a service not starting?
    Thanks
    Kenny

  • Works fine with Integrated WLS, NPE when deployed

    I have an application that runs fine on my Integrated WLS.
    But, when I deploy it to our production environment, I get a Null Point Exception.
            DCBindingContainer bc =
                (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
            DCIteratorBinding sItr = bc.findIteratorBinding("Empmaster1Iterator");
            Row currentRow = sItr.getCurrentRow();
            String fName = (String)currentRow.getAttribute("FirstName");Curiously, the NPE occurs on the VERY first retrieval of data from the database (the same database I am using in Integrated WLS).
    The NPE occurs on the last line in the above code snippet.
    Can anyone point me in the correct direction to troubleshoot this?
    JDeveloper:
    Studio Edition Version 11.1.1.6.0
    Weblogic 10.3
    production environ:
    WebLogic Server Version: 10.3.6.0
    Thanks,
    Arie

    Arie,
    as you got a NPE at
    String fName = (String)currentRow.getAttribute("FirstName");means that at the time you run this code there is no current row defined for the 'Empmaster1Iterator'.
    The question now is why don't you have a current row?
    One reason can be that the iterator simply doesn't have a row. With the information provided we can only guess. However, you should check if you get a row before using the row. If you get null you have to decide what to do,
    Timo

  • Domino Notes and LDAP Connection using wls 6.1

    We would like to use Domino LDAP for authentication/authorization in Webogic, but
    we are not able to configure it. Has someone else already done this? Below is
    a list of steps to take that we got from a BEA consultent. The problem is step
    10, rebooting the server. When I try to do this, I get a Fatal initialization
    exception error and cannot start the server.
    1. Open the WebLogic Server Administration Console http://localhost:7001/console
    in a browser.
    2. In the right pane of the Administration Console, click the mydomain->Security->Realms->Create
    a new Custom Realm.
    3. Enter MyLotusLDAPRealm in the Name field.
    4. Click Create.
    5. In the right pane of the Administration Console, click the mydomain->Security->Caching
    Realms->Create a new Caching Realm.
    6. Enter MyLotusCachingRealm in the Name field.
    7. Click Create.
    8. In the right pane of the Administration Console, click the mydomain-Security.
    9. Select the MyLotusLDAPRealm from the drop-down box for the Caching Realm.
    10. Reboot the WebLogic Server.
    11. Copy the ldaprealm.properties to bea/wlserver6.1
    12. Modify the web.xml
    13. Modify the weblogic.xml
    If anyone has done this before please let me know how you did it. Thanks!

    That works. Thanks!
    "Romuald RICHARD" <[email protected]> wrote:
    Try to use the type 4 driver from Oracle 9i.
    Be sure to put the classes12.zip from the /jdbc/lib/ of Oracle file in
    the
    begining of the classpath of Weblogic.
    Romuald RICHARD
    Developer Relations Engineer
    BEA Support
    "mike" <[email protected]> wrote in message
    news:3ca93930$[email protected]..
    I'm trying to create connection pool to Oracle 9i database under Linux.Oracle
    installation is fine, and I can use Oracle examples to connect to mydatabase.
    But when I try to create pool from within WLS I get:
    - Trying oracle.jdbc.OracleDriver: <Cannot startup connection pool"oraclePool"
    No suitable driver>
    - Trying weblogic.jdbc.oci.Driver: java.lang.UnsatisfiedLinkError:/home/usr/local/bea/wlserver6.1/lib/linux/i686/oci816_8/libweblogicoci37.so:
    libclntsh.so.8.0: cannot open shared object file: No such file ordirectory
    The latter is not a surprise, since the file does not exist. InsteadI
    have libclntsh.so.9.0
    and vanilla so, which is a soft link to 9.0. Creating link with desiredname (libclntsh.8.0)
    to 9.0 does not help as it throws on unsatisfied symbol.
    Can you advise me on the reason and remedy?

  • Unable to start Admin server after WLS 10.3.3 to 10.3.4 upgrade

    I am getting class path errors while starting Admin server in linux via startWeblogic.sh start script after upgrading from 10.3.3 to 10.3.4. Here is the error log:
    <Jun 7, 2011 2:03:46 PM EDT> <Critical> <WebLogicServer> <tloia105.goaa.org> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1307469826197> <BEA-000286> <Failed to invoke startup class "JRF Startup Class", java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
    java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:247)
    at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
    at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
    at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:246)
    at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
    at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:21)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    >
    ####<Jun 7, 2011 2:03:46 PM EDT> <Critical> <WebLogicServer> <tloia105.goaa.org> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1307469826211> <BEA-000286> <Failed to invoke startup class "JPS Startup Class", java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
    java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:247)
    at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
    at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
    at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:246)
    at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
    at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:21)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    >
    ####<Jun 7, 2011 2:03:46 PM EDT> <Critical> <WebLogicServer> <tloia105.goaa.org> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1307469826214> <BEA-000286> <Failed to invoke startup class "ODL-Startup", java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
    java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.net.URLClassLoader.findClass(URLClassLoader.java
    Please suggest if I am missing some class path setting here .
    Regards,
    Deepak

    Guys,
    It seems that the start scripts replaced while upgrading the domain did not have right class paths as the previous start scripts had which were created while creating the domain originally. Copying the necessary Class paths makes the new start scripts to work fine.
    Deepak
    AST Corp.

  • Help 'Exiting' after Automator Shell Script Execution

    Hello,
    I've recently installed and got running GCalDaemon (http://gcaldaemon.sourceforge.net/) which allows me to Synch Rainlendar <-> Google Calendar through iCal (You can also synch iCal <-> Google Calendar). I needed to start up a shell script/applescript after each startup/login in order for GCalDaemon to start the synching process each time and continue to do so at the timed intervals. I would do so by the following terminal code:
    cd /usr/local/sbin/GCALDaemon/bin
    ./standalone-start.sh
    I then tried automating this process and came across shell script execution through Automator. I did so and created a .app with the above mentioned code. This works and it starts up the necessary .sh file I need and the snyching works under StartUp. My concern is however, how do I exit terminal once the code has executed the necessary file? All I have in my .app is the above mentioned code for now. I just need it to exit terminal because on startup or after starting the program, I get this issue (See Attachment)
    This continues to run, so my guess is that I need to add code to exit terminal and allow the .app to close itself properly after doing so.
    Please guide me in the right direction.
    Picture Belows shows what happens when I run the Automator App. It continues to run until I quit out of the app manually (TheGCal programs works fine though). I feel I need to have app quit Terminal or fully end the process and quit out on it's own.
    Thanks
    <table style="width:auto;"><tr><td></td></tr><tr><td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From GCalDaemon</td></tr></table>

    i redirected the command output to /dev/null which is unix equivalent of a black hole and I also redirected error output to standard output in case the script produces any errors.
    also & at the end tells it to continue without waiting for the script to finish.
    Message was edited by: V.K.

  • EJB archive passes ejbc compilation but fails deploy on WLS7

    I'm attempting to migrate several functional
    EJBs from WLS6.1 to WLS7.0. I've made the
    deployment descriptor changes and created an
    archive containing the EJBs. The ejbc compilation
    tool successfully processes the archive so long
    as I don't specify the -iiop option.
    However, the WLS7.0 server fails to deploy
    the archive. No messages or exceptions are
    provided. I've tried deployment both as an ear and jar file. Any clues or suggestions?

    Rob Woollen <[email protected]> wrote:
    ken wallis wrote:
    Rob Woollen <[email protected]> wrote:
    ken wallis wrote:
    I'm attempting to migrate several functional
    EJBs from WLS6.1 to WLS7.0. I've made the
    deployment descriptor changes and created an
    archive containing the EJBs. You actually don't need to change any descriptors to migrate from 6.x
    (or even 5.1) to 7.0. Just deploy the ejbs in the new server.
    Of course, many people will upgrade their descriptors to take advantage
    of new 7.0 options, but I'd first ensure your beans work without
    changing anything.I tried deploying the same archive on WLS 7.0 that I've already deployedto WLS
    6.1. It faired exactly the same as the previous version.
    The ejbc compilation
    tool successfully processes the archive so long
    as I don't specify the -iiop option.
    However, the WLS7.0 server fails to deploy
    the archive. No messages or exceptions are
    provided. I've tried deployment both as an ear and jar file. Anyclues or suggestions?
    Hmmm. That's odd. How are you deploying it, and how do you know it
    didn't deploy?
    I've copied the archive into the mydomain directory then used the Adminpages
    to select it for deployment. It works its way to a page stating thatits 'Activating'
    the archive and reports the start time. However, this process neverdisplays
    the end time or returns. Instead, the WLS server merely exits andthe Admin console
    suddenly displays the imfamous 'page not found' page.WLS should never just exit. It sounds like the JVM crashed. Are you
    using the JVM bundled with WLS? What platform are you on? Is there
    a
    core file or any *.log files left over from the jvm?Win 2000 w/ JDK 1.3.1_03 but I've not altered the WLS basic configuration so it
    should still be using its own.
    I attempted to redirect out and err to log files, but nothing gets captured and
    WLS leaves nothing that I've found. I even placed a 'pause' at the bottom of
    the start command file; the WLS window exitted without waiting for it.
    >
    You might also try just copying the jar/ear to the server's applications
    directory. I'd be interested to see if this works.
    I tried. The Admin server never starts.
    >
    >
    >>
    I've located the following error message in the mydomain\logs\wl-domain.log,although
    it provides no real information.
    <Sep 13, 2002 5:56:59 PM CDT> <Error> <Deployer> <CI069311> <myserver><ExecuteThread:
    '10' for queue: 'default'> <kernel identity> <> <149233> <Unexpectederror was
    encountered during the deployment process.>
    Incidentally, before I can attempt to restart the WLS, I have to manuallyremove
    the archive from the config.xml.

  • Weblogic Console hangs when connecting to one of two servers in a cluster

              Hello,
              Please email me as well as posting reply if possible as resolution is required
              immediately.
              We have two Weblogic 5.1 servers (named server1 & server2) running in a cluster
              using multicast over a VLAN and a DNS entry of "mycluster" to point to the list
              of two IP addresses.
              Both servers say they have joined the cluster upon startup, however, only one
              of them (server2) reports when the other one (server1) has joined, but not vice
              versa.
              Also, the Weblogic Console only displays server1 in the cluster, and hangs when
              it tries to attach to server2, which generates exceptions on server2. The error
              is as follows:
              <Kernel> ExecuteRequest failed. NullPointerException at weblogic.cluster.MemberStash.getManagedSubObjects(MemberStash.java:259).
              I expect this would also prevent replication from working properly.
              One other thing that might be related to the above is that when the URL "mycluster:7001"
              is used directly in the web browser, it sometimes (not always, not sure if it
              matters on which machine) gives the error: "Inconsistent cookie: primary !=
              me".
              Two IIS web servers are being proxied to the cluster URL, and round-robin load
              balancing of the app servers appears to work fine from this perspective.
              Both servers appear to be working properly otherwise.
              Many thanks for any clues,
              Ben
              

              primary != me occurs when you restart WLS but do not exit the browser, then hit
              WLS (the browser has a stale cookie).
              Mike
              "Ben Yenko-Martinka" <[email protected]> wrote:
              >
              >Hello,
              >
              >Please email me as well as posting reply if possible as resolution is
              >required
              >immediately.
              >
              >We have two Weblogic 5.1 servers (named server1 & server2) running in
              >a cluster
              >using multicast over a VLAN and a DNS entry of "mycluster" to point to
              >the list
              >of two IP addresses.
              >Both servers say they have joined the cluster upon startup, however,
              >only one
              >of them (server2) reports when the other one (server1) has joined, but
              >not vice
              >versa.
              >Also, the Weblogic Console only displays server1 in the cluster, and
              >hangs when
              >it tries to attach to server2, which generates exceptions on server2.
              > The error
              >is as follows:
              ><Kernel> ExecuteRequest failed. NullPointerException at weblogic.cluster.MemberStash.getManagedSubObjects(MemberStash.java:259).
              >I expect this would also prevent replication from working properly.
              >
              >One other thing that might be related to the above is that when the URL
              >"mycluster:7001"
              >is used directly in the web browser, it sometimes (not always, not sure
              >if it
              >matters on which machine) gives the error: "Inconsistent cookie: primary
              >!=
              >me".
              >
              >Two IIS web servers are being proxied to the cluster URL, and round-robin
              >load
              >balancing of the app servers appears to work fine from this perspective.
              >Both servers appear to be working properly otherwise.
              >
              >Many thanks for any clues,
              >Ben
              

  • Remote JNDI DataSource

    Hi,
    I tried to use a WLS 8.1 JNDI-bound DB2 DataSource from a standalone client.
    For JDBC this works, but for IBM's bound SQLJ it does not, WLS throws an
    NPE. From within WLS, a servlet or EJB, it always works.
    This posting
    (http://forums.bea.com/bea/message.jspa?messageID=600038044&tstart=0 )
    hints that it should not be possible to use a remote JNDI DataSource,
    whereas this Sun doc
    (http://java.sun.com/j2se/1.4.2/docs/guide/jdbc/getstart/datasource.html
    ) states it should.
    So, do I try something, that should not work per specification, or do
    you guess that there is a bug in WLS's code or in IBM's SQLJ implementation?
    Thanks,
    J?rgen
    BTW: the http://forums.bea.com/ don't work neither with Firefox nor with
    IE at the moment.

    remove wlclient.jar from the client application's classpath and you should get a connection.

  • JoltConnectionPool can not start in weblogic server

    Hi
    I am trying to run the sample Tuxedo provided application which uses Servlets or Ejb.
    Now the Tuxedo Server has been configured and running properly.
    I have WebLogic Server installed and had created the JoltSessionPool with name "MAJoltConnectionPool" and had also defined the StartupClass & ShutdonClass.
    While defining the JoltSessionPool i had given min services as 1 and max services as 5 and others as default,
    and the JoltSessionPool's target is a weblogic managed server which named ct2.
    Then i tryed to start the ct2 server on command line such as:
    startManagedWebLogic.cmd ct2 http://localhost:7001
    I got an error in starting "MAJoltConnectionPool" but the server ct2 is starting normally.
    Anyone who can help me to find out the reason? Thanks a lot.
    The Command Line window shown following in the Log:
    Failed to invoke startup class "MAJoltPoolStart", java.lang.Exception: Errors in starting the following connection pools :
    com.bea:Name=MAJoltConnectionPool,Type=JoltConnectionPool :
    Access to sensitive attribute in clear text is not allowed due to the setting of ClearTextCredentialAccessEnabled attribute in SecurityConfigurationMBean. Attr: UserPassword, MBean name: com.bea:Name=MAJoltConnectionPool,Type=JoltConnectionPool
    The Entire Trace from the Log file is:
    ####<Mar 16, 2011 11:58:35 AM CST> <Notice> <Log Management> <HXU49> <ct2> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300247915024> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    ####<Mar 16, 2011 11:58:35 AM CST> <Info> <Diagnostics> <HXU49> <ct2> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300247915070> <BEA-320077> <Initialized the Diagnostic Accessor Service.>
    ####<Mar 16, 2011 11:58:35 AM CST> <Info> <WebLogicServer> <HXU49> <ct2> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300247915078> <BEA-000256> <Invoking bea.jolt.pool.servlet.weblogic.PoolManagerStartUp.main(null)>
    ####<Mar 16, 2011 11:58:35 AM CST> <Critical> <WebLogicServer> <HXU49> <ct2> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300247915239> <BEA-000286> <Failed to invoke startup class "MAJoltPoolStart", java.lang.Exception: Errors in starting the following connection pools :
    com.bea:Name=MAJoltConnectionPool,Type=JoltConnectionPool : Access to sensitive attribute in clear text is not allowed due to the setting of ClearTextCredentialAccessEnabled attribute in SecurityConfigurationMBean. Attr: UserPassword, MBean name: com.bea:Name=MAJoltConnectionPool,Type=JoltConnectionPool
    java.lang.Exception: Errors in starting the following connection pools :
    com.bea:Name=MAJoltConnectionPool,Type=JoltConnectionPool : Access to sensitive attribute in clear text is not allowed due to the setting of ClearTextCredentialAccessEnabled attribute in SecurityConfigurationMBean. Attr: UserPassword, MBean name: com.bea:Name=MAJoltConnectionPool,Type=JoltConnectionPool
         at bea.jolt.pool.servlet.weblogic.impl.PoolManagerStartUpJMX.startup(PoolManagerStartUpJMX.java:216)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at bea.jolt.pool.servlet.weblogic.PoolManagerStartUp.main(PoolManagerStartUp.java:38)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeMain(ClassDeploymentManager.java:362)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:272)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployments(ClassDeploymentManager.java:186)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsAfterAppAdminState(ClassDeploymentManager.java:162)
         at weblogic.management.deploy.classdeployment.StartupClassPrelistenService.start(StartupClassPrelistenService.java:13)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    >
    ####<Mar 16, 2011 11:58:35 AM CST> <Notice> <WebLogicServer> <HXU49> <ct2> <main> <<WLS Kernel>> <> <> <1300247915288> <BEA-000365> <Server state changed to ADMIN>
    ####<Mar 16, 2011 11:58:35 AM CST> <Notice> <WebLogicServer> <HXU49> <ct2> <main> <<WLS Kernel>> <> <> <1300247915313> <BEA-000365> <Server state changed to RESUMING>
    ####<Mar 16, 2011 11:58:36 AM CST> <Notice> <WebLogicServer> <HXU49> <ct2> <main> <<WLS Kernel>> <> <> <1300247916769> <BEA-000365> <Server state changed to RUNNING>
    ####<Mar 16, 2011 11:58:36 AM CST> <Notice> <WebLogicServer> <HXU49> <ct2> <main> <<WLS Kernel>> <> <> <1300247916770> <BEA-000360> <Server started in RUNNING mode>
    With Regards
    Han

    Hi
    To resolve this problem , you have 2 solutions:
    - modify the config.xml file to add in the tag <security-configuration> the following line :
    <clear-text-credential-access-enabled>true</clear-text-credential-access-enabled>
    or
    - check the checkbox "Clear Text Credential Access Enabled" in the settings for the domain / security / general / advanced
    restart the weblogic server to activate this change if necessary (Normaly, no restarts are necessary with weblogic server v10.3.5.0)
    Hope this reponse help you (if it's not too late ;-) )
    Laurent.

  • Manaed server is not running

    Hi,
    I have a request regaring Manager Server as im ubable to setart the maagerd server.
    I have installed SOA on Windows 7 64-bit environemnt and I installed JDK1.6 64-bit version.
    Iam able start the Admin Server from command prompt using startWebLogic.cmd (C:\Oracle\Middleware\user_projects\domains\soa_domain) script.
    But im unable to start the Manager Server using startManagedWebLogic.cmd(C:\Oracle\Middleware\user_projects\domains\soa_domain\bin) script, also here i entered the Username/Passowrd in script itself as i was facing befoer some other problems like JVM Hook Shutdown.
    After setting UserName/Password in startManagedWebLogic.cmd, here im getting followin errors. Please provide me any suggestions.
    Here im putting my errors, but seems to be that error log is too heavy. But help me on this any of you.
    Also, as my log file is too big, im putig partial log informaiton,
    <1300845391497> <BEA-000286> <Failed to invoke startup class "JRF Startup Class", java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
    java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391497> <BEA-000286> <Failed to invoke startup class "JPS Startup Class", java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
    java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
    >
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391497> <BEA-000286> <Failed to invoke startup class "ODL-Startup", java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
    java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    >
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391497> <BEA-000286> <Failed to invoke startup class "AWT Application Context Startup Class", java.lang.ClassNotFoundException: oracle.jrf.AppContextStartup
    java.lang.ClassNotFoundException: oracle.jrf.AppContextStartup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         >
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391513> <BEA-000286> <Failed to invoke startup class "JMX Framework Startup Class", java.lang.ClassNotFoundException: oracle.as.jmx.framework.wls.spi.StartupListener
    java.lang.ClassNotFoundException: oracle.as.jmx.framework.wls.spi.StartupListener
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391513> <BEA-000286> <Failed to invoke startup class "JOC-Startup", java.lang.ClassNotFoundException: oracle.ias.cache.Startup
    java.lang.ClassNotFoundException: oracle.ias.cache.Startup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         >
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391513> <BEA-000286> <Failed to invoke startup class "DMS-Startup", java.lang.ClassNotFoundException: oracle.dms.wls.DMSStartup
    java.lang.ClassNotFoundException: oracle.dms.wls.DMSStartup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    >
    ####<Mar 23, 2011 7:26:31 AM IST> <Critical> <WebLogicServer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391513> <BEA-000286> <Failed to invoke startup class "SOAStartupClass", java.lang.ClassNotFoundException: oracle.bpel.services.common.util.GenerateBPMCryptoKey
    java.lang.ClassNotFoundException: oracle.bpel.services.common.util.GenerateBPMCryptoKey
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
    >
    ####<Mar 23, 2011 7:26:31 AM IST> <Info> <Management> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845391528> <BEA-141187> <Java system properties are defined as follows:
    awt.toolkit = sun.awt.windows.WToolkit
    bam.oracle.home = C:\Oracle\Middleware\Oracle_SOA1
    common.components.home = C:\Oracle\MIDDLE~1\ORACLE~1
    domain.home = C:\Oracle\MIDDLE~1\USER_P~1\domains\SOA_DO~1
    em.oracle.home = C:\Oracle\Middleware\oracle_common
    file.encoding = Cp1252
    file.encoding.pkg = sun.io
    file.separator = \
    igf.arisidbeans.carmlloc = C:\Oracle\MIDDLE~1\USER_P~1\domains\SOA_DO~1\config\FMWCON~1\carml
    igf.arisidstack.home = C:\Oracle\MIDDLE~1\USER_P~1\domains\SOA_DO~1\config\FMWCON~1\arisidprovider
    java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
    java.awt.headless = true
    java.awt.printerjob = sun.awt.windows.WPrinterJob
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404534>
    <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean UIX#[email protected]. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for UIX#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for UIX#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:73)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.uix_11.1.1\uix11.war
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:341)
    >
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404581> <BEA-149205> <Failed to initialize the application 'UIX [LibSpecVersion=11,LibImplVersion=11.1.1.1.0]' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for UIX#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for UIX#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:73)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.uix_11.1.1\uix11.war
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:341)
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404597> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean adf.oracle.domain#[email protected]. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:73)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:341)
    >
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404597> <BEA-149205> <Failed to initialize the application 'adf.oracle.domain [LibSpecVersion=1.0,LibImplVersion=11.1.1.2.0]' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404612> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean adf.oracle.domain.webapp#[email protected]. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain.webapp#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain.webapp#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.adf.view_11.1.1\adf.oracle.domain.webapp.war
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    >
    ####<Mar 23, 2011 7:26:44 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845404628> <BEA-149205> <Failed to initialize the application 'adf.oracle.domain.webapp [LibSpecVersion=1.0,LibImplVersion=11.1.1.2.0]' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain.webapp#[email protected]..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for adf.oracle.domain.webapp#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.adf.view_11.1.1\adf.oracle.domain.webapp.war
    for oracle.pwdgen#[email protected].
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:73)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.pwdgen_11.1.1\pwdgen.jar
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:341)
    >
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405257> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean oracle.rules#[email protected]. Error - weblogic.management.DeploymentException: .
    weblogic.management.DeploymentException:
         at weblogic.ejb.container.deployer.EJBDeploymentFactory.findOrCreateComponentMBeans(EJBDeploymentFactory.java:68)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
    Caused By: java.io.FileNotFoundException: C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.rules_11.1.1\rules.jar (Access is denied)
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:127)
         at java.util.jar.JarFile.<init>(JarFile.java:135)
    pl.java:48)
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405803> <BEA-149205> <Failed to initialize the application 'oracle.soa.b2b [LibSpecVersion=11.1.1,LibImplVersion=11.1.1]' due to error weblogic.management.DeploymentException: .
    weblogic.management.DeploymentException:
         at weblogic.ejb.container.deployer.EJBDeploymentFactory.findOrCreateComponentMBeans(EJBDeploymentFactory.java:68)
    Caused By: java.io.FileNotFoundException: C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.soa.b2b_11.1.1\oracle.soa.b2b.jar (Access is denied)
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:127)
         at java.util.jar.JarFile.<init>(JarFile.java:135)
    >
    ####<Mar 23, 2011 7:26:45 AM IST> <Info> <J2EE> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405881> <BEA-160151> <Registered library Extension-Name: oracle.soa.worklist.webapp, Specification-Version: 11.1.1, Implementation-Version: 11.1.1 (WAR).>
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405881> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean DMS Application#11.1.1.1.0. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for DMS Application#11.1.1.1.0..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for DMS Application#11.1.1.1.0.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.dms_11.1.1\dms.war
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    >
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405881> <BEA-149205> <Failed to initialize the application 'DMS Application [Version=11.1.1.1.0]' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for DMS Application#11.1.1.1.0..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for DMS Application#11.1.1.1.0.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.dms_11.1.1\dms.war
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405896> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean wsil-wls. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsil-wls..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsil-wls.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.webservices_11.1.1\wsil-wls.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405912> <BEA-149205> <Failed to initialize the application 'wsil-wls' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsil-wls..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsil-wls.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.webservices_11.1.1\wsil-wls.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405928> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean wsm-pm. Error - weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsm-pm..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsm-pm.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.wsm.pm_11.1.1\wsm-pm.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
         >
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405928> <BEA-149205> <Failed to initialize the application 'wsm-pm' due to error weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsm-pm..
    weblogic.management.DeploymentException: [Deployer:149606]Failed to configure deployment mbean for wsm-pm.
         at weblogic.management.deploy.internal.MBeanConverter.handleException(MBeanConverter.java:195)
    Caused By: javax.management.InvalidAttributeValueException: Unable to create path to C:\Oracle\Middleware\oracle_common\modules\oracle.wsm.pm_11.1.1\wsm-pm.ear
         at weblogic.management.bootstrap.BootStrap.apply(BootStrap.java:444)
    >
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405959> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean usermessagingserver. Error - weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:127)
         at java.util.jar.JarFile.<init>(JarFile.java:135)
    >
    ####<Mar 23, 2011 7:26:45 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845405974> <BEA-149205> <Failed to initialize the application 'usermessagingserver' due to error weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\communications\applications\sdpmessagingserver.ear
         at java.util.zip.ZipFile.open(Native Method)
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\soa\connectors\MQSeriesAdapter.rar (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\connectors\MQSeriesAdapter.rar
         at java.util.zip.ZipFile.open(Native Method)
    r1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845406676> <BEA-002903> <Creating WorkManager from "wm/SOAWorkManager" WorkManagerMBean for application "OracleBamAdapter">
    ####<Mar 23, 2011 7:26:46 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845406692> <BEA-149205> <Failed to initialize the application 'OracleBamAdapter' due to error weblogic.application.ModuleException: Error creating WLDF descriptor from META-INF/weblogic-diagnostics.xml.
    weblogic.application.ModuleException: Error creating WLDF descriptor from META-INF/weblogic-diagnostics.xml
         at weblogic.diagnostics.module.WLDFModule.initDescriptor(WLDFModule.java:607)
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\soa\connectors\OracleBamAdapter.rar (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\connectors\OracleBamAdapter.rar
    >
    ####<Mar 23, 2011 7:26:46 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845406708> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean soa-infra. Error - weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear
    >
    ####<Mar 23, 2011 7:26:46 AM IST> <Error> <Deployer> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1300845406708> <BEA-149205> <Failed to initialize the application 'soa-infra' due to error weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear
    Caused By: java.io.IOException: C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear (Access is denied) with : C:\Oracle\Middleware\Oracle_SOA1\soa\applications\soa-infra-wls.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:127)
         at java.util.jar.JarFile.<init>(JarFile.java:135)
    Appreciate your suggestions on ths.
    Thanks
    Munnelli

    Hi Anuj,
    Thanks for you help on the same as i was not able to start the ManagedServer.
    I am able to start the Managed Serer after I made entry for Weblogic UserName and Password in startManagedServer.cmd.
    If I remove those two entries it immdeatly shutting down like JVM Hook shutdown.
    Now, im able to start the server but still im geting few errors as below
    (here im sening patial error details as log file is too big)
    ####<Mar 23, 2011 11:42:36 PM IST> <Warning> <JMX> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000008> <1300903956817> <BEA-149509> <Unable to establish JMX Connectivity with the Adminstration Server AdminServer at service:jmx:t3://[2001:0:4137:9e76:34a4:1953:357a:c343]:7001/jndi/weblogic.management.mbeanservers.domainruntime.
    java.io.IOException
         at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:195)
         at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:83)
         at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:338)
         at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:247)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.getDomainMBeanServerConnection(RegisterWithDomainRuntimeService.java:216)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.notifyDomainRuntime(RegisterWithDomainRuntimeService.java:136)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.start(RegisterWithDomainRuntimeService.java:90)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeServiceLate.start(RegisterWithDomainRuntimeServiceLate.java:17)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://[2001:0:4137:9e76:34a4:1953:357a:c343]:7001: Destination unreachable; nested exception is:
         java.net.NoRouteToHostException: No route to host: connect; No available router to destination]
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:40)
         at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:787)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:368)
         at weblogic.jndi.Environment.getContext(Environment.java:315)
         at weblogic.jndi.Environment.getContext(Environment.java:285)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:177)
         at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:83)
         at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:338)
         at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:247)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.getDomainMBeanServerConnection(RegisterWithDomainRuntimeService.java:216)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.notifyDomainRuntime(RegisterWithDomainRuntimeService.java:136)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.start(RegisterWithDomainRuntimeService.java:90)
         at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeServiceLate.start(RegisterWithDomainRuntimeServiceLate.java:17)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.net.ConnectException: t3://[2001:0:4137:9e76:34a4:1953:357a:c343]:7001: Destination unreachable; nested exception is:
         java.net.NoRouteToHostException: No route to host: connect; No available router to destination
         at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:216)
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
         at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:401)
         at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
         at weblogic.server.ServerLifeCycleRuntime.getLifeCycleOperationsRemote(ServerLifeCycleRuntime.java:1083)
         at weblogic.security.utils.AdminServerListener.startDisconnectListener(AdminServerListener.java:113)
         at weblogic.security.utils.AdminServerListener.onConnect(AdminServerListener.java:157)
         at weblogic.server.channels.RemoteChannelServiceImpl$2.run(RemoteChannelServiceImpl.java:291)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.rmi.ConnectException: Destination unreachable; nested exception is:
         java.net.NoRouteToHostException: No route to host: connect; No available router to destination
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:464)
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:315)
         at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:254)
         at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:197)
         at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:238)
         at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:200)
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
         at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:401)
         at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
         at weblogic.server.ServerLifeCycleRuntime.getLifeCycleOperationsRemote(ServerLifeCycleRuntime.java:1083)
         at weblogic.security.utils.AdminServerListener.startDisconnectListener(AdminServerListener.java:113)
         at weblogic.security.utils.AdminServerListener.onConnect(AdminServerListener.java:157)
         at weblogic.server.channels.RemoteChannelServiceImpl$2.run(RemoteChannelServiceImpl.java:291)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Mar 23, 2011 11:42:37 PM IST> <Warning> <Log Management> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '12' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000a> <1300903957644> <BEA-170011> <The LogBroadcaster on this server failed to broadcast log messages to the admin server. The Admin server may not be running. Message broadcasts to the admin server will be disabled.>
    ####<Mar 23, 2011 11:42:37 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903957675> <BEA-010060> <The Message-Driven EJB: NotificationSender has connected/reconnected to the JMS destination: jms/Queue/NotificationSenderQueue.>
    ####<Mar 23, 2011 11:42:37 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903957784> <BEA-010060> <The Message-Driven EJB: TaskNotificationSender has connected/reconnected to the JMS destination: jms/Queue/NotificationSenderQueue.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <J2EE> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903958049> <BEA-160151> <Registered library Extension-Name: bea_wls_async_response (JAR).>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903958080> <BEA-010060> <The Message-Driven EJB: TestFwkEmulatorBean has connected/reconnected to the JMS destination: jms/testfwk/TestFwkQueue.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903958346> <BEA-010060> <The Message-Driven EJB: MessageDispatcherBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMWSRcvQ1.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903958689> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceHttps for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903958798> <BEA-010060> <The Message-Driven EJB: MessageDispatcherBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMAppDefRcvQ1.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903958860> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceJms for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903958907> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseService for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:38 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903958954> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12Jms for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903959001> <BEA-010060> <The Message-Driven EJB: DriverDispatcherBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMDriverDefSndQ1.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903959016> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12 for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <WebService> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '23' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000009> <1300903959141> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12Https for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903959235> <BEA-010060> <The Message-Driven EJB: MessageForwarderBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMEngineSndQ1.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <EJB> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000b> <1300903959422> <BEA-010060> <The Message-Driven EJB: MessageReceiverBean has connected/reconnected to the JMS destination: OraSDPM/Queues/OraSDPMEngineRcvQ1.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <JMS> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000e> <1300903959438> <BEA-040010> <JMSServer "SOAJMSServer" configured no session pools.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <JMS> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000e> <1300903959438> <BEA-040109> <JMSServer "SOAJMSServer" is started.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <JMS> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000e> <1300903959438> <BEA-040010> <JMSServer "UMSJMSServer_auto_2" configured no session pools.>
    ####<Mar 23, 2011 11:42:39 PM IST> <Info> <JMS> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000e> <1300903959469> <BEA-040109> <JMSServer "UMSJMSServer_auto_2" is started.>
    ####<Mar 23, 2011 11:42:40 PM IST> <Notice> <WebLogicServer> <Bharathi> <soa_server1> <main> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000003> <1300903960560> <BEA-000365> <Server state changed to RUNNING>
    ####<Mar 23, 2011 11:42:40 PM IST> <Notice> <WebLogicServer> <Bharathi> <soa_server1> <main> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000003> <1300903960576> <BEA-000360> <Server started in RUNNING mode>
    ####<Mar 23, 2011 11:42:41 PM IST> <Info> <WorkManager> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000012> <1300903961184> <BEA-002903> <Creating WorkManager from "wm/SOAWorkManager" WorkManagerMBean for application "bea_wls_deployment_internal">
    ####<Mar 23, 2011 11:42:43 PM IST> <Info> <JDBC> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@91862a7> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903963167> <BEA-001516> <Connection Pool "EDNLocalTxDataSource" connected to Database: "Oracle", Version: "Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production".>
    ####<Mar 23, 2011 11:42:43 PM IST> <Info> <JDBC> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@91862a7> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903963167> <BEA-001517> <Connection Pool "EDNLocalTxDataSource" using Driver: "Oracle JDBC driver", Version: "11.1.0.7.0-Production".>
    ####<Mar 23, 2011 11:42:43 PM IST> <Info> <Common> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@91862a7> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903963323> <BEA-000628> <Created "1" resources for pool "EDNLocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:42:44 PM IST> <Info> <Common> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@203124a4> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903964835> <BEA-000628> <Created "1" resources for pool "EDNLocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:42:44 PM IST> <Info> <JDBC> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@3cdeed72> <<anonymous>> <BEA1-006686F9CB68> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903964835> <BEA-001516> <Connection Pool "EDNDataSource" connected to Database: "Oracle", Version: "Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production".>
    ####<Mar 23, 2011 11:42:44 PM IST> <Info> <JDBC> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@3cdeed72> <<anonymous>> <BEA1-006686F9CB68> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903964835> <BEA-001517> <Connection Pool "EDNDataSource" using Driver: "Oracle JDBC driver", Version: "11.1.0.7.0-Production".>
    ####<Mar 23, 2011 11:42:44 PM IST> <Info> <Common> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@3cdeed72> <<anonymous>> <BEA1-006686F9CB68> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903964851> <BEA-000628> <Created "1" resources for pool "EDNDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:42:45 PM IST> <Info> <Common> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000013> <1300903965365> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:42:47 PM IST> <Info> <Common> <Bharathi> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@3f582c55> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-000000000000000f> <1300903967643> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:42:47 PM IST> <Info> <Common> <Bharathi> <soa_server1> <FabricScheduler_QuartzSchedulerThread> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000014> <1300903967643> <BEA-000628> <Created "1" resources for pool "SOALocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Mar 23, 2011 11:43:32 PM IST> <Warning> <Log Management> <Bharathi> <soa_server1> <[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000015> <1300904012528> <BEA-170011> <The LogBroadcaster on this server failed to broadcast log messages to the admin server. The Admin server may not be running. Message broadcasts to the admin server will be disabled.>
    ####<Mar 23, 2011 11:43:33 PM IST> <Info> <Health> <Bharathi> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <766a115202c9c0be:1bb8e7ce:12ee3e8f14b:-7ffd-0000000000000016> <1300904013119> <BEA-310002> <55% of the total memory in the server is free>
    Please help me on this to make it properly.
    Appriceate your suggestions.
    Thanks

  • When I tried to login to em console unable to see the soa server up. Help

    Please help me to resolve the issue. I am unable to see soa_server in up condition in em console. i followed the below steps.
    1. started Admin server through startAdminServer wizard from start--> all programs
    2. started Soa_server through c:\oracle\Middleware\user_projects\domain\base_domain\ startmanagedWeblogic.cmd soa_server1
    3. server started.
    4.in the em console , only admin server is showing in up arrow green color . but soa_server is down. I dont know why.
    5. but when i saw the logs. from the below folder
    C:\Oracle\Middleware\user_projects\domains\base_domain\servers\soa_server1\logs
    the below errors it is showing . please help me in the below case.
    <Failed to invoke startup class "JRF Startup Class", java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
    java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<22 Apr, 2012 12:08:48 AM PDT> <Critical> <WebLogicServer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335078528432> <BEA-000286> <Failed to invoke startup class "JPS Startup Class", java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
    java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<22 Apr, 2012 12:08:48 AM PDT> <Critical> <WebLogicServer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335078528432> <BEA-000286> <Failed to invoke startup class "ODL-Startup", java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
    java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<22 Apr, 2012 12:08:48 AM PDT> <Critical> <WebLogicServer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335078528432> <BEA-000286> <Failed to invoke startup class "AWT Application Context Startup Class", java.lang.ClassNotFoundException: oracle.jrf.AppContextStartup
    java.lang.ClassNotFoundException: oracle.jrf.AppContextStartup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<22 Apr, 2012 12:08:48 AM PDT> <Critical> <WebLogicServer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335078528447> <BEA-000286> <Failed to invoke startup class "JMX Framework Startup Class", java.lang.ClassNotFoundException: oracle.as.jmx.framework.wls.spi.StartupListener
    java.lang.ClassNotFoundException: oracle.as.jmx.framework.wls.spi.StartupListener
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<22 Apr, 2012 12:08:48 AM PDT> <Critical> <WebLogicServer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335078528447> <BEA-000286> <Failed to invoke startup class "JOC-Startup", java.lang.ClassNotFoundException: oracle.ias.cache.Startup
    java.lang.ClassNotFoundException: oracle.ias.cache.Startup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<22 Apr, 2012 12:08:48 AM PDT> <Critical> <WebLogicServer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335078528447> <BEA-000286> <Failed to invoke startup class "DMS-Startup", java.lang.ClassNotFoundException: oracle.dms.wls.DMSStartup
    java.lang.ClassNotFoundException: oracle.dms.wls.DMSStartup
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<22 Apr, 2012 12:08:48 AM PDT> <Critical> <WebLogicServer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335078528447> <BEA-000286> <Failed to invoke startup class "SOAStartupClass", java.lang.ClassNotFoundException: oracle.bpel.services.common.util.GenerateBPMCryptoKey
    java.lang.ClassNotFoundException: oracle.bpel.services.common.util.GenerateBPMCryptoKey
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClass(ClassDeploymentManager.java:262)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.access$000(ClassDeploymentManager.java:54)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager$1.run(ClassDeploymentManager.java:214)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.invokeClassDeployment(ClassDeploymentManager.java:207)
         at weblogic.management.deploy.classdeployment.ClassDeploymentManager.runStartupsBeforeAppDeployments(ClassDeploymentManager.java:149)
         at weblogic.management.deploy.classdeployment.ClassDeploymentService.start(ClassDeploymentService.java:20)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<22 Apr, 2012 12:08:48 AM PDT> <Info> <Management> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335078528463> <BEA-141187> <Java system properties are defined as follows:
    awt.toolkit = sun.awt.windows.WToolkit
    bam.oracle.home = C:\Oracle\Middleware\Oracle_SOA1
    bpm.enabled = true
    common.components.home = C:\Oracle\MIDDLE~1\ORACLE~1
    domain.home = C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1
    em.oracle.home = C:\Oracle\Middleware\oracle_common
    file.encoding = Cp1252
    file.encoding.pkg = sun.io
    file.separator = \
    igf.arisidbeans.carmlloc = C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1\config\FMWCON~1\carml
    igf.arisidstack.home = C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1\config\FMWCON~1\arisidprovider
    java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
    java.awt.headless = true
    java.awt.printerjob = sun.awt.windows.WPrinterJob
    java.class.path = C:\Oracle\MIDDLE~1\WLSERV~1.3\server\ext\jdbc\oracle\11g\ojdbc6dms.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\user-patch.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\soa-startup.jar;;C:\Oracle\MIDDLE~1\patch_wls1033\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\JDK160~1\lib\tools.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.3.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.soa.common.adapters_11.1.1\oracle.soa.common.adapters.jar;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\commons-cli-1.1.jar;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.xdk_11.1.0\xsu12.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules.xquery_10.3.1.0.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\db2jcc4.jar;C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1\config\soa-infra;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\fabric-url-handler_11.1.1.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\quartz-all-1.6.5.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.soa.fabric_11.1.1\oracle.soa.fabric.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.soa.adapter_11.1.1\oracle.soa.adapter.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.soa.b2b_11.1.1\oracle.soa.b2b.jar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar
    java.class.version = 50.0
    java.endorsed.dirs = C:\Oracle\MIDDLE~1\JDK160~1\jre\lib\endorsed
    java.ext.dirs = C:\Oracle\MIDDLE~1\JDK160~1\jre\lib\ext;C:\windows\Sun\Java\lib\ext
    java.home = C:\Oracle\MIDDLE~1\JDK160~1\jre
    java.io.tmpdir = C:\Users\Lenovo\AppData\Local\Temp\
    java.library.path = C:\Oracle\MIDDLE~1\JDK160~1\bin;.;C:\windows\Sun\Java\bin;C:\windows\system32;C:\windows;C:\Oracle\MIDDLE~1\patch_wls1033\profiles\default\native;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bin;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0;C:\Program Files (x86)\ESTsoft\ALZip;C:\Program Files (x86)\ESTsoft\ALZip;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8;C:\Oracle\Middleware\Oracle_SOA1\soa\thirdparty\edifecs\XEngine\bin
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs = weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    java.protocol.handler.pkgs = oracle.mds.net.protocol|oracle.fabric.common.classloaderurl.handler|oracle.fabric.common.uddiurl.handler|oracle.bpm.io.fs.protocol|weblogic.net
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = 1.6.0_18-b07
    java.security.policy = C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Sun Microsystems Inc.
    java.specification.version = 1.6
    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.6.0_18
    java.vm.info = mixed mode
    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 = 16.0-b13
    javax.management.builder.initial = weblogic.management.jmx.mbeanserver.WLSMBeanServerBuilder
    javax.net.ssl.trustStore = C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks
    javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory = weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory = oracle.j2ee.ws.saaj.soap.MessageFactoryImpl
    jrf.version = 11.1.1
    jrockit.optfile = C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt
    oracle.domain.config.dir = C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1\config\FMWCON~1
    oracle.security.jps.config = C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1\config\fmwconfig\jps-config.xml
    oracle.security.jps.policy.migration.validate.principal = false
    oracle.server.config.dir = C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1\config\FMWCON~1\servers\soa_server1
    org.apache.commons.logging.Log = org.apache.commons.logging.impl.Jdk14Logger
    org.omg.CORBA.ORBClass = weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass = weblogic.corba.orb.ORB
    org.management.deploy.int

    Hi Ashish,
    Thank you for your reply regarding this issue. As per your resolution, I have added the below line at the end of the file before end LOCal
    command
    call "%DOMAIN_HOME%\bin\setDomainEnv.cmd" %*
    still am unable to startup the soa server . am facing the below error message from soa_server log file.
    Actually earlier without adding the above line i was able to deploy sample BPEL ( Synchronous service ) and test the service.
    thanks in advance.
    Ahamad
    Kernel>> <> <> <1335169585586> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean UIX#[email protected]. Error - weblogic.management.DeploymentException: .
    weblogic.management.DeploymentException:
         at weblogic.servlet.internal.WarDeploymentFactory.findOrCreateComponentMBeans(WarDeploymentFactory.java:69)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:67)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.io.FileNotFoundException: C:\Oracle\Middleware\oracle_common\modules\oracle.uix_11.1.1\uix11.war (Access is denied)
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:114)
         at java.util.zip.ZipFile.<init>(ZipFile.java:131)
         at weblogic.servlet.utils.WarUtils.existsInWar(WarUtils.java:84)
         at weblogic.servlet.utils.WarUtils.isWebServices(WarUtils.java:76)
         at weblogic.servlet.internal.WarDeploymentFactory.findOrCreateComponentMBeans(WarDeploymentFactory.java:61)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:67)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<23 Apr, 2012 1:26:25 AM PDT> <Error> <Deployer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335169585633> <BEA-149205> <Failed to initialize the application 'UIX [LibSpecVersion=11,LibImplVersion=11.1.1.1.0]' due to error weblogic.management.DeploymentException: .
    weblogic.management.DeploymentException:
         at weblogic.servlet.internal.WarDeploymentFactory.findOrCreateComponentMBeans(WarDeploymentFactory.java:69)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:67)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.io.FileNotFoundException: C:\Oracle\Middleware\oracle_common\modules\oracle.uix_11.1.1\uix11.war (Access is denied)
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:114)
         at java.util.zip.ZipFile.<init>(ZipFile.java:131)
         at weblogic.servlet.utils.WarUtils.existsInWar(WarUtils.java:84)
         at weblogic.servlet.utils.WarUtils.isWebServices(WarUtils.java:76)
         at weblogic.servlet.internal.WarDeploymentFactory.findOrCreateComponentMBeans(WarDeploymentFactory.java:61)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:67)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<23 Apr, 2012 1:26:25 AM PDT> <Info> <WorkManager> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335169585633> <BEA-002936> <maximum thread constraint WatchManagerEvents is reached>
    ####<23 Apr, 2012 1:26:25 AM PDT> <Error> <Deployer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335169585633> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean adf.oracle.domain#[email protected]. Error - weblogic.management.DeploymentException: C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear (Access is denied) with : C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear (Access is denied) with : C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:67)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.io.IOException: C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear (Access is denied) with : C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:114)
         at java.util.jar.JarFile.<init>(JarFile.java:133)
         at java.util.jar.JarFile.<init>(JarFile.java:97)
         at weblogic.utils.jars.JarFileDelegate.<init>(JarFileDelegate.java:32)
         at weblogic.utils.jars.VirtualJarFactory.createVirtualJar(VirtualJarFactory.java:24)
         at weblogic.application.ApplicationFileManagerImpl.getVirtualJarFile(ApplicationFileManagerImpl.java:192)
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:166)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:67)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<23 Apr, 2012 1:26:25 AM PDT> <Error> <Deployer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335169585648> <BEA-149205> <Failed to initialize the application 'adf.oracle.domain [LibSpecVersion=1.0,LibImplVersion=11.1.1.2.0]' due to error weblogic.management.DeploymentException: C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear (Access is denied) with : C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear (Access is denied) with : C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:67)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.io.IOException: C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear (Access is denied) with : C:\Oracle\Middleware\oracle_common\modules\oracle.adf.model_11.1.1\adf.oracle.domain.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:114)
         at java.util.jar.JarFile.<init>(JarFile.java:133)
         at java.util.jar.JarFile.<init>(JarFile.java:97)
         at weblogic.utils.jars.JarFileDelegate.<init>(JarFileDelegate.java:32)
         at weblogic.utils.jars.VirtualJarFactory.createVirtualJar(VirtualJarFactory.java:24)
         at weblogic.application.ApplicationFileManagerImpl.getVirtualJarFile(ApplicationFileManagerImpl.java:192)
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:166)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:67)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<23 Apr, 2012 1:26:25 AM PDT> <Error> <Deployer> <Lenovo-PC> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1335169585648> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean adf.oracle.domain.webapp#[email protected]. Error - weblogic.management.DeploymentException: .
    weblogic.management.DeploymentException:
         at weblogic.servlet.internal.WarDeploymentFactory.findOrCreateComponentMBeans(WarDeploymentFactory.java:69)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:67)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.io.FileNotFoundException: C:\Oracle\Middleware\oracle_common\modules\oracle.adf.view_11.1.1\adf.oracle.domain.webapp.war (Access is denied)
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:114)
         at java.util.zip.ZipFile.<init>(ZipFile.java:131)
         at weblogic.servlet.utils.WarUtils.existsInWar(WarUtils.java:84)
         at weblogic.servlet.utils.WarUtils.isWebServices(WarUtils.java:76)
         at weblogic.servlet.internal.WarDeploymentFactory.findOrCreateComponentMBeans(WarDeploymentFactory.java:61)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:89)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationForAppDeployment(MBeanConverter.java:67)
         at weblogic.management.deploy.internal.MBeanConverter.setupNew81MBean(MBeanConverter.java:315)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >

  • Starting Managed Server from Administration Console

    Hi
    I am new for SOA and fusion. Can anyone share the brief steps that are needed to start/stop a Managed Server from Admin Console.
    I did a fresh install on RHEL5 and configure a domain. i was able to start the services from script which are created when creating a domain.
    But when i assigned a Managed Server to a Node Manager and try starting the Managed server. It does not start and in the log i can see exceptions like below
    Failed to invoke startup class "JPS Startup Class", java.lang.ClassNotFoundException: oracle.security.jps.wls.JpsWlsStartupClass
    java.lang.ClassNotFoundException
    Failed to invoke startup class "ODL-Startup", java.lang.ClassNotFoundException: oracle.core.ojdl.weblogic.ODLConfiguration
    java.lang.ClassNotFoundException
    I start the services in below order
    Weblogic Server
    node Manager
    and
    soa_server
    Thanks
    Hari

    you must set to true the StartScriptEnabled property in nodemanager.properties

  • When installing Adobe Illustrator CS6, the Installer says "Your installation encountered errors" but error summary file lists 0 fatal errors, 0 errors, 0 warnings.

    How should I proceed?
    I'm running Windows 7.

    Sure! Here it is:
    "Installation Failed
    Your installation encountered errors.
    The error summary file may help you identify the issue.
    More troubleshooting tips:
    1. Restart your computer.
    2. Exit all applications including startup items, virus checking and firewall software.
    3. Close this window and launch the installer again to reinstall your application.
    If the problems persist, please contact Customer Support for further assistance."
    I tried all three of the tips suggested in the troubleshooting.
    The error summary file says:
    Exit Code: 20
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 0 error(s), 0 warning(s)

  • Photoshop Installer failed to initialize. Help?

    Hello adobe! When trying to download a trail of photoshop the installer resulted in the following issue:
    Installation Failed
         Your installation encountered errors.
    Installer failed to initialize. This could be due to a missing file.
    More troubleshooting tips:
    1.Restart your computer
    2. Exit all applications including startup items, virus checking and firewall software.
    3. Launch the installer and reinstall your applications.
         I looked into this issue for probably around 5 hours now and attempted everything possible (or at least any solution I could find). The attempts tried and failed go as follows:
    - Disabling all startup processes in msconfig
    - Disabling antivirus temporarily
    - Using the CCcleaner to produce a log and delete files
    - Downloading multiple products from adobe (none working and same error)
         These programs include premeire
    - Trying to use the installer on multiple drives (I have 3 total)
    - Multiple accounts and directories
         My PC's specs:
    -Intel core i7 4770k 3.5GHz
    -(ASUS) Nvidia Geforce GTX 760
    -8 GB RAM
    -Samsung SSD and two other HDDs
    My guess as to the cause for the problem is that I have moved my users and program files directories to one of my HDDs.
    The log:
    Gen_WWCombined-en_US-20121017_1230
    [Mon Dec 09 16:36:30 2013] Please enter (y) for Yes or (n) for No. ... >>
    [Mon Dec 09 16:36:31 2013] Choose from one of the following options to clean up :
    [Mon Dec 09 16:36:31 2013] 1.  All
    [Mon Dec 09 16:36:31 2013] 2.  Adobe Flash Player 10.2
    [Mon Dec 09 16:36:31 2013] 3.  Creative Cloud & CS6 Products
    [Mon Dec 09 16:36:31 2013] 4.  CS6 only
    [Mon Dec 09 16:36:31 2013] 5.  CS5-CS5.5-CS6
    [Mon Dec 09 16:36:31 2013] 6.  CS5-CS5.5
    [Mon Dec 09 16:36:31 2013] 7.  CS3, CS4
    [Mon Dec 09 16:36:31 2013] 8.  Adobe Id credentials
    [Mon Dec 09 16:36:31 2013] 9.  Quit
    [Mon Dec 09 16:36:31 2013] Choice :>
    [Mon Dec 09 16:36:33 2013] User selected: All
    [Mon Dec 09 16:36:33 2013] DB does not exist at: B:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Mon Dec 09 16:36:33 2013] DB does not exist at: B:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Mon Dec 09 16:36:33 2013] DB does not exist at: B:\Program Files (x86)\Common Files\Adobe\caps\caps.db
    [Mon Dec 09 16:36:33 2013] List of products installed on this machine
    [Mon Dec 09 16:36:33 2013] Listing products for cleanup:
    [Mon Dec 09 16:36:33 2013] Please enter the option number of the product you wish to remove; enter (q) to quit ... >>
    [Mon Dec 09 16:36:35 2013] Are you sure you want to clean all the listed products and associated files?
    [Mon Dec 09 16:36:35 2013] Type (y) to confirm and remove or (n) to quit ... >>
    [Mon Dec 09 16:36:37 2013] Please wait for Adobe Creative Cloud Cleaner Tool to finish........
    [Mon Dec 09 16:36:37 2013] :: Cleaning-up left over inventories ::
    [Mon Dec 09 16:36:37 2013] Atleast one Non-RIBS Inventory : False, Atleast one AAMRef: False
    [Mon Dec 09 16:36:37 2013] ::Start:: Removing AUM contents
    [Mon Dec 09 16:36:37 2013] Deleting registry root:HKLM key:Software\Microsoft\Windows\CurrentVersion\Run value:AdobeAAMUpdater-1.0
    [Mon Dec 09 16:36:37 2013] Exception during deleting key : (2, 'RegDeleteValue', 'The system cannot find the file specified.')
    [Mon Dec 09 16:36:37 2013] Deleting registry root:HKLM key:Software\Microsoft\Windows\CurrentVersion\Run value:ADOBE_UPDATER_STARTUP_UTILITY
    [Mon Dec 09 16:36:37 2013] Exception during deleting key : (2, 'RegDeleteValue', 'The system cannot find the file specified.')
    [Mon Dec 09 16:36:37 2013] Deleting scheduled task : AdobeAAMUpdater-1.0-ThirtyVirus-PC-ThirtyVirus
    [Mon Dec 09 16:36:37 2013] Executing command: schtasks /delete /TN "AdobeAAMUpdater-1.0-ThirtyVirus-PC-ThirtyVirus" /F
    [Mon Dec 09 16:36:37 2013] ERROR: The system cannot find the file specified.
    [Mon Dec 09 16:36:37 2013] Deleting scheduled task : AdobeUpdater Task-ThirtyVirus-PC-ThirtyVirus
    [Mon Dec 09 16:36:37 2013] Executing command: schtasks /delete /TN "AdobeUpdater Task-ThirtyVirus-PC-ThirtyVirus" /F
    [Mon Dec 09 16:36:37 2013] ERROR: The system cannot find the file specified.
    [Mon Dec 09 16:36:37 2013] ::Finish:: Removing AUM contents
    [Mon Dec 09 16:36:37 2013] ::Start:: Removing OOBE
    [Mon Dec 09 16:36:37 2013] Executing command "taskkill /F /FI "IMAGENAME eq AAM Updates Notifier.exe""
    [Mon Dec 09 16:36:37 2013] INFO: No tasks running with the specified criteria.
    [Mon Dec 09 16:36:37 2013] ::Finish:: Removing OOBE
    [Mon Dec 09 16:36:37 2013] Removing content of Product : CS5Installer, Version : CS5
    [Mon Dec 09 16:36:37 2013] File does not exist: B:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Mon Dec 09 16:36:37 2013] File does not exist: B:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Mon Dec 09 16:36:37 2013] LOG FILE SAVED TO: B:\Users\THIRTY~1\AppData\Local\Temp\Adobe Creative Cloud Cleaner Tool.log
    [Mon Dec 09 16:36:37 2013] Adobe Creative Cloud Cleaner Tool completed successfully
    [Mon Dec 09 16:36:37 2013]
    [Mon Dec 09 16:36:37 2013] *-*-*-*-*-*- ::START:: - SUMMARY OF Warnings -*-*-*-*-*-*
    [Mon Dec 09 16:36:33 2013] DB does not exist at: B:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Mon Dec 09 16:36:33 2013] DB does not exist at: B:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Mon Dec 09 16:36:33 2013] DB does not exist at: B:\Program Files (x86)\Common Files\Adobe\caps\caps.db
    [Mon Dec 09 16:36:37 2013] *-*-*-*-*-*- :: END :: - SUMMARY OF Warnings -*-*-*-*-*-*
    [Mon Dec 09 16:36:37 2013] ---------------------------------------------------------
    [Mon Dec 09 16:36:37 2013] *=*=*=*=*=*=*=*=* :: End Session :: *=*=*=*=*=*=*=*=*=*=*
    [Mon Dec 09 16:36:37 2013] ---------------------------------------------------------
    Anything that you can do? If so thank you! Thanks!

    I had a similar problem with installation of CS6 Extended.
    I searched all through the forums and the internet, could not find an answer to this issue. On another forum, someone suggested this option for a differnt issue. I tried it for mine and it worked.
    Download a newer version of Adobe Application Manager (https://www.adobe.com/support/downloads/detail.jsp?ftpID=4773)
    Installed the application manager and than install your softwre. CS6 Extended loaded right up.
    DDW

Maybe you are looking for

  • Masking Payment (Credit) Card number in CRM 4.0

    Hi Experts, I was wondering how can I mask the credit card number in CRM at BP as well as transaction level. SAP Help says that it happens automatically at transaction level, but it is not happening in our CRM 4.0 system. We need the masking to be do

  • CSS to ACE migration

    I am in the process of Migration all servers from our Content switch to CIsco ACE4710. one content has this line item advanced-balance sticky-srcip What would be similar option in ACE.? Thanks for any help on this. Mehdi

  • Preventing one off automatic app updates

    So - for updating my apps on IOS 7 on my IPad air I used to click on the update all tab. There is one app that I don't want to update (if anyone is interested it's the new - annoying- version of EA sports Scrabble)  From time to time I click on updat

  • When my mac is on the network, internet goes down

    We have a small network of Mac laptops (3 machines). For some reason, when mine is here, we often lose internet access for short periods (30 seconds up to a couple minutes). It feels as if mine interferes with the wireless router or something. I don'

  • Vlans with ESX 3.5 and Cat6509

    have Esx 3.5 with 6 physical NICs. It connects to my Cat6509 running 12.x IOS code. Have downloaded the Vmware/cisco whitepaper and several vmKB articles. Still have some confusion here. 1) Plan to run ESX in VST (vlan Tagging) mode. 2) What is the d