Application Express 2.0 startup issues

New installation:
I am at the point where I should be able to connect to the application server on port 7777 and see the htmldb login screen.
The oracle application server is 10gR3 (10.1.3) which is available from any browser on my network but I need to verify if htmldb is working
How do I know if Apache is working on port 7777... ?
Which logs?
extra details:
all running on Windows XP using VMWare (no problems from VMWare)
no problem from firewalls (disabled to allow ports to pass throught)
I can connect with sqlplus to apex_public_user

The book is very applicable to 3.0. You may want to read the "What's New" section of 3.0 User's Guide (http://download-west.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32471.pdf) to give you and idea what is different/new.
The Developer's Guide (http://download-west.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32470.pdf) is a good step-by-step sample that you can work through.
I don't use the book as a reference. I usually go to this forum first, the ApEx User's Guide second, and good old Google (hits the ApEx blogs) third.
Mike

Similar Messages

  • FastCGI on OHS/Application Express

    We struggled with setting up SSL on Oracle HTTP Server (I know this is the app server forum but it appears there's no forum specifically for OHS) for Application Express yesterday. Whenever we tried to enable ssl by changing the setting in opmn.xml from disabled to enabled the server would fail to start. We kept getting errors like this:
    [Wed Dec  6 12:56:58 2006] [notice] FastCGI: process manager initialized (pid 6705)
    [Wed Dec  6 12:56:59 2006] [alert] (2)No such file or directory: FastCGI: read() from pipe failed (0)
    [Wed Dec  6 12:56:59 2006] [alert] (2)No such file or directory: FastCGI: the PM is shutting down, Apache seems to have disappeared - bye
    Naturally, we started wondering what FastCGI had to do with the problem - so we tried an experiment. We commented out the LoadModule for FastCGI and commented out the corresponding IfModule stuff that referenced mod_fastcgi. And Voila! OPMN starts and OHS starts and SSL is working. Cool! We like that.
    So now a few questions.
    1) Is FastCGI used for anything within OHS that we might need it for? Or is it just there because that's the default configuration?
    2) Later on in the process we recalled a security audit a few months back where our security guys had us remove the FastCGI:echo executable from our installation. It's been identified as a known security vulnerability. Is that file used by the OPMN startup process for any reason and could it's not being there have been the cause of our problems?
    3) Are we safe leaving FastCGI out of our config for OHS?
    Any help on this would be appreciated.
    Earl

    I set up SSL for our Mid Tier OHS the other day by following the Metalink Note:341904.1 (Configuring HTTP Server to use SSL in Oracle Application Server 10g (10.1.2.XX))
    We needed to install OCA as we did not have it installed in the initial INF, but other than that and redirecting a couple additional WebCache ports (which we don't use here) in ssl.conf it went fairly smooth.
    No issues with FastCGI however. Not sure if you will be fine with/without it, sorry.
    Tony

  • How can you SELECT via Database Link CLOB data using Application Express?

    Customer Issue:
    Developer using Oracle's Application Express 3.1. The Developer is trying to SELECT a CLOB datatype column from a remote (10.2.0.3) database, via a database link on her 10.2.0.4 based client Application. The Developer wants to be able to select CLOB data from the remote database which has limitation that she can't make any changes to the remote database.
    Developer's Comments:
    I do a select and get the error. Getting error ORA-22992: cannot use LOB locators selected from remote tables. So she feels she can't use dbms_lob.substr in this configuration I can do a "select into" but that is for one value. I am trying to run a select statement for a report that brings back more than one row. I do not have permission to change anything on the remote database. I want to access the remote database and multiple tables.
    This is not something I work with, would greatly appreciate help or ideas. Is this a limitation of the 3.1; or does she just not have this set up correctly; or should she be using a Collection (if yes, please share example)
    Thanks very much,
    Pam
    Edited by: pmoutrie on Jun 4, 2009 12:01 PM
    Hello???
    Would really appreciate an answer.
    Thanks,
    Pam

    This may not be a perfect solution for you but it worked for my situation.
    I wanted to grab some data from Grid Control's MGMT$JOB_STEP_HISTORY table but I couldnt' create an Interactive Report due to the existance of a CLOB column. I cheated this by creating a view on the GC DB, grabbing the first 4000 characters and turning it into a varchar2 column:
    create view test_job_step_history as
    select job_Name, target_name, status, start_time, end_time, to_char(substr(output,1,4000)) output
    from MGMT$JOB_STEP_HISTORY where trunc(end_time) > trunc(sysdate)-90
    In an APEX Interactive Report:
    select * from test_job_step_history@GCDB
    Granted, the output looks aweful right now but I am only looking for a very particular output (failed, denied, ORA-, RMAN-, etc) so the formatting isn't the most important thing to me right now.
    If anyone can improve -- and I'm sure you can -- on this I'd love to hear about it.
    Thanks,
    Rich

  • Application express installation is failed while running apxdevrm.sql scrip

    Hello Experts,
    i am new to Oracle Application express. My installation is failed while running the script (apxdevrm.sql).
    here is the command i ran as sysdba
    @apexins xxxxx apex apex temp /i/
    installation is exited with the following error :
    REPORT:SYS> prompt Set Application ID...
    Set Application ID...
    REPORT:SYS>
    REPORT:SYS> begin
    2
    3 -- SET APPLICATION ID
    4 wwv_flow.g_flow_id := nvl(wwv_flow_application_install.get_application_id,4411);
    5 wwv_flow_api.g_id_offset := nvl(wwv_flow_application_install.get_offset,0);
    6 null;
    7
    8 end;
    9 /
    REPORT:SYS>
    REPORT:SYS> --application/delete_application
    REPORT:SYS>
    REPORT:SYS> begin
    2
    3 -- Remove Application
    4 wwv_flow_api.remove_flow(nvl(wwv_flow_application_install.get_application_id,4411));
    5
    6 end;
    7 /
    begin
    ERROR at line 1:
    ORA-20001: API operation includes calls that are incompatible with the current runtime.
    ORA-06512: at "APEX_030200.WWV_FLOW_API", line 32
    ORA-06512: at "APEX_030200.WWV_FLOW_API", line 247
    ORA-06512: at line 4
    here is my database version :
    REPORT:SYS> select * from v$version;
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE 11.2.0.2.0 Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    OS version :
    cat /etc/redhat-release
    Red Hat Enterprise Linux Server release 5.6 (Tikanga)
    any one had this issue in the past?
    your help is greatly appreciated.
    Edited by: 892564 on Oct 20, 2011 4:15 PM

    Hello experts,
    is there any best way to trouble shoot the error which i got?
    Thanks
    !# Pavan

  • Check Box Bug in Application Express 4.0.2.00.06

    Hi All
    I was wondering if someone can help me with checkboxes, I'm trying to implement in the report.
    I was following Oracle instruction, but it does not work in my application, for some reason.
    First Issue:
    If I add in a query report the following line apex_item.checkbox(1,attachment_id) del, in the report display as *<input type="checkbox" name="f01" value="48" />* and not the checkbox item.
    However, I can overcome this problem by going into the region report and in display change as simple checkbox.
    Second Issue
    When I check any of checkboxes and click on delete button, I'm getting the following error.
    Not found
    The requested URL /apex/wwv_flow.accept was not found on this server
    I'm using Application Express 4.0.2.00.06
    Any ideas why this is happening?
    Any sugestions are welcome
    Please help me
    Thanks in advance.
    Edited by: Malas on 01-Dec-2010 11:09
    Edited by: Malas on 01-Dec-2010 16:05

    I'm getting a very strange error using the API for APEX_ITEM as well on Application Express 4.0.2.00.07
    select APEX_ITEM.checkbox (1, style_color) as "Selection", image,item,sizes,available_date, price, suggested_retail, Percent_Savings
    from sav_tab
    This is a table.
    There are NO where conditions.
    The on_submit process updates a page item :p3_selected with the checkbox contents:
    declare
    v_select varchar2(4000);
    begin
    :P3_SELECTED :='';
    FOR I in 1..APEX_APPLICATION.G_F01.COUNT LOOP
    if APEX_APPLICATION.G_F01(i) is not null then
    :P3_SELECTED := :P3_SELECTED ||(APEX_APPLICATION.G_F01(i))||',';
    end if;
    END LOOP;
    end;
    It was returning: item,item,item
    all of a sudden, it's now it's returning item, column4 contents from the whole page.
    What the heck!!!!!
    Edited by: Canucklehead on Mar 15, 2011 2:16 PM
    I was able to get this working again, by using a different field:
    APEX_ITEM.checkbox (5, style_color) and G_F05
    Edited by: Canucklehead on Mar 15, 2011 2:39 PM

  • Pro Oracle Application Express source code?

    Greetings,
    I bought this book almost a year ago and have yet to see the source code posted on the Apress website. Does anyone know if the source code actually exists or is it vaporware?
    Regards,
    Bill Chadbourne

    Bill,
    somebody's lying and it's not Apress.That's a pretty aggressive accusation, you seem to be taking this almost personally for some reason?
    As the author of the book, I can assure you that I have nothing to gain by not making the source code available (can you think of a single reason?).
    As I mentioned previously, we (myself and APress) are sorting this out as we speak. Please bear with us while we address the issue.
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • New to Application Express

    Hi All,
    I am new to to application express. I am a DBA and i need to develop few small application to store and report data to my management using Application express.
    Not sure from where to start. Need your guidance .
    Thanks,
    http://gssdba.wordpress.com

    gottikere wrote:
    I am new to to application express. I am a DBA and i need to develop few small application to store and report data to my management using Application express.
    Not sure from where to start. Need your guidance
    Start with the Oracle® Database 2 Day + Application Express Developer's Guide tutorial in order to understand basic APEX techniques and terminology. Creating a Form on a Table with Report is the best way to get basic data retrieval and maintenance up and running.
    Further APEX tutorials are available in the Oracle Learning Library.
    Installing the database sample app and other demo apps and reviewing the techniques they use will also be instructive.
    When you post to this forum you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    Full APEX version
    Full DB/version/edition/host OS
    Web server architecture (EPG, OHS or APEX listener/host OS)Browser(s) and version(s) used
    Theme
    Template(s)
    Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.

  • Logical Standby - Application Express Recovery

    Ive asked a similar question in the following threads:-
    Re: Recovering Logical Standby - Non-Guarded Schemas
    Logical Standby - Application Express Recovery
    Were using 10g Logical Standby database for our reporting environment and within it we have Oracle Application Express. i initially installed APEX into the logical after it was created. We then had to recover the primary RESETLOGS and reinstantiate the Logical - but since the APEX components were not-guarded by Data Guard they werent recreated after the reinstantiation. So it got me thinking.
    Q1) Is it best to install Apex into the primary so the schema objects get recreated if we have to reinstantiate the Logical
    Q2) If you do 1) this means you have to manually copy the files on the OS across - are there issues with this?
    Does anyone else have this issue with an Apex installation?
    Thanks for you help
    Simon

    you may want to try this one on the database general forum as well

  • VPD and Context With Application Express

    Dear All
    i'm going to build application using application express and oracle database enterprise , VPD Implemented on the schema using Context,
    for developer issue i set on login trigger to set user ;
    but i can't view data inside application but i can view it using sql statement
    So is their issue in Apex when using VPD , Context , or On log on trigger?
    thanks

    Logon triggers won't work with web apps using a connection pool like APEX. The VPD context should be set via the APEX VPD application security attribute.
    http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/bldr.htm#CHDFCFGD

  • Application Express 2.2 on Windows x64 Edition?

    Hi,
    I am running Application Express 2.2 on a server running Windows Server 2003 Standard x64 Edition with Service Pack 1. I am running Oracle Enterprise Edition 10g R2, and I also have Oracle Application Server 10.1.3 installed.
    Whenever I log into our application express applications, the server slows down majorly. I have to end the process for the explorer window and restart the htmldb service for it to go back to normal again. In my alert.log file, I see errors such as the ones below that occur at the same time that I try to login to an htmldb app. Is ApEx 2.2 for 32-bit only? Could this be causing problems, or could it be something else? Any suggestions or thoughts would be appreciated.
    Tue Aug 01 16:17:10 2006
    SERVER COMPONENT id=UTLRP_END: timestamp=2006-08-01 16:17:10
    Tue Aug 01 16:28:53 2006
    Process S002 died, see its trace file
    failed to start shared server, oer=0
    Tue Aug 01 16:31:14 2006
    failed to start shared server, oer=0
    Tue Aug 01 16:35:10 2006
    failed to start shared server, oer=0
    Tue Aug 01 16:35:55 2006
    Errors in file \bdump\db1_qmnc_2944.trc:
    ORA-27300: OS system dependent operation:SuspendThread failed with status: 5
    ORA-27301: OS failure message: Access is denied.
    ORA-27302: failure occurred at: sssxcpttcs6
    Tue Aug 01 16:35:56 2006
    Process q002 died, see its trace file
    Tue Aug 01 16:35:57 2006
    ksvcreate: Process(q002) creation failed
    Thanks,
    Nora

    Hi Nora,
    Application Express 2.2 is supported on Windows Server 2003 Standard x64. There really is nothing magical about Application Express - it's all SQL and PL/SQL, so it runs without problems across any platform that runs PL/SQL (unless it's EBCDIC, but that's another story).
    This looks like an underlying database issue. I found evidence of a couple issues filed by customers with the same symptoms - and they weren't using Application Express at all. This further supports my assertion that it's a database issue on your platform and not an issue with Application Express, per se.
    Unfortunately, all I can recommend at this point is that you contact Oracle Support and/or file a TAR. They are in a better position to assist.
    I hope this helps.
    Joel

  • Create organizational charts using application express

    I would like to create organizational charts using the application express(HTMLDB). How do I go about it?
    I also tried the Aria sample application for HTMLDB 2.0, but when I try to run the scripts it asks for some bind variable parameters ' :NEW ' and ' :OLD ' which I could not identify. Can anybody help with understanding the standard inputs to this?

    A perfectly reasonable question, phrased in
    a perfectly reasonable way (in my opinion).
    On this, I believe, we'll have to agree to disagree. I point you to the following document,
    particularly the section "Questions Not To Ask":
    I'm not sure why you feel the need to point me at a
    document entitled "Questions Not To Ask",
    particularly when I wasn't the one asking the
    question....I pointed you to the section "Questions Not To Ask" in the document entitled "How To Ask Questions The Smart Way" not because I believe you need help asking questions, but because the advice given in that document directly contradicts your opinions:
    "Q: How can I use X to do Y?
    A: If what you want is to do Y, you should ask that question without pre-supposing the use of a method that may not be appropriate. Questions of this form often indicate a person who is not merely ignorant about X, but confused about what problem Y they are solving and too fixated on the details of their particular situation. It is generally best to ignore such people until they define their problem better."
    I admit, I failed to follow the advice of ignoring the person when I first replied, but the issue is whether it was an appropriate question, which I think this quote clearly indicates it is not.
    Robert

  • Minimum resources for Oracle Application Express

    Hi,
    I'm new to the forum, and a bit confuse here trying to find an answer to what supposedly is a simple question:
    What kind of resources do I have to have to develop and deploy screens with Oracle Application Express?
    The scenario:
    I have this Oracle application all created in forms that we are planning to give to our customers in a web based.
    I'm looking for options to convert it and many forums are talking about how easy and inexpensive (free) the Oracle Applications Express is.
    Then, talking with my main developer, he told me that in order to use it, the client need to spend quite a while in IAS (Oracle's Internet Application Server) and/or have to have the Enterprise version.
    I'm looking for white papers on that and could not find any corroboration, but just texts telling that it's free and easy to use.
    Any one can point me to the right directions on this issue?
    Just want to know what exaclty do I need in order to use (creating and deploying) the Applications Express.
    Right now I have Standar Edition 10q as well as my client
    THank you

    If you want to develop an intranet web application, the HTTP server that comes with Standard Edition 10q would do. However, if you are thinking of it as an internet application then you better separate DB and web server. In that case you need to have either Oracle HTTP Server or Oracle Application Express Listener. Oracle HTTP server requires a license and usually bundled with DB or an Application Server. I believe Oracle Application Server is no longer being offered/available instead web logic server is made available. The basic edition of web logic would do as all you require is Oracle HTTP Server to broker the requestes between the web and the database. As far as I know, Oracle HTTP server is not being offered standalone. As mentioned above the other alternative is Oracle Application Express Listener but requires one of the J2EE complaint web servers like web logic, Glassfish, OC4J or TOMCAT.
    Hope this helps!
    Chandra Movva

  • SQL Command problem in Application Express 3.2.0.00.27

    To Oracle Application Express Development Team,
    Yesterday I installed Oracle Application Express 3.2.0.00.27.
    While doing my r&d, I came across one problem in SQL Command.
    For example I wanted to run sql "select * from tab"
    When I checked "Autocommit" checkbox it worked fine.
    But when I unchecked the "Autocommit" checkbox it gave me following error:
    ORA-01003: no statement parsed
    Please check post
    http://www.oraclebrains.com/2009/03/sql-command-problem-in-application-express-3200027/ for more details.
    Cheers

    I can't find the log file (a good indication that something went wrong)
    Here's the transcript of the session...
    SQL> startup upgrade
    ORACLE instance started.
    Total System Global Area 599785472 bytes
    Fixed Size 1288820 bytes
    Variable Size 264242572 bytes
    Database Buffers 331350016 bytes
    Redo Buffers 2904064 bytes
    Database mounted.
    Database opened.
    SQL> @apxpatch.sql
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Wrote file apxset.sql
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    SQL>
    SQL> @apxldimg.sql
    PL/SQL procedure successfully completed.
    Enter value for 1: C:\Documents and Settings\jtench\Desktop\My Downloads\Oracle\apex_3.2.1
    old 1: create directory APEX_IMAGES as '&1/apex/images'
    new 1: create directory APEX_IMAGES as 'C:\Documents and Settings\jtench\Desktop\My Downloads\Oracle\apex_3.2.1/apex/images'
    Directory created.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Commit complete.
    timing for: Load Images
    Elapsed: 00:03:30.03
    Directory dropped.
    SQL>

  • Managed server startup issue!!!

    hi all,
    i am facing managedserver startup issue
    i am start the managed server it will up take the 6 min
    how to reduce the time
    1)i am trying differnt ways 1)threaddump 2)GCparamets
    but no usee
    can u see the log and give me suugestions
    below log one perticuler area it will load the application 4 min
    please see the time stamps 8:31:01 to 8:35:09
    please give me suggistions!!
    ======================================
    ####<Apr 11, 2010 8:31:00 PM PDT> <Info> <Deployer> <agwlcrptrn1> <agwlcrptrn1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1271043060997> <BEA-149059> <Module eci.jar of application Agile is transitioning from STATE_PREPARED to STATE_ADMIN on server agwlcrptrn1.>
    ####<Apr 11, 2010 8:31:01 PM PDT> <Info> <EJB> <agwlcrptrn1> <agwlcrptrn1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1271043061016> <BEA-010009> <EJB Deployed EJB with JNDI name com.eigner.eci.EciSession.>
    ####<Apr 11, 2010 8:31:01 PM PDT> <Debug> <Deployment> <agwlcrptrn1> <agwlcrptrn1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1271043061016> <BEA-000000> <Listener: end ModuleCtx[appId=Agile, modId=eci.jar, type=ejb, Target=Cluster/AgileCluster] STATE_PREPARED>STATE_ADMIN>
    ####<Apr 11, 2010 8:31:01 PM PDT> <Info> <Deployer> <agwlcrptrn1> <agwlcrptrn1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1271043061016> <BEA-149060> <Module eci.jar of application Agile successfully transitioned from STATE_PREPARED to STATE_ADMIN on server agwlcrptrn1.>
    ####<Apr 11, 2010 8:35:09 PM PDT> <Debug> <Deployment> <agwlcrptrn1> <agwlcrptrn1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1271043309172> <BEA-000000> <Relaying updated state for app, Agile to STATE_ADMIN>
    ####<Apr 11, 2010 8:35:09 PM PDT> <Debug> <Deployment> <agwlcrptrn1> <agwlcrptrn1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1271043309173> <BEA-000000> < +++ Returning app's state : STATE_ACTIVE>
    ####<Apr 11, 2010 8:35:09 PM PDT> <Debug> <Deployment> <agwlcrptrn1> <agwlcrptrn1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <

    hi sandeep,
    i take the thread dump 10 times at the start the server can u look into this one...
    ===============================
    CLASSPATH=/local/mnt/agile/bea/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/local/mnt/agile/bea/patch_cie660/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/local/mnt/agile/bea/jrockit_160_05/lib/tools.jar:/local/mnt/agile/bea/wlserver_10.3/server/lib/weblogic_sp.jar:/local/mnt/agile/bea/wlserver_10.3/server/lib/weblogic.jar:/local/mnt/agile/bea/modules/features/weblogic.server.modules_10.3.0.0.jar:/local/mnt/agile/bea/wlserver_10.3/server/lib/webservices.jar:/local/mnt/agile/bea/modules/org.apache.ant_1.6.5/lib/ant-all.jar:/local/mnt/agile/bea/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar::/local/mnt/agile/agile93/agileDomain/lib/jms.jar:/local/mnt/agile/agile93/agileDomain/lib/jndi.jar:/local/mnt/agile/agile93/agileDomain/lib/tibjms.jar
    PATH=/local/mnt/agile/bea/wlserver_10.3/server/bin:/local/mnt/agile/bea/modules/org.apache.ant_1.6.5/bin:/local/mnt/agile/bea/jrockit_160_05/jre/bin:/local/mnt/agile/bea/jrockit_160_05/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin
    Your environment has been set.
    QCHTTPHeaderIdentityAsserter.initialize
    AgileAuthenticationProviderImpl.initialize
    2010-04-10 20:03:14
    Full thread dump Java HotSpot(TM) Server VM (10.0-b19 mixed mode):
    "Thread-13" daemon prio=10 tid=0x62a8a800 nid=0x1b6 waiting on condition [0x5f7b8000..0x5f7b9130]
    java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for <0xf2d78078> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1925)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:358)
         at weblogic.utils.concurrent.JDK15ConcurrentBlockingQueue.take(JDK15ConcurrentBlockingQueue.java:89)
         at weblogic.store.internal.PersistentStoreImpl.getOutstandingWork(PersistentStoreImpl.java:567)
         at weblogic.store.internal.PersistentStoreImpl.run(PersistentStoreImpl.java:615)
         at weblogic.store.internal.PersistentStoreImpl$2.run(PersistentStoreImpl.java:383)
    "LDAPCache-TTLTimer" daemon prio=10 tid=0x09277000 nid=0x1b5 in Object.wait() [0x5f90b000..0x5f90bfb0]
    java.lang.Thread.State: TIMED_WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0xf2d7c068> (a netscape.ldap.TTLTimer)
         at netscape.ldap.TTLTimer.run(LDAPCache.java:828)
         - locked <0xf2d7c068> (a netscape.ldap.TTLTimer)
         at java.lang.Thread.run(Thread.java:619)
    "LDAPConnThread-1 ldaps://qpip.qualcomm.com:389" daemon prio=10 tid=0x5f6fc000 nid=0x1b4 runnable [0x5f95c000..0x5f95d030]
    java.lang.Thread.State: RUNNABLE
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:237)
         - locked <0xf2d820a8> (a java.io.BufferedInputStream)
         at netscape.ldap.ber.stream.BERElement.getElement(BERElement.java:101)
         at netscape.ldap.LDAPConnThread.run(LDAPConnThread.java:538)
         at java.lang.Thread.run(Thread.java:619)
    "Thread-12" daemon prio=10 tid=0x61c2ac00 nid=0x1b3 waiting on condition [0x5f9ad000..0x5f9adeb0]
    java.lang.Thread.State: TIMED_WAITING (sleeping)
         at java.lang.Thread.sleep(Native Method)
         at oracle.jdbc.pool.OracleConnectionCacheTimeOutThread.run(OracleConnectionCacheTimeOutThread.java:80)
    "LDAPConnThread-0 ldap://10.47.24.141:9001" daemon prio=10 tid=0x61cb5400 nid=0x1b1 runnable [0x5fb55000..0x5fb55db0]
    java.lang.Thread.State: RUNNABLE
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:237)
         - locked <0xf2d920a8> (a java.io.BufferedInputStream)
         at netscape.ldap.ber.stream.BERElement.getElement(BERElement.java:101)
         at netscape.ldap.LDAPConnThread.run(LDAPConnThread.java:538)
         at java.lang.Thread.run(Thread.java:619)
    "DoSManager" daemon prio=10 tid=0x0932a000 nid=0x1b0 waiting on condition [0x5f9fe000..0x5f9fee30]
    java.lang.Thread.State: TIMED_WAITING (sleeping)
         at java.lang.Thread.sleep(Native Method)
         at com.octetstring.vde.DoSManager.run(DoSManager.java:433)
    "VDE Transaction Processor Thread" daemon prio=10 tid=0x61c07000 nid=0x1ae in Object.wait() [0x5fba6000..0x5fba7130]
    java.lang.Thread.State: WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0xf2d70090> (a com.octetstring.vde.backend.standard.TransactionProcessor)
         at java.lang.Object.wait(Object.java:485)
         at com.octetstring.vde.backend.standard.TransactionProcessor.waitChange(TransactionProcessor.java:367)
         - locked <0xf2d70090> (a com.octetstring.vde.backend.standard.TransactionProcessor)
         at com.octetstring.vde.backend.standard.TransactionProcessor.run(TransactionProcessor.java:212)
    "ExecuteThread: '16' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x62a67400 nid=0x1ad waiting for monitor entry [0x5fbf7000..0x5fbf7fb0]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '15' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x62a66000 nid=0x1ac waiting for monitor entry [0x5fc48000..0x5fc49030]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '14' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x62a65000 nid=0x1ab waiting for monitor entry [0x5fc99000..0x5fc99eb0]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '13' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x62a63c00 nid=0x1aa waiting for monitor entry [0x5fcea000..0x5fceaf30]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '12' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x62a62c00 nid=0x1a9 runnable [0x5fd3b000..0x5fd3bdb0]
    java.lang.Thread.State: RUNNABLE
         at weblogic.socket.PosixSocketMuxer.poll(Native Method)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:102)
         - locked <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '11' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x62a61c00 nid=0x1a8 waiting for monitor entry [0x5fd8c000..0x5fd8ce30]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '10' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x62a60800 nid=0x1a7 waiting for monitor entry [0x5fddd000..0x5fdde0b0]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '9' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x62a6f400 nid=0x1a6 waiting for monitor entry [0x5fe2e000..0x5fe2f130]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '8' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x0928d400 nid=0x1a5 waiting for monitor entry [0x5fe7f000..0x5fe7ffb0]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '7' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x0928c000 nid=0x1a4 waiting for monitor entry [0x5fed0000..0x5fed1030]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '6' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x0928b000 nid=0x1a3 waiting for monitor entry [0x5ff21000..0x5ff21eb0]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '5' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x0930c400 nid=0x1a2 waiting for monitor entry [0x5ff72000..0x5ff72f30]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x0928dc00 nid=0x1a1 waiting for monitor entry [0x5ffc3000..0x5ffc3db0]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '3' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x09288c00 nid=0x1a0 waiting for monitor entry [0x60014000..0x60014e30]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x092d4800 nid=0x19f waiting for monitor entry [0x60065000..0x600660b0]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x092d4400 nid=0x19e waiting for monitor entry [0x600b6000..0x600b7130]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x0932d800 nid=0x19d waiting for monitor entry [0x60107000..0x60107fb0]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
         - waiting to lock <0xf2d8c098> (a weblogic.socket.PosixSocketMuxer$1)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=10 tid=0x0932c400 nid=0x19c in Object.wait() [0x60158000..0x60159030]
    java.lang.Thread.State: WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0xf2daa030> (a weblogic.work.ExecuteThread)
         at java.lang.Object.wait(Object.java:485)
         at weblogic.work.ExecuteThread.waitForRequest(ExecuteThread.java:157)
         - locked <0xf2daa030> (a weblogic.work.ExecuteThread)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    "Thread-7" daemon prio=10 tid=0x0932e400 nid=0x19b waiting on condition [0x601a9000..0x601a9eb0]
    java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for <0xf2daa150> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
         at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1925)
         at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:358)
         at weblogic.utils.concurrent.JDK15ConcurrentBlockingQueue.take(JDK15ConcurrentBlockingQueue.java:89)
         at weblogic.store.internal.PersistentStoreImpl.getOutstandingWork(PersistentStoreImpl.java:567)
         at weblogic.store.internal.PersistentStoreImpl.run(PersistentStoreImpl.java:615)
         at weblogic.store.internal.PersistentStoreImpl$2.run(PersistentStoreImpl.java:383)
    "weblogic.timers.TimerThread" daemon prio=10 tid=0x60467800 nid=0x19a in Object.wait() [0x603fe000..0x603fef30]
    java.lang.Thread.State: TIMED_WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0xf2daa2c0> (a weblogic.timers.internal.TimerThread)
         at weblogic.timers.internal.TimerThread$Thread.run(TimerThread.java:267)
         - locked <0xf2daa2c0> (a weblogic.timers.internal.TimerThread)
    "weblogic.time.TimeEventGenerator" daemon prio=10 tid=0x60431800 nid=0x199 in Object.wait() [0x60555000..0x60555db0]
    java.lang.Thread.State: TIMED_WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0xf2daa380> (a weblogic.time.common.internal.TimeTable)
         at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:286)
         - locked <0xf2daa380> (a weblogic.time.common.internal.TimeTable)
         at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:117)
         at java.lang.Thread.run(Thread.java:619)
    "[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=10 tid=0x6042e000 nid=0x198 runnable [0x605a5000..0x605a6e30]
    java.lang.Thread.State: RUNNABLE
         at java.util.HashMap.<init>(HashMap.java:209)
         at java.util.jar.Manifest.<init>(Manifest.java:37)
         at java.util.jar.JarFile.getManifestFromReference(JarFile.java:160)
         at java.util.jar.JarFile.getManifest(JarFile.java:146)
         at weblogic.utils.classloaders.GenericClassLoader$JarSource.getManifest(GenericClassLoader.java:528)
         at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:310)
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
         - locked <0xe5c43a98> (a weblogic.utils.classloaders.GenericClassLoader)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:256)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         - locked <0xe5c43a98> (a weblogic.utils.classloaders.GenericClassLoader)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:176)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         - locked <0xe5c43a98> (a weblogic.utils.classloaders.GenericClassLoader)
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
         at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericClassLoader.java:335)
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:288)
         - locked <0xe5c43a98> (a weblogic.utils.classloaders.GenericClassLoader)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:256)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         - locked <0xe5c43a98> (a weblogic.utils.classloaders.GenericClassLoader)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:176)
         at weblogic.ejb.container.deployer.EJBModule.setupEJBToImplClassDependencies(EJBModule.java:1790)
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:397)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:387)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:42)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:615)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
         at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:16)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:155)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:141)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:187)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    "Timer-1" daemon prio=10 tid=0x609e3800 nid=0x197 in Object.wait() [0x605f7000..0x605f80b0]
    java.lang.Thread.State: TIMED_WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0xf2d7a2c0> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:509)
         - locked <0xf2d7a2c0> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:462)
    "Timer-0" daemon prio=10 tid=0x609e0000 nid=0x196 in Object.wait() [0x62350000..0x62351130]
    java.lang.Thread.State: TIMED_WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0xf2d7a3b0> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:509)
         - locked <0xf2d7a3b0> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:462)
    "RMI TCP Accept-9896" daemon prio=10 tid=0x61ebf800 nid=0x194 runnable [0x623ba000..0x623bb030]
    java.lang.Thread.State: RUNNABLE
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:384)
         - locked <0xf2d76210> (a java.net.SocksSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:453)
         at java.net.ServerSocket.accept(ServerSocket.java:421)
         at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:369)
         at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:341)
         at java.lang.Thread.run(Thread.java:619)
    "RMI TCP Accept-0" daemon prio=10 tid=0x61eb6c00 nid=0x193 runnable [0x6240b000..0x6240beb0]
    java.lang.Thread.State: RUNNABLE
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:384)
         - locked <0xf2da0170> (a java.net.SocksSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:453)
         at java.net.ServerSocket.accept(ServerSocket.java:421)
         at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:369)
         at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:341)
         at java.lang.Thread.run(Thread.java:619)
    "Low Memory Detector" daemon prio=10 tid=0x63b01400 nid=0x192 runnable [0x00000000..0x00000000]
    java.lang.Thread.State: RUNNABLE
    "CompilerThread1" daemon prio=10 tid=0x63901c00 nid=0x191 runnable [0x00000000..0x634f3278]
    java.lang.Thread.State: RUNNABLE
    "CompilerThread0" daemon prio=10 tid=0x63900800 nid=0x190 runnable [0x00000000..0x635742f8]
    java.lang.Thread.State: RUNNABLE
    "Signal Dispatcher" daemon prio=10 tid=0x0919e000 nid=0x18f waiting on condition [0x00000000..0x00000000]
    java.lang.Thread.State: RUNNABLE
    "Finalizer" daemon prio=10 tid=0x09183000 nid=0x18e in Object.wait() [0x63aad000..0x63aae130]
    java.lang.Thread.State: WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0xf2d8e2d0> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
         - locked <0xf2d8e2d0> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
         at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=10 tid=0x09181c00 nid=0x18d in Object.wait() [0x63afe000..0x63afefb0]
    java.lang.Thread.State: WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0xf2daa4c8> (a java.lang.ref.Reference$Lock)
         at java.lang.Object.wait(Object.java:485)
         at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
         - locked <0xf2daa4c8> (a java.lang.ref.Reference$Lock)
    "main" prio=10 tid=0x0900f000 nid=0x17b in Object.wait() [0xf7f1d000..0xf7f1e208]
    java.lang.Thread.State: WAITING (on object monitor)
         at java.lang.Object.wait(Native Method)
         - waiting on <0xf2d723c8> (a weblogic.t3.srvr.SubsystemRequest)
         at weblogic.t3.srvr.SubsystemRequest.rendezvouz(SubsystemRequest.java:100)
         - locked <0xf2d723c8> (a weblogic.t3.srvr.SubsystemRequest)
         at weblogic.t3.srvr.SubsystemRequest.action(SubsystemRequest.java:81)
         at weblogic.t3.srvr.SubsystemRequest.start(SubsystemRequest.java:51)
         at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:457)
         at weblogic.t3.srvr.ServerServicesManager.startInAdminState(ServerServicesManager.java:237)
         - locked <0x6536b220> (a java.lang.Class for weblogic.t3.srvr.ServerServicesManager)
         at weblogic.t3.srvr.T3Srvr.initializeAdmin(T3Srvr.java:738)
         at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:499)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:440)
         at weblogic.Server.main(Server.java:67)
    "VM Thread" prio=10 tid=0x0917e800 nid=0x18c runnable
    "GC task thread#0 (ParallelGC)" prio=10 tid=0x09015c00 nid=0x17c runnable
    "GC task thread#1 (ParallelGC)" prio=10 tid=0x09016c00 nid=0x17d runnable
    "GC task thread#2 (ParallelGC)" prio=10 tid=0x09018000 nid=0x17e runnable
    "GC task thread#3 (ParallelGC)" prio=10 tid=0x09019000 nid=0x17f runnable
    "GC task thread#4 (ParallelGC)" prio=10 tid=0x0901a000 nid=0x180 runnable
    "GC task thread#5 (ParallelGC)" prio=10 tid=0x0901b000 nid=0x181 runnable
    "GC task thread#6 (ParallelGC)" prio=10 tid=0x0901c400 nid=0x182 runnable
    "GC task thread#7 (ParallelGC)" prio=10 tid=0x0901d400 nid=0x183 runnable
    "GC task thread#8 (ParallelGC)" prio=10 tid=0x0901e400 nid=0x184 runnable
    "GC task thread#9 (ParallelGC)" prio=10 tid=0x0901f400 nid=0x185 runnable
    "GC task thread#10 (ParallelGC)" prio=10 tid=0x09020800 nid=0x186 runnable
    "GC task thread#11 (ParallelGC)" prio=10 tid=0x09021800 nid=0x187 runnable
    "GC task thread#12 (ParallelGC)" prio=10 tid=0x09022800 nid=0x188 runnable
    "GC task thread#13 (ParallelGC)" prio=10 tid=0x09023800 nid=0x189 runnable
    "GC task thread#14 (ParallelGC)" prio=10 tid=0x09024c00 nid=0x18a runnable
    "GC task thread#15 (ParallelGC)" prio=10 tid=0x09025c00 nid=0x18b runnable
    "VM Periodic Task Thread" prio=10 tid=0x61ec2000 nid=0x195 waiting on condition
    JNI global references: 957
    Heap
    PSYoungGen total 229376K, used 39147K [0xe4d70000, 0xf4d70000, 0xf4d70000)
    eden space 196608K, 8% used [0xe4d70000,0xe5cf3870,0xf0d70000)
    from space 32768K, 70% used [0xf2d70000,0xf4427708,0xf4d70000)
    to space 32768K, 0% used [0xf0d70000,0xf0d70000,0xf2d70000)
    PSOldGen total 1835008K, used 0K [0x74d70000, 0xe4d70000, 0xe4d70000)
    object space 1835008K, 0% used [0x74d70000,0x74d70000,0xe4d70000)
    PSPermGen total 62208K, used 62093K [0x64d70000, 0x68a30000, 0x74d70000)
    object space 62208K, 99% used [0x64d70000,0x68a134a8,0x68a30000)

  • Application Express 4.0.1.00.03 -   ORA-01841 error when attempting to edit

    I am logged into a development workspace and am able to add new users in HOME|ADMINISTRATION|USERS but when I try to edit them afterward I get the following error:
    Application Express Users
    ORA-01841: (full) year must be between -4713 and 9999, and not be 0+
    Obviously APEX is looking for a date value and not finding it. Anyone else encounter this or know where to look to resolve this? I got the same error in APEX 4.0 so the patch didn't resolve this error. I've done some research in the tables but couldn't find anything that looked like a missing date value.
    I'm using an 11gR2 database on OEL 5.5 running in VBOX on my laptop.
    Thanks.
    Rob

    FIX:
    Cause
    The issue appears due to a problem with the PASSWORD_LIFE_TIME.
    Solution
    Using the apex_admin application, navigate to Home > Manage Service > Security then enter integer values for:
    * Account Password Lifetime (days) - enter 11688, for example
    Apply Changes.
    Looks like it is a bug in apex 4.0 which has also affected previous versions (known about since version 1.5)........

Maybe you are looking for

  • An error while deploying from xml

    Hello, all! I've generated xml specification within GUI When I'm trying to deploy it in OMB+ console the error occures OMB05623: Cannot deploy Specification from file. Exception follows. Start of root element expected. OWB 10.1.0.4.0 My steps in OMB+

  • Changing  "Mass change" options in FBL1N

    Hi All, With reference t.code FBL1N, followinng by menu Environment/Mass change/New values, I wonder if is possible add other fields in the pop-up "New values" to get some mass changes. Thanks Gandalf

  • USB cannot recognize the device when i plugged my ...

    Hello there I have a problem when i plugged my n95 to the computer, the USB doesn't recognize. Even i tried with settings the device, connect with the PC suite, and also roll back the system in both my computer and n95, tried to connect with another

  • Making change to the upload screen

    Hello, I am using EP sp with km sp. In the upload document screen I want the show properties to be expended so the user will see the other properties available at first look. Does someone knows how to do it?

  • How to move everything to new mac?

    I have just bought a new mac and am wondering if there is a way that I can move all of the info on my old mac's ical to the new one. I don't relish the thought of having to do it all manually? Thanks for your help