JSP execution in Oracle9i AS

I want to execute JSP in oracle9i AS to improve performance of application.
so i had installed Oracle 9i Enterprise Edition.
but i don't know what directory do a JSP code put.
i'm beginner... please let me know... ^^
null

Hai....
Create a directory called myfirstportlet under your default JSP directory for Oracle HTTP Server. This should be the same directory where you created the jpdk directory in the installation article. For example: C:\iAS\Apache\Apache\htdocs\myfirstportlet.
Then update the framework by editing the provider.xml.
Go through the How to build webportlet.
There you will find information.
Cheers
Gopi
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by SangKyun Kim ([email protected]):
I want to execute JSP in oracle9i AS to improve performance of application.
so i had installed Oracle 9i Enterprise Edition.
but i don't know what directory do a JSP code put.
i'm beginner... please let me know... ^^
<HR></BLOCKQUOTE>
null

Similar Messages

  • How to terminate the jsp execution

    Hi, I've an problem to terminate the jsp execution.
    I've tried to use the following code: out.close();
    but the jsp (I use the servlet engine version 2.0) page continue the execution.
    How I can terminate this execution?
    Thanks

    Hello,
    i haven't this tried out yet, and i even do not have Time to test it,
    but if you use a Custom Jsp Tag, then you can set the return Type of
    the doEndTag() Method to SKIP_PAGE.
    This should stop the Evaluation of the Rest of Page.
    Good Luck !
    Best regards
    jherunter

  • JSP, Tomcat 5, Oracle9i

    Hi everyone,
    My Tomcat 5 runs OK with JSP files that don't need access to any database. However, I got error message when running any JSP files that need access to Oracle9i. Below is my "test.jsp" that will get error when running http://localhost/test.jsp.
    <%@ page import="java.awt.*, java.awt.event.*, java.sql.* , java.text.*, java.io.*" %>
    <!------------------------------------------------------------------
    * This is a test page to Oracle9i database.
    --------------------------------------------------------------------!>
    <HTML>
         <HEAD>
              <TITLE>Test</title>
         </head>
         <BODY BGCOLOR=EOFFFO>
              <B>I'm using connection and querying EMP names and
                   salaries from the EMP table in the schema SCOTT.
              </b>
              <P>
                   <%
                        try
                             Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@127.0.0.1:1521:ORCL","scott","tiger");
                                  Statement stmt = conn.createStatement();
                                  String query = "SELECT empno, ename, sal FROM scott.emp ORDER BY ename";
                                  ResultSet rset = stmt.executeQuery(query);
                                  while(rset.next())
                                       out.println( "\n"
                             + "Employee No: " + rset.getInt("empno") + "\n"
                             + "Employee Name: " + rset.getString(2) + "\n"
                             + "Salary ($): " + rset.getFloat(3) + "\n"
                             stmt.close();
                        catch (SQLException e)
                             out.println("<P>" + "There was an error doing the query:");
                             out.println ("<PRE>" + e + "</pre> \n <P>");
                   %>
              </p>
         </body>
    </html>
    I got the error below:
    I'm using connection and querying EMP names and salaries from the EMP table in the schema SCOTT.
    There was an error doing the query:
    java.sql.SQLException: No suitable driver
    What is the driver? Where can I go to get it? How can I install it?
    Please help. Thank you.

    Hi
    First of all classess12.jar or ojdbc.jar must be in classpath of your web app (WEB-INF/lib) or server's extensions dir (usually SERVER_INST/lib/ext).
    MOST IMPORTANT:
    To use driver you must register it within DriverManager. Specification requires drievers to register within static initializer so to register driver you need to do:
    Class.forName("oracle.jdbc.driver.OracleDriver");
    before calling DriverManager.getConnection(...)
    should help
    cheers
    Kula

  • JSP Execution Problem

    We have implemented a servlet that uses a RequestDispatcher to forward to a JSP. The JSP instantiates an object (passing the Request and Response as parameters) that uses the RequestDispatcher once again to include another JSP.
    This has been working fine in a Sun Solaris single-server environment using Apache as webserver and BroadVision as application server. After moving our application to a multi-server HP-UX environment with iPlanet as webserver and BroadVision as application server we have experienced a problem with our included JSPs. They are not executed but inserted as plain text. The first JSP that we use forward to execute still get executed.
    The first time each JSP is included an ServletException is thrown: Failed to set include attributes.
    I suspect that the problem has to do with the url mapping in web.xml. The web.xml file from the application server is included below.
    Any help and information on how to solve this problem would be appreciated.
    Thanks,
    Magnus
    <web-app>
    <servlet-mapping>
    <servlet-name>jspCompiler</servlet-name>
    <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>Main</servlet-name>
    <url-pattern>/main</url-pattern>
    </servlet-mapping>
    <servlet>
    <servlet-name>jspCompiler</servlet-name>
    <servlet-class>org.apache.jasper.runtime.JspServlet
    </servlet-class>
    <init-param><param-name>scratchdir</param-name>
    <param-value>myscratchdir</param-value>
    </init-param>
    </servlet>
    <servlet>
    <servlet-name>Main</servlet-name>
    <servlet-class>
    myclass
    </servlet-class>
    </servlet>
    </web-app>

    I don't know if you using Servlet2.3 but if you are, then try using correct order
    <servlet
    <servlet
    <servlet-mapping
    <servlet-mapping
    Please consult the DTD

  • JSP Execution on 10G. Error encountered.

    I have written the below in JDeveloper 9I,which works
    perfectly on the 9I AS.
    <%--Using user defined heading for colname --%>
    <gui:LOVHeading name="<%=LOVDataItem%>">
    <imjbo:IMShowHint isQuery="true" />
    </gui:LOVHeading>
    The IMShowHint tag is evaluated, and the LOVHeading tag sees the result of that evaluation as its own body content.
    But if the same code is executed on the 10G App Server,
    the LOVHeading just sees the string "<imjbo:IMShowHint......",
    which eventually causes the LOVs to fail.
    Any idea what change do I need to make to the above code
    to make it work on 10G?

    Check the classpath settings on your 10g AS. It might be missing some lib's or jar files.
    Good luck.

  • Remote Program Execution

    Dear Sir,
    I have following problem and very desperately looking for the solution .
    I have 9ias installed on window-2000 server and on this machine JSP/Servlet is also running .
    There is another Unix server also having Oracle 7.3.4 and Pro*C installed .
    My requirement is that on receiving a web client request , the invoked JSP must also execute a C program on the unix machine ( the execution of C program creates a text output file on the unix machine ) and after completion of C program execution the output text file must be available to JSP . As a final result of JSP execution this output text file must be returned to WEB Client .
    Please guide me how to go about this .
    Thanks and Regards
    B V Mittal

    Call your C program like this from your controller servlet
    Process p = Runtime.getRuntime().exec("c.exe");
    BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream()));
    Then read from your generated file and populate whatever you need into a bean.

  • How to reveal JSP source code

    I was just wondering if the source code of a JSP page can be viewed any way?
    The JSP gets translated to a servlet, which pretty much generates HTML and only that is visible to the client browser but is there a way around it?
    E.g. would be secure/suicidal to include usernames and passwords to the JSP source code?
    I would greatly appreciate any feedback.

    The HTML delivered will contain only the output from JSP execution -- you're safe there.
    Every JSP when it is compiled produces a .java file that contains that actual servlet code. There is a risk of a user finding that and downloading it. To avoid this, you want to do one or more of the following:
    1. Turn off the server's retaining of this .java file (it's basically a debugging tool).
    2. Ensure that the .java files are created in a directory that is not accessible via the browser (i.e. outside of docroot).
    3. Apply file system permissions to the directory the files are created in such that they cannot be accessed from the web.
    #1 and #2 should be pretty easily configurable in your application server's settings. #3 is trickier, as you have to set the permissions such that the server can access them, but a web user can't.

  • JSP with Visual Age integrator

    Using the public beta of WA Integrator for WL 5.1, I was able to use all the
    feature of WL, except JSP. Infact, WL compile them using jspc, but then,
    when execute javac as an external process, cannot compile them into class
    file because javac can't see VA Workspace classes.
    I tried to use javac as a class, with whe compilerclass property of the JSP
    servlet, but this doesn't work fine (the same problem, can't see workspace's
    classes).
    Where is the mistake ?
    Ing. Luca Masini
    Software Engineer
    Gruppo Monetica e Servizi
    Area Internet Professional
    Infogroup S.p.a.
    Via delle Panche, 140
    50141 Firenze
    Tel. 055.436.5684
    Fax. 055.436.5735
    e-mail [email protected]

    IBMs VAJ does not provide you with a JSP designer, but it does let you run JSPs under WebSPhere test environment.
    Go to the folder
    IBM/VisualAge For Java/ide/project_resources/IBM WebSphere Test Environment/hosts/default_hosts/default_app/webThis is the root directory for putting JSPs. If you make a directory called myjsps in here, and put myJsp.jsp in the directory then when you start the servlet engine of the WebShpere test environment you can put
    "http://localhost:8080/myjsps/myJsp.jsp"in the URL and your JSP will be compiled into a servlet in the "JSP Page Compile Generated Code" project. You can enter JSP Execution Monitor options (in the WTE ControlCenter), which will bring up a split pane with the JSP on one side, and the compiled Java on the other and will allow you to debug the JSP.
    You are a bit shafted if VAJ was unable to compile your JSP into a servlet - as you get no information on what exactly about the JSP is causing the problem. However, this is all integrated into the debugging environment so you can completely debug the servlet and any Java code it calls.
    If you don't know about the WTE then let me know, but I'm assuming that you do.

  • How to run a Oracle 9i .JSP report from outside 9i Reports Builder

    Hi,
    I have successfully created a .JSP report from within 9i Reports Builder. It runs fine and generates desired output using Run -> Web Layout from the Reports Buider menu. The output is a .htm one.
    Now, my requirement is to run this .JSP from my application without using Reports Builder. In other words, I want to integrate this .JSP with my existing application which will fetch data dynamically for the user. There is no hint to this solution in the 9i Reports Tutorial available at OTN.
    A sample code would be highly helpful.
    Regards,
    - Partha

    partha,
    you deploy a reports-jsp to your oracle9i application server like any other JSP. copy it to a directory in the application servers document tree.
    when you execute the reports-jsp it will need a reports server (in process or stand alone) to execute since the actual data-management is done by the reports-server.
    regards,
    philipp
    PS : if you have further reports related questions, you might want to post those in the reports forum here on OTN.

  • Netscape JSP problem

    I am running JSP in WebSphere App Server or Visual Age for Java Test Environment and am trying to test a JSP in Netscape 4.5 (Company standard !).
    The JSP which has two includes in a builds up a 3D Javascript Array for use in an input form from which a user can select related data from drop downs. The HTML code for this in View Source is roughly 4500 lines.
    My problem is that when I call the JSP in Netscape, the top SSI and top image are displayed however the rest of the page is not loaded at all as if Netscape is hanging. I know there is nothing wrong with the code as if I do a refresh in Netscape or load in IE the page is displayed fine. Also I use the JSP Execution Monitor and all the code is actually run but not sent to the browser.
    Does anyone else have any similar problems with Netscape and found a solution ?
    Any help is most appreciated !

    Netscape is very picky about JavaScript in many ways. First it has problems always seeing your script. Second, there are different things that work in the NS and explorer, but since it works on refresh I'm going to rule this one out for now.
    My sneaking suspicion is this: parts of the script are in other files. So the HTML page may completely load, while the script files are still downloading. As a result, the page finishes loading and a call is made to start the js. But the JS isn't downloaded yet, so it doesn't start. When you refresh, your JS is already downloaded. So when the page finishes loading, your call is made to the script which, voila, is in memory and NS finds it.
    Meanwhile, IE quietly waits for all files to download before running client-side script.
    The other advice given is good though--make sure you check all your HTML tags. Run the (resulting HTML) page through a validator just to be safe.

  • Queries very slow in JSP

    Hi,
    I am working with an Application Server and a Database Oracle 10g. In the JSP's I have a problem with the queries, there are some queries that work very slow, it is not logical for me, because the same query executed in Toad or SQLPlus works very fast.
    For example this query:
    SELECT MAX(COL1) FROM MYTABLE WHERE COL2 = +PARAMETER
    it is very slow in JSP, I have try to do a stored function that returns the result of this query, but it's also is slow:
    SELECT MY_FUNCTION FROM DUAL
    I haven't a lot of experience with JSP. Please, can someone help me?
    Thanks in advance.
    Fernando.

    Hello Krystian.
    Yes, I'm using prepared statements, but I don't know if this can altered the result of a query.
    I'm going to add the result of the trace:
    /* THIS IS THE TOAD EXECUTION */
    SELECT MAX(MED2.MEDICION_ID)
    FROM
    T_MEDICIONES MED2 WHERE MED2.DISPOSITIVO_SENSOR_ID=340 AND VALIDA = 'S'
    call count cpu elapsed disk query current rows
    Parse 2 0.00 0.00 0 0 0 0
    Execute 2 0.00 0.00 0 0 0 0
    Fetch 2 0.00 0.00 0 6 0 2
    total 6 0.00 0.00 0 6 0 2
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 58
    Rows Row Source Operation
    1 SORT AGGREGATE (cr=3 pr=0 pw=0 time=181 us)
    1 FIRST ROW (cr=3 pr=0 pw=0 time=121 us)
    1 INDEX RANGE SCAN (MIN/MAX) IND_MEDICIONES_DISP_SENS (cr=3 pr=0 pw=0 time=110 us)(object id 50555)
    explain plan set statement_id='ROOT:020306140415' into PLAN_TABLE For SELECT MAX(MED2.MEDICION_ID)
    FROM
    T_MEDICIONES MED2 WHERE MED2.DISPOSITIVO_SENSOR_ID=340 AND VALIDA = 'S'
    call count cpu elapsed disk query current rows
    Parse 1 0.01 0.01 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 0.01 0.01 0 0 0 0
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 58
    Rows Row Source Operation
    0 SORT AGGREGATE (cr=0 pr=0 pw=0 time=0 us)
    0 FIRST ROW (cr=0 pr=0 pw=0 time=0 us)
    0 INDEX RANGE SCAN (MIN/MAX) IND_MEDICIONES_DISP_SENS (cr=0 pr=0 pw=0 time=0 us)(object id 50555)
    /* THIS IS THE JSP EXECUTION */
    explain plan set statement_id='ROOT:020306121435' into PLAN_TABLE For /* Formatted on 2006/02/03 12:14 (Formatter Plus v4.8.5) */
    SELECT MAX (med2.medicion_id)
    FROM t_mediciones med2
    WHERE med2.dispositivo_sensor_id = 340
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.01 0.01 0 0 0 0
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 0.02 0.02 0 0 0 0
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 58
    Rows Row Source Operation
    0 SORT AGGREGATE (cr=0 pr=0 pw=0 time=0 us)
    0 INDEX FAST FULL SCAN IND_MEDICIONES_DISP_SENS (cr=0 pr=0 pw=0 time=0 us)(object id 50555)
    ********************************************************************************

  • Need code help in jsp:forward ... /

    Can any one give a little code as to how am i suppose to redirect my jsp execution with <jsp:forward../> tag.
    Give a little code of JSP file. i have tried with 2-3 examples but i could not do it. Certainly some wizard will help me doing this.
    Thanx in advance.
    husami

    its fine. i have understood your code. i have even tested with param attribute.
    Earlier i was using JWS2.0 now i have shifted to tomcat. it gives me problem to run jsp file. what could be the reason? servlets are running fine.
    is there any path or classpath setting probs
    or do i have to execute some other files of tomcat
    or do i have to use jspc with some options?.......
    please help
    husami

  • Developer Suite

    iii
    Preface.............................. xvii
    Intended Audience... xvii
    Documentation Accessibility .................................................................................................................. xvii
    Organization ............ xviii
    Related Documents . xviii
    Product Accessibility xix
    Related Documents ... xix
    Conventions ............... xx
    Part I Product Release Notes
    1 What¡¯s New in the Oracle Developer Suite 10g Release Notes?
    1.1 Chapter 4 "Known Issues" ......................................................................................................... 1-1
    1.1.1 New Topics ........................................................................................................................... 1-1
    1.2 Chapter 7 "Oracle Discoverer Administrator" ........................................................................ 1-1
    1.2.1 New Topics ........................................................................................................................... 1-1
    1.3 Chapter 9 "Oracle Forms Developer" ....................................................................................... 1-2
    1.3.1 New Topics ........................................................................................................................... 1-2
    1.3.2 Updated Topics .................................................................................................................... 1-2
    1.4 Chapter 10 "Oracle Reports"...................................................................................................... 1-2
    1.4.1 New Topics ........................................................................................................................... 1-2
    1.4.2 Updated Topics .................................................................................................................... 1-2
    2 Product Naming
    2.1 Windows Components............................................................................................................... 2-1
    2.2 Linux, Solaris, and HP-UX Components................................................................................. 2-1
    3 Certification Information
    3.1 Certification Information ........................................................................................................... 3-1
    iv
    4 Known Issues
    4.1 Preinstallation Issues .................................................................................................................. 4-1
    4.1.1 Assistive Technologies (Windows only) .......................................................................... 4-1
    4.1.2 Oracle Business Intelligence Beans ................................................................................... 4-2
    4.1.3 Oracle9i Warehouse Builder .............................................................................................. 4-2
    4.2 Installation Issues........................................................................................................................ 4-2
    4.3 Postinstallation Issues ................................................................................................................ 4-3
    4.3.1 Java Versions ........................................................................................................................ 4-3
    4.4 Deinstallation Issues................................................................................................................... 4-3
    4.5 Platform-specific Issues.............................................................................................................. 4-3
    4.5.1 Linux Issues .......................................................................................................................... 4-3
    4.5.1.1 Revised Linux Operating Environment Software Requirements.......................... 4-3
    4.5.1.2 Setting the PATH environment variable in Linux................................................... 4-3
    4.6 Configuration Issues................................................................................................................... 4-3
    4.7 Administration Issues ................................................................................................................ 4-3
    4.8 Documentation Errata ................................................................................................................ 4-4
    4.8.1 Oracle Developer Suite 10g Installation Guide ............................................................... 4-4
    4.8.2 Oracle Developer Suite 10g Quick Installation Guide.................................................... 4-4
    4.8.3 Linux Operating Environment Software Requirements ................................................ 4-4
    4.8.3.1 Red Hat Linux 2.1 Requirements ............................................................................... 4-5
    4.8.3.2 Red Hat Linux 3.0 Requirements ............................................................................... 4-6
    4.8.3.3 UnitedLinux 1.0 Requirements................................................................................... 4-8
    Part II Component Release Notes
    5 Oracle9i JDeveloper
    5.1 General Issues and Workarounds ............................................................................................ 5-1
    5.1.1 Introd 5-1
    5.1.1.1 Support for Oracle9i Release 2 (9.2) ........................................................................... 5-2
    5.1.2 Deploying to OC4J............................................................................................................... 5-2
    5.1.2.1 OC4J Version Shipped with Oracle JDeveloper 9.0.4.............................................. 5-2
    5.1.2.2 OC4J Memory Requirements...................................................................................... 5-2
    5.1.3 Deploying to Other Application Servers.......................................................................... 5-3
    5.1.3.1 Problems Running UIX Web Applications (including the BC4J JSP Admin Page)
    Deployed to Non-Oracle Application Servers (2577293) ........................................ 5-3
    5.1.3.2 Deploying Web Applications to Apache Tomcat 4.1 .............................................. 5-4
    5.1.3.3 Problems in JSP Applications Deployed to Tomcat (2615358)............................... 5-4
    5.1.3.4 XSQL Page Processor Cannot Read Pages from Unexpanded Servlet 2.2 WAR File
    (1552039) ........................................................................................................................ 5-4
    5.1.3.5 Type Incompatibilities when Deploying to WebLogic ........................................... 5-4
    5.1.3.6 WebLogic6.1 Fails to Understand Windows-1252 Encoding in XML Files ......... 5-4
    5.1.3.7 CORBA Requires JDK 1.3 at Runtime (2685103)...................................................... 5-5
    v
    5.1.4 Miscellaneous Deployment Issues .................................................................................... 5-5
    5.1.4.1 ejb-ref in web.xml not Updated if the Bean Type is Changed from Remote to Local
    (2589997) ........................................................................................................................ 5-5
    5.1.5 BC4J Is 5-5
    5.1.5.1 Available Tables not Visible Under Java Type Map and SQL92 SQL Flavor
    (2693168) 5-5
    5.1.5.2 902 Projects with VO or Attribute Names Containing $ do not Migrate (2701773)....
    5-5
    5.1.5.3 JDeveloper 9.0.4 *.jpr File Format Not Backward Compatible with 9.0.3 (2682921) ..
    5-6
    5.1.5.4 Migrated Project: Export Interface is Removed but Still Implemented in IMPL
    Class (2676186) .............................................................................................................. 5-6
    5.1.5.5 Bean Name in <EJB-LOCAL-REF> not Updated when Underlying Entity is
    Renamed (2587916) ....................................................................................................... 5-6
    5.1.5.6 Setting Current Database Time Using Entity Facades (2525437) .......................... 5-6
    5.1.5.7 Replace qView with getRowSet in Migration Documentation (2723075) ............ 5-6
    5.1.5.8 Documentation Refers to BC4J "Wizards" ................................................................ 5-6
    5.1.5.9 Unable to Run a BC4J JSP in OC4J in VB Bind Mode (2594776) ............................ 5-6
    5.1.5.10 Problem Running Struts Actions in 9.0.3 Project After Upgrade (2756440) ........ 5-7
    5.1.5.11 Help Sometimes Not Available for Business Component Browser...................... 5-7
    5.1.5.12 jbo.debugoutput Property can Take Value of "file"................................................. 5-7
    5.1.6 EJB Issues .............................................................................................................................. 5-7
    5.1.6.1 Cannot Run EJB in Embedded OC4J Server if Workspace Has Two Projects
    (2096700, 2591173) ........................................................................................................ 5-7
    5.1.7 JClient Issues ........................................................................................................................ 5-7
    5.1.7.1 JTree Binding is not Editable (2061405)..................................................................... 5-8
    5.1.7.2 Cannot Run JClient Applications in EJB Mode Running in Webstart 1.2 (2699458) ..
    5-8
    5.1.7.3 Webstart not Launched in IE 5.5 Due to Mimetype Problems (2573655)............. 5-8
    5.1.7.4 SpinnerNumberModel for JSpinner Control does not Work for
    oracle.jbo.domain.Number (2738858) ........................................................................ 5-8
    5.1.8 Source Control Support Issues........................................................................................... 5-8
    5.1.8.1 Oracle SCM: JDeveloper Does Not Share Folder Mappings with the Oracle SCM
    RON 5-8
    5.1.8.2 Oracle SCM: Using JDeveloper and the Oracle SCM VHV.................................... 5-9
    5.1.8.3 Oracle SCM: Connecting to Oracle Software Configuration Manager 6i Release
    4.1.1 or Above ................................................................................................................ 5-9
    5.1.9 Modeling Issues: General ................................................................................................... 5-9
    5.1.9.1 Performing Source Control Operations On Model Element and Diagram Files
    (2211605) ........................................................................................................................ 5-9
    5.1.9.2 Exceptions on Startup if Install Directory Has a Space in Name (2709528)......... 5-9
    5.1.10 Modeling Issues: Modeling Java Classes, BC4J or EJB Components ........................... 5-9
    5.1.10.1 Deleting Modeled Java Classes (2706800)................................................................. 5-9
    5.1.11 Modeling Issues: Modeling Activities for E-Business Integration ............................... 5-9
    5.1.11.1 E-Business Integration Generator Generates Propagations Using Public Database
    Links (2063917) .............................................................................................................. 5-9
    5.1.11.2 Using HTTP Propagation on a 9.0.1 Database ...................................................... 5-10
    vi
    5.1.12 Web Services Issues .......................................................................................................... 5-10
    5.1.12.1 Renaming a Method on a Modeled Web Service Fails to Expose It (2702659) . 5-10
    5.1.12.2 SOAP Web Service Does Not Start New Session (2218102) ................................ 5-10
    5.1.12.3 Using JMS Web Services with OC4J ....................................................................... 5-10
    5.1.12.4 Creating JMS Web Services that Use Both Send and Receive Operations ........ 5-10
    5.1.12.5 Running the PL/SQL Web Service Generator with JDK 1.4............................... 5-11
    5.1.12.6 Runtime Error Calling a Web Service from a Generated Stub (2389203).......... 5-11
    5.1.12.7 Cannot Model Web Services Based on PL/SQL Packages (2466833) ................ 5-11
    5.1.12.8 Creating a Stub with Overloaded Methods to a .NET Web Service (2689939). 5-11
    5.1.12.9 Web Service Stub if Generated from JDeveloper Install Path has Space (3068701) ....
    5-11
    5.1.12.10 Generating Stubs for WSDL Files That Refer to Other WSDL Files (2627242). 5-12
    5.1.13 Using WebDAV Connections in JDeveloper ................................................................ 5-12
    5.1.14 Miscellaneous Issues ........................................................................................................ 5-12
    5.1.14.1 PL/SQL Compilation Errors Not Displayed (2688533) ....................................... 5-12
    5.1.14.2 Allowable Values for Columns Must be Given a Display Sequence (2717508) 5-12
    5.1.14.3 Toystore Demo Contains Obsolete bc4jstruts.jar File........................................... 5-12
    5.1.14.4 Right Mouse Menu "Go to Source" no Longer Working (3146584).................... 5-13
    5.1.14.5 Passivation/Activation of interMedia Domain Objects with Media Content to
    Upload does not Work in 3 Tier Environment (2887647) .................................... 5-13
    5.2 Platform-specific Issues and Workarounds ......................................................................... 5-13
    5.2.1 Windows Platform Issues and Workarounds .............................................................. 5-13
    5.2.1.1 Updated JDK Required for Windows Preview Oracle9i JDeveloper ................ 5-13
    5.2.2 Linux, Solaris, and HP-UX Platform Issues and Workarounds................................. 5-13
    5.2.2.1 General Linux, Solaris, and HP-UX Platform Issues and Workarounds........... 5-13
    5.2.2.2 Solaris-specific Issues and Workarounds .............................................................. 5-14
    5.2.2.3 Linux-specific Issues and Workarounds................................................................ 5-14
    5.2.2.4 HP-UX Issues and Workarounds ............................................................................ 5-14
    5.3 Configuration Issues and Workarounds .............................................................................. 5-15
    5.4 Administration Issues and Workarounds ............................................................................ 5-15
    5.5 Documentation Errata ............................................................................................................. 5-15
    5.5.1 Replace qView with getRowSet in Migration Documentation (2723075) ................ 5-15
    5.5.2 Documentation Refers to BC4J "Wizards"..................................................................... 5-15
    6 Oracle Business Intelligence Beans
    6.1 Introduction . 6-1
    6.2 General Issues and Workarounds ............................................................................................ 6-2
    6.2.1 Tutorials and samples ......................................................................................................... 6-2
    6.2.2 QueryBuilder and queries .................................................................................................. 6-2
    6.2.3 Presentations ........................................................................................................................ 6-3
    6.2.4 BI Beans Catalog .................................................................................................................. 6-3
    6.2.5 General deployment issues ................................................................................................ 6-5
    6.2.6 Configuration steps for deploying HTML-client applications ..................................... 6-5
    6.2.6.1 Deploying to OC4J........................................................................................................ 6-5
    6.2.6.2 Migrating Applications Deployed to OC4J .............................................................. 6-6
    6.2.6.3 Deploying to Tomcat.................................................................................................... 6-6
    6.2.6.4 Deploying to JBoss........................................................................................................ 6-7
    vii
    6.2.7 Deploying to Java Web Start .............................................................................................. 6-7
    6.2.8 Internationalization issues.................................................................................................. 6-8
    6.2.9 Accessibility limitations...................................................................................................... 6-8
    6.3 Platform-specific Issues and Workarounds ............................................................................ 6-9
    6.4 Configuration Issues and Workarounds ................................................................................. 6-9
    6.4.1 JDBC Drivers ........................................................................................................................ 6-9
    6.4.1.1 Upgrading the drivers automatically ........................................................................ 6-9
    6.4.1.2 Upgrading the drivers manually................................................................................ 6-9
    6.4.1.3 Restoring the original drivers .................................................................................. 6-10
    6.4.2 Changing from the thin to the thick drivers ................................................................. 6-10
    6.4.3 BI Beans configuration diagnostic utility ...................................................................... 6-10
    6.4.4 Connections ....................................................................................................................... 6-11
    6.5 Administration Issues and Workarounds ............................................................................ 6-11
    6.6 Documentation Errata ............................................................................................................. 6-11
    7 Oracle Discoverer Administrator
    7.1 General Issues and Workarounds ............................................................................................ 7-1
    7.1.1 "Cannot find a required file: dcmresus.msb." When Trying to Launch Oracle
    Discoverer 9.0.2 after Installing 9.0.4 ................................................................................ 7-1
    7.1.2 ORA-3113 Errors when Using Heterogeneous Data Services with Oracle Discoverer
    Administrator ....................................................................................................................... 7-2
    7.1.3 JOB_QUEUE_INTERVAL Settings and Oracle Applications Users ............................ 7-2
    7.1.4 Recommended Update for Batch Repository Created with Oracle Discoverer 9.0.2 7-2
    7.2 Platform-specific Issues and Workarounds ............................................................................ 7-3
    7.3 Configuration Issues and Workarounds ................................................................................. 7-3
    7.4 Administration Issues and Workarounds ............................................................................... 7-3
    7.5 Useful I 7-3
    7.5.1 Upgrading from Oracle Discoverer 3.1 ............................................................................ 7-3
    7.5.2 Manually Editing the End User Layer Tables ................................................................. 7-3
    7.5.3 Availability of HWOnline files .......................................................................................... 7-3
    7.5.4 Setting Oracle Discoverer Registry Variables for Use by Oracle Discoverer EUL
    Command Line for Java Commands ................................................................................ 7-4
    7.5.5 Additional Oracle Discoverer Registry Variables........................................................... 7-4
    7.5.6 Required Privileges For the Scheduled Workbook Results Schema ............................ 7-5
    7.5.6.1 How to grant the SELECT privilege on the synonym v$parameter to enable you to
    run scheduled workbooks ........................................................................................... 7-5
    7.5.7 Running the Oracle Discoverer EUL Command Line for Java (Linux, Solaris, and
    HP-UX only) ......................................................................................................................... 7-7
    7.5.8 Oracle Discoverer and Real Application Clusters (RAC)/Transparent Application
    Failover (TAF) ...................................................................................................................... 7-7
    7.5.9 Installing the Lineage workbook for use with Oracle Warehouse Builder................. 7-8
    7.5.10 Using the Discoverer workbook dump utility ................................................................ 7-9
    viii
    7.6 Documentation Errata ............................................................................................................. 7-12
    7.6.1 Item Class Wizard: Choose Attributes dialog description ......................................... 7-12
    7.6.2 Correction to /export (EUL Objects) Example............................................................. 7-13
    7.6.3 Missing ¡®-jar¡¯ in Example Syntax given for Running Oracle Discoverer EUL Command
    Line for Java commands .................................................................................................. 7-13
    7.6.4 About Scheduled Workbooks and Compatibility Between the Current Version of
    Oracle Discoverer and Previous Releases 7-13
    7.6.5 <ORACLE_HOME>\discoverer\util should read <ORACLE_HOME>\discoverer\sql
    7-13
    8 Oracle Discoverer Desktop
    8.1 General Issues and Workarounds ............................................................................................ 8-1
    8.1.1 "Cannot find a required file : dcmresus.msb." When Trying to Run Oracle Discoverer
    9.0.2 after Installing 9.0.4 .................................................................................................... 8-1
    8.2 Platform-specific Issues and Workarounds ............................................................................ 8-2
    8.3 Configuration Issues and Workarounds ................................................................................. 8-2
    8.4 Administration Issues and Workarounds ............................................................................... 8-2
    8.5 Useful I 8-2
    8.5.1 Manually Editing the End User Layer Tables ................................................................. 8-2
    8.5.2 Refresh Query For Users Only Able to Run Scheduled Workbooks ........................... 8-2
    8.5.3 Availability of HWOnline files .......................................................................................... 8-2
    8.5.4 Additional Oracle Discoverer Registry variables ........................................................... 8-3
    8.5.5 Oracle Discoverer and Real Application Clusters (RAC)/Transparent Application
    Failover (TAF) ...................................................................................................................... 8-3
    8.6 Documentation Errata ................................................................................................................ 8-4
    9 Oracle Forms Developer
    9.1 General Issues and Workarounds ............................................................................................ 9-1
    9.1.1 No Need To Recompile Forms When Upgrading To Oracle Forms 10g (9.0.4) ......... 9-1
    9.1.2 Obtaining Environment Handles and Service Contexts in V8 Mode .......................... 9-1
    9.1.3 Forms Cannot Handle Multibyte CLOB Data Correctly................................................ 9-2
    9.1.4 Embedded Fonts in Forms Developer .............................................................................. 9-2
    9.1.5 Iconic Push Buttons ............................................................................................................. 9-2
    9.1.5.1 Restriction For Data Block Wizard............................................................................. 9-2
    9.2 Platform-specific Issues and Workarounds ............................................................................ 9-3
    9.2.1 Windows Platform Issues and Workarounds ................................................................. 9-3
    9.2.1.1 Oracle Forms Accessibility Information.................................................................... 9-3
    9.2.1.1.1 Using a Screen Reader and Java Access Bridge with Oracle Forms .............. 9-3
    9.2.1.2 Java Related Dialogs And Windows Are Not Read By Jaws ................................. 9-4
    9.2.1.3 Workaround for Reading Accessibility PL/SQL Error Messages......................... 9-5
    9.2.1.4 Location of JAWS Scripts............................................................................................. 9-5
    9.2.1.5 Graphics Fails Against Database 9.0.1.4.0 (64bit) .................................................... 9-5
    9.2.1.6 List of Colors in the Default Color Palette ................................................................ 9-5
    9.2.1.7 Changing the Look-and-Feel for the Property Inspector and Navigator............. 9-5
    9.2.1.8 8.2.1.1 FRM-18113 Error When Clicking On Design Capture................................ 9-5
    ix
    9.2.2 UNIX Platform Issues and Workarounds ........................................................................ 9-5
    9.2.2.1 General UNIX Platform Issues and Workarounds .................................................. 9-6
    9.2.2.1.1 USER_EXIT in UNIX............................................................................................. 9-6
    9.2.2.2 Using TK90_UNKNOWN........................................................................................... 9-7
    9.2.3 HP-UX Issues and Workarounds ..................................................................................... 9-7
    9.3 Configuration Issues and Workarounds ................................................................................. 9-7
    9.3.1 Forms and Reports Integration.......................................................................................... 9-7
    9.3.1.1 (2228305) Cannot Invoke Reports Builder from Form Builder .............................. 9-7
    9.3.1.2 Restarting OPMN In-process Reports Server Raises Error .................................... 9-8
    9.3.1.3 Forms Migration Assistant: RUN_PRODUCT(Reports) rp2rro Reports Object Is
    Not Created in Object Library .................................................................................... 9-8
    9.4 Documentation Errata ................................................................................................................ 9-8
    9.4.1 Oracle Forms Developer (Builder) Online Help ............................................................. 9-8
    9.4.1.1 About Run Form........................................................................................................... 9-8
    10 Oracle Reports
    10.1 General Issues and Workarounds ......................................................................................... 10-1
    10.1.1 Creating an Express Server Query ................................................................................. 10-1
    10.1.2 Inserting a Graph in the Paper Design View for a Matrix-with-Group Report ...... 10-2
    10.1.3 Running a Report containing non-encoded URL streams in Internet Explorer ...... 10-2
    10.1.4 Running a Simple Matrix Report to the Web ............................................................... 10-2
    10.1.5 Opening / Running an encoded JSP report.................................................................. 10-2
    10.1.6 Dynamically Embedding a Character Set in a JSP file ................................................ 10-3
    10.1.7 Running a Multibyte report containing an embedded Oracle Object....................... 10-4
    10.1.8 Viewing Oracle Enterprise Manager screens in non European languages .............. 10-4
    10.1.9 Specifying the encoding of an XML PDS Report ......................................................... 10-4
    10.1.10 FTP and WebDaV Destinations Not Supported from Reports Builder .................... 10-4
    10.1.11 Oracle9i JDeveloper Integration ..................................................................................... 10-4
    10.1.11.1 Deadlock When Debugging JSP Reports in Oracle9i JDeveloper ...................... 10-5
    10.1.11.2 Graph Not Appearing in Oracle9i JDeveloper...................................................... 10-5
    10.1.11.3 Reports in-process server ......................................................................................... 10-5
    10.2 Platform-specific Issues and Workarounds ......................................................................... 10-5
    10.2.1 Windows Platform Issues and Workarounds .............................................................. 10-5
    10.2.1.1 Running a Report with an Embedded 6i Graphic on an OPMN-Managed Reports
    Server ........................................................................................................................... 10-5
    10.2.1.2 Starting a Reports Server Registered with Oracle Enterprise Manager as a
    Windows Service ....................................................................................................... 10-6
    10.2.1.3 Using osfind with JDK 1.4........................................................................................ 10-6
    10.2.1.4 Invoking the Getting Started Page From Reports Builder................................... 10-6
    10.2.1.5 Printing Reports Without Hardware-based Left Margins................................... 10-7
    10.2.2 Linux, Solaris, and HP-UX Platform Issues and Workarounds................................. 10-7
    10.2.2.1 General Linux, Solaris, and HP-UX Platform Issues and Workarounds .......... 10-8
    10.2.2.1.1 Running a Report to DelimitedData on OracleAS Portal............................. 10-8
    10.2.2.1.2 Providing the location to a character set-specific Tk2Motif.rgb file ........... 10-8
    10.2.2.1.3 Implementing removal of DISPLAY and printer dependencies ................. 10-8
    x
    10.2.2.2 Solaris Issues and Workarounds ............................................................................. 10-9
    10.2.2.2.1 Reports Builder stops responding on Solaris 2.9 ........................................... 10-9
    10.2.2.2.2 Invoking the Graph Wizard in a multibyte environment ............................ 10-9
    10.2.2.3 Linux Issues and Workarounds ............................................................................ 10-10
    10.2.2.3.1 Radio box selection using mouse in New Program Unit dialog box does not
    take effect (3209858) ......................................................................................... 10-10
    10.2.2.4 HP-UX Issues and Workarounds .......................................................................... 10-10
    10.2.2.4.1 Running Oracle Reports in a Japanese Environment on HP-UX .............. 10-10
    10.3 Configuration Issues and Workarounds ............................................................................ 10-10
    10.3.1 Changing the Administrator Login by Using Reports Queue Manager ................ 10-11
    10.3.2 Repairing Fonts Not Appearing Correctly in Web Source View............................. 10-11
    10.3.3 Optimizing the Deployment of Reports ...................................................................... 10-12
    10.3.4 Improving Image Resolution of Graphs Displayed in a PDF File or on a Printer 10-12
    10.3.5 Specifying the Values for Oracle Reports' Java Virtual Machine ............................ 10-13
    10.3.6 Resolving Reports-Portal Integration Error When Attempting OID Create Resource .....
    10-13
    10.3.7 Running to Web Layout on Reports Builder .............................................................. 10-14
    10.4 Administration Issues and Workarounds .......................................................................... 10-14
    10.4.1 Authenticating Enterprise Manager Access to Reports Server Information.......... 10-15
    10.4.2 Running Reports on OracleAS Portal as an Item Link.............................................. 10-15
    10.5 Documentation Errata ........................................................................................................... 10-16
    10.5.1 REPORTS_CLASSPATH variable in Linux, Solaris, and HP-UX............................ 10-16
    10.5.2 Oracle Reports Documentation Page on Oracle Technology Network .................. 10-16
    10.5.3 Dynamic Environment Switching in Oracle Reports ............................................... 10-17
    10.5.4 Revised Section 13.3.3.2 of Oracle Application Server Reports Services Publishing
    Reports to the Web ......................................................................................................... 10-17
    10.5.4.1 Deploying an Oracle Reports JSP to an OC4J_BI_FORMS Instance ................ 10-17
    10.5.4.1.1 To deploy to an existing OC4j_BI_FORMS instance: .................................. 10-17
    10.5.4.1.2 To deploy to a new OC4j_BI_FORMS instance:........................................... 10-18
    10.5.4.1.3 To configure the new OC4J instance: ............................................................ 10-18
    10.5.5 Possible Outdated Screenshots in Oracle Reports Server Reports Services Publishing
    Reports to the Web ......................................................................................................... 10-20
    11 Oracle Designer
    11.1 General Issues and Workarounds ......................................................................................... 11-1
    11.1.1 Installation ......................................................................................................................... 11-1
    11.1.1.1 Oracle Designer patchsets to 9.0.4........................................................................... 11-1
    11.1.1.2 Oracle Designer/SCM Patchset 9.0.4.3: immediate installation may be required......
    11-1
    11.1.1.3 Japanese in the multi-language environment ....................................................... 11-2
    11.1.1.4 Setting up the repository for NLS operation ......................................................... 11-2
    11.1.1.5 Enabling repository support for Oracle Designer Objects when the repository only
    supports core objects ................................................................................................. 11-3
    xi
    11.1.1.6 Migration from Oracle Designer Web Assistant (ODWA) to Repository Object
    Browser (ROB) ........................................................................................................... 11-3
    11.1.1.6.1 Installing ROB..................................................................................................... 11-3
    11.1.1.6.2 ODWA Data ........................................................................................................ 11-3
    11.1.1.6.3 Migration to ROB ............................................................................................... 11-4
    11.1.1.6.4 ODWA Preferences ............................................................................................ 11-4
    11.1.2 System Modeling and Design Tools .............................................................................. 11-5
    11.1.3 Database Design Transformer ........................................................................................ 11-8
    11.1.4 Form Generator................................................................................................................. 11-9
    11.1.5 Web PL/SQL Generator ................................................................................................ 11-11
    11.1.6 Report Generator, Design Capture and Application Logic Capture ...................... 11-12
    11.1.7 Server Generator ............................................................................................................. 11-13
    11.1.8 Repository Reports ......................................................................................................... 11-14
    11.1.9 Matrix Diagrammer........................................................................................................ 11-15
    11.1.10 Accessibility ..................................................................................................................... 11-15
    11.1.11 Other problems and restrictions................................................................................... 11-15
    11.2 Platform-specific Issues and Workarounds ....................................................................... 11-16
    11.3 Configuration Issues and Workarounds ............................................................................ 11-17
    11.4 Administration Issues and Workarounds .......................................................................... 11-17
    11.5 Documentation Errata ........................................................................................................... 11-17
    12 Oracle Software Configuration Manager
    12.1 General Issues and Workarounds ......................................................................................... 12-1
    12.1.1 Patchs 12-1
    12.1.2 Oracle Forms Developer and Oracle Reports Developer Users ................................ 12-2
    12.1.3 Certification against Oracle RDBMS.............................................................................. 12-2
    12.1.4 Upgrading from Oracle Designer Release 1.3.2 ........................................................... 12-2
    12.1.5 Multi-Language Environment ........................................................................................ 12-2
    12.1.6 Compatibility of Oracle SCM and Oracle Repository 6i Repositories ...................... 12-2
    12.1.7 Changes from the Previous Release (iDS 9.0.2 maintenance release 9.0.2.5) ........... 12-3
    12.1.8 Fixed Bugs.......................................................................................................................... 12-3
    12.1.9 API and Model Reference Guide.................................................................................... 12-4
    12.2 Known Problems and Restrictions ........................................................................................ 12-4
    12.2.1 Migra 12-4
    12.2.2 SCM Java Tools ................................................................................................................. 12-6
    12.2.3 Repository Administration Utility (RAU)..................................................................... 12-7
    12.2.4 Repository Object Navigator........................................................................................... 12-8
    12.2.5 Compare Utility .............................................................................................................. 12-10
    12.2.6 Merge 12-11
    12.2.7 Version History Viewer ................................................................................................. 12-11
    12.2.8 Version Event Viewer .................................................................................................... 12-12
    12.2.9 Importing and Exporting............................................................................................... 12-12
    12.2.10 Dependency Manager .................................................................................................... 12-14
    12.2.11 Command Line Tool....................................................................................................... 12-14
    12.2.12 Other Known Problems and Restrictions.................................................................... 12-15
    xii
    12.3 Known Restrictions to Keyboard Controls ........................................................................ 12-18
    12.3.1 General Keyboard Control Restrictions ...................................................................... 12-18
    12.3.2 Non-Standard Keyboard Controls ............................................................................... 12-18
    12.3.2.1 Dependency Manager............................................................................................. 12-18
    12.3.2.2 Repository Administration Utility ........................................................................ 12-19
    12.3.2.3 Repository Object Navigator ................................................................................. 12-19
    12.3.2.4 General Restrictions for Java Tools ....................................................................... 12-20
    12.3.3 Known Problems and Workarounds ........................................................................... 12-21
    12.3.3.1 Merge Window........................................................................................................ 12-21
    12.3.3.2 Repository Object Navigator ................................................................................. 12-21
    12.3.3.3 Other Known Problems and Restrictions ............................................................ 12-21
    12.3.4 Command Line Tool Accessibility ............................................................................... 12-22
    12.4 Platform-specific Issues and Workarounds ....................................................................... 12-22
    12.4.1 Windows Platform Issues and Workarounds ............................................................ 12-22
    12.4.2 Linux, Solaris, and HP-UX Platform Issues and Workarounds............................... 12-22
    12.4.2.1 General Linux, Solaris, and HP-UX Platform Issues and Workarounds......... 12-22
    12.4.2.2 Solaris Issues and Workarounds ........................................................................... 12-22
    12.4.2.3 Linux Issues and Workarounds ............................................................................ 12-22
    12.4.2.4 HP-UX Issues and Workarounds .......................................................................... 12-22
    12.5 Configuration Issues and Workarounds ............................................................................ 12-22
    12.6 Administration Issues and Workarounds .......................................................................... 12-22
    12.7 Documentation Errata ........................................................................................................... 12-22
    Part III Other Release Notes
    13 Oracle Application Server Containers for J2EE (OC4J)
    13.1 Configuration Issues and Workarounds .............................................................................. 13-1
    13.1.1 OPMN Does Not Properly Assign CORBA SSL Client Ports for Default ................ 13-2
    13.1.2 Sharing and Using Libraries ........................................................................................... 13-2
    13.1.3 Invalid or Unneeded Library Elements Degrade Performance ................................. 13-2
    13.1.4 Custom User Managers Deployed Within EJB JAR Files ........................................... 13-2
    13.1.5 Considerations for Startup and Shutdown................................................................... 13-3
    13.1.6 Supported JDK Versions.................................................................................................. 13-3
    13.1.7 Migrating Source Code from JDK 1.4 to JDK 1.3 ......................................................... 13-3
    13.1.8 Migrating Source Code from JDK 1.3 to JDK 1.4 ......................................................... 13-3
    13.1.9 OC4J Demo Downloads................................................................................................... 13-4
    13.2 Release Notes for JSP, Tag Libraries, and Related Demos................................................. 13-4
    13.2.1 Cannot Invoke Classes That Are Not in Packages....................................................... 13-4
    13.2.2 Set the SAX Driver When Starting OC4J ....................................................................... 13-5
    13.2.3 JSP ojspc Issues.................................................................................................................. 13-5
    13.2.3.1 Debug Option Has No Effect on ojspc Output...................................................... 13-5
    13.2.3.2 The /WEB-INF/lib or /WEB-INF/classes Directories Should Not Contain .java
    Files ............................................................................................................................. 13-6
    xiii
    13.2.4 JESI Tag Release Notes..................................................................................................... 13-6
    13.2.4.1 JESI Tags No Longer Require Conditional Treatment ......................................... 13-6
    13.2.4.2 JESI personalize Tag Now Adds Single Quotes.................................................... 13-6
    13.2.4.3 A fragment Tag Can Be Inside an Included Page................................................. 13-6
    13.2.4.4 Multiple control or template Tags Can Be Used................................................... 13-6
    13.2.4.5 No Response Output Outside the Tags of a template Tag .................................. 13-7
    13.2.4.6 Do Not Use Explicit ESI Markup With JESI Tags ................................................. 13-7
    13.2.5 Tag Library Descriptors Must Be Under WEB-INF..................................................... 13-7
    13.2.6 Adding Tag Library JAR Files to /WEB-INF/lib While OC4J Is Running.............. 13-7
    13.2.7 Search Local Classes First ................................................................................................ 13-7
    13.2.8 java.lang.ClassFormatError: (Truncated Class File) .................................................... 13-8
    13.3 Release Notes for Servlets....................................................................................................... 13-8
    13.3.1 Cannot Invoke Classes Not in Packages ....................................................................... 13-8
    13.3.2 Servlet Invocation by Class Name Is Available During Development..................... 13-8
    13.3.3 Do Not Use Certain <orion-web-app> Attributes ....................................................... 13-9
    13.4 Release Notes for EJB .............................................................................................................. 13-9
    13.4.1 Client Requests Must Include a Port Number.............................................................. 13-9
    13.4.2 MDB Transaction Timeout .............................................................................................. 13-9
    13.4.3 Create and Release JMS Connections for JMS in the MDB onMessage() Method 13-10
    13.4.4 Considerations When Modifying Your orion-ejb-jar.xml File ................................. 13-10
    13.4.5 Static Block in an EJB...................................................................................................... 13-10
    13.4.6 OC4J Instances Terminating Due To ping Timeout .................................................. 13-10
    13.4.7 Miscellaneous EJB Release Notes ................................................................................. 13-11
    13.5 Release Notes for OC4J Services .......................................................................................... 13-12
    13.5.1 Release Notes for Java Object Cache (JOC)................................................................. 13-12
    13.5.1.1 Use javacache.xml for JOC Configuration ........................................................... 13-12
    13.6 Release Notes for DataDirect Connect for JDBC............................................................... 13-12
    13.6.1 Considerations When Using DataDirect Connect for JDBC..................................... 13-12
    13.6.2 Installing DataDirect Connect for JDBC...................................................................... 13-13
    13.7 Documentation Errata ........................................................................................................... 13-15
    13.7.1 Servlet Developer's Guide Errata ................................................................................. 13-15
    13.7.1.1 The OC4J 9.0.4 JSP Container Supports the persistence-path Flag .................. 13-15
    13.7.2 Support for JavaServer Pages Developer¡¯s Guide Errata ......................................... 13-15
    13.7.2.1 mod_oc4j Does Not Restart OC4J Processes........................................................ 13-16
    13.7.3 OC4J User¡¯s Guide Errata .............................................................................................. 13-16
    13.7.3.1 End to End Test Results for Metrics Load Balancing ......................................... 13-16
    Index

    I am not quite sure what either of you are after, but if you hit the "Documentation" link on OTN you will find the documentation, such as the above list, for almost all of Oracle products. Most are available online in HTML format or PDF and some have a part number so that they can be ordered.
    The 10g Developer Suite Documentation is here: http://otn.oracle.com/documentation/dev10g.html
    Regards
    Sue

  • Error Message: JBO-26061:Error while opening JDBC connection

    JDeveloper 9i was connecting to 9i database (localhost) before and now it is not connecting giving IO Exception.
    Getting JBO-26061:Error while opening JDBC connection, when run from OC4J.
    Should we give any path to jdbc classes12.zip? Does it have anything to do with changing host name; that is the only thing I have done before getting this error.
    Please help!!

    Please check the connection details and make sure the password is deployed. You can verify the connection
    details by looking at Connections | DataBase node in the Navigator pane.
    1. Also, test your BC4J middlet tier using BC4J Tester. To do that select your Application Module in the BC4J project,
    right click | Test..
    2. Check your BC4J Configuration and make sure it has the right connection information. To do that select your Application Module in the BC4J project,
    right click | Configurations....
    Hi
    I'm learning Jdeveloper not long time, i'm still new in Jdeveloper. I have learn to build BC2J JSP Development from oracle9i jdeveloper viewlet demonstration. when I compile, its have an error "warning: ISO-8859-1character set may not match project compiler setting". When I run, its show from browser and have an error :
    "Error Message: JBO-30003: The application pool (mypackage.MypackageModule.MypackageModuleLocal) failed to checkout an application module due to the following exception:
    Error Message: JBO-26061: Error while opening JDBC connection."
    So what can I do, I'm really need your help.
    Thanks in advance

  • With visual age 302

    Hi,
    I am using weblogic5.1 Integration Kit for VisualAge 302. After I
    followed the instruction and try to start weblogic in VisualAge,
    everything looks fine. But if I try to invoke http://localhost:7001/
    from browser, I got the following error:
    Fri Aug 25 15:30:04 EDT 2000:<I> <ListenThread> Listening on port: 7001
    Fri Aug 25 15:30:04 EDT 2000:<I> <SSLListenThread> Listening on port:
    7002
    Fri Aug 25 15:30:05 EDT 2000:<I> <WebLogicServer> WebLogic Server
    started
    Fri Aug 25 15:30:25 EDT 2000:<I> <NT Performance Pack> Allocating: '2'
    NT reader threads
    Fri Aug 25 15:30:25 EDT 2000:<E> <Kernel> ExecuteRequest failed.
    java.lang.RuntimeException: Socket:
    'weblogic.socket.MuxableSocketHTTP@2111 - idle timeout: '60', socket
    timeout: '5000'' is invalid.
    java.lang.Throwable(java.lang.String)
    java.lang.Exception(java.lang.String)
    java.lang.RuntimeException(java.lang.String)
    void
    weblogic.socket.NTSocketMuxer.register(weblogic.socket.MuxableSocket)
    void weblogic.socket.JVMSocketManager.accept(java.net.Socket)
    void
    weblogic.t3.srvr.ListenThread$RJVMListenRequest.execute(weblogic.kernel.ExecuteThread)
    void weblogic.kernel.ExecuteThread.run()
    Any idea?
    Thanks
    [email protected]

    IBMs VAJ does not provide you with a JSP designer, but it does let you run JSPs under WebSPhere test environment.
    Go to the folder
    IBM/VisualAge For Java/ide/project_resources/IBM WebSphere Test Environment/hosts/default_hosts/default_app/webThis is the root directory for putting JSPs. If you make a directory called myjsps in here, and put myJsp.jsp in the directory then when you start the servlet engine of the WebShpere test environment you can put
    "http://localhost:8080/myjsps/myJsp.jsp"in the URL and your JSP will be compiled into a servlet in the "JSP Page Compile Generated Code" project. You can enter JSP Execution Monitor options (in the WTE ControlCenter), which will bring up a split pane with the JSP on one side, and the compiled Java on the other and will allow you to debug the JSP.
    You are a bit shafted if VAJ was unable to compile your JSP into a servlet - as you get no information on what exactly about the JSP is causing the problem. However, this is all integrated into the debugging environment so you can completely debug the servlet and any Java code it calls.
    If you don't know about the WTE then let me know, but I'm assuming that you do.

Maybe you are looking for

  • My purchased movies do not show up in my itunes

    I only see 2 of my 30 purchased movies in my iTunes store, how do I get them to appear. I also do not see my icloud anywhere to check. Thanks

  • Oracle 10G Express Edition on Linux

    Hi, I'm trying to install this edition on Linux Mandriva. However I get the following message which I believe is trying to install Orcale on the root disk. Is there a way to instruct the package to install on the /software disk that has 19GB free spa

  • How to control the screen in LSWM

    Hi , I am creating a LSMW for tcode ABAON . For this tcode there will be a POP UP screen populate once for company code to key in.But next time when we enter this tcode It won't  call this pop up for input. If I run the file which is having company c

  • OSX like photo viewer

    I saw moblins way of stacking photos on my Acer revo and now I'm jealous i want that on arch. Is there an app that does this in the repos? Thanks Brendan

  • What is the current version of SAP in Market ?

    Dear, What is the current version of SAP in Market ? Thanx & Regards, Mohammad Nabi, [email protected]