Problem installing Weblogic Commere Server 3.5

Hi,
I installed an evaluation copy of Weblogic 6.1 server. Then I started the installation
of an evaluation copy of Weblogic Commerce Server 3.5. I double clicked on the
WLCS_35_with_sp1win32 to start the installation. I get the following error in
the install :
"Weblogic server 6.0 is a prerequisite for this install. Cannot find weblogic
server in C:\bea".
But I did install the 6.1 server in C:\bea on my win2k machine.
Can someone direct me to the solution. Below, you will find my registry file.
Thanks,
Andy
<?xml version="1.0" encoding="UTF-8"?>
<bea-product-information>
<host name="horsee" BeaProgramGroup="BEA WebLogic E-Business Platform">
<product name="WebLogic Server" format="1.0">
<release level="6.1" Status="installed" InstallDir="C:\bea\wlserver6.1"
InstallTime="Oct 18, 2001 4:20:51 PM" InstallSet="ServerExample" BuiltInServicePackLevel="1"
ServicePackLevel="1" JavaHome="C:\bea\jdk131">
     <component name="Program" />
     <component name="Samples" />
</release>
</product>
</host>
</bea-product-information>

Hi Andy
WebLogic Commerce Server 3.5 doesn't supports WebLogic server 6.1. So, you download weblogic
6.0sp2 and install it to the same BEA-HOME, c:\bea.
Thanks & Regards
BEA Customer Support.
Andy wrote:
Hi,
I installed an evaluation copy of Weblogic 6.1 server. Then I started the installation
of an evaluation copy of Weblogic Commerce Server 3.5. I double clicked on the
WLCS_35_with_sp1win32 to start the installation. I get the following error in
the install :
"Weblogic server 6.0 is a prerequisite for this install. Cannot find weblogic
server in C:\bea".
But I did install the 6.1 server in C:\bea on my win2k machine.
Can someone direct me to the solution. Below, you will find my registry file.
Thanks,
Andy
<?xml version="1.0" encoding="UTF-8"?>
<bea-product-information>
<host name="horsee" BeaProgramGroup="BEA WebLogic E-Business Platform">
<product name="WebLogic Server" format="1.0">
<release level="6.1" Status="installed" InstallDir="C:\bea\wlserver6.1"
InstallTime="Oct 18, 2001 4:20:51 PM" InstallSet="ServerExample" BuiltInServicePackLevel="1"
ServicePackLevel="1" JavaHome="C:\bea\jdk131">
<component name="Program" />
<component name="Samples" />
</release>
</product>
</host>
</bea-product-information>

