New WLS JDBC Technology page on dev2dev

There is a new WLS JDBC technology page on dev2dev at
http://dev2dev.bea.com/technologies/jdbc/index.jsp.
We also expect to be posting new papers to it shortly.

Hi Eric,
          The FAQs are already linked under "Newsgroups and FAQ".
          Tom
          Eric Ma wrote:
          > Tom:
          >
          > Thanks for pulling all the resources together in one place. Can you also add
          > links to JMS FAQ's?
          >
          > Eric
          >
          > Tom Barnes <[email protected]> wrote:
          >
          >>For the first time, it's all in one place!
          >>
          >>There is a new comprehensive JMS technology page on dev2dev for all
          >>public things JMS. It covers WebLogic versions 6.1 and later:
          >>
          >> http://dev2dev.bea.com/technologies/jms/index.jsp
          >>
          >>The technology page is also accessible from the left-hand nav underneath
          >>the Technologies header.
          >>
          >>In addition, there is a new JMS features section in edocs, which, also
          >>for the first time, centrally lists JMS features and their related
          >>links:
          >>
          >> http://edocs.bea.com/wls/docs81/jms/intro.html#jms_features
          >>
          >>Any feedback is welcome, and can go to dev2dev, or myself
          >>([email protected]).
          >>
          >>Tom, BEA
          >>
          >
          >
          

