Help Business Component JSP Application

I have a problem.
I already have my project with my BC4J Components and my project created using the wizard Business Component JSP Aplication.
But I just created the JSP Pages for one ViewObject.
I don`t know how to add the JSP Pages from another ViewObject in the already created project.
If I try to add a Business Component JSP Aplication to the same project it says me that I have to overwrite the project. I try this but when I want to run the JSP corresponding to the new ViewObject I found the error, that it can`t find the View Object in the Application Module
Please I need urgent help because without this I can't work.

The first page of the Application Module wizard has two windows: Available Views and Data Model. The available views are all the View Objects belonging to your project; the data model shows those view objects you have assigned to the Application Module. [em]You can only generate JSPs for View Objects in the data model [em].
To use a new view object:
(1) highlight it in the available views window.
(2) highlight the anchor point in the data model: for stand-alone pages or master blocks this will be the application module; for detail blocks this will be the master view object.
(3) run the BC4J JSP wizard. you can avoid overwriting already generated JSPs by de-selecting the View Objects from the list. This is a right pain if you have a lot of View Objects in your module. (which is one good argument for having lots of little Application Modules)
hth, APC

Similar Messages

  • Connecting to a database from Business Components JSP Application

    Hallo All!
    Can anybody give me an advice about connecting to a database from Business Components JSP Application? In all examples I see that Oracle user name and password placed in configuration file.
    How can user provide his own name and password to start Oracle session and how then hi can close this session?
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Dmitri:
    Dear Laura,
    I mean first variant where the database would be the same:
    scott/tiger@database1
    foo/bar@database1
    Of course I understand that we must register every user in database by "CREATE USER XXX" and it is unacceptable for Internet. But it may be very convenient for an Intranet because we can build access restriction based on set of views without any changes in applications.
    Best wishes,
    Dmitri.<HR></BLOCKQUOTE>
    null

  • Help needed in JSP application

    Hi... I am implementing one web application. The main file is index.html whch contain frame where following options are there.
    1. Login 2. Line Count. 3. Leave Balance 4. Extra. 5. Log out. but wht I want is, Once User logged in the options from 2to 5 must be visible..But first time only login option should be available..
    Hope you understand...and please tell me how can i do it
    Wether I have to create 2 page..one for login and another for rest of the options or some other way to do so??
    Thanks inadvance
    Regards
    Chintan

    There is a general feeling that scriptlets in JSP pages are a bad thing.
    They can make the page difficult to follow and understand.
    The syntax used above was from the JSTL - JSP Standard Template Library : http://java.sun.com/products/jsp/jstl/
    The JSTL tags provide a lot of functionality that previously was done in scriptlets.
    eg Looping, conditional branching, formatting, XML handling.
    Benefits: You don't have to constantly switch between java and html with <% %> tags. The code ends up looking much nicer.
    Also it is aimed at page authors, who don't necessarily understand java, but will understand using tags like this.
    Myself, I like it because of the first reason - it just makes the page so much easier to read when everything is in tags, as opposed to constantly switching from java to html and back - particularly with braces.
    You have to agree:
    <c:if test="${params.choice == 'yes'}">
      You said YES!
    </c:if>looks much better than
    <% if (request.getParameter("choice").equals("yes")){ %>
      You said YES!
    <% } %>Cheers,
    evnafets

  • Need help creating component with 'application.createComponent'

    I am trying to create a button component by doing the following
    application.createcomponent("javax.faces.command") ;
    However it does not seem to work. I can create pretty much any other component by this method but for some reason I am unable to do this with the 'javax.faces.command' component family. Shouldn't this work?

    I think that the component type of the commandButton is "javax.faces.HtmlCommandButton"

  • Oracle Objects / Domain / Business Components JSP App

    Hi,
    I use JDev 3.1 with Oracle 8.1.6
    I would like to customize a Business Components JSP Application to be able to edit or add new row of a table containing one or more columns of type Object; like this :
    create or replace type O_VALUE as OBJECT
    TYPE_VALUE NUMBER,
    STRING_VALUE VARCHAR2(30),
    FLOAT_VALUE NUMBER(10,2),
    BOOL_VALUE NUMBER(1),
    INTEGER_VALUE NUMBER(10)
    create table T_VALUE (
    ID_VALUE VARCHAR2(20),
    MIN_VALUE O_VALUE,
    MAX_VALUE O_VALUE
    I have created a domain for the type O_VALUE to incorporate in the entity created for T_VALEU by the wizard.
    Is there a Wizard for editing an attribute of type Object of an entity ? If not how programmaticaly do that ?
    Thanks a lot...

    You can use the DataTags to display/edit objects types. In our next release we will update the DataWebBeans to support this.

  • Create both onscreen and database storage JSP application

    Hi,
    My JSP application is a JSP form with name, address, phone number, etc. and a submit button. The output currently shows onscreen with no database connection. Can someone please tell me how I store this in the Oracle database and would it be possible to do both - show the output on screen and also store it in the database.
    TIA,
    Sassan
    Code:
    Create jsp form:
    <html>
    <head>
    <title>Create Form</title>
    </head>
    <body>
    <form action="/Create_Form_html/RetrieveFormData.jsp" method="post">
    <table align="center" cellspacing="2" cellpadding="2" border="1">
    <tr>
    <td colspan="3">
    <b>Company Name:</b>
    <%
    String company = request.getParameter("company");
    if ( company != null ) {
    %>
    <input type="text"
    name="company name"
    value="<%=company %>"
    size="40" maxlength="40">
    <%
    else {
    %>
    <input type="text"
    name="company name"
    size="40"
    maxlength="40">
    <%
    %>
    </td>
    <tr>
    <td colspan="3">
    <b>Street:</b>
    <input type="text"
    name="street"
    size="43"
    maxlength="43">
    </td>
    </tr>
    <tr>
    <td>
    <b>City:</b>
    <input type="text"
    name="city"
    size="20"
    maxlength="20">
    </td>
    <td>
    <b>State:</b>
    <input type="text"
    name="state"
    size="2"
    maxlength="2">
    </td>
    <td>
    <b>Zip:</b>
    <input type="text"
    name="zip"
    size="5"
    maxlength="5">
    </td>
    </tr>
    <tr>
    <td>
    <input type="Submit" value="Submit">
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>

    You can use JDeveloper's Data Web Beans - these are data-aware controls for JSPs.
    Start by creating a JSP from scratch using the Business Components JSP application wizard. Instructions are in the online documentation, under:
    User Guides
    ->Developing Applications
    ->Developing Web Applications
    ->Creating a JSP application
    Or you can learn how to do this by stepping through the Business Components tutorial. The tutorial is also in the online documentation, under Tutorials and Sample Applications.
    Once you're more familiar with data-aware JSPs, you can customize a data-aware JSP or create your own from scratch. Instructions for customizing JSPs are also in the online documentation, following the instructions for creating a JSP.
    Regards
    Blaise

  • JDeveloper Business components JSP problem!!

    Hi all,
    First of all sorry for my English language (very poor).
    My question is when I generate Business components JSP Application by JDeveloper 9i
    is running on JDeveloper(oc4j) without any problems but when I using resin server or tomcat I have this exception
    Error Message: �ApplicationModule� is an unknown tag in tag library �/webapp/DataTags.tld�.
    com.caucho.jsp.JspParseException: �ApplicationModule� is an unknown tag in tag library �/webapp/DataTags.tld�.
    at com.caucho.jsp.ParseTagManager.getTag(ParseTagManager.java:144)
    at com.caucho.jsp.java.JavaJspGenerator.getTag(JavaJspGenerator.java:1508)
    at com.caucho.jsp.java.JavaJspBuilder.startElement(JavaJspBuilder.java:199)
    at com.caucho.jsp.JspParser.parseOpenTag(JspParser.java:1204)
    at com.caucho.jsp.JspParser.parseNode(JspParser.java:469)
    at com.caucho.jsp.JspParser.parseJsp(JspParser.java:320)
    at com.caucho.jsp.JspParser.parse(JspParser.java:251)
    at com.caucho.jsp.JspCompilerInstance.compile(JspCompilerInstance.java:335)
    at com.caucho.jsp.JspManager.compile(JspManager.java:182)
    at com.caucho.jsp.JspManager.createPage(JspManager.java:130)
    at com.caucho.jsp.PageManager.getPage(PageManager.java:244)
    at com.caucho.jsp.PageManager.getPage(PageManager.java:181)
    at com.caucho.jsp.QServlet.getSubPage(QServlet.java:289)
    at com.caucho.jsp.QServlet.getPage(QServlet.java:216)
    at com.caucho.server.dispatch.PageFilterChain.doFilter(PageFilterChain.java:144)
    at com.caucho.server.cache.CacheFilterChain.doFilter(CacheFilterChain.java:173)
    at com.caucho.server.webapp.WebAppFilterChain.doFilter(WebAppFilterChain.java:149)
    at com.caucho.server.dispatch.ServletInvocation.service(ServletInvocation.java:221)
    at com.caucho.server.http.HttpRequest.handleRequest(HttpRequest.java:256)
    at com.caucho.server.port.WorkerThread.run(WorkerThread.java:126)
    at java.lang.Thread.run(Thread.java:536)
    any ideas please!!

    :(

  • More than one business component (views) in the same JSP page

    Hi, I am trying to have more than one business component (views) in the same JSP page as Input Form.
    For example:
    There are two BC4J:
    Person:
    Code.
    Name.
    Address:
         Person_code
         Street.
         City.
    There is a master detail relationship between them and there is a link between both views in the application module.
    I want to create a JSP page with an Input form for both views. When the user decides to create a Person, I need to insert in both tables.
    Insert code and name into Person table.
    Insert Person_code, Street and City into Address table.
    It is possible to do in Forms but I am not sure if I can be able to do this in JDeveloper 10G.
    Thanks

    Sorry I lost the tabs
    Person has two attributes Code and Name.
    Address has three attributes Person_coden Street, City.

  • Scenario is HTTP to db. In HTTP client, when Sender is Business Component, Pi is getting data successfully but when Business system is used as sender Pi is not getting any message in sxi monitor. Please help

    Scenario is HTTP to db. In HTTP client, when Sender is Business Component, Pi is getting data successfully but when Business system is used as sender Pi is not getting any message in sxi monitor. Please help

    Hi Ankita,
    Try to trace at ICM level, Go to smicm transaction
    Set level to 3.
    Later send your request. Finally trace the request in:
    When you have seen the log, check if any exception is raised with your request or the request and share it here.
    Regards.

  • Error while creating BI JSP application

    Hello ,
    I am trying to create a simple BI JSP application , as per the steps in the Tutorial . I have created a CrossTab report successfully . Also I created the JSP page , embedded the BIThinSession and Presentation tags
    successfully .
    While trying to launch the JSP , I am getting the following error :
    Line : 14
    Char : 1
    Error : Object Expected
    Code : 0
    URL : .....
    The Contents of the JSP file are as under
    <%@ taglib uri="http://xmlns.oracle.com/bibeans/jsp" prefix="orabi"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <!-- Start synchronization of the BI tags -->
    <% synchronized(session){ %>
    <orabi:BIThinSession configuration="/Project2OLAPConfig1.xml" id="simpleApp">
    <orabi:Presentation location="CSTAB1" id="simpleGraph"/>
    </orabi:BIThinSession>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>Hello World</title>
    </head>
    <orabi:BIBody>
    <form name="BIForm" method="POST">
    <!-- Insert your Business Intelligence tags here -->
    <orabi:Render targetId="simpleGraph" parentForm="BIForm"/>
    <!-- The InsertHiddenFields tag adds state fields to the parent form tag -->
    <orabi:InsertHiddenFields parentForm="BIForm" biThinSessionId="simpleApp"/>
    </form>
    </orabi:BIBody>
    </html>
    <% } %>
    <!-- End synchronization of the BI tags -->
    The Bi_CheckConfig Utility gives the following output
    BI Beans Diagnostics(v1.0.2.0) 8/11/04
    ===============================================================================
    JDEV_ORACLE_HOME .......................... = c:\jdev
    JAVA_HOME ................................. = C:\j2sdk1.4.2_01
    JDeveloper version ........................ = 9.0.5.2.1618
    BI Beans release description .............. = BI Beans 10.1.2 Production Release
    BI Beans component number ................. = 10.1.2.5.0
    BI Beans internal version ................. = 3.2.0.37.4
    Connect to database ....................... = Successful
    JDBC driver version ....................... = 9.2.0.4.0
    JDBC JAR file location .................... = C:\JDEV\jdbc\lib
    Database version .......................... = 9.2.0.4.0
    OLAP Catalog version ...................... = 9.2.0.4.0
    OLAP AW Engine version .................... = 9.2.0.4.0
    OLAP API Server version ................... = 9.2.0.4.0
    BI Beans Catalog version .................. = N/A; not installed in bibdemo
    OLAP API JAR file version ................. = "10.1.0.3.0"
    OLAP API JAR file location ................ = c:\jdev\jdev\lib\ext
    Load OLAP API metadata .................... = Successful
    Number of metadata folders ................ = 2
    Number of metadata measures ............... = 12
    Number of metadata dimensions ............. = 8
    Metadata output location .................. = C:\JDEV\bibeans\bi_checkconfig\bi_metadata.txt
    Could anybody please help ?

    It would appear you are using the BI Beta release software. This software is only certified with 9205 of the database, the bi_checkonfig output you provided indicates you are using 9204.
    Please patch your database and instance to 9205 patchset. These can be downloaded from Metalink:
    3501955      Oracle Database Family: Patchset
    ORACLE 9I DATABASE SERVER RELEASE 2 - PATCH SET 4 VERSION 9.2.0.5.0
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • How to Create Listbox in a JSP Application

    Hi.
    I'm new to JDeveloper. Can someone show me how to create a Listbox (that gets it's values from a database table) in a *.jsp form? This listbox is linked to a database table field. I'm not using BC4J nor EJB. I've created a JSP application with ADF using a Model1 (or MVC pattern) architecture -- which I based on the JDeveloper10i tutorial (http://otn.oracle.com/obe/obe9051jdev/ADFmodel1/ADFmodel1.htm). I've tried using render on the field in the view object entity, refresh the Data Control Palette and then drag the table view entity to a *.jsp page as input form. But I can't see the field in the form being displayed as a list box.
    Please help.
    thanks,
    christina

    Hi Shay.
    Thanks for the quick reply. Sorry for the misuderstanding but I have no clue on terminology used in JDeveloper. The "view object" entity I was referring to is the "<TableName>View" view object (e.g. EmpView) under the Model->Application Sources->Mypackage folder where the "<TableName>" entity object file also resides. I think I'm using the Business Component bec. I have this step in the tutorial that I based my application on.
    I have trouble following the tutorial link you gave me (for the ADF Business Component Popup list) bec. when I select the table field in the "Data Control Palette" Panel, the only values I see in the "Drag and Drop As" poplist are "Value","Label","RenderValue" and "Input Render". I can't see the type "Single Select List". Do you why is that?
    thanks,
    christina

  • Next record Error in Tomcat deployment of business component

    I built a simple business component project for Dept in Scott table. I created a JSP client, mainly following the tutorial in Jdeveloper. Then I ran main.jsp in JDeveloper. This ran fine. I selected the deptview. I was able to scroll through department using next record arrow.
    I deployed this application in Tomcat using the deployment profile as webapplication to web sever. When I run this, the main.jsp runs fine. I am also able to go to the deptview. When I try to scroll through the records using the next record arrow the top portion says page can not be found. Insert record works fine.
    When I select insert record it seems to go to http://localhost:8080/sssdept1/jspsdept1_html/DeptView_Insert.jsp.
    When I try to use the next record arrow it seems to go to http://localhost:8080/jspsdept1_html/DeptView_Top.jsp?DeptView_NAVIGATE=NEXT.
    I think that this path is missing the sssdept1 folder. I am not sure how to add this to the usebean. Can anybody help?

    Can you be more specific?
    Which JSP page?
    Should I work in Jdeveloper or in the created files?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by jdeveloper:
    Try setting the target URL in the NavigatorBar WebBean within the page. The problem here is that the URL information has been lost. Use the setTargetUrl(String sUrl) method in your JSP page.
    <HR></BLOCKQUOTE>
    null

  • No Business Component Substitutions

    I am trying to extend a VO. I am able to see the substitution of the base VO with the custom VO in the database using jdr_utils.printdocument. But when I run the application, I get the "Definition attribute_name of type attribute not found" exception. The Personalization tab in the "About this Page" says "No Business Component Substitutions" in the substitutions section. Why is this page saying that there are no substitutions found when I could see it in the database. I have followed the exact same steps mentioned in the OAF Guide to extend a VO. Any help is greatly appreciated.
    Edited by: Raj S on Aug 8, 2009 7:16 PM

    Yes, I did bounce the apache. Now I am struck with the following huge error stack, each time I get into the page.
    oracle.apps.fnd.framework.OAException: Could not load application module 'oracle.apps.ar.irec.accountDetails.server.AccountDetailsAM'. at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:279) at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1184) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:509) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:430) at oa_html._OA._jspService(_OA.java:84) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) 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:595) ## Detail 0 ## JBO-30003: The application pool (db2060.coresys.comYMCC50301oracle.apps.ar.irec.accountDetails.server.AccountDetailsAM) failed to checkout an application module due to the following exception: oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: java.lang.InstantiationException, msg=null at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1619) at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2366) at ......

  • JSP Application Deployment Error : BIB-16632

    I have successfully developed , Tested in the development environment and deployed a BI Beans JSP application . But when I try to access the same JSP through the Web Context root , I am getting the following error
    Error
    javax.servlet.jsp.JspException: BIB-18007 A MetadataManager exception has occurred.
    BIB-10100 Cannot connect to the database. (Reason: See error BIB-16632)
    BIB-16632 Cannot connect to the database because the JDBC driver version is incompatible with the database version of the OLAP option.
         at oracle.dss.addins.jspTags.PresentationTag.doStartTag(PresentationTag.java:194)
         at simpleJSP.jspService(_simpleJSP.java:68)
         [SRC:/simpleJSP.jsp:6]
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    The BI_CHECKCONFIG output is as under
    BI Beans Diagnostics(v1.0.2.0) 8/17/04
    =========================================================
    JDEV_ORACLE_HOME .......................... = c:\jdev904
    JAVA_HOME ................................. = C:\j2sdk1.4.2_01
    JDeveloper version ........................ = 9.0.4.0.1419
    BI Beans release description .............. = BI Beans 9.0.4 Production Release
    BI Beans component number ................. = 9.0.4.23.0
    BI Beans internal version ................. = 2.7.5.32
    Connect to database ....................... = Successful
    JDBC driver version ....................... = 9.2.0.4.0
    JDBC JAR file location .................... = C:\jdev904\jdev\lib\patches
    Database version .......................... = 9.2.0.4.0
    OLAP Catalog version ...................... = 9.2.0.4.0
    OLAP AW Engine version .................... = 9.2.0.4.0
    OLAP API Server version ................... = 9.2.0.4.0
    BI Beans Catalog version .................. = N/A; not installed in BIBDEMO
    OLAP API JAR file version ................. = 9.2
    OLAP API JAR file location ................ = c:\jdev904\jdev\lib\ext
    Load OLAP API metadata .................... = Successful
    Number of metadata folders ................ = 2
    Number of metadata measures ............... = 12
    Number of metadata dimensions ............. = 8
    Metadata output location .................. = C:\jdev904\bibeans\bi_checkconfig\bi_metadata.txt
    Can anybody please help ?

    Your middle tier has the incorrect JDBC libraries installed. The documentation on the BI Beans section of OTN explains how to deploy a BI Beans app and how to include the correct JDBC files with the deployment:
    Setting up a separate OC4J instance in Oracle9i Application Server on Windows for BI Beans Deployment
    Setting up a separate OC4J instance in Oracle9i Application Server on Unix for BI Beans Deployment
    Deploying Applications to BEA WebLogic Server
    For example in the Windows documentation, the following steps are required:
    Log into the machine where you created the oc4j_bibeans instance. You must log in as the user who installed Oracle Application Server.
    Create a new directory named jdbc under new_oc4j_instance. This is the name you specified in the -Djava.ext.dirs option in step 2.
    Copy the JDBC driver files (classes12.jar, classes12dms.jar, and nls_charset12.jar) to this new directory. The correct source for these files differs, depending one which type of JDBC driver you are using.
    If you are using the Oracle JDBC Thin (Pure Java) driver, then copy the files from the $ORACLE_HOME\bibeans\jdbc\lib_92 directory in the BI Beans installation. Do not use the files that are installed with JDeveloper.
    If you are using the Oracle JDBC Thick (OCI) driver, then copy the files from the Oracle9i client or server installation. When you use the thick driver, the version of the JDBC driver files must match the version of the database client. The files are located in the $ORACLE_HOME\jdbc\lib directory, where $ORACLE_HOME is the Oracle Home for the database.
    Return to Oracle Enterprise Manager and click Application Server Instance.
    Select the oc4j_bibeans instance from the list and click Start. You are now ready to deploy your Oracle BI Beans 10g (9.0.4) application.
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • How to solve the error while  Deploy a BC4J JSP Application using tomcat,

    hello,
    how to avoid the following error?
    i am using jdevloper for devloping jsp applications.
    after that i am calling the jsp page using tomcat4.0 ,i followed the steps according docs by jdev team,
    i am getting the following error how to solve this,
    can one help?
    =============================
    type Exception report
    message Internal Server Error
    description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
    exception
    org.apache.jasper.compiler.CompileException: /AccountView_Browse.jsp(4,0) Unable to load class oracle.jbo.html.jsp.datatags.ApplicationModuleTag
    at org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:139)
    at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.init(JspParseEventListener.java:829)
    at org.apache.jasper.compiler.JspParseEventListener.addGenerator(JspParseEventListener.java:153)
    at org.apache.jasper.compiler.JspParseEventListener.handleTagBegin(JspParseEventListener.java:1039)
    at org.apache.jasper.compiler.DelegatingListener.handleTagBegin(DelegatingListener.java:221)
    at org.apache.jasper.compiler.DelegatingListener.handleTagBegin(DelegatingListener.java:216)
    at org.apache.jasper.compiler.Parser$Tag.accept(Parser.java:852)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1145)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1103)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1099)
    at org.apache.jasper.compiler.ParserController.parse(ParserController.java:214)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:210)
    at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:548)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:176)
    at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:188)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:381)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:473)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:190)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2347)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:468)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
    at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1027)
    at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1125)
    at java.lang.Thread.run(Thread.java:536)
    ====================
    thanks
    pullareddy

    I had very similar problems with adding the correct JDeveloper .jar files to Tomcat's lib folder, but did eventually resolve my issues.
    The problem I am having now, however, is the following error message:
    Error Message: oracle.jbo.html.RequestParameters.addParameter(Ljava/lang/String;Ljava/lang/String;)V
    Yes, I have deployed the bc4jhtml.jar file from JDeveloper to Tomcat\common\lib!
    My web-app is a very simple BC4J JSP application. I have one BC4J component in its own project and JAR file, and one JSP referencing that BC4J component - I deploy the BC4J JAR along with the WAR file from the JSP project. Needless to say, the JSP works fine within JDeveloper..!
    I'm using JDev 9.0.3 and Tomcat 4.1.12. Does anyone have any suggestions?
    Thanks,
    S.

Maybe you are looking for

  • How many users have logged in the Enterprise portal

    Hello Expert, Please suggest.. Feature required to monitor as how many users have logged in the Enterprise portal 7.0(Portal is Implemented with MDM), so that utilization can be known. Regards, Vidhanshi

  • I have a IPad 4.3.5 and would like to upgrade to ios7 how do I do it?

    I do not have a software update button on my general setting. Is this normal?

  • Import EJB to Java Studio Creator 2?

    Hey all, I'm not quite sure if this is where I want to ask this question or not. I could not find another place to so I hope here will be fine. I've been working with EJB's and deploying them to JBoss for some time now, however I'm not to great on th

  • N2L urgent help on DS5.2 and NIS

    Ok, I have managed to migrate all my NIS data to sunone directory server and it works fine. I have now setup a private network to work on the N2L project. I have setup a copy of the directory service on one box, on the other I have set up as a nis ma

  • Email accounts/addresses

    When I compose an email on the iPhone, in the 'from' field it lists several email addresses I own. How to I manage these because some of the email addresses are not listed in my email accounts settings.