Weblogic Server switching from debug to start mode

I am using weblogic server on bea workshop for weblogic platform(weblogic 10.1)
I started the server in debug mode.
When I start the server there is an exception popup shown on the ide saying "Server could not be launched within timeout".
Now on the domain console, the status of server is shown as started,but on the ide, the server status is "started" and not "debugging".
When I right click on the server and click restart-->Debug, it changes mode to debugging, but when application is started, it does not hit the breakpoint

C++ changed debug format from stabs to dwarf format in Studio 12. The change was necessary because stabs format was not capable of representing new debugger information now generated by the compiler.
Dwarf format is a bit larger than stabs, partly because it contains additional information the debugger can use.
By default, stabs information resides only in the .o files, and the a.out contains only "index stabs" that show where to find the stabs data in the individual .o files. The .o files had to be present and all files had to be in the same location at runtime in order to debug a program.
The -xs option for stabs caused all the stabs data to be copied into the a.out. The a.out then became a stand-alone program for debugging. You could debug it anywhere, and the .o files were not referenced.
Using dwarf format, the a.out contains all the debug data. The size is only a bit larger than when using stabs with the -xs option.
Please note that the extra size is only on disk. The debug data is not loaded into the program. It is used only by the debugger.

Similar Messages

  • How to check whether weblogic server is in DEBUG mode or not

    Hi
    I want to check in my OSB proxy whether weblogic server is in Debug mode or not?
    IF abv thing is not possible ,
    I have check whether server is in development mode or production mode from my OSB proxy service?
    I m not able to find any doc on this??Please let me know how it can be done?
    Thanks

    There isnt any other way except for doing a Java Callout. In the callout method you can access the Domain/Server MBean for the information that you seek. Based on the callout result you can go ahead with the logic in your PS..
    Here is a sample Java Code to get the Server Log Level and ascertain whether the server is in Production Mode or not.
    package com.dell.mbean;
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.util.Hashtable;
    import javax.management.MBeanServerConnection;
    import javax.management.MalformedObjectNameException;
    import javax.management.ObjectName;
    import javax.management.remote.JMXConnector;
    import javax.management.remote.JMXConnectorFactory;
    import javax.management.remote.JMXServerErrorException;
    import javax.management.remote.JMXServiceURL;
    import javax.naming.Context;
    public class MyConnection {
         private static MBeanServerConnection connection;
         private static JMXConnector connector;
         private static final ObjectName service;
         static {
              try {
              service = new ObjectName("com.bea:Name=DomainRuntimeService,Type=weblogic.management.mbeanservers.domainruntime.DomainRuntimeServiceMBean");
              catch (MalformedObjectNameException e) {
              throw new AssertionError(e.getMessage());
         * Initialize connection to the Domain Runtime MBean Server.
         @SuppressWarnings("unchecked")
         public static void initConnection(String hostname, String portString,
         String username, String password) throws IOException,
         MalformedURLException {
         String protocol = "t3";
         Integer portInteger = Integer.valueOf(portString);
         int port = portInteger.intValue();
         String jndiroot = "/jndi/";
         String mserver = "weblogic.management.mbeanservers.domainruntime";
         JMXServiceURL serviceURL = new JMXServiceURL(protocol, hostname, port,
         jndiroot + mserver);
         Hashtable h = new Hashtable();
         h.put(Context.SECURITY_PRINCIPAL, username);
         h.put(Context.SECURITY_CREDENTIALS, password);
         h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,"weblogic.management.remote");
         h.put("jmx.remote.x.request.waiting.timeout", new Long(10000));
         try {
         connector = JMXConnectorFactory.connect(serviceURL, h);
         connection = connector.getMBeanServerConnection();
         } catch(JMXServerErrorException jmxSE)
              jmxSE.printStackTrace();
         catch(Exception ex)
              ex.printStackTrace();
         public static String getLogSeverity(String hostName, String portName, String userName, String password) throws Exception {
              initConnection(hostName, portName, userName,password);
              connector.close();
              ObjectName domainConfig = (ObjectName) connection.getAttribute(service,
              "DomainConfiguration");
              ObjectName logMbean =(ObjectName) connection.getAttribute(domainConfig, "Log");
              String logFileFilter = (String) connection.getAttribute(logMbean, "LogFileSeverity");
              System.out.println("Log File Filter= "+ logFileFilter.toString());
              return logFileFilter;
         public static boolean isProductionModeEnabled(String hostName, String portName, String userName, String password) throws Exception {
              initConnection(hostName, portName, userName,password);
              connector.close();
              ObjectName domainConfig = (ObjectName) connection.getAttribute(service,
              "DomainConfiguration");
              boolean prodEnabled= (Boolean) connection.getAttribute(domainConfig, "ProductionModeEnabled");
              System.out.println("Is Production Mode Enabled=" +prodEnabled);
              return prodEnabled;
    Make sure you have wlclient.jar and wljmxclient.jar as your dependent libraries.

  • Query about the steps for Weblogic Server Upgrade from 8.1 to 10.3

    Hi!
    We have planned to upgrade our Weblogic Server from 8.1 to 10.3. Could anyone advise me:
    1. How to upgrade the Weblogic Server from 8.1 to 10.3? Can the Weblogic Server 10.3 coexist with the Weblogic Server 8.1 in one physical server?
    2. Where can the upgrade software be downloaded?
    3. We have a web service currently running under Weblogic Workshop as the Weblogic Server is started via the workshop. Can this web service be run under Weblogic Server 10.3?
    4. Are there any foreseeable issues/problems that will happen?
    Please kindly help me. Thanks a lot.
    Best Regards
    May

    Download location: http://www.oracle.com/technology/software/products/ias/htdocs/wls_main.html
    You can upgrade the domain after you install wls 10.3 using QuickStart.
    When we migrated we have moved from windows to linux. We have installed, created domain, created managed servers, configured, etc. from scratch. We didn't face any 'show stopper' issues.

  • How to get the Weblogic Server Id from within java code

    I would like to log which server (among a cluster) a certain job is running on. Is there a way to get the server id from within Java code (this code is in a session bean if that is relevant.)
    By server id I mean the "Name" column in the summary of servers on the weblogic console.
    Thanks,
    ken

    Use the two entries close to the bottom of the page: "list WebLogic
    MBeans:listMBeans.jsp
    display MBean attributes and operations:showMBean.jsp"
    Nils
    Anatoly wrote:
    >
    Cameron,
    That page has these items on it:
    which one do you think helps with my issue?
    Misc WebLogic examples
    LongRunningTask
    Execute tasks in parallel using WebLogic Execute Threads
    Weblogic stats (5.1)
    Reload Servlet(s) programmatically (5.1)
    Network classload from WebLogic:using reflection,or the launcher
    Weblogic 5.1 debugging properties
    Seppuku pattern readme
    Using dynamic proxies to intercept EJB invocations (6.1)
    list WebLogic MBeans:listMBeans.jsp
    display MBean attributes and operations:showMBean
    Thanks to Marcelo Caldas for filter by type option and nice UI!
    Using com.sun.jdmk.comm.HtmlAdaptorServer with WebLogic 6.1
    Cool
    EJBGen
    Dimitri
    back
    "Cameron Purdy" <[email protected]> wrote in message news:<3c7a745d$[email protected]>...
    JMX ... see http://dima.dhs.org/misc/ for some info on JMX in Weblogic.
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    Clustering Weblogic? You're either using Coherence, or you should be!
    Download a Tangosol Coherence eval today at http://www.tangosol.com/
    "Anatoly" <[email protected]> wrote in message
    news:[email protected]..
    Does anyone know who to get the managing server URL's port
    from within the EJB code running on Weblogic 6.1?
    The URL port is not default (not 7001), but when creating
    initial context, I am not specifying the URL in properties.
    Due to that, trying to the the PROVIDER_URL property from
    environment does not return anything.
    Appreciate any responses.
    -Anatoly
    ============================
    [email protected]

  • WebLogic Server 12c (12.1.1) start fail with null keystore name

    Hi, I just installed WebLogic server following the instruction at http://docs.oracle.com/cd/E22289_01/html/821-1274/installing-app-dev.html#scrolltoc but when I try to start it, I got "opening of file based keystore failed". I turn on debug with startWebLogic.sh -Djava.security.debug=jpspolicy and found the error "null keystore name".
    Can anybody tell me how to fix that?
    Thanks very much in advance
    Albert

    Hi,
    This community is to discuss Oracle Application Server specific issues, you can post this query in Oracle Weblogic for better response :-
    WebLogic Server - Management / Console / WLST / Configuration
    Regards,
    Prakash.

  • WLST : Error connecting to a remote Weblogic server instance from OEPE 3.7

    Attempting a to run a weblogic script connecting to a remote weblogic server instance (10.3.5), which is generating the following exception in OEPE 3.7.2 -
    username = 'weblogic'
    password = 'weblogic6'
    url='t3://xxx.xxx.com:7001'
    connect(username,password,url)
    Connecting to t3://xxx.xxx.com:7001 with userid weblogic ...
    This Exception occurred at Fri Feb 01 13:20:54 MST 2013.
    Error occured while performing connect : Error connecting to the server : Failed to generate class for weblogic.management.mbeanservers.compatibility.internal.MBeanHomeImpl_1035_WLStub
    Use dumpStack() to view the full stacktrace :
    java.lang.AssertionError: Failed to generate class for weblogic.management.mbeanservers.compatibility.internal.MBeanHomeImpl_1035_WLStubconnect
    Problem invoking WLST - Traceback (innermost last):
    File "C:\Users\hughese\workspace\12c_wlst\wlst\heapsize.py", line 13, in ?
    File "<iostream>", line 22, in connect
    File "<iostream>", line 648, in raiseWLSTException
    WLSTException: Error occured while performing connect : Error connecting to the server : Failed to generate class for weblogic.management.mbeanservers.compatibility.internal.MBeanHomeImpl_1035_WLStub
    Use dumpStack() to view the full stacktrace
    Connecting to the local weblogic server instance (t3://localhost:7001) works okay.
    From the command prompt (wlst.cmd) I'm able to connect to the remote weblogic server instance -
    wls:/offline> connect('weblogic','xxxxx','t3:xxx.xxx.com:7001') ;
    Connecting to t3://xxx.xxx.com:7001 with userid weblogic ...
    Successfully connected to Admin Server 'AdminServer' that belongs to domain 'IDMDomain'.
    I've compared the CLASSPATHs between OEPE and the command prompt.
    Any assistance would be greatly appreciated.
    Edited by: 950635 on Feb 1, 2013 7:47 PM

    Hi,
    1)To get mysql JDBC driver to work on my Linux system, i had to add the classpath for the driver to the .bashrc:
    CLASSPATH=./:home/<user>/java/mm.mysql-2.0.6/:home/<user>/java
    Note that I execute the java program as the user <user> (and .bashrc is the config. file of this <user>...). Perhaps you must do this as well for the Oracle driver on your client machine. I don't know if your client machine is UNIX/LINUX or WINDOWS. It should only be clear that the CLASSPATH is set in the config. file of the user under which the java program runs and that this user has the permission to access the files.
    There are no differences between accessing the database locally than accessing it by a network connection. The only thing that matters are that the connection parameters are right and that the network works properly.
    2) are you sure that the table tname (case sensitivity?) exits?
    Marc

  • Weblogic Server 10.0 MP1 while starting: Client VM not supported

    Dear All,
    Installation of Weblogic serever completed successfully but, while starting the weblogic server I am getting the following error/message: Client VM not supported.
    Please provide suggestion or an idea on what to do. The details are provided below.
    Processor: Intel Quad core 64bit
    OS: windows server 2008 R2 64 bit
    Java: JDK 1.5 update 21 64 bit
    Weblogic: Server 10.0 MP1 64 bit for windows
    Regards,
    Edited by: user4198347 on Feb 5, 2011 11:48 PM

    Re: Installation error: Weblogic Server 10.0 MP2

  • Weblogic Server Switch over automatically due to too many open files error.

    Hi,
    I am facing problem in production environment. I am using Weblogic 8.1 SP4 application.
    Weblogic Server automatically switch over every 3 weeks due to few reasons.
    1. out of memorry error.
    2. Too many open files error.
    Please see my below portalserver. log files. Kindly provide some good solution to solve this problem.
    The following log is portalserver.log file
    ###<May 6, 2009 8:28:15 PM ICT> <Notice> <WebLogicServer> <ebizdr> <portalServer> <ListenThread.Default> <<WLS Kernel>> <> <BEA-000205> <After having failed to listen, the server is now listening on port 9001.>
    ####<May 6, 2009 8:28:15 PM ICT> <Critical> <WebLogicServer> <ebizdr> <portalServer> <ListenThread.Default> <<WLS Kernel>> <> <BEA-000204> <Failed to listen on port 9001, failure count: 1, failing for 0 seconds, java.net.SocketException: Too many open files>
    ####<May 6, 2009 8:28:15 PM ICT> <Error> <HTTP> <ebizdr> <portalServer> <ExecuteThread: '5' for queue: 'default'> <<WLS Kernel>> <> <BEA-101019> <[ServletContext(id=18480784,name=NBIAProject,context-path=)] Servlet failed with IOException
    java.io.FileNotFoundException: /var/opt/weblogic/user_projects/domains/eBizPortalDomain/portalServer/.wlnotdelete/NBIAPortalApp/NBIAProject/images/go.gif (Too many open files)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at weblogic.utils.classloaders.FileSource.getInputStream(FileSource.java:23)
         at weblogic.servlet.FileServlet.sendFile(FileServlet.java:563)
         at weblogic.servlet.FileServlet.service(FileServlet.java:206)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:293)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6724)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >
    ####<May 6, 2009 8:28:16 PM ICT> <Notice> <WebLogicServer> <ebizdr> <portalServer> <ListenThread.Default> <<WLS Kernel>> <> <BEA-000205> <After having failed to listen, the server is now listening on port 9001.>
    ####<May 6, 2009 8:28:16 PM ICT> <Critical> <WebLogicServer> <ebizdr> <portalServer> <ListenThread.Default> <<WLS Kernel>> <> <BEA-000204> <Failed to listen on port 9001, failure count: 1, failing for 0 seconds, java.net.SocketException: Too many open files>
    ####<May 6, 2009 8:28:16 PM ICT> <Error> <HTTP> <ebizdr> <portalServer> <ExecuteThread: '5' for queue: 'default'> <<WLS Kernel>> <> <BEA-101019> <[ServletContext(id=18480784,name=NBIAProject,context-path=)] Servlet failed with IOException
    java.io.FileNotFoundException: /var/opt/weblogic/user_projects/domains/eBizPortalDomain/portalServer/.wlnotdelete/NBIAPortalApp/NBIAProject/images/search_right.gif (Too many open files)
    Thanks & Regards,
    Suriyaprakash.V

    Sorry for the late resp. Here's what dev suggests be investigated:
    I would want to know:
    Can they do a "$ORACLE_HOME/bin/dmstool -dump" and
    save/compress/send the results?
    Are there any errors printed in the Apache error_log while this leak occurs?
    The customer could/should re-check their TCP settings, especially the TCP time wait interval and generally follow the TCP settings recommended in Chapter 5 of the iAS Performance Guide for 9.0.2.
    Is there anything else interesting/unusual about the site?
    Let us know how it goes.

  • Lightroom 2015 version on creative cloud I am getting a blue screen with x mark when i am switch from library to develop mode

    Lightroom 2015 version on creative cloud I am getting a blue screen with x mark when i am switch from library to develop mode

    Hi Chandan,
    Kindly try the below mentioned link.
    Adobe Photoshop Lightroom Help | Lightroom GPU FAQ
    Please share the results once you have tried the steps.
    Thanks,
    Atul Saini

  • How to add "Weblogic Server Adapter" from "download additional server adapter" list.

    "Weblogic Server Adapter" is not shown in "download additional server adapter" list in STS 3.6. How to add It.

    George, What deployment do you have this associated with?
    - D.J.

  • If default domain name and server name is not accepted weblogic server 6.1 does not start as NT service

    I want to change the domain name and the server name ( I do not want
    mydomain, myserver) while installing
    weblogic as an NT service. After installing and starting weblogic from NT
    services program, weblogic does not start
    But if I start it from the command script, it starts
    Thanks
    madhu

    Hi,
    I could start weblogic as an nt service by changing the name of the
    default server and domain. I had to include password in the
    installNTservice script.
    Thanks
    Madhu
    Michael Young <[email protected]> wrote in message
    news:[email protected]..
    Hi.
    Please open a case with BEA support.
    Thanks,
    Michael
    m holur wrote:
    I want to change the domain name and the server name ( I do not want
    mydomain, myserver) while installing
    weblogic as an NT service. After installing and starting weblogic from
    NT
    services program, weblogic does not start
    But if I start it from the command script, it starts
    Thanks
    madhu--
    Developer Relations Engineer
    BEA Support

  • Server Switching from STARTTLS to AUTH DIGEST-MD5

    We have been trying to track down the reason why our transaction against our Tumbleweed SMTP servers appear to be switching in midstream from STARTTLS to AUTH DIGEST-MD5 which causes us to get an authentication error. With Wire-shark, we have been capturing the transactions between the servers and CF appears it appears to be the culprit. I am hoping someone can shed some light on what is wrong or direct me on how I can further troubleshoot this issue.
    ---Enviroment --------------------------------------------------------------------------
    Windows Server 2003 Standard
    IIS6
    CF 9 Standard
    ---CFMail Tag -------------------------------------------------------------------------
    <cfmail to="#varTo#" from="#varFrom#" replyto="#varReplayTo#" subject="#varSubject#" useTLS="yes">Msg Body</cfmail>
    ---CF Admin Settings --------------------------------------------------------------
    Server: smtp.xxx123.com
    Port: 25
    User: defined
    Pwd: defined
    TLS: Enabled
    ---Mail Log -------------(two different emails: both bad)--------------
    "Error","scheduler-0","05/20/10","10:57:24",,"failed to connect"
    "Error","scheduler-0","05/20/10","10:57:25",,"Could not connect to SMTP host: smtp.xxx123.com, port: 25"
    ----Exception Log ----------------------------------------------------------------
    "Error","scheduler-2","05/19/10","14:03:22",,"failed to connect"
    javax.mail.AuthenticationFailedException: failed to connect
    at javax.mail.Service.connect(Service.java:322)
    at coldfusion.mail.MailSpooler.getConnection(MailSpooler.java:1199)
    at coldfusion.mail.MailSpooler.deliver(MailSpooler.java:984)
    at coldfusion.mail.MailSpooler.sendMail(MailSpooler.java:905)
    at coldfusion.mail.MailSpooler.deliverStandard(MailSpooler.java:1275)
    at coldfusion.mail.MailSpooler.run(MailSpooler.java:1240)
    at coldfusion.scheduling.ThreadPool.run(ThreadPool.java:201)
    at coldfusion.scheduling.WorkerThread.run(WorkerThread.java:71)
    ----Wire Shark Transaction(s) --------------------------------------------------
    ---Good------------(Red is our CF server replying)------
    220 RNR ESMTP
    EHLO CFxxx-123250-smtp.xxx123.com Hello CFxxx-123. xxx123.edu [19.19.19.19], pleased to meet you
    250-ENHANCEDSTATUSCODES
    250-PIPELINING
    250-8BITMIME
    250-SIZE
    250-DSN
    250-AUTH DIGEST-MD5
    250-STARTTLS
    250-DELIVERBY
    250 HELP
    STARTTLS
    220 2.0.0 Ready to start TLS
    ---End Good---------------------------------------------------------------------------
    ---Bad--------- ---(Red is our CF server replying)---------------------------
    220 RNR ESMTP
    EHLO CFxxx-123
    250-smtp.xxx123.com Hello CFxxx-123. xxx123.edu [19.19.19.19], pleased to meet you
    250-ENHANCEDSTATUSCODES
    250-PIPELINING
    250-8BITMIME
    250-SIZE
    250-DSN
    250-ETRN
    250-AUTH DIGEST-MD5
    250-STARTTLS
    250-DELIVERBY
    250 HELP
    AUTH DIGEST-MD5
    334

    I'm not sure. That's why I asked. :) And I only ask because one of the settings made via
    idsconfig is which "Authentication Methods" the DS will support. The choices being:
    * none
    * simple
    * sasl/DIGEST-MD5
    * tls:simple
    * tls:sasl/DIGEST-MD5
    When I set this DS up, I chose only tls:simple. A SunSolve document I read indicated that you
    could have chosen more than one at that time, but I didn't. What I need to know is how to add support
    for additional Authenticaion Methods after the fact. I assume there is a directory object somewhere and
    its a matter of modifying or adding an attribute, but I wanted to make sure there were no gotchas
    or caveats I should be aware of beforehand.

  • My iPhone 4 does not "switch" from portrait to landscape mode in any app. Is there a way to fix this? I'm running 5.0.1

    My phone does not toggle between landscape and portrait mode any more. This is, as far as I tested, in any application. Is there any way to fix this?

    Hi ckuan,
    Thanks a lot for that fast reply. Must have touched that lock button by mistake without noticing.
    Stupid me :-D. Btw happy new year!!!!!

  • MOVED: Re: HOW TO switch from IDE to AHCI mode without having to reinstall Win XP (GUIDE)

    This topic has been moved to Off-Topic Technical.
    https://forum-en.msi.com/index.php?topic=138985.0

    This topic has been moved to Off-Topic Technical.
    https://forum-en.msi.com/index.php?topic=138985.0

  • Weblogic server failing to start

    Hi All,
    Need help in starting up the weblogic server with the below error:
    starting weblogic with Java version:
    Starting WLS with line:
    java version "1.6.0_24"
    Java(TM) SE Runtime Environment (build 1.6.0_24-b50)
    Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode)
    C:\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=C:\Oracle\Middleware\wlserver_10.3\server\lib\DemoTrust.jks -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Dcommon.components.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=C:\JDEVEL~1\jdevhome\jdev\SYSTEM~1.29\DEFAUL~1 -Djrockit.optfile=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.config.dir=C:\JDEVEL~1\jdevhome\jdev\SYSTEM~1.29\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.domain.config.dir=C:\JDEVEL~1\jdevhome\jdev\SYSTEM~1.29\DEFAUL~1\config\FMWCON~1 -Digf.arisidbeans.carmlloc=C:\JDEVEL~1\jdevhome\jdev\SYSTEM~1.29\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\JDEVEL~1\jdevhome\jdev\SYSTEM~1.29\DEFAUL~1\config\FMWCON~1\arisidprovider -Doracle.security.jps.config=C:\JDEVEL~1\jdevhome\jdev\SYSTEM~1.29\DEFAUL~1\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=C:\JDEVEL~1\jdevhome\jdev\SYSTEM~1.29\DEFAUL~1\servers\DefaultServer\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\JDEVEL~1\jdevhome\jdev\SYSTEM~1.29\DEFAUL~1\oracle\store\gmds -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_oepe1050\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_ocp360\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    <30 Jan, 2013 11:31:17 AM IST> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <30 Jan, 2013 11:31:17 AM IST> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <30 Jan, 2013 11:31:18 AM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 19.1-b02 from Sun Microsystems Inc.>
    <30 Jan, 2013 11:31:19 AM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <30 Jan, 2013 11:31:20 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <30 Jan, 2013 11:31:20 AM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <30 Jan, 2013 11:31:20 AM IST> <Notice> <LoggingService> <BEA-320400> <The log file C:\JDeveloper\jdevhome\jdev\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <30 Jan, 2013 11:31:20 AM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\JDeveloper\jdevhome\jdev\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00020. Log messages will continue to be logged in C:\JDeveloper\jdevhome\jdev\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <30 Jan, 2013 11:31:20 AM IST> <Notice> <Log Management> <BEA-170019> <The server log file C:\JDeveloper\jdevhome\jdev\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <30 Jan, 2013 11:31:21 AM IST> <Error> <EmbeddedLDAP> <BEA-000000> <Error Instantiating 'dc=DefaultDomain': null>
    <30 Jan, 2013 11:31:21 AM IST> <Critical> <EmbeddedLDAP> <BEA-171522> <An error occurred while initializing the Embedded LDAP Server. The exception thrown is java.lang.ClassCastException: com.octetstring.vde.backend.BackendRoot cannot be cast to com.octetstring.vde.backend.standard.BackendStandard. This may indicate a problem with the data files for the Embedded LDAP Server. If the problem is with the data files and it can not be corrected, backups of previous versions of the data files exist in C:\JDeveloper\jdevhome\jdev\system11.1.1.6.38.62.29\DefaultDomain\servers\DefaultServer\data\ldap\backup.>
    <30 Jan, 2013 11:31:21 AM IST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    java.lang.ClassCastException: com.octetstring.vde.backend.BackendRoot cannot be cast to com.octetstring.vde.backend.standard.BackendStandard
         at weblogic.ldap.EmbeddedLDAP.start(EmbeddedLDAP.java:303)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    >
    <30 Jan, 2013 11:31:21 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <30 Jan, 2013 11:31:21 AM IST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <30 Jan, 2013 11:31:21 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    Process exited.

    Hi,
    With data folder, You can also delete or rename tmp and cache folder in same location (${DOMAIN_HOME}/servers/${SERVER_NAME}/).
    Just rename/delete all three folders and restart JVM again.

Maybe you are looking for