Similar Messages

  • Installing Weblogic Admin Server as service -  service won't start

    I'm installing Weblogic Admin Server as a Service in Weblogic 10 on a Windows 2008 R2 box.
    The service installs correctly, but when I start it, it immeidately stops with this error:
    "The <service name> service on Local Computer started and then stopped. Some services stop automatically if they have no work to do, for example, the performance logs and alerts service."
    Also, sometimes it gives me this error:
    "Error 1053: The service did not respond to the start or control request in a timely fashion"
    Thanks in advance for any help.  Here is my installSvc.cmd:
    @echo off
    SETLOCAL
    set PRODUCTION_MODE=true
    SET JAVA_VENDOR=BEA
    SET JAVA_HOME=C:\bea10_64\jr
    set USERDOMAIN_HOME=C:\PA_Prod
    set SERVER_NAME=AdminServer
    set DOMAIN_NAME=PA_domain
    set HOST=10.0.1.28
    set PORT=7001
    set WL_HOME=C:\bea10_64\wlserver_10.3
    call "%WL_HOME%\common\bin\commEnv.cmd"
    @rem Check that the WebLogic classes are where we expect them to be
    :checkWLS
    if exist "%WL_HOME%\server\lib\weblogic.jar" goto checkJava
    echo The WebLogic Server wasn't found in directory %WL_HOME%\server.
    echo Please edit your script so that the WL_HOME variable points
    echo to the WebLogic installation directory.
    goto finish
    @rem Check that java is where we expect it to be
    :checkJava
    if exist "%JAVA_HOME%\bin\java.exe" goto runWebLogic
    echo The JDK wasn't found in directory %JAVA_HOME%.
    echo Please edit your script so that the JAVA_HOME variable
    echo points to the location of your JDK.
    goto finish
    :runWebLogic
    if not "%JAVA_VM%" == "" goto noResetJavaVM
    if "%JAVA_VENDOR%" == "BEA" set JAVA_VM=-jrocket
    if "%JAVA_VENDOR%" == "HP" set JAVA_VM=-server
    if "%JAVA_VENDOR%" == "Sun" set JAVA_VM=-server
    :noResetJavaVM
    if not "%MEM_ARGS%" == "" goto noResetMemArgs
    set MEM_ARGS=-Xms32m -Xmx200m
    :noResetMemArgs
    @echo on
    set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%
    if "%ADMIN_URL%" == "" goto runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.management.server=\"%ADMIN_URL%\" -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    goto finish
    :runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    :finish
    rem *** Set up extrapath for win32 and win64 platform separately
    if "%WL_USE_X86DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\32;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\32\oci920_8
    if "%WL_USE_IA64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\64\oci920_8
    if "%WL_USE_AMD64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\x64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\x64\oci920_8
    rem *** Install the service
    "%WL_HOME%\server\bin\beasvc" -install -svcname:"beasvc %DOMAIN_NAME%_%SERVER_NAME%" -javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%" -maxconnectretries:"%MAX_CONNECT_RETRIES%" -host:"%HOST%" -port:"%PORT%" -extrapath:"%EXTRAPATH%" -password:"%WLS_PW%" -cmdline:%CMDLINE%
    ENDLOCAL

    The problem lies in your additions to the script installSvc.cmd
    Say we have for example the following directory as our middleware-home
    c:\bea. In this directory we also have installed a JVM say C:\bea\jrockit_160_05_R27.6.2-20.
    When you create a domain (by using the config.cmd script) the domain you created
    is placed in the directory c:\bea\user_projects\domain\base_domain (assuming we have
    called the domain base_domain).
    Now we have to add the following parameter definitions to installSvc.cmd
    @rem JAVA_VENDOR and JAVA_HOME are set in the call to commEnv.cmd
    @rem JAVA_VENDOR is checked in commEnv.cmd to be Oracle or Sun
    set JAVA_VENDOR=Oracle
    set JAVA_HOME=C:\bea\jrockit_160_05_R27.6.2-20
    set USERDOMAIN_HOME=C:\bea\user_projects\domains\base_domain
    set SERVER_NAME=AdminServer
    set DOMAIN_NAME=base_domain
    @rem i am assuming it is running on localhost
    set HOST=127.0.0.1
    set PORT=7001In your case it becomes (just a guess)
    @rem use Oracle instead of BEA
    set JAVA_VENDOR=Oracle
    @rem the location where your JVM is installed
    set JAVA_HOME=C:\bea10_64\jr
    @rem if bea10_64 is your middleware home and PA_domain is your domain name
    set USERDOMAIN_HOME=C:\bea10_64\user_projects\domains\PA_domain
    @rem the rest should be alright
    set SERVER_NAME=AdminServer
    set DOMAIN_NAME=PA_domain
    set HOST=10.0.1.28
    set PORT=7001If you add the following to uninstallSvc.cmd you can uninstall the service
    set SERVER_NAME=AdminServer
    set DOMAIN_NAME=base_domain

  • Problem installing weblogic server 7.0 in Mandrake Linux 10.1

    hi
    i am very new to Mandrake Linux ..i have installed Mandrake Linux 10.1 in my machine ...the problem is that when i try i to install weblogic server 7.0 it gives some error
    ** Error during execution, error code = 11
    my machine spec
    * 512MB RAM
    * 40GB HDD
    * P4 2.8GHZ
    can any one help me..
    the weblogic server i downloaded from bea site its version is weblogic server 7.0 with jrockit (sp6)
    regards
    babu

    Hi,
    first of all, unfortunately, WebLogic Server is not supported under Mandrivia (use the right name ;-) ), so you should use Novell Suse or Redhat AS, check this list
    Anyway, error code 11 should be related to permission issues, so you should check that the user you are using is allowed to write under the installation directory and under /var/log/
    Could you kindly post the log messages?
    Regards.
    Antenore Gatta
    Middleware Specialist
    Hequa S.r.l
    C.so Buenos Aires 77
    20124 Milano
    http://www.Hequa.it
    Tel +39(0)267493078
    Fax +39(0)267493079
    Mobile +39 3481537897
    ______________________________________

  • Problem installing weblogic server 8.11

    I have a problem while installing weblogic server 8.11 on a solaris 9 machine.
    I use the following instruction: ./filename.bin and I see the following message:
    Illegal instruction (memory dumped)
    (in french: instruction incorrecte (vidage memoire))
    A core file is generated but it doesn't help resolving this problem. It seems
    to be talking about unzip, as I found things like this message in this file:
    error: cannot allocate unzip buffers
    unzipsfx: cannot find myself! [%s]
    error [%s]: missing %ld bytes in zipfile
    I also tryed to install weblogic server 8.10 and no core file is generated but
    I have the following message:
    error [export/home/tleberre/net_server810_solaris32.bin]: missing 570 byes in
    zipfile
    (attempting to process anyway)
    ** Error during init, error code = 2.
    I first thought the file I downloaded was incomplete, so I downloaded it again
    but I still have the same problem. Can anyone help me? What have I forgotten to
    do?
    Thank you
    Tanguy Le Berre

    "Tanguy" == Tanguy Le Berre <[email protected]> writes:
    Tanguy> I have a problem while installing weblogic server 8.11 on a solaris 9 machine.
    Tanguy> I use the following instruction: ./filename.bin and I see the following message:
    Tanguy> Illegal instruction (memory dumped)
    Tanguy> (in french: instruction incorrecte (vidage memoire))
    Tanguy> A core file is generated but it doesn't help resolving this problem. It seems
    Tanguy> to be talking about unzip, as I found things like this message in this file:
    Tanguy> error: cannot allocate unzip buffers
    Tanguy> unzipsfx: cannot find myself! [%s]
    Tanguy> error [%s]: missing %ld bytes in zipfile
    Tanguy> I also tryed to install weblogic server 8.10 and no core file is generated but
    Tanguy> I have the following message:
    Tanguy> error [export/home/tleberre/net_server810_solaris32.bin]: missing 570 byes in
    Tanguy> zipfile
    Tanguy> (attempting to process anyway)
    Tanguy> ** Error during init, error code = 2.
    Tanguy> I first thought the file I downloaded was incomplete, so I downloaded it again
    Tanguy> but I still have the same problem. Can anyone help me? What have I forgotten to
    Tanguy> do?
    Well, perhaps one thing you've forgotten is that it's better to write notes
    about particular problems in the newsgroup or mailing list that is most
    appropriate to the problem. If people who read this newsgroup only know about
    the webserver, then they won't have any idea how to help you with installation
    problems with WebLogic server, which this clearly is (the "webserver" is not
    "WebLogic Server", but only part of the entire package).
    Have you made an attempt to contact BEA support? It seems likely that your zip
    file is corrupt.
    ===================================================================
    David M. Karr ; Java/J2EE/XML/Unix/C++
    [email protected] ; SCJP; SCWCD; SCBCD

  • Help: Install "WebLogic Express Server" license

    I am having problem to install my "WebLogic Express Server" license.
    As I understand, the "WebLogic Server" and "WebLogic Express Server" use the same
    installation file, the only difference is the license. So I downloaded the "WebLogic
    Server 6.0 Service Pack 2" from BEA's web site. After the installation, I found
    a "license.bea" file under WebLogic home directory. I replaced this file with
    my license file for "WebLogic Express Server". Unfortunately, I can not start
    the default server anymore.
    Neither the "UpdateLicense" command works: it seems to me that it only merges/replaces
    the existing license with the new one. So although I "updated" the "WebLogic Server"
    license to "WebLogic Express Server" license using this command, it seems that
    I am still using the "WebLogic Server", because I can still see the EJB component
    page in the admin console.
    Did I miss something? What is the best way to check whether "WebLogic Express
    Server" has been sucessfully installed? Your help is highly appreciated!

    Hi,
    Find the Link with the screenshots of the whole installtion and domain creation process for Weblogic in all the ways
    Installing Weblogic in GUI mode - weblogicexpert
    Installing Weblogic 10.3.6 in console Mode in windows machine - weblogicexpert
    Creating Domain In GUI mode - weblogicexpert
    Creating Domain in Console Mode - weblogicexpert    
    Starting Weblogic Admin Server
    Starting/Stoping Weblogic Admin Server - weblogicexpert
    Starting Weblogic Managed Server
    Starting/Stoping Weblogic Managed Server - weblogicexpert
    Configuring Node manger
    Configuring NODE MANAGER And Starting Managed Server from Console - weblogicexpert
    Deployment process
    Deployments - weblogicexpert
    Security concepts
    Security Concepts and Hands on - weblogicexpert
    Installing Weblogic 12.1.2
    Weblogic 12c - weblogicexpert
    All other basic information are available in the blog
    Hope it helps

  • Having problems starting Weblogic Managed Server

    Hi,
    I am new to WebLogic and I was looking at the webservices examples in samples dir and I took the example and just moved it to one of my currently deployed Web Application folder and changed the dir strutcure instead of the samples dir strutcure, compiled and deployed as standalone Application(not as part of my currently deployed Web App). It worked fine.
    Then since there would be a need for reuse of lot of the current Web App. in the web services we are trying to implement, I tried to put the ear that got created in the WEB-INF/lib of the currently deployed exploded dir. It was pretty dumb to put the ear there, just thought, worst case it wont work, I thought I could pull the ear out of there. But seems like this changed the entire config.xml and ever since that my admin server got changed to myserver, I corrected all the problems with the admin server and admin server and node server they come up just fine. When trying to bring up Managed server, I get the following excpetion
    Jul 16, 2004 4:00:37 PM EDT> <Debug> <HTTP> <BEA-101158> <Exception thrown while loading epic_dev: java.lang.NullPointerException
    java.lang.NullPointerException
         at weblogic.utils.enumerations.FileEnumeration.getNextFile(FileEnumeration.java:155)
         at weblogic.utils.enumerations.FileEnumeration.hasMoreFiles(FileEnumeration.java:102)
         at weblogic.utils.enumerations.FileEnumeration.hasMoreElements(FileEnumeration.java:134)
         at weblogic.utils.jars.ExplodedJarFile$1.hasNext(ExplodedJarFile.java:112)
         at weblogic.utils.classloaders.ExtractionHelper.extractClassFiles(ExtractionHelper.java:117)
         at weblogic.servlet.internal.WebAppServletContext.extractClassFiles(WebAppServletContext.java:5119)
         at weblogic.servlet.internal.WebAppServletContext.setDocroot(WebAppServletContext.java:4991)
         at weblogic.servlet.internal.WebAppServletContext.init(WebAppServletContext.java:560)
         at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:511)
         at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:594)
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:623)
         at weblogic.j2ee.J2EEApplicationContainer.prepareWebModule(J2EEApplicationContainer.java:2896)
         at weblogic.j2ee.J2EEApplicationContainer.prepareModules(J2EEApplicationContainer.java:1532)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1188)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1031)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:822)
         at weblogic.management.deploy.slave.SlaveDeployer$Application.prepare(SlaveDeployer.java:3085)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareAllApplications(SlaveDeployer.java:930)
         at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:398)
         at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:230)
         at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
         at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:964)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
         at weblogic.Server.main(Server.java:32)
    >
    <Jul 16, 2004 4:00:37 PM EDT> <Info> <Deployer> <BEA-149061> <Module epic_dev of application appsdirepic_dev_dir failed to transition from unprepared to prepared on server betsy_dev.>
    <Jul 16, 2004 4:00:37 PM EDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application appsdirepic_dev_dir due to error weblogic.management.ApplicationException: prepare failed for epic_dev
    Module Name: epic_dev, Error: Could not load epic_dev: java.lang.NullPointerException
    weblogic.management.ApplicationException: prepare failed for epic_dev
    Module Name: epic_dev, Error: Could not load epic_dev: java.lang.NullPointerException
         at weblogic.j2ee.J2EEApplicationContainer.prepareModules(J2EEApplicationContainer.java:1555)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1188)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:1031)
         at weblogic.j2ee.J2EEApplicationContainer.prepare(J2EEApplicationContainer.java:822)
         at weblogic.management.deploy.slave.SlaveDeployer$Application.prepare(SlaveDeployer.java:3085)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareAllApplications(SlaveDeployer.java:930)
         at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:398)
         at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:230)
         at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
         at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:964)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
         at weblogic.Server.main(Server.java:32)
    >
    Could someone help me with resolving this.(This is only the dev machine, I played thannkfully!).
    And also would like to get suggestions on setting up the new webserverces that we are trying to do. If I need to reuse lot of class files from current appl., how do i go about implementing this webservice? Should this be part of the existing application? or Web service could be a separate application and somehow we could look at the web app which is in the same domain.
    Any help is appreciated.
    Thanks
    Anna

    There was an access problem in the application I was trying to deploy and it had nothing to do with EAR file, once the access problem is taken care of, I could deploy the app just fine.

  • Problem with Weblogic Commerce Server 3.1

    I am currently evaluating the Weblogic Commerce server 3.1 product. I have
    installed the Weblogic server 5.1 and the service pack 6 along with the
    Commerce Server. I can get into the WLCS Commerce Server Templates and can
    navigate the store categories and search for items but when I try to add to
    the shopping cart or view the shopping cart I get taken to the 'servererror'
    template. I have included at the bottom of this message the message from
    the log file. Does anyone have any idea why I am getting this error?
    Thanks in advance,
    Barry Childs
    Manager Knowledgebase Applications
    Xactsites
    <<<<<<< weblogic.log >>>>>>>
    Fri Nov 10 14:00:16 MST 2000:<E> <WebAppServletContext-wlcs> Servlet failed
    with Exception
    weblogic.servlet.jsp.JspException: (line -1): Error in tag library at: 'wl':
    For tag 'repeat', cannot load extra info class
    'weblogicx.jsp.tags.RepeatTagInfo'
    at
    weblogic.servlet.jsp.StandardTagLib.jspException(StandardTagLib.java:138)
    at weblogic.servlet.jsp.StandardTagLib.processTag(StandardTagLib.java,
    Compiled Code)
    at
    weblogic.servlet.jsp.StandardTagLib.processTagElements(StandardTagLib.java,
    Compiled Code)
    at weblogic.servlet.jsp.StandardTagLib.<init>(StandardTagLib.java:125)
    at weblogic.servlet.jsp.JspLexer.loadTagLib(JspLexer.java:87)
    at weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE_BODY(JspLexer.java,
    Compiled Code)
    at weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE(JspLexer.java, Compiled
    Code)
    at weblogic.servlet.jsp.JspLexer.mDIRECTIVE(JspLexer.java, Compiled Code)
    at weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(JspLexer.java:1694)
    at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1535)
    at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java, Compiled Code)
    at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java, Compiled Code)
    at weblogic.servlet.jsp.JspParser.doit(JspParser.java, Compiled Code)
    at weblogic.servlet.jsp.JspParser.parse(JspParser.java:116)
    at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:97)
    at weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java,
    Compiled Code)
    at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java, Compiled Code)
    at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:180)
    at
    weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java,
    Compiled Code)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    , Compiled Code)
    at
    weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
    l.java:154)
    at
    com.beasys.commerce.foundation.flow.ServletDestinationHandler.handleDestinat
    ion(ServletDestinationHandler.java:51)
    at
    com.beasys.commerce.foundation.flow.FlowManager.service(FlowManager.java:376
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    , Compiled Code)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java:761)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java:708)
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
    Manager.java:252)
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:346)
    at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:246)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)

    I am currently evaluating the Weblogic Commerce server 3.1 product. I have
    installed the Weblogic server 5.1 and the service pack 6 along with the
    Commerce Server. I can get into the WLCS Commerce Server Templates and can
    navigate the store categories and search for items but when I try to add to
    the shopping cart or view the shopping cart I get taken to the 'servererror'
    template. I have included at the bottom of this message the message from
    the log file. Does anyone have any idea why I am getting this error?
    Thanks in advance,
    Barry Childs
    Manager Knowledgebase Applications
    Xactsites
    <<<<<<< weblogic.log >>>>>>>
    Fri Nov 10 14:00:16 MST 2000:<E> <WebAppServletContext-wlcs> Servlet failed
    with Exception
    weblogic.servlet.jsp.JspException: (line -1): Error in tag library at: 'wl':
    For tag 'repeat', cannot load extra info class
    'weblogicx.jsp.tags.RepeatTagInfo'
    at
    weblogic.servlet.jsp.StandardTagLib.jspException(StandardTagLib.java:138)
    at weblogic.servlet.jsp.StandardTagLib.processTag(StandardTagLib.java,
    Compiled Code)
    at
    weblogic.servlet.jsp.StandardTagLib.processTagElements(StandardTagLib.java,
    Compiled Code)
    at weblogic.servlet.jsp.StandardTagLib.<init>(StandardTagLib.java:125)
    at weblogic.servlet.jsp.JspLexer.loadTagLib(JspLexer.java:87)
    at weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE_BODY(JspLexer.java,
    Compiled Code)
    at weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE(JspLexer.java, Compiled
    Code)
    at weblogic.servlet.jsp.JspLexer.mDIRECTIVE(JspLexer.java, Compiled Code)
    at weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(JspLexer.java:1694)
    at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1535)
    at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java, Compiled Code)
    at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java, Compiled Code)
    at weblogic.servlet.jsp.JspParser.doit(JspParser.java, Compiled Code)
    at weblogic.servlet.jsp.JspParser.parse(JspParser.java:116)
    at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:97)
    at weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java,
    Compiled Code)
    at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java, Compiled Code)
    at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:180)
    at
    weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java,
    Compiled Code)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    , Compiled Code)
    at
    weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
    l.java:154)
    at
    com.beasys.commerce.foundation.flow.ServletDestinationHandler.handleDestinat
    ion(ServletDestinationHandler.java:51)
    at
    com.beasys.commerce.foundation.flow.FlowManager.service(FlowManager.java:376
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    , Compiled Code)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java:761)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
    l.java:708)
    at
    weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
    Manager.java:252)
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:346)
    at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:246)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)

  • OIM problem with weblogic administration server (configuring OIM)

    Hi,
    I have this software installed:
    - Oracle database 11gR2 (schemas made with RCU)
    - SOA Suite generic 11.1.1.2.0
    - Repository Creation Utility
    - Weblogic Server 1034
    - JDK 1.6.0_24
    - IAM_generic 11.1.1.1.3.0 (OIM)
    when I'm configuring the oracle identity management 11.1.1.3.0 and I'm in the weblogic administration server screen I write in the fields:
    url administration server : t3://localhost:7001
    Username: weblogic
    Password: ****** (correct)
    when it tries to connect to weblogic I get an error that says:
    INST-6180: It has not been possible to get the URL server managed by the OIM domain // (spanish translation of the error)
    then if look at the weblogic standard output (and in the admin server log) I see the following error
    ####<23-feb-2011 21H04' CET> <Warning> <RMI> <WIN-5GJP37O0LUL> <AdminServer> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1298491447915> <BEA-080003> <RuntimeException thrown by rmi server: javax.management.remote.rmi.RMIConnectionImpl.getAttribute(Ljavax.management.ObjectName;Ljava.lang.String;Ljavax.security.auth.Subject;)
    java.lang.NullPointerException.
    java.lang.NullPointerException
         at java.util.concurrent.ConcurrentHashMap.get(ConcurrentHashMap.java:768)
         at weblogic.management.mbeanservers.internal.JMXContextInterceptor.getMBeanContextLoader(JMXContextInterceptor.java:475)
         at weblogic.management.mbeanservers.internal.JMXContextInterceptor.getAttribute(JMXContextInterceptor.java:146)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326)
         at java.security.AccessController.doPrivileged(Native Method)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326)
         at java.security.AccessController.doPrivileged(Native Method)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324)
         at weblogic.management.mbeanservers.internal.SecurityInterceptor.getAttribute(SecurityInterceptor.java:299)
         at weblogic.management.jmx.mbeanserver.WLSMBeanServer.getAttribute(WLSMBeanServer.java:279)
         at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$5$1.run(JMXConnectorSubjectForwarder.java:326)
         at java.security.AccessController.doPrivileged(Native Method)
         at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$5.run(JMXConnectorSubjectForwarder.java:324)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.getAttribute(JMXConnectorSubjectForwarder.java:319)
         at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1404)
         at javax.management.remote.rmi.RMIConnectionImpl.access$200(RMIConnectionImpl.java:72)
         at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1265)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1367)
         at javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:600)
         at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:667)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:522)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:518)
         at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Thanks for your time

    As mentioned earlier in this thread please use 10.3.3 weblogic .
    I have created 8 post step by step installation series for OIM/OAM/OAAM/OAPM inclding SOA here http://onlineappsdba.com/index.php/2010/08/05/oracleidm-11g-step-by-installation-of-oam-oim-oaam-oapm-oin-111130-part-i-load-schema/
    IDAM 11g certification matrix is at http://www.oracle.com/technetwork/middleware/id-mgmt/identity-accessmgmt-11gr1certmatrix-161244.xls
    Atul Kumar
    - Book "OAM/OIM 11g for Administrators" -> http://onlineappsdba.com/index.php/2011/02/23/my-book-oracle-identity-access-manager-11g-for-administrators-is-now-available-in-raw-format/
    Edited by: onlineAppsDBA.com on May 15, 2011 2:15 PM

  • Problems installing MS SQl Server 2012

    Hi.
    I am trying to install MS SQL Server 2012, and I am getting the next error in the "Install Setup files" step:
    "The following error has occurred:
    An error occurred during the installation of assembly
    'Microsoft.VC80.ATL,version="8.0.50727.6229",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="amd64",type="win32". Please refer to Help and Support for more information. HRESULT:"
    Thanks in advance for your help

    Folks:
    I just spent 24 hours trying to research this problem.  This has affected every product I want to use that interfaces to MS SQL Server 2012.  My development machine is in need of recovery.  I de-installed my old products and I have to recover
    from backups.  Every new product (2012 and 2013) I downloaded had failed on this ERROR when it touches a SQL Server install or some VC Redistributable kit;
    ***'Microsoft.VC80.ATL,version="8.0.50727.6229", publicKeyToken="1fc8b3b9a1e18e3b", processorArchitecture="amd64",type="win32"***
    , for one reason or another (SqlSupport.msi).
    After extensive Internet research and many drill downs, it sounds like this issue has been around for years on and off.  It is now ON again.  No solution worked which tells me it is a serious architectural issue or complex upward compatibility
    issue.  Because the installs actually work on my non-development machines that have little software installed.
    It needs a cleanup routine, and a simple straight forward install routine.  I found someone who reported this a bug and I am looking forward to a solution.
    Go MS

  • Problems Installing WebLogic Platform 7.0.0.1

    I am trying to install WebLogic Platform 7.0.0.1 downloaded from de BEA Site on
    a Microsoft Windows 2000 Advance Server SP2 and during the process this message
    appear.
    "the instalation archive informacion could not be obtained from BEA System..."
    Thanks you for de Help.

    Hello Carlos,
    Try using the http download option instead of the .net download. This will ensure
    that you have the executable on your machine instead of a constant connection
    through the internet.
    Delete whatever installation files you currently have and download the server
    again
    Teju
    "Carlos Dapena" <[email protected]> wrote:
    >
    I am trying to install WebLogic Platform 7.0.0.1 downloaded from de BEA
    Site on
    a Microsoft Windows 2000 Advance Server SP2 and during the process this
    message
    appear.
    "the instalation archive informacion could not be obtained from BEA System..."
    Thanks you for de Help.

  • Install weblogic standalone server in my laptop. Need guidelines or any blogs.

    Hi,
    Am planning to install weblogic stand alone server in my laptop.
    Kindly help me if there is any blog to provide step by step intallation tutorial.
    regards,
    Prasad K T,

    Hi,
    Find the Link with the screenshots of the whole installtion and domain creation process for Weblogic in all the ways
    Installing Weblogic in GUI mode - weblogicexpert
    Installing Weblogic 10.3.6 in console Mode in windows machine - weblogicexpert
    Creating Domain In GUI mode - weblogicexpert
    Creating Domain in Console Mode - weblogicexpert    
    Starting Weblogic Admin Server
    Starting/Stoping Weblogic Admin Server - weblogicexpert
    Starting Weblogic Managed Server
    Starting/Stoping Weblogic Managed Server - weblogicexpert
    Configuring Node manger
    Configuring NODE MANAGER And Starting Managed Server from Console - weblogicexpert
    Deployment process
    Deployments - weblogicexpert
    Security concepts
    Security Concepts and Hands on - weblogicexpert
    Installing Weblogic 12.1.2
    Weblogic 12c - weblogicexpert
    All other basic information are available in the blog
    Hope it helps

  • Problem in weblogic sip server 3.1 ( Giving ssl exception )

    Hi All ,
    I am facing some issue while trying to run weblogic server it is saying "WLSTException: 'Error occured while performing nmConnect : Cannot connect to Node Manager.[Security:090542]Certificate chain received from" , I also tried the options -Dweblogic.security.TrustKeyStore=DemoTrust but nothing is helping , Below are the logs please help.
    wls:/offline> wls:/offline> Launching NodeManager ...
    Properties: {NodeManagerHome=/opt/bea/sipserver311/common/nodemanager,}
    Command: /opt/bea/jrockit-R27.5.0-jdk1.5.0_14/jre/bin/java -classpath /opt/bea/jrockit-R27.5.0-jdk1.5.0_14/jre/lib/rt.jar:/opt/bea/jrockit-R27.5.0-jdk1.5.0_14/jre/lib/i18n.jar:/opt/bea/patch_weblogic311/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/opt/bea/jrockit-R27.5.0-jdk1.5.0_14/lib/tools.jar:/opt/bea/sipserver311/server/lib/weblogic_sp.jar:/opt/bea/sipserver311/server/lib/weblogic.jar:/opt/bea/sipserver311/server/lib/wlss/sipservlet.jar:/opt/bea/sipserver311/server/lib/wlss/wlss.jar:/opt/bea/sipserver311/server/lib/wlss/wlss-descriptor-binding.jar:/opt/bea/sipserver311/server/lib/wlss/profile-service-descriptor-binding.jar:/opt/bea/sipserver311/server/lib/wlss/wlss-mbeaninfo.jar:/opt/bea/sipserver311/server/lib/wlss/wlss_i18n.jar:/opt/bea/sipserver311/server/lib/wlss/wlssechosvr.jar:/opt/bea/sipserver311/server/lib/wlss/wlssdiameter.jar:/opt/bea/sipserver311/server/lib/wlss/sctp.jar:/opt/bea/sipserver311/server/lib/webservices.jar weblogic.NodeManager
    NMProcess: <Apr 8, 2009 3:19:40 AM> <INFO> <Loading domains file: /opt/bea/sipserver311/common/nodemanager/nodemanager.domains>
    NMProcess: <Apr 8, 2009 3:19:43 AM> <INFO> <Loading identity key store: FileName=/opt/saurabh.jks, Type=jks, PassPhraseUsed=true>
    NMProcess: <Apr 8, 2009 3:19:44 AM> <INFO> <Loaded node manager configuration properties from '/opt/bea/sipserver311/common/nodemanager/nodemanager.properties'>
    NMProcess: <Apr 8, 2009 3:19:46 AM> <INFO> <Secure socket listener started on port 5556, host ari23bems>
    Successfully launched the Node Manager.
    The Node Manager process is running independent of the WLST process.
    Exiting WLST will not stop the Node Manager process. Please refer
    to the Node Manager logs for more information.
    The Node Manager logs will be under /opt/bea/sipserver311/common/nodemanager
    wls:/offline> Connecting to Node Manager ...
    <Apr 8, 2009 3:19:53 AM CDT> <Warning> <Security> <BEA-090542> <Certificate chain received from ari23bems - 10.82.23.11 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 1379, in nmConnect
    WLSTException: 'Error occured while performing nmConnect : Cannot connect to Node Manager.[Security:090542]Certificate chain received from ari23bems - 10.82.23.11 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client. Use dumpStack() to view the full stacktrace'
    wls:/offline> NMProcess: <Apr 8, 2009 3:19:54 AM CDT> <Warning> <Security> <BEA-090482> <BAD_CERTIFICATE alert was received from ari23bems - 10.82.23.11. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
    Not connected to Node Manager
    wls:/offline> NMProcess: <Apr 8, 2009 3:19:54 AM> <Warning> <Uncaught exception in server handler: javax.net.ssl.SSLKeyException: [Security:090482]BAD_CERTIFICATE alert was received from ari23bems - 10.82.23.11. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
    NMProcess: javax.net.ssl.SSLKeyException: [Security:090482]BAD_CERTIFICATE alert was received from ari23bems - 10.82.23.11. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.
    NMProcess: at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(Unknown Source)
    NMProcess: at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertReceived(Unknown Source)
    NMProcess: at com.certicom.tls.record.alert.AlertHandler.handle(Unknown Source)
    NMProcess: at com.certicom.tls.record.alert.AlertHandler.handleAlertMessages(Unknown Source)
    NMProcess: at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown Source)
    NMProcess: at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
    NMProcess: at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
    NMProcess: at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    NMProcess: at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete(Unknown Source)
    NMProcess: at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake(Unknown Source)
    NMProcess: at com.certicom.tls.record.ReadHandler.read(Unknown Source)
    NMProcess: at com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
    NMProcess: at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:411)
    NMProcess: at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:453)
    NMProcess: at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:183)
    NMProcess: at java.io.InputStreamReader.read(InputStreamReader.java:167)
    NMProcess: at java.io.BufferedReader.fill(BufferedReader.java:136)
    NMProcess: at java.io.BufferedReader.readLine(BufferedReader.java:299)
    NMProcess: at java.io.BufferedReader.readLine(BufferedReader.java:362)
    NMProcess: at weblogic.nodemanager.server.Handler.run(Handler.java:66)
    NMProcess: at java.lang.Thread.run(Thread.java:595)
    NMProcess:
    Connecting to t3s://ari23bems:7002 with userid saurabhAdmin ...
    Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 22, in connect
    WLSTException: 'Error occured while performing connect : Error getting the initial context. There is no server running at t3s://ari23bems:7002 Use dumpStack() to view the full stacktrace'
    wls:/offline> Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 1250, in start
    WLSTException: 'Error occured while performing start : Error starting the serverError occured while performing start : You should be connected to an admin server or a NM to start a server Use dumpStack() to view the full stacktrace'
    wls:/offline> Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 1250, in start
    WLSTException: 'Error occured while performing start : Error starting the serverError occured while performing start : You should be connected to an admin server or a NM to start a server Use dumpStack() to view the full stacktrace'
    wls:/offline>
    Exiting WebLogic Scripting Tool.

    Hi All ,
    I am facing some issue while trying to run weblogic server it is saying "WLSTException: 'Error occured while performing nmConnect : Cannot connect to Node Manager.[Security:090542]Certificate chain received from" , I also tried the options -Dweblogic.security.TrustKeyStore=DemoTrust but nothing is helping , Below are the logs please help.
    wls:/offline> wls:/offline> Launching NodeManager ...
    Properties: {NodeManagerHome=/opt/bea/sipserver311/common/nodemanager,}
    Command: /opt/bea/jrockit-R27.5.0-jdk1.5.0_14/jre/bin/java -classpath /opt/bea/jrockit-R27.5.0-jdk1.5.0_14/jre/lib/rt.jar:/opt/bea/jrockit-R27.5.0-jdk1.5.0_14/jre/lib/i18n.jar:/opt/bea/patch_weblogic311/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/opt/bea/jrockit-R27.5.0-jdk1.5.0_14/lib/tools.jar:/opt/bea/sipserver311/server/lib/weblogic_sp.jar:/opt/bea/sipserver311/server/lib/weblogic.jar:/opt/bea/sipserver311/server/lib/wlss/sipservlet.jar:/opt/bea/sipserver311/server/lib/wlss/wlss.jar:/opt/bea/sipserver311/server/lib/wlss/wlss-descriptor-binding.jar:/opt/bea/sipserver311/server/lib/wlss/profile-service-descriptor-binding.jar:/opt/bea/sipserver311/server/lib/wlss/wlss-mbeaninfo.jar:/opt/bea/sipserver311/server/lib/wlss/wlss_i18n.jar:/opt/bea/sipserver311/server/lib/wlss/wlssechosvr.jar:/opt/bea/sipserver311/server/lib/wlss/wlssdiameter.jar:/opt/bea/sipserver311/server/lib/wlss/sctp.jar:/opt/bea/sipserver311/server/lib/webservices.jar weblogic.NodeManager
    NMProcess: <Apr 8, 2009 3:19:40 AM> <INFO> <Loading domains file: /opt/bea/sipserver311/common/nodemanager/nodemanager.domains>
    NMProcess: <Apr 8, 2009 3:19:43 AM> <INFO> <Loading identity key store: FileName=/opt/saurabh.jks, Type=jks, PassPhraseUsed=true>
    NMProcess: <Apr 8, 2009 3:19:44 AM> <INFO> <Loaded node manager configuration properties from '/opt/bea/sipserver311/common/nodemanager/nodemanager.properties'>
    NMProcess: <Apr 8, 2009 3:19:46 AM> <INFO> <Secure socket listener started on port 5556, host ari23bems>
    Successfully launched the Node Manager.
    The Node Manager process is running independent of the WLST process.
    Exiting WLST will not stop the Node Manager process. Please refer
    to the Node Manager logs for more information.
    The Node Manager logs will be under /opt/bea/sipserver311/common/nodemanager
    wls:/offline> Connecting to Node Manager ...
    <Apr 8, 2009 3:19:53 AM CDT> <Warning> <Security> <BEA-090542> <Certificate chain received from ari23bems - 10.82.23.11 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 1379, in nmConnect
    WLSTException: 'Error occured while performing nmConnect : Cannot connect to Node Manager.[Security:090542]Certificate chain received from ari23bems - 10.82.23.11 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client. Use dumpStack() to view the full stacktrace'
    wls:/offline> NMProcess: <Apr 8, 2009 3:19:54 AM CDT> <Warning> <Security> <BEA-090482> <BAD_CERTIFICATE alert was received from ari23bems - 10.82.23.11. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
    Not connected to Node Manager
    wls:/offline> NMProcess: <Apr 8, 2009 3:19:54 AM> <Warning> <Uncaught exception in server handler: javax.net.ssl.SSLKeyException: [Security:090482]BAD_CERTIFICATE alert was received from ari23bems - 10.82.23.11. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
    NMProcess: javax.net.ssl.SSLKeyException: [Security:090482]BAD_CERTIFICATE alert was received from ari23bems - 10.82.23.11. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.
    NMProcess: at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(Unknown Source)
    NMProcess: at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertReceived(Unknown Source)
    NMProcess: at com.certicom.tls.record.alert.AlertHandler.handle(Unknown Source)
    NMProcess: at com.certicom.tls.record.alert.AlertHandler.handleAlertMessages(Unknown Source)
    NMProcess: at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown Source)
    NMProcess: at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
    NMProcess: at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
    NMProcess: at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    NMProcess: at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete(Unknown Source)
    NMProcess: at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake(Unknown Source)
    NMProcess: at com.certicom.tls.record.ReadHandler.read(Unknown Source)
    NMProcess: at com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
    NMProcess: at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:411)
    NMProcess: at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:453)
    NMProcess: at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:183)
    NMProcess: at java.io.InputStreamReader.read(InputStreamReader.java:167)
    NMProcess: at java.io.BufferedReader.fill(BufferedReader.java:136)
    NMProcess: at java.io.BufferedReader.readLine(BufferedReader.java:299)
    NMProcess: at java.io.BufferedReader.readLine(BufferedReader.java:362)
    NMProcess: at weblogic.nodemanager.server.Handler.run(Handler.java:66)
    NMProcess: at java.lang.Thread.run(Thread.java:595)
    NMProcess:
    Connecting to t3s://ari23bems:7002 with userid saurabhAdmin ...
    Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 22, in connect
    WLSTException: 'Error occured while performing connect : Error getting the initial context. There is no server running at t3s://ari23bems:7002 Use dumpStack() to view the full stacktrace'
    wls:/offline> Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 1250, in start
    WLSTException: 'Error occured while performing start : Error starting the serverError occured while performing start : You should be connected to an admin server or a NM to start a server Use dumpStack() to view the full stacktrace'
    wls:/offline> Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 1250, in start
    WLSTException: 'Error occured while performing start : Error starting the serverError occured while performing start : You should be connected to an admin server or a NM to start a server Use dumpStack() to view the full stacktrace'
    wls:/offline>
    Exiting WebLogic Scripting Tool.

  • Problem installing the J2EE server on a 6.40 WebAS System

    On an AIX server I've installed Oracle 9.2, WebAS Central ABAP instance and
    now I'm trying to install the J2EE server.  When it gets to phase
    "Deployment of JDDI" I get the following error.  Does anyone have any
    ideas on how to resolve this.  Thanks!
    Apr 4, 2005 2:17:21 PM   Info:                    Starting deployment                                                                     
    Apr 4, 2005 2:17:21 PM   Info: Loading selected archives...            
    Apr 4, 2005 2:17:21 PM   Info: Loading archive '/dvd/igs/J2EE1/J2EE-ENG/JDD/SYNCLOG.SDA'                              
    Apr 4, 2005 2:17:21 PM   Info: Selected archives successfully loaded.  
    Apr 4, 2005 2:17:21 PM   Info: Error handling strategy: OnErrorStop    
    Apr 4, 2005 2:17:21 PM   Info: Update strategy: UpdateLowerVersions    
    Apr 4, 2005 2:17:21 PM   Info: Starting to execute deployment action (deploy) for "synclog".                                                
    Apr 4, 2005 2:17:24 PM   Info: Creating connections to database "DBW". 
    Apr 4, 2005 2:17:24 PM   Info: Creating vendor connection to database. 
    Apr 4, 2005 2:17:24 PM   Error: Creation of vendor connection failed.  
    Original error message is:                                             
    java.sql.SQLException: Io exception: Invalid number format for port number                                                                 
    Stack trace of original Exception or Error is:                         
    java.sql.SQLException: Io exception: Invalid number format for port number                                                                 
            at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)                                                                   
            at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)                                                                   
            at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:334)                                                                   
            at oracle.jdbc.ttc7.TTC7Protocol.handleIOException(TTC7Protocol.java:3649)
            at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:353)  
            at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:368)                                                              
            at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:549)                          
            at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:349)                                                                   
            at com.sap.sql.jdbc.NativeConnectionFactory.createNativeConnection(NativeConnectionFactory.java:149)                                           
            at com.sap.sql.connect.OpenSQLDataSourceImpl.createConnection(OpenSQLDataSourceImpl.java:472)                                                  
            at com.sap.sql.connect.OpenSQLDataSourceImpl.getConnection(OpenSQLDataSourceImpl.java:253)                                                     
            at com.sap.sdm.serverext.servertype.dbsc.extern.DBSCConnectionManager.createSDMVendorConnection(DBSCConnectionManager.java:214)                
            at com.sap.sdm.serverext.servertype.dbsc.extern.DBSCConnectionManager.createSDMConnections(DBSCConnectionManager.java:77)                      
            at com.sap.sdm.serverext.servertype.dbsc.ConnectionManagerDecorator.createSDMConnections(ConnectionManagerDecorator.java:73)                   
            at com.sap.sdm.serverext.servertype.dbsc.DatabaseTargetSystem.connect(DatabaseTargetSystem.java:140)                              
            at com.sap.sdm.serverext.servertype.dbsc.DBSCDeploymentActionProcessor.executeAction(DBSCDeploymentActionProcessor.java:115)                
            at com.sap.sdm.app.proc.deployment.impl.PhysicalDeploymentActionExecutor.execute(PhysicalDeploymentActionExecutor.java:58)                  
            at com.sap.sdm.app.proc.deployment.impl.DeploymentActionImpl.execute(DeploymentActionImpl.java:181)                                         
            at com.sap.sdm.app.proc.deployment.controllers.internal.impl.DeploymentExecutorImpl.execute(DeploymentExecutorImpl.java:51)      
            at com.sap.sdm.app.proc.deployment.states.eventhandler.ExecuteDeploymentHandler.executeAction(ExecuteDeploymentHandler.java:84)             
            at com.sap.sdm.app.proc.deployment.states.eventhandler.ExecuteDeploymentHandler.handleEvent(ExecuteDeploymentHandler.java:61)               
            at com.sap.sdm.app.proc.deployment.states.StateBeforeNextDeployment.processEvent(StateBeforeNextDeployment.java:78)                         
            at com.sap.sdm.app.proc.deployment.states.InstContext.processEventServerSide(InstContext.java:88)                                           
            at com.sap.sdm.app.proc.deployment.states.InstContext.processEvent(InstContext.java:74)                                                     
            at com.sap.sdm.app.sequential.deployment.impl.DeployerImpl.doPhysicalDeployment(DeployerImpl.java:121)                         
            at com.sap.sdm.app.sequential.deployment.impl.DeployerImpl.deploy(DeployerImpl.java:90)                                           
            at com.sap.sdm.control.command.cmds.Deploy.execute(Deploy.java:162)                                                                   
            at com.sap.sdm.control.command.decorator.AssureStandaloneMode.execute(AssureStandaloneMode.java:54)                                  
            at com.sap.sdm.control.command.decorator.AssureOneRunningSDMOnly.execute(AssureOneRunningSDMOnly.java:61)                                      
            at com.sap.sdm.control.command.decorator.SDMInitializer.execute(SDMInitializer.java:52)                                        
            at com.sap.sdm.control.command.decorator.GlobalParamEvaluator.execute(GlobalParamEvaluator.java:60)                                  
            at com.sap.sdm.control.command.decorator.AbstractLibDirSetter.execute(AbstractLibDirSetter.java:46)                                  
            at com.sap.sdm.control.command.decorator.ExitPostProcessor.execute(ExitPostProcessor.java:48)                                     
            at com.sap.sdm.control.command.decorator.CommandNameLogger.execute(CommandNameLogger.java:49)                                     
            at com.sap.sdm.control.command.decorator.AdditionalLogFileSetter.execute(AdditionalLogFileSetter.java:65)                                      
            at com.sap.sdm.control.command.decorator.AbstractLogDirSetter.execute(AbstractLogDirSetter.java:52)                                  
            at com.sap.sdm.control.command.Command.exec(Command.java:42)   
            at SDM.main(SDM.java:21)                                                                               
    Apr 4, 2005 2:17:24 PM   Error: Execution of deployment action for "synclog" aborted: Db connect failed.                                                     
    Apr 4, 2005 2:17:25 PM   Error: Deployment NOT successful for synclog
    Apr 4, 2005 2:17:25 PM   Error: At least one of the Deployments failed
    Apr 4, 2005 2:17:25 PM   Info: Summarizing the deployment results:  
    Apr 4, 2005 2:17:25 PM   Error: Aborted: /dvd/igs/J2EE1/J2EE-ENG/JDD/SYNCLOG.SDA                             
    Apr 4, 2005 2:17:25 PM   Error: Processing error. Return code: 4

    Also, I should mention I'm running the 64bit capable SDK for version 1.4.2 for AIX.
    Thanks again!

  • Problem installing standalone report server

    I installed a report server using rwserver -install repsrv1 after which it directed me to windows services to start the service. When I try to start the service it gives error: The OracleOH_MidTr904Reports [repsrv1] service terminated with service-specific error 50125. How do I fix this error? Thanks.

    1) Run server as standalone as workaround and if it works make server opmn manageable.
    rwserver server=name
    2) Running as service is kind of old.
    Make the reports server opmn manageable. OPMN will restart server if it shuts down for some reason thus ensuring it remains always up.
    in bin dir give
    addNewServerTarget servername
    and restart opmn
    See
    [     Publishing reports to web  - 10G  ]
    search for "opmn.xml"
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • Problem installing weblogic server 8.1

    WHAT COULD BE THE PROBLEM ? CAN ANYONE HELP ME OUT?
    <Aug 23, 2008 3:16:23 AM EDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 10.0-b19 from Sun Microsystems Inc.>
    <Aug 23, 2008 3:16:24 AM EDT> <Info> <Configuration Management> <BEA-150016> <This server is being started as the administration server.>
    <Aug 23, 2008 3:16:24 AM EDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP6 Wed Jun 21 08:18:55 PDT 2006 781680
    WebLogic XMLX Module 8.1 SP6 Wed Jun 21 08:18:55 PDT 2006 781680 >
    The WebLogic Server did not start up properly.
    java.io.InvalidClassException: javax.management.MBeanAttributeInfo; local class incompatible: stream classdesc serialVersionUID = 7043855487133450673, local class serialVersionUID = 8644704819898565848
         at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:562)
         at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1583)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1496)
         at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1583)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1496)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1732)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
         at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1667)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1323)
         at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
         at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:480)
         at javax.management.MBeanInfo.readObject(MBeanInfo.java:669)
         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 java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:974)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1849)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
         at weblogic.management.internal.TypesHelper.getMBeanInfo(TypesHelper.java:274)
         at weblogic.management.internal.TypesHelper.getAdminOrConfigMBeanInfo(TypesHelper.java:384)
         at weblogic.management.internal.ConfigurationMBeanImpl.<init>(ConfigurationMBeanImpl.java:137)
         at weblogic.management.AdminServer.<init>(AdminServer.java:59)
         at weblogic.management.AdminServerAdmin.initialize(AdminServerAdmin.java:250)
         at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:770)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:669)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:343)
         at weblogic.Server.main(Server.java:32)
    --------------- nested within: ------------------
    weblogic.management.configuration.ConfigurationException: - with nested exception:
    [java.io.InvalidClassException: javax.management.MBeanAttributeInfo; local class incompatible: stream classdesc serialVersionUID = 7043855487133450673, local class serialVersionUID = 8644704819898565848]
         at weblogic.management.internal.TypesHelper.getMBeanInfo(TypesHelper.java:279)
         at weblogic.management.internal.TypesHelper.getAdminOrConfigMBeanInfo(TypesHelper.java:384)
         at weblogic.management.internal.ConfigurationMBeanImpl.<init>(ConfigurationMBeanImpl.java:137)
         at weblogic.management.AdminServer.<init>(AdminServer.java:59)
         at weblogic.management.AdminServerAdmin.initialize(AdminServerAdmin.java:250)
         at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:770)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:669)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:343)
         at weblogic.Server.main(Server.java:32)
    --------------- nested within: ------------------
    weblogic.management.configuration.ConfigurationError - with nested exception:
    [weblogic.management.configuration.ConfigurationException:  - with nested exception:
    [java.io.InvalidClassException: javax.management.MBeanAttributeInfo; local class incompatible: stream classdesc serialVersionUID = 7043855487133450673, local class serialVersionUID = 8644704819898565848]]
         at weblogic.management.internal.TypesHelper.getAdminOrConfigMBeanInfo(TypesHelper.java:395)
         at weblogic.management.internal.ConfigurationMBeanImpl.<init>(ConfigurationMBeanImpl.java:137)
         at weblogic.management.AdminServer.<init>(AdminServer.java:59)
         at weblogic.management.AdminServerAdmin.initialize(AdminServerAdmin.java:250)
         at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:770)
         at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:669)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:343)
         at weblogic.Server.main(Server.java:32)
    ***************************************************************************

    It looks like you may have run into an [issue related to older versions of JMX|http://forums.sun.com/thread.jspa?messageID=9530995]. It is likely that you have multiple versions of MBeanAttributeInfo on your classpath. [This JavaRanch thread|http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=40&t=003913] recommends running a WebLogic script to appropriately set up your classpath (setWLSEnv). I don't use WebLogic very often and have not used it for a couple years, but this seems reasonable. You might also try searching the [JMX forum|http://forums.sun.com/forum.jspa?forumID=537] or a [WebLogic forum|http://forums.bea.com/forum.jspa?forumID=2017] (new entries now at Oracle-hosted [General WebLogic forum|http://forums.oracle.com/forums/forum.jspa?forumID=570]).

Maybe you are looking for

  • Laptop-mode-tools no longer adjusts LCD brightness

    I just discovered that laptop-mode-tools no longer adjusts the brightness of the LCD when switched to battery. This is not a general issue. laptop-mode is active on battery (as well as being enabled via the systemd service), the computer knows it is

  • Podcast help plz

    I subscribe to several daily podcasts. I had to install a new hard drive and of course that messed up my itunes. I now have everything set up but for some reason new episodes of my podcasts dont seem to be downloading. Anyone have any idea what im do

  • MAKING MORE ARCHIVE IN MATERIALIZED VIEW

    Hi experts, i created a materialised view and created index on that, but while refreshing the MV it is making more archive log file. in index i also opted nologging option, still while refreshing it is still creating more archieve files. what to do s

  • My iPhone keeps entering DFU mode on its own, what to do?

    Every time it does that i have to reset it. What should i do?

  • Where i can get Shopping Cart App source code ?

    HI, i want to understand the Shopping Cart App properly which is explained in this link "SAPUI5 SDK - Demo Kit". please help me to find its source code so that i can understand Detailed Guidance File Structure – Proposed structure and naming for the