Similar Messages

  • Add a new SubmitButton on a Page

    Hi,
    I need to add a new submitButton on a page, so I have doen the following:
    1) created a new stacklayout and submitbutton under it.
    2) assigned the page's AM to this region.
    3) assigned a new controller to this region.
    4) using personalization added the region to the page.
    However, when I press the button, I get an error :
    My Controller code is :
    public void processFormRequest(OAPageContext oapageContext, OAWebBean oawebBean)
    super.processFormRequest(oapageContext, oawebBean);
    if(oapageContext.getParameter("xxPrintReqButton") != null)
    {    OAApplicationModule am = oapageContext.getApplicationModule(oawebBean);
    MyReqsVOImpl vo = (MyReqsVOImpl) am.findViewObject("MyReqsVO");
    OARow row = (OARow) vo.getFirstFilteredRow("select","Y");
    String reqno = (String) row.getAttribute("RequisitionNumber");
    // For testing only
    OAMessageStyledTextBean fieldTest = (OAMessageStyledTextBean)oawebBean.findChildRecursive("PrintText");
    fieldTest.setText(oapageContext,reqno );
    My error stack is :
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT prh.requisition_header_id,
    prh.segment1 requisition_number,
    prh.preparer_id,
    hre.full_name preparer_name,
    prh.description,
    prh.authorization_status auth_status,
    prh.cancel_flag,
    NVL(prh.closed_code,
    'OPEN'
    ) closed_code,
    apc.card_number,
    prh.creation_date,
    prh.transferred_to_oe_flag placed_on_so_flag,
    prh.emergency_po_num,
    NVL(prh.change_pending_flag,
    'N'
    ) change_pending_flag,
    prh.contractor_status,
    prh.contractor_requisition_flag,
    prh.supplier_notified_flag,
    NVL(prh.active_shopping_cart_flag, 'N') active_shopping_cart_flag,
    'POR_VIEW_MY_REQS' view_mode,
    prh.wf_item_type,
    prh.wf_item_key
    FROM po_requisition_headers prh,
    ap_cards apc,
    per_all_people_f hre
    WHERE prh.authorization_status<>'SYSTEM_SAVED' AND
    prh.preparer_id = hre.person_id AND
    TRUNC(sysdate) BETWEEN hre.effective_start_date AND
    hre.effective_end_date AND
    apc.card_id (+) = prh.pcard_id AND
    prh.preparer_id = :1
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1408)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2637)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:107)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
         at oracle.jsp.JspServlet.internalService(JspServlet.java)
         at oracle.jsp.JspServlet.service(JspServlet.java)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01008: not all variables bound
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:589)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1972)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1119)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2559)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2950)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:656)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:582)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:627)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:515)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3347)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:825)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4465)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:538)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2369)
         at oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStartWithRefresh(ViewRowSetIteratorImpl.java:2327)
         at oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStart(ViewRowSetIteratorImpl.java:2318)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.getFirstFilteredRow(OAViewObjectImpl.java:4726)
         at xx.oracle.apps.icx.por.reqmgmt.webui.xxPrintRequisitionsCO.processFormRequest(xxPrintRequisitionsCO.java:52)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:107)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
         at oracle.jsp.JspServlet.internalService(JspServlet.java)
         at oracle.jsp.JspServlet.service(JspServlet.java)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    java.sql.SQLException: ORA-01008: not all variables bound
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:589)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1972)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1119)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2559)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2950)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:656)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:582)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:627)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:515)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3347)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:825)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4465)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:538)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2369)
         at oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStartWithRefresh(ViewRowSetIteratorImpl.java:2327)
         at oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStart(ViewRowSetIteratorImpl.java:2318)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.getFirstFilteredRow(OAViewObjectImpl.java:4726)
         at xx.oracle.apps.icx.por.reqmgmt.webui.xxPrintRequisitionsCO.processFormRequest(xxPrintRequisitionsCO.java:52)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:107)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
         at oracle.jsp.JspServlet.internalService(JspServlet.java)
         at oracle.jsp.JspServlet.service(JspServlet.java)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    All I need to do is , when the button is processed , get the current row selected in the table using the single selection attribute and find the value of the attribute RequisitioNumber in that row. I plan to use this reqno as a parameter later. The table uses the VO MyReqsVO.
    It appears the fwk is trying to bind the variables for the above VO and errors. Can i not simply refer to the VO instance which has already executed and displays the results in the advanced table ?
    Any help is much appreciated.
    Thanks
    Shankar

    Thanks Avaneesh.
    how does fwk know which VO to use for am.findRowByref() ?
    Currently I write in my PFR :
    OAApplicationModule am = oapageContext.getApplicationModule(oawebBean);
    String rowReference = oapageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
    OARow row = (OARow) am.findRowByRef(rowReference);
    String reqno = (String) row.getAttribute("RequisitionNumber");
    throw new OAException(reqno,OAException.INFORMATION); --- to test only
    but it gives Null Pointer exception on line
    String reqno = (String) row.getAttribute("RequisitionNumber");
    because i think it does not know which VO 's get method to use ?
    Thanks
    see error stack below :
    Exception Details.
    oracle.apps.fnd.framework.OAException: java.lang.NullPointerException
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1408)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2637)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:107)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
         at oracle.jsp.JspServlet.internalService(JspServlet.java)
         at oracle.jsp.JspServlet.service(JspServlet.java)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.lang.NullPointerException
         at xx.oracle.apps.icx.por.reqmgmt.webui.xxPrintRequisitionsCO.processFormRequest(xxPrintRequisitionsCO.java:82)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:107)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
         at oracle.jsp.JspServlet.internalService(JspServlet.java)
         at oracle.jsp.JspServlet.service(JspServlet.java)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    java.lang.NullPointerException
         at xx.oracle.apps.icx.por.reqmgmt.webui.xxPrintRequisitionsCO.processFormRequest(xxPrintRequisitionsCO.java:82)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:107)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
         at oracle.jsp.JspServlet.internalService(JspServlet.java)
         at oracle.jsp.JspServlet.service(JspServlet.java)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)

  • Java EE 6 Technologies page is not up-to-date

    This is a request for correction.
    * In Java EE 6 Technologies page,
    http://www.oracle.com/technetwork/java/javaee/tech/index.html
    it turns out that the following information isn't correct (maybe obsolete, as there had been seemingly a plan to include JMX2.0 into EE 6 but later cancelled).
    Java Management Extensions (JMX) 2.0; [JSR 255|http://jcp.org/en/jsr/detail?id=255]
    Instead, it should be:
    -Java Management Extensions (JMX) *1.4*; [JSR 3|http://jcp.org/en/jsr/detail?id=3]
    -Java Management Extensions (JMX) Remote API; [JSR 160|http://jcp.org/en/jsr/detail?id=160]
    * Rationale for the correction :
    - The Java EE specification (JSR 316) does not require JMX 2.0 in JSR316 or in any other specs
    - JMX 2.0 is in its Early Draft Preview stage and still incomplete.
    * Importance of the correction:
    - The page is often referred to as one of the most `reliable' source of Java EE-related info
    so the accuracy and consistency is significantly important.
    See [this thread|http://forums.oracle.com/forums/thread.jspa?threadID=2255306] for details.
    Thanks in advance

    Fixed.
    The new number was there.
    I had another Front-End pool, create and move users to new one... Dialin Access Numbers in the old pool are being showed in the dialin web page.
    You need to create them in the new pool and delete...
    Reference:
    http://social.technet.microsoft.com/Forums/lync/en-US/94c6f3e5-e9b3-48ff-b4c1-71d81606badc/lync-how-to-remove-ocs-conference-dialin-from-lync-when-ocs-is-decommissioned?forum=ocsclients 

  • How can WLS use JSP pages in a Web Application witth just a JRE [Web Application, WAR, JSP, weblogic.jsp.pageCheckSeconds and JRE]

              How can WLS use JSP pages in a Web Application (either a .war file or a war directory structure) without a java compiler?
              I suspect either the JSP specification is flawed (i.e. it doesn't take account of servers using just a JRE), or BEA's implementation is broken.
              Production servers do not have a JDK installed. They only have a JRE. Therfore a java compiler is not present on the machine that the Web Application is deployed onto.
              On the development machine, when the server is requested to load the JSP it creates a tmpwar directory within the Web Application directory structure. This is then included in the resultant .war file thus:
              D:\war>jar -tf gmi.war
              META-INF/
              META-INF/MANIFEST.MF
              gmiService.jsp
              WEB-INF/
              WEB-INF/classes/
              WEB-INF/classes/com/
              WEB-INF/classes/com/bt/
              WEB-INF/classes/com/bt/gmi/
              WEB-INF/classes/com/bt/gmi/gmiService.class
              WEB-INF/getList.xsl
              WEB-INF/getListByConnection.xsl
              WEB-INF/getListByDistrict.xsl
              WEB-INF/getListByDistrictConnection.xsl
              WEB-INF/lib/
              WEB-INF/source/
              WEB-INF/source/build.bat
              WEB-INF/source/gmiService.java
              WEB-INF/web.xml
              WEB-INF/weblogic.xml
              tmpwar/
              tmpwar/jsp_servlet/
              tmpwar/jsp_servlet/_gmiservice.class
              tmpwar/jsp_servlet/_gmiservice.java
              When deployed on the production server with the web.xml file set to use the following values (note XML stripped):
              weblogic.jsp.pageCheckSeconds
              -1
              weblogic.jsp.precompile
              false
              weblogic.jsp.compileCommand
              javac
              weblogic.jsp.verbose
              true
              weblogic.jsp.packagePrefix
              jsp_servlet
              weblogic.jsp.keepgenerated
              false
              And in the weblogic.properties file:
              weblogic.httpd.webApp.gmi=war/gmi
              I've also tried with the .war file, but that insists on creating another tmpwar directory outside of the .war file.
              Then, although I have set pageCheckSeconds to -1 (don't check and don't recompile) ter production server still attempts to recompile the JSP's:
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: init
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param verbose initialized to: true
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param packagePrefix initialized to: jsp_servlet
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param compileCommand initialized to: javac
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param srcCompiler initialized to weblogic.jspc
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param superclass initialized to null
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param workingDir initialized to: /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param pageCheckSeconds initialized to: -1
              Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: initialization complete
              Mon Sep 25 11:40:12 BST 2000:<I> <WebAppServletContext-gmi> Generated java file: /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.java
              Mon Sep 25 11:40:14 BST 2000:<E> <WebAppServletContext-gmi> Compilation of /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.java failed: Exception in thread "main" java.lang.NoClassDefFoundError: sun/tools/javac/Main
              java.io.IOException: Compiler failed executable.exec([Ljava.lang.String;[javac, -classpath, /opt/Solaris_JRE_1.2.1_04/lib/rt.jar:/opt/Solaris_JRE_1.2.1_04/lib/i18n.jar:/opt/Solaris_JRE_1.2.1_04/classes:/var/wls/5.1/weblogic/lib/weblogic510sp4boot.jar:/var/wls/5.1/weblogic/classes/boot:/var/wls/5.1/weblogic/eval/cloudscape/lib/cloudscape.jar:/var/wls/5.1/weblogic/lib/wleorb.jar:/var/wls/5.1/weblogic/lib/wlepool.jar:/var/wls/5.1/weblogic/lib/weblogic510sp4.jar:/var/wls/5.1/weblogic/license:/var/wls/5.1/weblogic/classes:/var/wls/5.1/weblogic/lib/weblogicaux.jar:/opt/wls-servers/gmiServer/weblogic/gmiServer/serverclasses:/opt/wls-servers/gmiServer/weblogic/lotusxsl.jar:/opt/wls-servers/gmiServer/weblogic/xerces.jar:/opt/wls-servers/gmiServer/weblogic/logging.jar::/opt/wls-servers/gmiServer/weblogic/war/gmi/WEB-INF/classes:/opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war, -d, /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war, /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.java])
              at java.lang.Throwable.fillInStackTrace(Native Method)
              at java.lang.Throwable.fillInStackTrace(Compiled Code)
              at java.lang.Throwable.<init>(Compiled Code)
              at java.lang.Exception.<init>(Compiled Code)
              at java.io.IOException.<init>(Compiled Code)
              at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(Compiled Code)
              at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:200)
              at weblogic.servlet.jsp.JspStub.compilePage(Compiled Code)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:173)
              at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:187)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:118)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:142)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:744)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:692)
              at weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:251)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:363)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
              at weblogic.kernel.ExecuteThread.run(Compiled Code)
              

    The default Java compiler from sun lives in the tools.jar that comes with
              the JDK. Just add that to your set of JARs which are deployed in production
              and you should be fine. No need to install the full JDK - just make the
              tools.jar available to WebLogic.
              Regards
              James
              James Strachan
              =============
              email: [email protected]
              web: http://www.metastuff.com
              "Martin Webb" <[email protected]> wrote in message
              news:[email protected]...
              >
              > How can WLS use JSP pages in a Web Application (either a .war file or a
              war directory structure) without a java compiler?
              >
              > I suspect either the JSP specification is flawed (i.e. it doesn't take
              account of servers using just a JRE), or BEA's implementation is broken.
              >
              > Production servers do not have a JDK installed. They only have a JRE.
              Therfore a java compiler is not present on the machine that the Web
              Application is deployed onto.
              >
              > On the development machine, when the server is requested to load the JSP
              it creates a tmpwar directory within the Web Application directory
              structure. This is then included in the resultant .war file thus:
              >
              > D:\war>jar -tf gmi.war
              > META-INF/
              > META-INF/MANIFEST.MF
              > gmiService.jsp
              > WEB-INF/
              > WEB-INF/classes/
              > WEB-INF/classes/com/
              > WEB-INF/classes/com/bt/
              > WEB-INF/classes/com/bt/gmi/
              > WEB-INF/classes/com/bt/gmi/gmiService.class
              > WEB-INF/getList.xsl
              > WEB-INF/getListByConnection.xsl
              > WEB-INF/getListByDistrict.xsl
              > WEB-INF/getListByDistrictConnection.xsl
              > WEB-INF/lib/
              > WEB-INF/source/
              > WEB-INF/source/build.bat
              > WEB-INF/source/gmiService.java
              > WEB-INF/web.xml
              > WEB-INF/weblogic.xml
              > tmpwar/
              > tmpwar/jsp_servlet/
              > tmpwar/jsp_servlet/_gmiservice.class
              > tmpwar/jsp_servlet/_gmiservice.java
              >
              > When deployed on the production server with the web.xml file set to use
              the following values (note XML stripped):
              >
              > weblogic.jsp.pageCheckSeconds
              > -1
              >
              > weblogic.jsp.precompile
              > false
              >
              > weblogic.jsp.compileCommand
              > javac
              >
              > weblogic.jsp.verbose
              > true
              >
              > weblogic.jsp.packagePrefix
              > jsp_servlet
              >
              > weblogic.jsp.keepgenerated
              > false
              >
              >
              > And in the weblogic.properties file:
              >
              > weblogic.httpd.webApp.gmi=war/gmi
              >
              > I've also tried with the .war file, but that insists on creating another
              tmpwar directory outside of the .war file.
              >
              >
              > Then, although I have set pageCheckSeconds to -1 (don't check and don't
              recompile) ter production server still attempts to recompile the JSP's:
              >
              >
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: init
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              verbose initialized to: true
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              packagePrefix initialized to: jsp_servlet
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              compileCommand initialized to: javac
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              srcCompiler initialized to weblogic.jspc
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              superclass initialized to null
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              workingDir initialized to:
              /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp: param
              pageCheckSeconds initialized to: -1
              > Mon Sep 25 11:40:11 BST 2000:<I> <WebAppServletContext-gmi> *.jsp:
              initialization complete
              > Mon Sep 25 11:40:12 BST 2000:<I> <WebAppServletContext-gmi> Generated java
              file:
              /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.
              java
              > Mon Sep 25 11:40:14 BST 2000:<E> <WebAppServletContext-gmi> Compilation of
              /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.
              java failed: Exception in thread "main" java.lang.NoClassDefFoundError:
              sun/tools/javac/Main
              >
              > java.io.IOException: Compiler failed
              executable.exec([Ljava.lang.String;[javac, -classpath,
              /opt/Solaris_JRE_1.2.1_04/lib/rt.jar:/opt/Solaris_JRE_1.2.1_04/lib/i18n.jar:
              /opt/Solaris_JRE_1.2.1_04/classes:/var/wls/5.1/weblogic/lib/weblogic510sp4bo
              ot.jar:/var/wls/5.1/weblogic/classes/boot:/var/wls/5.1/weblogic/eval/cloudsc
              ape/lib/cloudscape.jar:/var/wls/5.1/weblogic/lib/wleorb.jar:/var/wls/5.1/web
              logic/lib/wlepool.jar:/var/wls/5.1/weblogic/lib/weblogic510sp4.jar:/var/wls/
              5.1/weblogic/license:/var/wls/5.1/weblogic/classes:/var/wls/5.1/weblogic/lib
              /weblogicaux.jar:/opt/wls-servers/gmiServer/weblogic/gmiServer/serverclasses
              :/opt/wls-servers/gmiServer/weblogic/lotusxsl.jar:/opt/wls-servers/gmiServer
              /weblogic/xerces.jar:/opt/wls-servers/gmiServer/weblogic/logging.jar::/opt/w
              ls-servers/gmiServer/weblogic/war/gmi/WEB-INF/classes:/opt/wls-servers/gmiSe
              rver/weblogic/war/gmi/_tmp_war, -d,
              /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war,
              /opt/wls-servers/gmiServer/weblogic/war/gmi/_tmp_war/jsp_servlet/gmiService.
              java])
              > at java.lang.Throwable.fillInStackTrace(Native Method)
              > at java.lang.Throwable.fillInStackTrace(Compiled Code)
              > at java.lang.Throwable.<init>(Compiled Code)
              > at java.lang.Exception.<init>(Compiled Code)
              > at java.io.IOException.<init>(Compiled Code)
              > at
              weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(Compiled Code)
              > at
              weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:200)
              > at weblogic.servlet.jsp.JspStub.compilePage(Compiled Code)
              > at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:173)
              > at
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:18
              7)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :118)
              > at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :142)
              > at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:744)
              > at
              weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
              l.java:692)
              > at
              weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
              Manager.java:251)
              > at
              weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:363)
              > at
              weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:263)
              > at weblogic.kernel.ExecuteThread.run(Compiled Code)
              >
              >
              >
              

  • JDBC causing page fault, please help

    Author: union2000
    Jul 8, 2001 6:48 PM
    Hi can someone please help.
    I am building an database application in Sun Java with JDK 1.2.2 (set up on a
    partitioned 16GB drive on the 'C:\' drive partition) as a front end to an Oracle 8i
    'starter database' successfully set up and used on Windows 98 (set up on the 'E:\'
    drive partition). Both partitions are compatible with each other, both using the same
    Windows 98 instance. I am attempting to make a connection to the database using
    the usual code:
    // You need to import the java.sql package to use JDBC
    import java.sql.*;
    class connectExample
    public static void main (String args [])
    throws SQLException
    // Load the Oracle JDBC driver
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    // Connect to the database
    // You can put a database name after the @ sign in the connection URL.
    Connection conn =
    DriverManager.getConnection ("jdbc:oracle:oci8:@", "scott", "tiger");
    // Close the connecion
    conn.close();
    Now, the connection seems to be made, the windows messages flash up as does
    the database icon and the database is initialised and mounted successfully.
    However, RIGHT AFTER THAT.... a Windows message tells me there is a page fault
    and prompts me to shut down the Java program / VM. I get the following:
    JAVA caused an invalid page fault in
    module JAVAI.DLL at 017f:6ee37f3a.
    Registers:
    EAX=00000018 CS=017f EIP=6ee37f3a EFLGS=00010206
    EBX=bff96347 SS=0187 ESP=0063ecd4 EBP=00000000
    ECX=cc1b41f0 DS=0187 ESI=00000000 FS=3e8f
    EDX=83b3600c ES=0187 EDI=00000000 GS=0000
    Bytes at CS:EIP:
    8b 4f 3c 33 c0 03 cf 2b f7 66 8b 41 14 33 d2 66
    Stack dump:
    00000000 0063eec0 0063f76c bff96347 00000000 00000000 00000000 00400000
    00010000 744b13e8 00020000 6ee381d0 00000000 0063edbc 00000104 0063ed30
    (I close Java, and the database remains mounted and open for use)
    Does anyone have any idea why this is happening? I would be very grateful for any
    help, thanks.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Lance ([email protected]):
    You mean I should install JDK 1.3 and Oracle 8.1.6?
    I should work.
    Thanks for your reply
    Lance<HR></BLOCKQUOTE>
    null

  • New Oracle ACE web-page an APEX application!

    Hi,
    have you already noticed, the new Oracle ACE web-page where you can search and view the profile of the ACE's is an Oracle APEX application!
    http://www.oracle.com/technology/community/oracle_ace/index.html
    APEX is spreading... :-)
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

    I guess they get a special exemption from the rule against running a production app on apex.oracle.com.
    Nice to see John's book mentioned on the front page.

  • New in ADF Technology wants e-books that concentrate on coding in adf

    Dear All ,
    Iam a new in adf Technology ,
    i read the technical resource in oracle web site in the Jdeveloper Offical page .
    can any one help me to find e-books that concentrate on coding in adf technology

    hi user,
    just type in google.
    adf code corner
    or else adf insider essentials
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/adfinsideressentials-337133.html
    tutorials
    http://subu-jdeveloper11gadf.blogspot.com/search?updated-max=2011-12-28T17:12:00%2B05:30&max-results=1

  • How to print new line in jsp page

    hi
    how to print new line in jsp page
    thanks

    \n - new line character is in java specific not HTML
    specific.Well, if the correct line separator sequence (by far not always \n) would be used, it does add a new line to the HTML output. Too bad that you don't want to see HTML but formatted text. The BR tag is a formatting element for the displayed text, not a line break in HTML. ;)

  • FF 29 What's New/Committed to privacy page keeps opening

    The What's New/Committed to privacy page keeps opening. Windows 7 for the OS. Things I have tried:
    Delete user.js and prefs.js. Didn't fix the issue.
    Set browser.startup.homepage_override.mstone to ignore both via about:config and directly editing prefs.js (one at a time, and both at the same time). Didn't fix the issue. It just overwrote that when FF opened the next time.
    Set prefs.js to read only after changing the mstone setting. Same thing, it still opened even though the file was read only and said ignore.
    This is not a home page issue. I don't have multiple home pages, the what's new page is not in my home page, I'm not saving open tabs, etc.
    Here is my support info:
    Application Basics
    Name: Firefox
    Version: 29.0.1
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: Adblock Plus
    Version: 2.6.3
    Enabled: true
    ID: {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    Name: Adblock Plus Pop-up Addon
    Version: 0.9.2
    Enabled: true
    ID: [email protected]
    Name: CS Lite Mod
    Version: 1.4.9
    Enabled: true
    ID: [email protected]
    Name: Download Status Bar
    Version: 10.0.0
    Enabled: true
    ID: {6c28e999-e900-4635-a39d-b1ec90ba0c0f}
    Name: Element Hiding Helper for Adblock Plus
    Version: 1.3
    Enabled: true
    ID: [email protected]
    Name: external IP
    Version: 0.9.9.6
    Enabled: true
    ID: [email protected]
    Name: FireFTP
    Version: 2.0.19
    Enabled: true
    ID: {a7c6cf7f-112c-4500-a7ea-39801a327e5f}
    Name: Forecastfox
    Version: 2.2.4
    Enabled: true
    ID: {0538E3E3-7E9B-4d49-8831-A227C80A7AD3}
    Name: IE Tab
    Version: 4.0.20130422
    Enabled: true
    ID: {77b819fa-95ad-4f2c-ac7c-486b356188a9}
    Name: IE View
    Version: 1.5.6
    Enabled: true
    ID: {6e84150a-d526-41f1-a480-a67d3fed910d}
    Name: Logitech SetPoint
    Version: 6.5
    Enabled: true
    ID: {F003DA68-8256-4b37-A6C4-350FA04494DF}
    Name: LogMeIn, Inc. Remote Access Plugin
    Version: 1.0.0.1082
    Enabled: true
    ID: [email protected]
    Name: NoScript
    Version: 2.6.8.28
    Enabled: true
    ID: {73a6fe31-595d-460b-a920-fcc0f8843232}
    Name: OpenDownload²
    Version: 3.5.1
    Enabled: true
    ID: {210249CE-F888-11DD-B868-4CB456D89593}
    Name: Password Exporter
    Version: 1.2.1
    Enabled: true
    ID: {B17C1C5A-04B1-11DB-9804-B622A1EF5492}
    Name: The Addon Bar (restored)
    Version: 3.2
    Enabled: true
    ID: the-addon-bar@GeekInTraining-GiT
    Name: WebEx Productivity Tools
    Version: 2.0
    Enabled: true
    ID: [email protected]
    Name: Windows Media Player Extension for Firefox
    Version: 1.1
    Enabled: true
    ID: jid0-nRwp7VvCqZcSRTppwWz2npqGEKw@jetpack
    Name: Xmarks
    Version: 4.2.1
    Enabled: true
    ID: [email protected]
    Name: YouTube High Definition
    Version: 8.8
    Enabled: true
    ID: {7b1bf0b6-a1b9-42b0-b75d-252036438bdc}
    Name: Download Statusbar
    Version: 0.9.10
    Enabled: false
    ID: {D4DD63FA-01E4-46a7-B6B1-EDAB7D6AD389}
    Name: Winamp Toolbar
    Version: 5.6.20.9397
    Enabled: false
    ID: {0b38152b-1b20-484d-a11f-5e04a9b0661f}
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 1048576
    browser.cache.disk.smart_size_cached_value: 665600
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.places.importBookmarksHTML: false
    browser.places.smartBookmarksVersion: 6
    browser.search.openintab: true
    browser.search.useDBForOrder: true
    browser.sessionstore.upgradeBackup.latestBuildID: 20140506152807
    browser.startup.homepage: http://www.google.com
    browser.startup.homepage_override.buildID: 20140506152807
    browser.startup.homepage_override.mstone: 29.0.1
    dom.max_chrome_script_run_time: 40
    dom.max_script_run_time: 40
    dom.mozApps.used: true
    extensions.lastAppVersion: 29.0.1
    font.internaluseonly.changed: false
    gfx.direct3d.last_used_feature_level_idx: 0
    gfx.direct3d.prefer_10_1: true
    network.cookie.cookieBehavior: 2
    network.cookie.prefsMigrated: true
    network.protocol-handler.warn-external.dnupdate: false
    places.database.lastMaintenance: 1402068187
    places.history.expiration.transient_current_max_pages: 104858
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_bgcolor: false
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_bgimages: false
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_colorspace:
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_command:
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_downloadfonts: false
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_duplex: 4390961
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_edge_bottom: 0
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_edge_left: 0
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_edge_right: 0
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_edge_top: 0
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_evenpages: true
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_footercenter:
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_footerleft: &PT
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_footerright: &D
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_headercenter:
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_headerleft: &T
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_headerright: &U
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_in_color: true
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_margin_bottom: 0.5
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_margin_left: 0.5
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_margin_right: 0.5
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_margin_top: 0.5
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_oddpages: true
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_orientation: 0
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_page_delay: 50
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_paper_data: 1
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_paper_height: 11.00
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_paper_name:
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_paper_size_type: 0
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_paper_size_unit: 0
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_paper_width: 8.50
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_plex_name:
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_resolution: 4522037
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_resolution_name:
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_reversed: false
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_scaling: 1.00
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_shrink_to_fit: true
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_to_file: false
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_unwriteable_margin_bottom: 0
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_unwriteable_margin_left: 0
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_unwriteable_margin_right: 0
    print.printer_HP_LJ300-400_color_MFP_M375-M475_PCL_6.print_unwriteable_margin_top: 0
    privacy.sanitize.migrateFx3Prefs: true
    security.mixed_content.block_active_content: false
    security.warn_viewing_mixed: false
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1399787036
    user.js Preferences
    Your profile folder contains a user.js file, which includes preferences that were not created by Firefox.
    Graphics
    Adapter Description: NVIDIA Quadro K1000M
    Adapter Description (GPU #2): Intel(R) HD Graphics 4000
    Adapter Drivers: nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um
    Adapter Drivers (GPU #2): igdumd64 igd10umd64 igd10umd64 igdumd32 igd10umd32 igd10umd32
    Adapter RAM: 2048
    Adapter RAM (GPU #2): Unknown
    ClearType Parameters: D [ Gamma: 2200 Pixel Structure: R ClearType Level: 100 Enhanced Contrast: 50 ] D [ Gamma: 2200 Pixel Structure: R ClearType Level: 100 Enhanced Contrast: 50 ] D [ Gamma: 2200 Pixel Structure: R ClearType Level: 100 Enhanced Contrast: 50 ]
    Device ID: 0x0ffc
    Device ID (GPU #2): 0x0166
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.2.9200.16571)
    Driver Date: 11-11-2013
    Driver Date (GPU #2): 8-21-2012
    Driver Version: 9.18.13.3182
    Driver Version (GPU #2): 9.17.10.2843
    GPU #2 Active: false
    GPU Accelerated Windows: 1/1 Direct3D 10
    Vendor ID: 0x10de
    Vendor ID (GPU #2): 0x8086
    WebGL Renderer: Google Inc. -- ANGLE (NVIDIA Quadro K1000M Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: false
    AzureCanvasBackend: direct2d
    AzureContentBackend: direct2d
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.3
    Version in use: 4.10.3
    NSS
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSMIME
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSSL
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSUTIL
    Expected minimum version: 3.16
    Version in use: 3.16

    HI prospero63,
    Thank you for your question, there is a new update going out today, version 30. IF the privacy page is set for your homepage you can change this, however in the new version this campaign is no longer on the start up. You can click do not show again as well.

  • How to add new button in Customized page....

    Dear All,
    I need to add new button to the page button bar in the UI page.I tried like this in the controller but still i can not get output:
    OAPageButtonBarBean oapbb = (OAPageButtonBarBean)oawebbean.findIndexedChildRecursive("OrderPageButtons");
    OAButtonBean cancelButton = (OAButtonBean)createWebBean(oapagecontext, OAWebBeanConstants.BUTTON_BEAN,
    null, "cancelButton");
    cancelButton.setText("Cancel");
    oapbb.addIndexedChild(cancelButton);
    Is there anything i missedout?
    TIA

    what you are doing incorrectly is
    trying to get the handle to the OAPageButtonBarBean.
    This is a named child of the parent bean(OAPageLayoutBean), and what you are trying to do is find it as a indexed child, this should give you a nullpointer excp in this line oapbb.addIndexedChild(cancelButton);
    since the handle should be null.
    to get the handle to OAPageButtonBarBean, use some like this
    pageContext.getPageLayoutBean().getPageButtons();
    and then add buttons to it.
    Thanks
    Tapash.

  • Creating a New Item In Seeded page

    Hi,
    I am having requirement to create a new field in seeded page.So Please can anyone help me in creating it.
    My Requirement is----->
    Creating a new field to be displayed In CONFORMATION PAGE of "Internet Expense Audit Manager Responsibility".
    The Navigation is :
    Internet Expense Audit Manager Responsibility---------->Conformation Page
    The Field to be displayed is ProjectNumber.
    So please can anyone help in doing this.

    Hi,
    Actually I am using ReviewCashVO . In it i can see ProjectNumber,Justification etc attributes.
    In seeded Page,he had used Justification Field and it showing data.He had not used ProjectNumber.
    so i created a new field and assigned projectnumber as instance attribute ,then its not displaying data.
    But if i use Justification Instance Attribute for newly created field or item then its displaying data.
    So please can u help me in doing personalization on seeded page.
    My Aim is:
    Internet Expense Audit Manager responsibility
    In it
    Conformation Page
    In conformation page i need to add Project Number field.
    Plz can u check it.

  • Add new field in OAF Page.

    I want to personalize a OAF page. My question is, Can i add new field in OAF page linked with database field and some calculations.
    I am trying to add new field in Termination page of Self service HR which will show the hiredate of employee and number of year served.

    Hi,
    As already specified by Kali..
    Step 1 - Create a new Field of type MessageStyledText using Personalization Link.
    Step 2 - Set the corresponding VO Attribute, which will fetch Hire Date.
    Step 3 - Extend the CO and calculate the Served Year, using Java Code.
    Step 4- Set the same value over the bean manually.
    Regards,
    Gyan

  • I downloaded a word doc and can't open it on new computer which has pages installed

    I downloaded a word doc and can't open it on my new computer that has pages installer

    Have you tried dragging it onto your Pages icon?
    Is it by any chance passworded?
    It helps if you give some details:
    eg What version of Pages you are using?
    Can you just open Pages on its own?
    The file extension and origin of the word doc
    What message does the computer pop up when it fails to open?
    Otherwise it is all just guesswork.
    Peter

  • Secondly, i used migration assistant to move everything from old laptop to new. when i used pages on new machine, 10.8.5 operating system, there is no click for file save as in the menu, only flle save. why?

    secondly, i used migration assistant to move everything from old laptop to new. when i used pages on new machine, 10.8.5 operating system, there is no click for file save as in the menu, only flle save. why?

    Hold down Option key while clicking on menu bar and Save as will appear.

  • Hiow to add a new field in bsp page.

    Hi Experts,
    I am new to BSP,
    I am doing project in erec, I want to know how to add new fields in BSP page.
    Like I want to add a new field in portal where I could write some comment.
    Regards,
    amod

    Please try to post this question in BSP forum for getting better answers.
    For Enhancing an existing Standard BSP application , refer the below link.
    http://help.sap.com/saphelp_crm70/helpdata/EN/20/b0f4f819e844df9f47bc9c70c795f4/content.htm
    Raghu

Maybe you are looking for

  • Having trouble linking iPad to wireless keyboard

    My wireless keyboard won't connect with my iPad!  Any suggestions?

  • [iPhone] GSEvent Leaks

    I am working on an OpenGL application based on the OpenGL ES Application Template in XCode and have a problem with a memory leak I am unable to resolve. In my app the user can move around a figure rendered with OpenGL, the figure is also automaticall

  • Volume Bar Lag

    Hi, I've recently encountered a problem with the volume bar displayed on my screen. There is a slight stutter/lag/delay between pressing the button on the keyboard and the volume bar changing its bars. This small lag builds up as i repeatedly press t

  • List of attribute for INFOOBJECTS

    Hi, Using QueryBuilder, I need a list of attribute to be able to create a SQL that will provide me with the info that I need. Is there a link to access such a list?

  • Data type in module pool

    I want to create sceen in module pool programming with 2 filed , one with type P length 8 decimals 2, and another with type I, as I need it to do calculation. can anybody suggest ? thanks