Upgrade to application server oc4j 9.0.4

I download the new version package of the application server.
Unzip and copy the folder to oc4j_home .
The server cannot start up.
how to I upgrade 9.03 to 9.04

Be careful 10.1.3 is a preview! No definite date is out when it will be available as a production version.
I might be wrong, but if you only have an 9.0.4 OC4J server you can't use BC4J or ADF from JDeveloper 10.1.3 without installing the new ADF and/or BC4J libraries first (see http://www.oracle.com/technology/products/jdev/collateral/papers/10g/as_supportmatrix.html). You should check with your customer if thats possible.
regards,
Timo

Similar Messages

  • How to make upgrade from application server and not from central instance?

    Hello SAP Gurus!
    I have SAP ECC release 6.0, and I´m gonna make upgrade to enhancement package 6.06, do you know if Can I make upgrade from application server, but not from central instance?
    Thanks.

    Hi Victor,
    Upgrade process has to execute from the server where message server is running.
    So I guess it is not possible to initiate the SAP upgrade  from application server.
    Regards,
    Deepak Kori

  • Grid control 10.2.0.5 upgrade and application server shutdown

    Current: 10.2.0.3, doing upgrade to 10.2.0.5
    OS: Redhat 4
    During the installer checks, Oracle is telling me the oracle application server will be shut down temporarily. What oracle application server? I did not know one gets installed when you install grid control. I thought that it just uses the http_server.
    What is it shutting down? I stopped the oms with opmnctl stopall, prior to running the installer. I believe that was in the readme.txt

    when you click on the tab "Application Servers" on the far upper left site of the GridControl (right next to Hosts, Databases, ...) then
    you will see of which components the Oracle Application server exists (HTTP-server, OC4J, WebCache, ...). Therefore the HTTP-server is just
    part of the application server - and if the application server gets shut down it's meant that all components wil get shut down...
    HTH

  • Migrating applciation from weblogic to oracle 9i application server(OC4J)??????

    Hi,
    I am migrating my ejb application from weblogic to oracle 9i application server.What changes are needed to be made in code and what configuration changes are required.
    In my application i use a couple of session beans wherin a session bean calls the method of the other session bean which acceses the database.I am using a jdbc thin driver for the database connection. is it possible for a session bean to call a method of another session bean which access the database??This concept works well in weblogic where the current application is running.
    The problem is that while migrating the application to the orion server, it gives an OrionCMTException ...
    memory leak..etc.
    Could any one clarify.
    Thanks in advance!!!

    Hi Avi and Harrison,
    Cease Fire avi!!!!.First of all let me clear the issue of posting the same problem twice.Well, when i mentioned the problem the first time , i found the title session bean deployment was not right and few people would look into it as it was a common problem so i thought it would be appropriate if i mentioned the title correctly , so i posted the query again with the change in title.
    Now coming to the answer for ur questions.
    The platform used is MS Windows NT.
    The (OC4J) version is 1.0.2.2.1.
    I am not using JDeveloper.
    The database is oracle 8i and i am using the thin driver.
    The beans to be deployed are stateless session beans.
    The client involved is a web client i.e a jsp application.
    The first session bean is as follows.
    import java.sql.Connection;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.Vector;
    import java.sql.Timestamp;
    import java.rmi.RemoteException;
    import java.util.Date;
    import javax.ejb.*;
    import javax.naming.*;
    import initcontext;
    import PrintMessage;
    import JB_B2B_ERROR_PARSER;
    * @stereotype SessionBean
    * @homeInterface DB_UTILITYHome
    * @remoteInterface DB_UTILITYRemote
    public class DB_UTILITY implements SessionBean
         private SessionContext context;
    private ResultSet rs = null;
    private Statement stmt = null;
    private Connection con = null;
    private PrintMessage print = null;
    public DB_UTILITY()
    rs = null;
    stmt = null;
    con = null;
    print = new PrintMessage();
         public Connection getConnection()throws RemoteException
              InitialContext initctx = null;
              Connection con = null;
              try
                   initctx = initcontext.getContext();
                   javax.sql.DataSource ds =
    (javax.sql.DataSource)initctx.lookup("java:comp/env/jdbc/ePool");
                   con = ds.getConnection();
    //(javax.sql.DataSource)initctx.lookup("java:comp/env/jdbc/ePool");
    catch(NamingException namingexception)
    print.printUserMessage("DB_UTILITY", (new
    Date()).toString(), "", namingexception);
    throw new
    EpoolException(JB_B2B_ERROR_PARSER.getErrorMessage("AppError",
    "Epool-10001", "DB_UTILITY.getConnection"));
    catch(SQLException sqlexception)
    print.printUserMessage("DB_UTILITY", (new
    Date()).toString(), "", sqlexception);
    throw new
    epoolException(JB_B2B_ERROR_PARSER.getErrorMessage("DBError",
    JB_B2B_ERROR_PARSER.getSQLCode(sqlexception),
    "DB_UTILITY.getConnection"));
    catch(Exception exception)
    print.printUserMessage("DB_UTILITY", (new
    Date()).toString(), "", exception);
    throw new
    epoolException(JB_B2B_ERROR_PARSER.getErrorMessage("EpoolError",
    "Epool10005", "DB_UTILITY.getConnection"));
              return con;
         public String getDate()throws RemoteException
              String Date=null;
              try
                   con=getConnection();
                   stmt=con.createStatement();
                   rs=stmt.executeQuery("SELECT
    TO_CHAR(SYSDATE,'YYYY-MM-DD HH:MI:SS') FROM DUAL");
                   while(rs.next())
                        Date=rs.getString(1);
                   stmt.close();
                   con.close();
    catch(SQLException sqlexception)
         print.printUserMessage("DB_UTILITY", (new
    Date()).toString(), "", sqlexception);
    throw new
    EpoolException(JB_B2B_ERROR_PARSER.getErrorMessage("DBError",
    JB_B2B_ERROR_PARSER.getSQLCode(sqlexception), "DB_UTILITY.getDate"));
    catch(Exception exception)
         print.printUserMessage("DB_UTILITY", (new
    Date()).toString(), "", exception);
    throw new
    EpoolException(JB_B2B_ERROR_PARSER.getErrorMessage("epoolError",
    "Epool10005", "DB_UTILITY.getDate"));
    finally
    try
    if(con != null && !con.isClosed())
    con.close();
    catch(Exception exception2)
    stmt = null;
    con = null;
              return Date;
         public void setSessionContext(SessionContext context)
              this.context = context;
         public void ejbActivate()
         public void ejbPassivate()
         public void ejbCreate()
         public void ejbRemove()
    Also the xml files are as follows.
    web.xml
    <?xml version="1.0"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems,
    Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
    <!-- A friendly name for this web application, this name can be used in visual development environments, for instance -->
    <display-name>AddressBook Web Application</display-name>
    <!-- A human-readable description of this web application -->
    <description>Web module that contains an HTML welcome page, and 4 JSP's.</description>
    <!-- The file(s) to show when no file is specified, i.e. only the directory is specified. -->
    <welcome-file-list>
    <welcome-file>B2B_COUNTRY_CODE.jsp</welcome-file>
    </welcome-file-list>
    <ejb-ref>
    <ejb-ref-name>SB_B2B_COUNTRY_CODEHome</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <home>SB_B2B_COUNTRY_CODEHome</home
    <remote>SB_B2B_COUNTRY_CODERemote</remote>
    </ejb-ref></web-app>
    Application.xml
    <?xml version="1.0"?>
    <!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN" "http://java.sun.com/j2ee/dtds/application_1_2.dtd">
    <application>
    <display-name>Country Code</display-name>
    <module>
    <ejb>epool_CountryCode-ejb.jar</ejb>
    </module>
    <module>
    <web>
    <web-uri>epool_CountryCode-web.war</web-uri>
    <context-root>/epool_CountryCode-web</context-root>
    </web>
    </module>
    </application>
    ejb-jar.xml:
    <?xml version="1.0"?>
    <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN" "http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd">
    <ejb-jar>
    <description>epool_CountryCode</description>
    <enterprise-beans>
    <session>
    <display-name>CountryCode Session
    Bean</display-name>
    <ejb-name>SB_B2B_COUNTRY_CODERemote</ejb-name>
    <home>SB_B2B_COUNTRY_CODEHome</home>
    <remote>SB_B2B_COUNTRY_CODERemote</remote>
    <ejb-class>SB_B2B_COUNTRY_CODE</ejb-class>
    <session-type>Stateless</session-type>
    <ejb-ref>
    <description>EJB Epool DButility</description>
         <ejb-ref-name>DB_UTILITYRemote</ejb-ref-name>
                   <ejb-ref-type>Session</ejb-ref-type>
                   <home>DB_UTILITYHome</home>
                   <remote>DB_UTILITYRemote</remote>
              </ejb-ref>
              <ejb-ref>
              <description>EJB Entity Bean</description>
    <ejb-ref-name>EB_B2B_COUNTRY_CODERemote</ejb-ref-name>
                   <ejb-ref-type>Entity</ejb-ref-type>
                   <home>EB_B2B_COUNTRY_CODEHome</home>
              <remote>EB_B2B_COUNTRY_CODERemote</remote>
              </ejb-ref>
    </session>
    <session>
    <display-name>DbUtility Session Bean</display-name>
    <ejb-name>DB_UTILITYRemote</ejb-name>
    <home>DB_UTILITYHome</home>
    <remote>DB_UTILITYRemote</remote>
    <ejb-class>DB_UTILITY</ejb-class>
    <session-type>Stateless</session-type>
    </session>
    <entity>
    <ejb-name>EB_B2B_COUNTRY_CODERemote</ejb-name>
         <home>EB_B2B_COUNTRY_CODEHome</home>
         <remote>EB_B2B_COUNTRY_CODERemote</remote>
         <ejb-class>EB_B2B_COUNTRY_CODE</ejb-class>
         <persistence-type>Container</persistence-type>
         <prim-key-class>EB_B2B_COUNTRY_CODEPK</prim-key-class>
         <reentrant>False</reentrant>
         <cmp-field>
         <field-name>country_code_desc</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>phone_format_flag</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>country_code</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>active_date</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>date_created</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>active_flag</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>country_phone_code</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>country_tax_percent</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>sort_order</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>date_modified</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>user_created</field-name>
         </cmp-field>
         <cmp-field>
         <field-name>user_modified</field-name>
         </cmp-field>
         <resource-ref>
         <description></description>
         <res-ref-name>jdbc/ePool</res-ref-name>
         <res-type>javax.sql.DataSource</res-type>
         <res-auth>Container</res-auth>
         </resource-ref>
    </entity>
    </enterprise-beans>
    <assembly-descriptor>
         <container-transaction>
              <method>
                   <ejb-name>EB_B2B_COUNTRY_CODERemote</ejb-name>
                   <method-name>*</method-name>
              </method>
              <trans-attribute>Required</trans-attribute>
    </container-transaction>
    <security-role>
    <description>Users</description>
    <role-name>users</role-name>
    </security-role>
    </assembly-descriptor>
    </ejb-jar>
    The session bean which uses the above session bean is as follows.
    import javax.ejb.SessionContext;
    import javax.ejb.SessionBean;
    import java.sql.*;
    import javax.naming.Context;
    import java.sql.Timestamp;
    import java.util.Vector;
    import initcontext;
    import DB_UTILITYHome;
    import DB_UTILITYRemote;
    import EB_B2B_COUNTRY_CODEHome;
    import EB_B2B_COUNTRY_CODERemote;
    import EB_B2B_COUNTRY_CODEPK;
    * @stereotype SessionBean
    * @homeInterface SB_B2B_COUNTRY_CODEHome
    * @remoteInterface SB_B2B_COUNTRY_CODERemote
    public class SB_B2B_COUNTRY_CODE implements SessionBean
         private SessionContext context;
         * Sets the context of the bean
         * @param context The Bean's Context
         public Vector selectCountryCode(String query,String
    countquery, String pagenos) throws Exception
              Context ctx = initcontext.getContext();
              Connection con=null;
              Vector records=new Vector();
              int pageno=Integer.parseInt(pagenos);
              int min=(pageno-1)*10;
              int max=pageno*10;
              int counter=0;
              boolean recordsfound=false;     
              try
                   DB_UTILITYHome home =
    (DB_UTILITYHome)ctx.lookup("java:comp/env/DB_UTILITYRemote");
                   DB_UTILITYRemote remote =
    (DB_UTILITYRemote)home.create();
                   con=remote.getConnection();
                   Statement stmt = con.createStatement();
                   ResultSet rscount =
    stmt.executeQuery(countquery);
                   while(rscount.next())
                        int temp=rscount.getInt(1);
                        int pagecount=temp;
                        pagecount=pagecount/10;
                        if((temp%10)>0)
                        pagecount=pagecount+1;               
                        records.addElement(""+pagecount);
                   ResultSet rs = stmt.executeQuery(query);
                   while(rs.next())
                        counter++;
                        if(counter>min && counter<=max)
                             String row[]=new String[8];     
                             recordsfound=true;
                             row[0]=rs.getString(1);
                             row[1]=rs.getString(2);
                             row[2]=rs.getString(3);
                             row[3]=rs.getString(4);
                             row[4]=rs.getString(5);
                             row[5]=rs.getString(6);
                             row[6]=rs.getString(7);
                             row[7]=rs.getString(8);          
                             records.addElement(row);
              con.close();               
              catch(Exception e)
                   System.out.println("Error in selecting Country
    Code "+e);
                   throw new Exception("Error in selecting Country
    Code "+e);
              return(records);     
         public void insertCountryCode(String country_code, String
    country_code_desc, String country_phone_code, String
    phone_format_flag,String active_flag, String sort_order,String
    country_tax_percent)throws Exception
              Context ctx = initcontext.getContext();
              Double Sort_Order=null;
              Double cntry_tax_prct=null;
              if(sort_order!=null && sort_order.length()>0)          
              Sort_Order=new Double(sort_order);          
              if(country_tax_percent!=null &&
    country_tax_percent.length()>0)          
              cntry_tax_prct=new Double(country_tax_percent);
              String user_created=null;
              Timestamp date_created=null;
              Timestamp active_date=null;
              String user_modified=null;
              Timestamp date_modified=null;          
              try
                   DB_UTILITYHome dbhome =
    (DB_UTILITYHome)ctx.lookup("java:comp/env/DB_UTILITYRemote");
                   DB_UTILITYRemote dbremote =
    (DB_UTILITYRemote)dbhome.create();
                   user_created=dbremote.getUser();
    date_created=Timestamp.valueOf(dbremote.getDate());
                   active_date=date_created;
                   EB_B2B_COUNTRY_CODEHome home =
    (EB_B2B_COUNTRY_CODEHome)ctx.lookup("java:comp/env/EB_B2B_COUNTRY_CODER
    emote");
                   EB_B2B_COUNTRY_CODERemote remote =
    (EB_B2B_COUNTRY_CODERemote)home.create(country_code, country_code_desc,
    country_phone_code,active_flag, phone_format_flag,user_created,
    date_created, active_date, Sort_Order, user_modified,
    date_modified,cntry_tax_prct);                              
              catch(Exception e)
                   System.out.println("Error in Creating COUNTRY
    Code "+e);
                   throw new Exception("Error in Creating COUNTRY
    Code "+e);
         public void setSessionContext(SessionContext context)
              this.context = context;
         public void ejbActivate()
         public void ejbPassivate()
         public void ejbCreate()
         public void ejbRemove()
    The jsp client which acces the beans is as follows.
    <BODY >
    <%@ page language="java" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="initcontext" %>
    <%@ page import = "java.util.*" %>
    <%@ page import="DB_UTILITYHome"%>
    <%@ page import="DB_UTILITYRemote"%>
    <%@ page import="javax.naming.*"%>
    <%Connection con=null; %>
    <script src="search_getvalues.js">
    </script>
    <form name=frm1>
    <%! int intCount,intI,intRowCount,intJ;
    String strtname=new String();
    String strhidden=new String("txthdn");
         Statement st;
         ResultSet rs;
         ResultSetMetaData rmeta;
    ....%>
    <%
    try
         Context ctx = initcontext.getContext();
         DB_UTILITYHome dbhome =
    (DB_UTILITYHome)ctx.lookup("java:comp/env/DB_UTILITYRemote");
         DB_UTILITYRemote dbremote = (DB_UTILITYRemote)dbhome.create();
         con=dbremote.getConnection();
         st=con.createStatement();
         rs=st.executeQuery(strsqlquery);
         rmeta=rs.getMetaData();
    intCount=rmeta.getColumnCount();
    ....... %>
    </form>
    </BODY>
    </HTML>
    The resulting exception generated is as follows:
    D:\oc4j\j2ee\home>java -jar orion.jar
    Auto-unpacking
    D:\oc4j\j2ee\home\applications\epool_CountryCode\build\epool_CountryCod
    e.ear... done.
    Auto-unpacking
    D:\oc4j\j2ee\home\applications\epool_CountryCode\build\epool_CountryCod
    e\epool_CountryCode-web.war... done.
    Auto-deploying epool_CountryCode (New server version detected)...
    Auto-deploying epool_CountryCode-ejb.jar (No previous deployment
    found)... done.
    Error deploying
    file:/D:/oc4j/j2ee/home/demo/messagelogger/messagelogger-ejb.jar homes:
    No javax.jms.Destination found a
    t the specified destination-location (jms/theTopic) for
    MessageDrivenBean com.evermind.logger.MessageLogger
    Oracle9iAS (1.0.2.2.1) Containers for J2EE initialized
    Auto-deploying epool countryCode example (New server version
    detected)...
    ************************1
    ************************2
    COUNT QUERY :SELECT COUNT(COUNTRY_CODE) FROM BAP_COUNTRY_CODE
    QUERY :SELECT
    COUNTRY_CODE,COUNTRY_CODE_DESC,COUNTRY_PHONE_CODE,PHONE_FORMAT_FLAG,COU
    NTRY_TAX_PERCENT ,SORT_ORDER,ACTIVE
    FLAG,ACTIVEDATE FROM BAP_COUNTRY_CODE order by COUNTRY_CODE
    Error in selecting Country Code java.rmi.RemoteException: Error
    (de-)serializing object: com.evermind.sql.OrionCMTConnec
    tion; nested exception is:
    java.io.NotSerializableException:
    com.evermind.sql.OrionCMTConnection
    JB:Error in selecting country cd java.lang.Exception: Error in
    selecting Country Code java.rmi.RemoteException: Error (d
    e-)serializing object: com.evermind.sql.OrionCMTConnection; nested
    exception is:
    java.io.NotSerializableException:
    com.evermind.sql.OrionCMTConnection
    Error in Selecting Records
    OrionCMTConnection not closed, check your code!
    LogicalDriverManagerXAConnection not closed, check your code!
    (Use -Djdbc.connection.debug=true to find out where the leaked
    connection was created)
    Auto-unpacking
    D:\oc4j\j2ee\home\applications\epool_CountryCode\build\epool_CountryCod
    e.ear... Error unpacking: IO Error:
    The system cannot find the path specified
    Error updating application epool_CountryCode: Unable to find/read
    assembly info for D:\oc4j\j2ee\home\applications\epool_C
    ountryCode\build\epool_CountryCode (META-INF/application.xml)
    But if the DBUTILITY session bean is changed to a simple bean and accessed the code works fine and i am able to retrieve the data.Is the problem there because u one session bean cannot access a database connection method from another one or could it be because of the driver???
    I hope i am clear.Please revert back in case any more references are needed.
    Thanks in advance!!!!!!

  • Upgrade 10g Application Server 10.1.2.0.2 to 10.1.3.3

    Dear All,
    I am very new to application server
    we have an 10g Apps Server Release 2 10.1.2.0.2 and we want to upgrade this server to Release 3 10.1.3.3
    J2ee Applications are deployed on this application server which we want to upgrade
    Can anybody please help me in this regard?
    thanx in advance

    10.1.2.0.2 is the BI and Forms install. 10.1.3.3 has no BI and Forms install. The next version to include BI and Forms will be 11g, which was initially slated to ship last winter but has been delayed. If you need BI & Forms the highest you can go is 10.1.2.0.2. If you want to license an additional install, you can put 10.1.3.3 onto another server.

  • Cross-application sharing problem in Application Server(OC4J)

    I use OC4J 9.0.3 version.
    Cross-application sharing.
    The "parent" declaration is made in the <application> tag within server.xml.
    these appear as follows:
    <application name="A" path="a.ear" />
    <application name="B" path="b.ear" parent="A" />
    The structure of an a.ear file is:
    a.ear
    - META-INF
    - a.war ---- a.jsp
    ---------- WEB-INF --- web.xml
    ------------------------- classes
    ------------------------- lib ---- util1.jar, util2.jar
    The structure of an b.ear file is:
    b.ear
    - META-INF
    - b.war ---- b.jsp
    ------------ WEB-INF --- web.xml
    ----------------------------classes
    ----------------------------lib --- util3.jar, util4.jar
    when b.jsp call b class in util3.jar and b class call a class(PosFinexMonitoringMgr) in util1.jar
    I have following error :
    "java.lang.NoClassDefFoundError: com/.../.../.../.../app/tasks/PosFinexMonitoringMgr"
    Has anyone else have solution to solve this problem?
    maybe, must I declare Class-Path attribute of manifest.mf in util3.jar?
    then, how to declare Class-Path attribute?
    like this ?
    Class-Path : ../../../../a/a/WEB-INF/lib/util1.jar
    Thanks,
    Taihoon Lee

    Hello,
    I was just wondering if the approach mentioned above is the correct one for sharing libraries across different applications.
    Very similarly, we have more than one ear modules in our project. (up to 10 or more) These ear's contain web and ejb modules. Since libraries used for any web application (i.e. jsf implementation libs) are included in every ear, our goal was to put them in a common ear and point web application's class loader to this directory.
    However, I couldn't make this happen, with adding them to manifest file of war, or assigning the common ear as the parent of other ears.
    Although it's for oas9i, I read the whitepaper, it's ok with adding the common libraries to one ear and share libraries across different war files under this ear, across the applications, I couldn't make it possible.
    The application server version we use is 10.1.3.3. I can give you more details on our implementation, if you would approve that such an approach like this is acceptable.
    Many thanks & regards,
    Ece

  • OC4J Application Server - InstantiationException

    Error : java.lang.InstantiationException: Error initializing ejb-modules: message-destination-mapping tag with missing 'location' attribute
    HI All,
    Hope someone can help me with the following error. I've got a ear file which deploys 100% correct, and the application can run successfully after deploying. But if I stop and start the container, then i get the following exception, the container starts up but the application does not start successfully.
    Oracle Container start-up exception:
    09/05/11 09:17:15 Start process
    Listening for transport dt_socket at address: 8688
    0.000: [GC [PSYoungGen: 43776K->4394K(51008K)] 43776K->4394K(517056K), 0.0290830 secs]
    3.295: [GC [PSYoungGen: 48170K->7220K(51008K)] 48170K->8371K(517056K), 0.0499300 secs]
    6.817: [GC [PSYoungGen: 50996K->7218K(51008K)] 52147K->13636K(517056K), 0.0504670 secs]
    09/05/11 09:17:28 WARNING: Application.setConfig Application: stf-7.0.1 is in failed state as initialization failed.
    java.lang.InstantiationException: Error initializing ejb-modules: message-destination-mapping tag with missing 'location' attribute
    09/05/11 09:17:29 Oracle Containers for J2EE 10g (10.1.3.2.0) initialized
    29.062: [GC [PSYoungGen: 50994K->7226K(51008K)] 57412K->15785K(517056K), 0.0436860 secs]
    32.675: [GC [PSYoungGen: 51002K->7228K(50880K)] 59561K->16729K(516928K), 0.0346460 secs]
    We use jdk1.5, Ejb3 and Oracle 10.1.3
    We use message driven beans, for which we create an ejb-jar.xml that looks as follow:
    Start
    <?xml version="1.0" encoding="UTF-8"?>
    <ejb-jar version="3.0" xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd">
         <!-- OC4J EJB-JAR.XML for UDSWSConServices -->
         <display-name>vss-ejb</display-name>
         <enterprise-beans>
              <message-driven>
                   <display-name>VSSAdvancedQueueBatchBeanMDB</display-name>
                   <ejb-name>VSSAdvancedQueueBatchBean</ejb-name>
                   <ejb-class>
                        za.globed.varsite.hebs.bsi.services.ejb.VSSAdvancedQueueBatchBean
                   </ejb-class>
                   <transaction-type>Bean</transaction-type>
                   <message-destination-type>
                        javax.jms.Queue
                   </message-destination-type>
                   <message-destination-link>
                        jms/batchQueue
                   </message-destination-link>
                   <activation-config>
                        <activation-config-property>
                             <activation-config-property-name>
                                  acknowledgeMode
                             </activation-config-property-name>
                             <activation-config-property-value>
                                  Auto-acknowledge
                             </activation-config-property-value>
                        </activation-config-property>
                        <activation-config-property>
                             <activation-config-property-name>
                                  destinationType
                             </activation-config-property-name>
                             <activation-config-property-value>
                                  javax.jms.Queue
                             </activation-config-property-value>
                        </activation-config-property>
                        <activation-config-property>
                             <activation-config-property-name>
                                  subscriptionDurability
                             </activation-config-property-name>
                             <activation-config-property-value>
                                  NonDurable
                             </activation-config-property-value>
                        </activation-config-property>
                        <activation-config-property>
                             <activation-config-property-name>
                                  messageSelector
                             </activation-config-property-name>
                             <activation-config-property-value>
                                  Destination =
                                  'za.globed.varsite.hebs.bsi.services.VSSAdvancedQueueBatchBean'
                             </activation-config-property-value>
                        </activation-config-property>
                   </activation-config>
              </message-driven>
         </enterprise-beans>
         <assembly-descriptor>
              <container-transaction>
                   <method>
                        <ejb-name>VSSAdvancedQueueBatchBean</ejb-name>
                        <method-name>*</method-name>
                   </method>
                   <trans-attribute>Supports</trans-attribute>
              </container-transaction>
              <message-destination>
                   <display-name>
                        Destination for VSSAdvancedQueueBatchBean
                   </display-name>
                   <message-destination-name>
                        jms/batchQueue
                   </message-destination-name>
              </message-destination>
         </assembly-descriptor>
    </ejb-jar>
    -- end --
    Any help or suggestions would be much appreciated.
    Thanks
    Nina

    I would advise you to use the latest version - 10.1.3.5 - i remember some issues with 10.1.3.4.
    For certifications see here:
    http://www.oracle.com/technetwork/middleware/ias/downloads/oracle-soa-certification-101310-097492.html
    You have two options to bypass the check:
    * Use ignore : runinstaller -ignoresysprereqs
    http://onlineappsdba.com/index.php/2008/11/24/upgrade-oracle-application-server-to-10134-10g-r3-patchset-4/
    * Or change in the installers file that lists the allowed versions - you can search for the numbers listed in your error dialog

  • Weblogic application server Upgradation to 10.3 from 8.1

    Hi Can any one help wht is the process for upgrading weblogic application server from 8.1 to 10.3?
    There is no cluster environment. Single server. Please let me know.
    Regards.

    You can try the upgrade wizard: http://docs.oracle.com/cd/E12840_01/wls/docs103/upgrade/upgrade_dom.html
    Other useful documentation:
    - http://oracle.sys-con.com/node/1658429/mobile
    - http://www.lechicki.de/Data/Publications/Migrating_from_WebLogic81_to_90_case_study.pdf

  • Need guidance for upgrading application server

    hello everyone ,
    i have recently upgraded my oracle database from 9.2.0.5 to 10.2.0.4 on HP uX 11.11 , my EBS version is 11.5.10
    now i want upgrade my application server, firstly i didnt knew version of my AS
    after searching through oracle installer i found out the following components
    /appldvp/apps/prodora/8.0.6
    Oracle Unix Installer 4.0.3.0.0
    Oracle On-Line Text Viewer 1.0.1.0.0
    Client Software 8.0.6.0.0
    Ordts Common Libraries 8.0.6.0.0
    ORACLE NLS Libraries and Utilities 8.0.6.0.0
    ORACLE Core Libraries 8.0.6.0.1
    ORACLE Common RDBMS Libraries and Utilities 8.0.6.0.1
    ORACLE PL/SQL Libraries 8.0.6.0.0
    ORACLE Common Libraries 8.0.6.0.1
    ORACLE Common Precomp Libraries 8.0.6.0.1
    ORACLE Common Network Libraries and Utilities 8.0.6.3.0
    ORACLE Common Trace Libraries 8.0.6.0.0
    ORACLE Common Utilities 8.0.6.0.0
    ORACLE Common Agent Libraries 8.0.6.0.0
    ORACLE Common Libraries and Utilities 8.0.6.0.0
    Platform specific Libraries and Utilities 8.0.6.0.0
    Net8 (SQL*Net and Names) 8.0.6.3.0
    TCP/IP Protocol Adapter 8.0.6.0.0
    Remote Operations 3.0.2.0.1
    Oracle Names 8.0.6.3.0
    ToolKit 6.0 Base 6.0.8.10.1
    Discoverer Collector 4.1.48.06.00
    Configuration Guide 4.1.33f
    Discoverer Libraries 4.1.48.06.00
    Discoverer Locator 4.1.48.06.00
    Discoverer Preferences 4.1.48.06.00
    Discoverer Session 4.1.48.06.00
    Oracle Discoverer Viewer for Web 4.1.48.06.00
    Oracle Discoverer Plus 4.1.48.06.00
    Oracle Discoverer Server (Web) 4.1.48.06.00
    JInitiator 1.1.7.30
    JInitiator 1.1.8.11
    VisiBroker Smart Agent 3.3.1.0
    VisiBroker for C++ 3.3.3.0
    VisiBroker for Java 3.4.0.0
    VisiBroker Products 3.3.1.0
    PL/SQL 8.0.6.3.0
    Oracle Server Manager 3.0.6.0.0
    Oracle8 Enterprise (RDBMS & PLSQL) 8.0.6.3.0
    <Database Startup> Load Files 1.0.0.0.1
    Oracle Intelligent Agent 8.0.6.0.0
    Oracle Trace 8.0.6.0.0
    Precomp 8.0.6.3.0
    Pro*C/C++ 8.0.6.3.0
    Oracle8 JDBC Drivers 8.0.6.3.0
    Java Runtime Environment 1.1.6.2o
    Java Runtime Environment 1.1.8.13
    SQL*Plus 8.0.6.0.0
    ToolKit 6.0 Extension 6.0.8.10.1
    Multimedia APIs 6.0.5.33.0
    Tools Common Area 6.0.5.32.0
    PL/SQL Procedure Builder 6.0.8.11.0-449
    Integration Services 6.0.5.35.0
    Oracle SQL Manager Library 6.0.8.10.0
    Virtual Graphics System 6.0.5.35.0
    Oracle Charting Library 6.0.8.10.1
    Oracle Graphics 6.0.8.10.0
    Oracle Forms Server and Forms Developer 6.0.8.11.3
    Oracle Reports Server and Reports Developer 6.0.8.11.2
    ZRC Library 6.0.8.3.5
    GE Libraries 6.0.8.10.0
    Release Notes for Oracle Tools Products 6.0.8.11.2
    Tuxedo Support for Forms 6.0.5.2.0
    Oracle Jinitiator (Domestic) 1.1.7.31
    Oracle JDK Appletviewer (Domestic) 1.1.7.31
    Oracle Browser 6.0.5.32.0
    Oracle Wallet Manager 2.1.0.0.0
    Common documentation resources 2.0.0.0
    Oracle for HP 9000 Servers and Workstations Documentation 8.0.6.0
    Resource Object Store 6.0.5.0.1
    Toolkit Utility Library 6.0.5.33.1
    Toolkit Automation Library 6.0.5.33.1
    Oracle Information Navigator 6.0.4.0.0
    Online Documentation Library 6.0.8.11.4
    Project Builder 6.0.5.6.0
    is AS version 8.0.6 , if it is , how do i upgarde to the latest on avaialble
    thanx in advance

    document 146468.1 specifies how to upgrade to latest realese of 9i AS , but i want ot upgrade it to 10gYou cannot upgrade your Oracle 9iAS to Oracle AS10g, you can only upgrade it to 9iAS (1.0.2.2.2). For more details, refer to Note: 186981.1 (What versions of Oracle9i Application Server Release 1 can be used with Oracle E-Business Suite Release 11i) and (Can an existing Release 11i application server be upgraded to Oracle Application Server 10g?)
    If you want to have Oracle Applications Server 10g, you need to install it in a NEW ORACLE_HOME (Refer to Note: 233436.1 for more details).
    i am still confused for my AS version , how can i clarify that To determine the version, issue:
    UNIX: $ORACLE_HOME/Apache/Apache/bin/httpd -version
    Windows: %ORACLE_HOME%\Apache\Apache\apache.exe -version
    main components which i am using with my current AS are forms and reports serverOracle Developer 6i (Forms and Respports) are NOT part of Oracle Applications Server installation, it is installed under 8.0.6 ORACLE_HOME.
    can they be independently upgraded?Yes, see my answer to the first question in this reply.

  • Are JDeveloper 9.0.4 Projects running on Application Server 9.0.3 ?

    Hi
    I might be forced to migrate my project from JDeveloper 9.0.3.4 to 9.0.4 due to an ugly bug.
    As far as I can see JDeveloper 9.0.4 uses OC4J 9.0.4.
    But does this mean, that I also have to upgrade my Application Server to 9.0.4 ?
    Or is it possible to deploy a 9.0.4 application to 9.0.3 application server (maybe with updated bc4j libraries) ?
    Thanks

    Check out the following matrix
    http://otn.oracle.com/products/jdev/htdocs/9.0.5.1/install.html#supported
    raghu
    JDev Team

  • Login issue after upgrading sun app server 8.1 to 9.0

    Hi, I recently upgraded sun application server from 8.1 to 9.0. Now when I go to my web application in my browser and try to login, its giving me an error.
    System Messages We're sorry but we are unable to log you in at this time...
    Error: Error in allocating a connection. Cause: Connection could not be allocated because: Access denied for user ''@'localhost' (using password: YES)
    Any ideas where to start?

    try to uninstall all of it and install again..
    take care of your files.. backup everything

  • Webutil configuration for windows 7 application server

    hi all,
    we are working on oracle forms/reports and recently upgraded the application server to windows 7 and database is oracle 10g
    config:
    os : windows 7
    developer suite 10g
    in this we are using the jre instead of jinitiator and did the all needful changes in formsweb.cfg. and webutil.cfg
    now we can able to run forms/reports. but the problem is webutil is not working.
    we are facing at run the reports as we select excel format and click ok button
    the following error is coming
    **oracle.forms.webutil.ole olebean not found**
    any body kindly help me how to resolve this

    See my comments in this post:
    java.lang.ClassNotFoundException: oracle.forms.webutil.ole.OleFunctions
    and this one:
    webutil.cfg for win-7 64 bit client

  • Webutil configuration for jre, Forms 10g in windows 7 application server

    hi all,
    we are recently upgraded the application server with new os windows7. and clients ae also upgraded with windows7.
    we are using forms 10g(developer suite 10g). and installed jre6 instead of jinitiator and did the all needful changes in formsweb.cfg. and ialready installed ofiice-2003(for excel)
    but we are unable to run reports in excel format*. while we select the repotr type is exel in list item
    and click ok button the following error is coming
    oracle.forms.webutil.ole ole functions bean not found
    client_ole2.create_obj will not work.
    =====================
    the following is the webutil configuration in formsweb.cfg
    =====================
    [webutil]
    archive=frmall.jar,frmwebutil.jar,jacob.jar
    archive_jini=frmall_jinit.jar,frmwebutil.jar,jacob.jar
    #,f90all_jinit.jar
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=basejpi.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTML=webutilbase.htm
    #baseHTML=webutiljpi.htm
    lookAndFeel=Oracle
    if any changes in the configuration and jre files.please mention it.
    kindly help me how to resolve this problem
    thank you
    Edited by: vamsi on 3 Jan, 2012 12:59 AM
    Edited by: vamsi on 3 Jan, 2012 1:21 AM
    Edited by: vamsi on 3 Jan, 2012 1:21 AM

    See my comments in this post:
    java.lang.ClassNotFoundException: oracle.forms.webutil.ole.OleFunctions
    and this one:
    webutil.cfg for win-7 64 bit client

  • Oracle Application Server 10g R2 and UniVerse

    Has anyone had any experience trying to implement App Server with non-oracle database such as UniVerse. I'd only like to find out if it is possible and where I can get documentation on how to go about this. Any replies are appreciated. Thanks in advance for your time.

    Hi,
    Can you tell us more details about your intentions and business challenges ? After reading your question, I think you are looking for one of these scenarios :-
    1. Using the IBM Universe Database as the Metadata Repository for the Oracle Application Server.
    It's not possible - Oracle Application Server is married to the Oracle Datbase & you can't use anything else as an MR.
    2. Accessing the IBM Universe Database from an Web Application.
    I think this depends on the Technologies used in the Web Applciation ( J2EE, PHP, etc. ) & the level of support offered by the Oracle Application Server ( OC4J, J2EE Libraries, etc. ) . If this is what you are looking for, can you tell us more about the application & the challenges you are facing ?
    Regards,
    Sandeep

  • Oracle Application Server 10g Release 3 (10.1.3) to 10.1.3.5.0

    Hello,
    I'm trying upgrade Oracle Application Server 10g Release 3 (10.1.3) to 10.1.3.5.0. Let me give a background first:
    I tried to install Oracle AS 10.1.3 but it ran into error because windows firewall was blocking javaw.exe opmn.exe. I had cancelled the installation. So ORACLE_AS1 failed initiatlly. After i identified the issue i installed ORACLE_AS2. This went through successfully without issues. I'm able to login to BPEL Console. But only after executing opmnctl startall in DOS Prompt. I have installed Windows 7.
    Now when I try to upgrade to 10.1.3.5.0 the installer automatically selects destination location ORACLEAS1. I change it ORACLEAS2 where (10.1.3) is installed. After clicking on a next i get and issue as shown in the below link:
    [http://www.mypicx.com/09172010/issue/]
    Can anyone please help me resolve this issue?

    Hi,
    When i am trying to install OAS 10g R3 on windows7. I am getting the error as:- Not supported OS press enter to exit the setup.
    Please help me is there any other way to install.
    Thanks in advance.

Maybe you are looking for

  • Up Date OS X.3.6

    I'm using the system 10.3.6 so i'd like to update to 10.3.9, my doubt is if is possible update without do updates to 10.3.7 and 10.3.8 before, i can do the upgrade directly to the system 10.3.9?

  • Plz check my classpath to JSTL

    sir i m wrirting the code .......... import javax.servlet.jsp.*; and i have servlet.jar and jstl.jar in [tomcat] \ common \ lib but it is then also giving the errors........... plz tell me my error thank you gaurav

  • Unity PDL?

    Unity 7 MS Exchange 2007 Question: Is it possible using a PDL that when a message is read and/or deleted in one mail box (either via the TUI or e-mail client) to have the message maked read and/or deleted in the other mail boxes?  I have a requiremen

  • Toshiba Satellite S70-B - Keyboard backlight not working?

    Hello, I purchased a brand new Toshiba Satellite S70-B laptop with Windows 8 on it. When I received it, I removed the harddrive and installed a SSD with Windows 7 on it. After getting help from Toshiba support, all the drivers and harware seem to wor

  • WIFI after standy...

    When I first got my iPhone after it woke from sleep it would auto connect to my wifi network, since that first day I have to manually select the network everytime I wake it from sleep. Does anyone know why its started doing this? Even more importantl