Deploying an app kills all sessions on server.

We have a problem using OC4J Standalone, where whenever you deploy an app from JDeveloper, all sessions on the server are killed, even for other apps.
We use 9.0.3, but I have tested this in 9.0.4 with the same results. Is there a setting somewhere that effects this?
Any help whatsoever would be appreciated.

Hi,
You can set persistence-path to store sessions during application deployments. This works in 9.0.4.
http://download-west.oracle.com/docs/cd/B10464_01/web.904/b10321/confdesc.htm#1019473
persistence-path: Indicates where to store servlet HttpSession objects for persistence across server restarts or application redeployments. Specify a relative path, which will be relative to an OC4J temporary storage area under the application-deployments directory. There is no default value. If no value is defined, then there is no persistence of session objects across restarts or redeployments.
thanks
Debu

Similar Messages

  • Kill all sessions of a special user

    Hi all,
    I'm not very familar with PL/SQL but I think this will help my on my "issue".
    Sometimes I need to kill all current sessions (most times 36 sessions) of a single database user.
    All sessions have a different sid and serial# and manually executing "alter system kill session 'xxx,yyyy' isn't really funny.
    Im thinking of a small PL/SQL script which receives the dbuser name as parameter and then killing all sessions of the user.
    Could please anyone give ma a hint or a short example on this??
    Many Thanks
    Joerg
    Edited by: Joerg Lang on 22.06.2009 12:38

    Hey Hoek,
    thanks...
    granting "alter system" to my user, by my self :D, let the procedure run without any errors...
    Strange thing and good to know...
    Ok, but now I'm still having the issue when using the "username" as parameter of the procedure.
    create or replace procedure kill_session(user in varchar2)
    is
    begin
    for sessions in ( select sid, serial#
                        from   v$session
                        where  username = 'user_to_kill')
      loop
        execute immediate 'alter system kill session '''||sessions.sid||','||sessions.serial#||'''';
      end loop;
    end;works fine and all sessions are killed.
    create or replace procedure kill_session(user in varchar2)
    is
    begin
    for sessions in ( select sid, serial#
                        from   v$session
                        where  username = '||user||')
      loop
        execute immediate 'alter system kill session '''||sessions.sid||','||sessions.serial#||'''';
      end loop;
    end;works not, but also now errors ar shown..
    any Idea?

  • Killing all sessions at once who are locking the objects

    Hello all,
    i am working in 9i Oracle RDBMS on AIX IBM OS
    most of the time we face locking issue and there comes more then different 50 sessions which locking different tables.
    here is my script to find out what sessions are locking what tables.
    set lines 200
    set pages 50000
    col SID for 99999
    col SERIAL# for 999999
    col username format a12
    col sql format a55
    col event format a50
    col program format a40
    col MINS for 9999
    col ID1 for 999999
    col object_name for a35
    col locktype for a8;
    select  /*+ ORDERED */ s.sid,s.serial#,s.status,round(s.last_call_et/60) MINS,s.program,l.ID1,d.object_name,d.object_type,l.type as locktype
    from v$lock l,v$session s, dba_objects d
    where l.sid = s.sid
    and l.ID1 = d.object_id
    and s.username = 'MULDMS'
    and last_call_et > 120 and l.type <> 'TX' order by s.status,MINS,l.ID1,l.type; and the out put it gives something like
      SID SERIAL# STATUS    MINS PROGRAM                                      ID1 OBJECT_NAME                         OBJECT_TYPE        LOCKTY
    8981    1069 ACTIVE       2 frmweb@Appsdms31 (TNS V1-V3)               30407 VH_BTN                              TABLE              TM
    1642     512 ACTIVE      15 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
      690    1057 ACTIVE      17 [email protected] (TNS V1-V3)    28846 AM_DOCS                             TABLE              TM
      699    1787 ACTIVE      17 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
      690    1057 ACTIVE      17 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
      690    1057 ACTIVE      17 [email protected] (TNS V1-V3)    30643 VT_CHECK_INOUT                      TABLE              TM
    10877     895 ACTIVE      18 [email protected] (TNS V1-V3)     28846 AM_DOCS                             TABLE              TM
    6654    1085 ACTIVE      18 [email protected] (TNS V1-V3)    28846 AM_DOCS                             TABLE              TM
    1912    1655 ACTIVE      18 [email protected] (TNS V1-V3)    28846 AM_DOCS                             TABLE              TM
    10877     895 ACTIVE      18 [email protected] (TNS V1-V3)     30407 VH_BTN                              TABLE              TM
    6654    1085 ACTIVE      18 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
    1912    1655 ACTIVE      18 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
    1754    1582 ACTIVE      18 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
    10877     895 ACTIVE      18 [email protected] (TNS V1-V3)     30643 VT_CHECK_INOUT                      TABLE              TM
    6654    1085 ACTIVE      18 [email protected] (TNS V1-V3)    30643 VT_CHECK_INOUT                      TABLE              TM
    10708     982 ACTIVE      19 [email protected] (TNS V1-V3)    28846 AM_DOCS                             TABLE              TM
    5428     855 ACTIVE      19 [email protected] (TNS V1-V3)    28846 AM_DOCS                             TABLE              TM
    10708     982 ACTIVE      19 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
    5428     855 ACTIVE      19 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
    10278     897 ACTIVE      20 [email protected] (TNS V1-V3)     28846 AM_DOCS                             TABLE              TM
    6261    1056 ACTIVE      20 frmweb@appsdms12 (TNS V1-V3)               28846 AM_DOCS                             TABLE              TM
    6598    1413 ACTIVE      20 [email protected] (TNS V1-V3)     28846 AM_DOCS                             TABLE              TM
    1312    1000 ACTIVE      20 [email protected] (TNS V1-V3)    28846 AM_DOCS                             TABLE              TM
    10278     897 ACTIVE      20 [email protected] (TNS V1-V3)     30407 VH_BTN                              TABLE              TM
    6261    1056 ACTIVE      20 frmweb@appsdms12 (TNS V1-V3)               30407 VH_BTN                              TABLE              TM
    1312    1000 ACTIVE      20 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
    3521     717 ACTIVE      20 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
    6598    1413 ACTIVE      20 [email protected] (TNS V1-V3)     30407 VH_BTN                              TABLE              TM
    6598    1413 ACTIVE      20 [email protected] (TNS V1-V3)     30643 VT_CHECK_INOUT                     TABLE              TM
    1312    1000 ACTIVE      20 [email protected] (TNS V1-V3)    30643 VT_CHECK_INOUT                   TABLE              TM
    9131    1002 INACTIVE     2 [email protected] (TNS V1-V3)    30455 VH_PSF                              TABLE              TM
    4887    1040 INACTIVE     2 [email protected] (TNS V1-V3)     30455 VH_PSF                              TABLE              TM
      151    1982 INACTIVE     2 [email protected] (TNS V1-V3)     80224 RD_ENQEXD                           TABLE              TM
      846     988 INACTIVE     3 [email protected] (TNS V1-V3)    29228 GM_VIN                              TABLE              TM
    5364    1149 INACTIVE     3 [email protected] (TNS V1-V3)    30407 VH_BTN                              TABLE              TM
    9934     789 INACTIVE     3 [email protected] (TNS V1-V3)     30455 VH_PSF                              TABLE              TM
    7511    1092 INACTIVE     3 [email protected] (TNS V1-V3)    30455 VH_PSF                              TABLE              TM
    3595    1104 INACTIVE     3 [email protected] (TNS V1-V3)    30455 VH_PSF                              TABLE              TM
      846     988 INACTIVE     3 [email protected] (TNS V1-V3)    30455 VH_PSF                              TABLE              TM
      945     670 INACTIVE     3 [email protected] (TNS V1-V3)    30455 VH_PSF                              TABLE              TMand then i have to kill the session one by one . thaat is a tedious task to do.
    i want to modify this script which will give me all the kill statement and i just have to run it
    can someone help me in this regard as i am weak in sql/plsql
    thanks and many thanks

    >
    i want to modify this script which will give me all the kill statement and i just have to run it
    >
    Karthick's script will 'kill' the sessions but before you use that script you may want to read the docs about the KILL and DISCONNECT clauses.
    See the DISCONNECT SESSION and KILL SESSION clauses in the SQL Language doc
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_2013.htm#sthref4724
    >
    DISCONNECT SESSION Clause
    Use the DISCONNECT SESSION clause to disconnect the current session by destroying the dedicated server process (or virtual circuit if the connection was made by way of a Shared Sever).
    The IMMEDIATE setting disconnects the session and recovers the entire session state immediately, without waiting for ongoing transactions to complete.
    KILL SESSION Clause
    The KILL SESSION clause lets you mark a session as terminated, roll back ongoing transactions, release all session locks, and partially recover session resources.
    IMMEDIATE Specify IMMEDIATE to instruct Oracle Database to roll back ongoing transactions, release all session locks, recover the entire session state, and return control to you immediately.
    >
    For DISCONNECT the IMMEDIATE clause will recover the session state 'immediately'.
    Using KILL, even with the IMMEDIATE clause, you are telliing Oracle to roll back any ongoing transactions and that can take a lot of time.
    Make sure you are really doing the operation you want to do. If you want to get the locks released immediately you need to use 'DISCONNECT IMMEDIATE'.

  • Deploying Java Apps for All patforms?

    Ok, I have my appilcation running in windows by a simple cmd file, what do I need to do so the user can acivate it on linux and Macs,
    I know this is a deployment question, where are the java deployment tricks and tips / documentation/ tutorial?
    Thanks

    Either use:
    Webstart: Multiplatform, creates desktop & start menu icons ( on Windows, prob. the same on UNIX & MacOS ) autoupdates applications, REQUIRES JRE 1.2+ to be installed - part of Java 2 1.4, might be part of 1.3 as well, can update the JVM if needed.
    http://java.sun.com/products/javawebstart/
    Install Anywhere: Multiplatform, can install the JVM if needed, does not require ANY JRE to be installed, could end up with the user having multiple JRE's installed.
    http://www.zerog.com
    JARs: Multiplatform (double clickable on Win & MacOS, can be on UNIX if setup correctly), no install required - like a single EXE, Requires JRE to be installed
    http://java.sun.com/docs/books/tutorial/jar/index.html
    Hack.sh: Not Multiplatform, create shell scripts or small applications to launch, EVIL, don't use.

  • Kill a session and release all locks immediatly

    Hi,
    How to kill a session and release all locks immediately.
    Thank you
    AK

    > Actually I am working on development envrionment (Not
    production) with oracle 10g DB. What heppened is that
    I needed to replace a stored DB Package, but I
    couldn't even when I am the only connected user.
    A read lock is placed on data dictionary objects when used - that prevents someone else from changing that data dictionary object and in effect pull the carpet from beneath the feet of the process using that object.
    When trying to replace a package, it will fail if another session is busy using that package.
    As for being the only user on the database and still running into this problem - there could have been a DBMS_JOB executing that package.
    > I killed all sessions, and even next day still the
    locks are there from a session I killed 1 day
    before!
    Unusual. But a killed session can take 24+ hours to rollback. A rollback is often a lot more time consuming than the elapsed run-time of the session at the time it was killed.
    Back with Oracle 8i and prior, it was not uncommon to see a killed session lingering forever until the instance was bounced. But I have not yet seen this in 10G.
    Suggest that when you run into this situation again, you monitor the killed session to determine just what it is doing (looking at its current wait states and events) - and whether it is indeed hanging and not releasing any locks that should have been released.

  • How to kill the session after the user exit the ADF application

    Dear all
    I have a problem
    The problem is the session still exist after the user close the application and the browser. I want to kill all sessions that is not active.
    This is my test scenario:
    1- I open IE and run my ADF application that is deployed on weblogic. http://192.168.100.17:7001/myapp/faces/login
    2- At the same time I issue this SQL command to view the sessions for user 'ADFUSER' - the "ADFUSER" is the schema user.
    SELECT USERNAME,STATUS FROM v$session
    WHERE USERNAME = 'ADFUSER';QUERY RESULT IS
    USERNAME                       MODULE                                           STATUS
    ADFUSER                         JDBC Thin Client                                 INACTIVE3- Now the user close the browser
    4- Run the SQL again and I notice that the session still exist
    SELECT USERNAME,STATUS FROM v$session
    WHERE USERNAME = 'ADFUSER'RESULT:
    USERNAME                       MODULE                                           STATUS
    ADFUSER                        JDBC Thin Client                                 INACTIVE5- now the user open the URL again http://192.168.100.17:7001/myapp/faces/login
    6-Run the SQL again , and I notice that the old session still exists and a new session created too.
    SELECT USERNAME,STATUS FROM v$session
    WHERE USERNAME = 'ADFUSER'RESULT:
    USERNAME                       MODULE                                           STATUS
    ADFUSER                        JDBC Thin Client                                 INACTIVE
    ADFUSER                        JDBC Thin Client                                 INACTIVE
    2 rows selected.and every time I login to the application , a new session is open and the old session still exist
    I do not know why this happens
    I want to kill old session when the user close the application.
    These sessions are cleared only when i restart the weblogic domain.
    here is some information about my development environment:
    Jdeveloper 11.1.2.3
    WebLogic Server Version: 10.3.5.0
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    thanks in advance

    Hi,
    for performance reasons you should not use dedicated user connections to the database. Instead you use JDBC data sources (default in JDeveloper for ADF BC) that you can configure the database connection pooling for. This means that your v$session will always show a set of active session, which however are shared among users. Assuming you use ADF BC, this is what happens
    - A user requests a data bound page
    - The ADF BC checks out an AM and connects to the database using one of the database connections in the pool
    ... user work here ...
    - user exits application
    - ADF BC returns AM to pool and passivates pending user state (if application is left with dirty transaction)
    - Database connection is available in pool as soon as AM released
    This also happens between requests. Long story cut short: v$session doesn't give you a true picture
    Frank

  • Killing Oracle Sessions

    Please ignore it. By mistakely i posted this thread here.
    Hi All,
    I want to drop one user. If i made a attempt to drop that user, I rec'd "ORA-01940: cannot drop a user that is currently connected." error. So I checked with sessions with the username. No one is using this user. But it resists some inactive sessions.
    SQL> DROP USER test cascade;
    DROP USER test cascade
    ERROR at line 1:
    ORA-01940: cannot drop a user that is currently connected
    SQL>select sid,serial#,username,status from v$session where schemaname='TEST';
    SID SERIAL# USERNAME STATUS
    131 4026 TEST INACTIVE
    143 29325 TEST INACTIVE
    SQL> alter system kill session '131,4026' immediate;
    system altered.
    SQL>alter system kill session '143,29325' immediate;
    system altered.
    SQL> alter system kill session '131,4026' immediate;
    system altered.
    SQL>alter system kill session '143,29325' immediate;
    system altered.
    SQL> alter system kill session '131,4026' immediate;
    system altered.
    SQL>alter system kill session '143,29325' immediate;
    system altered.
    SQL> alter system kill session '131,4026' immediate;
    system altered.
    SQL>alter system kill session '143,29325' immediate;
    system altered.
    Now. I checked in v$sessions,
    SQL>select sid,serial#,username,status from v$session where schemaname='TEST';
    SID SERIAL# USERNAME STATUS
    139 12982 AGILITY_QA INACTIVE
    141 54482 AGILITY_QA INACTIVE
    It shows some other inactive sessions. so i am trying to kill these 2 sessions again some inactive sessions will show.
    Please assist me to fix that problem.
    Message was edited by:
    Moorthy GS

    Try the output of the query to kill all sessions:
    select 'alter system kill session '''||sid||','||'4026''' immediate;' scr
    from v$session
    where schemaname='TEST' and status <> 'KILLED'
    Regards
    RK

  • Unable to deploy web app on local weblogic server

    I'm using 11g JDeveloper 11.1.1.1.0 and I got the below errors when I tried to deploy a web app to the default weblogic server. Do you have any idea?
    [03:19:04 PM] ---- Deployment started. ----
    [03:19:04 PM] Target platform is (Weblogic 10.3).
    [03:19:05 PM] Retrieving existing application information
    [03:19:05 PM] Running dependency analysis...
    [03:19:05 PM] Building...
    [03:19:05 PM] Deploying profile...
    [03:19:09 PM] Wrote Web Application Module to C:\11gJDev_Workspace\Scheduler\BPELScheduler\deploy\webapp.war
    [03:19:10 PM] Deploying Application...
    [03:19:33 PM] [Deployer:149193]Operation 'deploy' on application 'webapp' has failed on 'DefaultServer'
    [03:19:33 PM] [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application webapp on DefaultServer.: .
    [03:19:33 PM] Weblogic Server Exception: weblogic.application.ModuleException:
    [03:19:33 PM] Caused by: weblogic.wsee.ws.WsException: When processing WebService module 'webapp.war'. Can't find wsdl /wsdls/wsat.wsdl
    [03:19:33 PM] See server logs or server console for more details.
    [03:19:33 PM] weblogic.application.ModuleException:
    [03:19:33 PM] #### Deployment incomplete. ####
    [03:19:33 PM] Deployment Failed

    Thanks. I find the issue. Should only deploy ViewController project to war and don't deploy Model project at all. Let Application level deployment take care of it.
    Beside, I have a question, I currently deploy inside JDeveloper. In my standalone WLS, I deploy some of my shared library. Is there any way to specify the shared library name (goes into weblogic-application.xml) when I deploying inside JDeveloper? Or I have to deploy to ear file first, unzip, update weblogic-applciation.xml and zip up the ear file and deploy the ear file to standalone WLS by hand?

  • Using Forte 3.0 to deploy web app to iPlanet Web Server

    Is anyone familiar with using Forte 3.0 to develop/deploy a web application to an iPlanet Server?
    All I need is a simple walkthrough to create/deploy a "Hello World" app (it could be just a JSP) or a link to some document that covers this topic.
    Thanks

    For anyone who cares
    First make a web module, then make a web application and add the web module you made. When adding it the Mapping field should contain whatever context of the module is. Then deploy the application.

  • Error occurred in deployment step 'Uninstall app for SharePoint': The remote server returned an error: (502) Bad Gateway.

    Installed SP 2013 Foundation in my Hyper-V machine
    Created and done all the steps mentioned here http://blogs.msdn.com/b/shariq/archive/2013/05/07/how-to-set-up-high-trust-apps-for-sharepoint-2013-amp-troubleshooting-tips.aspx && http://msdn.microsoft.com/en-us/library/office/fp179901%28v=office.15%29.aspx
    for self signed certificate
    copied those two certificates in my local machine(base machine) D drive
    (D:\Cert)
    Both VM and base machine are in same domain
    Installed VS 2013 in my base machine and create a Provided hosted app with the copied certificates, (For creation i followed the above mentioned URL)
    Just created and hit F5 to run in my base machine, but getting this error
    Error occurred in deployment step 'Uninstall app for SharePoint': The remote server returned an error: (502) Bad Gateway.
    Please help me to resolve this issue, trying to figure out from last 2 days
    Thanks in Advance
    Arun

    Hi Harminder,
    This happens because an app has already been deployed and you are deploying it again using the same version.
    Resolution:
    Open the AppManifest.xml file and change the version.
    Vivek Jagga - MCTS SharePoint
    SharePointExcellence

  • Can't deploy my app on  Sun Java System Application Server Platform Edition

    Hi,
    I am trying to deploy me app on the Sun's app server but I get the following error:
    I am using Sun Java System Application Server Platform Edition 8.2
    Invalid Deployment Descriptors in archive jag-ejb.jar in deployment descriptor file META-INF/ejb-jar.xml
    Line 29 Column 15 -- The content of element type "session" must match
    "(description?,display-name?,small-icon?,large-icon?,ejb-name,home?,remote?,local-home?,local?,ejb-class,session-type,transaction-type,env-entry*,ejb-ref*,ejb-local-ref*,security-role-ref*,security-identity?,resource-ref*,resource-env-ref*)". "It deploys on Orion 2.02
    The ejb.xml file is as follows:
      <enterprise-beans>
        <session>
          <display-name>Facade stateless session bean</display-name>
          <ejb-name>ejb/PetardsFacade</ejb-name>
          <home>com.jag.petardscmsbeans.interfaces.PetardsFacadeHome</home>
          <remote>com.jag.petardscmsbeans.interfaces.PetardsFacade</remote>
          <local-home>com.jag.businesslogic.interfaces.FacadeLocalHome</local-home
          ><local>com.jag.businesslogic.interfaces.FacadeLocal</local>
          <ejb-class>com.jag.petardscmsbeans.ejb.PetardsFacadeEJB</ejb-class>
          <session-type>Stateless</session-type>
          <transaction-type>Container</transaction-type>
          <resource-ref>
            <res-ref-name>jdbc/OracleDSRES</res-ref-name>
            <res-type>javax.sql.DataSource</res-type>
            <res-auth>Container</res-auth>
          </resource-ref>
          <env-entry>
            <env-entry-name>DSName</env-entry-name>
            <env-entry-type>java.lang.String</env-entry-type>
            <env-entry-value>jdbc/OracleDSRES</env-entry-value>
          </env-entry>
        </session>
      </enterprise-beans>also, in the error message what does ? and * signify?
    Thanks

    This is an element ordering issue. env-entry is before resource-ref in the schema so it must be declared in the same order.
    --ken                                                                                                                                                                                                                                                                               

  • Finding a pages URL once it is deployed to app server

    Hi, I have deployed a jheadstart application to Oracle Application Server, I know the context root, and an authentication window pops up if I enter the context folder after the server name, but I can't locate the page I want within the context folder, the server returns file not found errors on all the paths i've tried...
    How is the URL location of the pages determined? Is it built up from the file structure in the app server j2ee home, or does it depend on the application structure in Jdeveloper before deployment?
    The jheadstart app structure is: Application -> ViewController -> Web Content -> pages -> mypage.jspx
    The deployed folder structure in app server is : j2ee\home\applications\myapplication\ViewArchive\pages\mypage.jspx
    So in this case what would the URL be after the context root to bring up mypage.jspx ?

    Michael,
    Yes, you can add an index.jsp to yout web root dir, with the following content:
    <% response.sendRedirect("faces/pages/Home.jspx"); %>
    In JHeadstart 10.1.3.2 we will geenrate such a file as a convenience.
    You can also specify a welcome file in web.xml.
    Steven Davelaar,
    JHeadstart Team.

  • Whether java component (Not ejb, not servlet) can be deployed in App Server and get the services provided by App Server

    As I mentioned in subject, I am just wondering Whether the java component (Not
    ejb, not servlet) can be deployed in App Server and get the services provided
    by App Server or not?

    Nevermind folks - I got it to work. All my configuration was correct; I had other issues with the ejb-jar file that the verifier informed me of (my previous deployments were with the verifier turned-off).

  • Problem with JDBC deploying to App Server 8.1

    Hi,
    I'm trying to deploy my application onto App Server PE 8.1, and it connects to an Oracle database. I created the connection as described in the Creator 2 tutorial, but when I attempt to ping I get the following error:
    [sunm][Oracle JDBC Driver]OS Authentication was requested, but is not supported by this Oracle Server.
    I supplied a username and password. Why is it trying to perform OS authentication and how to I make it stop?
    Thanks,
    Rick

    Quoting this from DataDirect JDBC Driver documentation
    http://media.datadirect.com/download/docs/jdbc/jdbcref/jdbcoracle.html#wp1001070
    If a user ID is not specified and the driver is running on a Windows platform, the driver uses Type 2 OS authentication when establishing a connectionIf you are deploying to bundled PE, all the datasource config would be automatically done for you.
    If you are deploying to a standalone PE, Sun JDBC Driver won't work with it. Only Creator Bundled PE and Sun AppServer StandardEdition & EnterpriseEditions can work with Sun JDBC Drivers.
    HTH,
    Sakthi

  • Deployed web app can't be server default?

    hey folks.
    i've deployed a web app (i can see it in the console under "web
    apps").
    i want to make this web app the default for my server. i went
    to the "target" tab for the web app and made my server the target.
    however, when i go to my server's HTTP page, there's nothing but
    "none" in the "default web application" pulldown.
    anyone have a clue? if you have this working, can you show me
    the xml from config.xml? i will just enter it manually if all
    else fails.
    thanks in advance,
    -bml

    Hi, Gene.
    Check with support. Switching the default webapp by modifying config.xml is
    more compilicated than I descripted in my post. I wish support could address
    this regression ASAP.
    Cheers - Wei
    "Gene Chuang" <[email protected]> wrote in message
    news:[email protected]...
    This seems like a pretty serious regression!
    I created a new war directory (testwar), and tried manually modifyingconfig.xml to switch to a new
    DefaultWebApp, called "testwar". Unfortunately, I get the followingcomplaint of mbean unable to
    find "testwar" component when I restart the server. I looked inconfig.xml and sure enough,
    "testwar" component isn't registered there; seems like the admin serverwas able to detect my
    creation of a new war directory, gives me the message that testwar isdeployed, but did not write
    this info into config.xml!
    This is another reason why manual editting of config.xml is unadvisable,and that this regression
    further exacerbates the problem! Is there a quick patch fix to this???
    Gene
    <Mar 19, 2001 6:52:29 PM PST> <Notice> <Management> <Loading configurationfile
    ./config/mydomain/config.xml ...>
    The WebLogic Server did not start up properly.
    Exception raised:weblogic.management.configuration.ConfigurationException: undefined mbean
    reference: mydomain:Name=testwar,Type=WebAppComponent,Server=myserver
    weblogic.management.configuration.ConfigurationException: undefined mbeanreference:
    mydomain:Name=testwar,Type=WebAppComponent,Server=myserver
    "Wei Guan" <[email protected]> wrote in message
    news:[email protected]...
    It is a bug in SP1. We just create a case. At the same time, you can use
    your editor to open config.xml, search the following section:
    <WebServer
    ClusteringEnabled="true"
    Targets="mycluster"
    />
    Add or modify following line:
    <WebServer
    ClusteringEnabled="true"
    DefaultWebApp="myWebApp"
    Targets="mycluster"
    />
    Cheers - Wei
    "brian long" <[email protected]> wrote in message
    news:[email protected]...
    hey folks.
    i've deployed a web app (i can see it in the console under "web
    apps").
    i want to make this web app the default for my server. i went
    to the "target" tab for the web app and made my server the target.
    however, when i go to my server's HTTP page, there's nothing but
    "none" in the "default web application" pulldown.
    anyone have a clue? if you have this working, can you show me
    the xml from config.xml? i will just enter it manually if all
    else fails.
    thanks in advance,
    -bml

Maybe you are looking for

  • Adding Text over a Photo in a Movie

    First, is this possible? Can I actually add credits over a photo added from IPhoto to a movie in IMovie 5? I am having a problem adding a title (credits) over a photo I have added to the end of a movie. I unclick "over black" and type in the text to

  • Multiple reviewers cannot open CREV files in Adobe Captivate Reviewer 1.0 after the first review

    We are using Captivate 4.0 with Captivate Reviewer 1.0 for review and comments. The problem we are having just started within the last month... We place the CREV file and folder on the network so that multiple reviewers can access. All have Adobe Cap

  • Firefox keeps asking to change settings whenever i open it.

    Everytime i open firefox it ask for it to allow to make changes. I have gone into properties and made sure comparability has been unchecked. also my firefox runs so slow, freezes a lot, crashes a lot and scrolling is laggy. I'm running on an i5 surfa

  • Resizing Images with Photoshop programatically (SDK) ?

    Hello, We have more 100,000+ master images that must be resized down programatically (over a nightly batch job).  We are losing photoquality when resizing these images (JPEGs).  However, when I resize these images in Photoshop, it produces very high

  • I want to use my time capsule connected directly to my imac.

    I already have a wireless router that I use with my iMac and other devices. I have a Timecapsule that I bought to use as a backup device and as a wireless router, but it won't keep a connection. How do I use the Time Capsule  with Time Machine as "ju