Problem running a JSP in NetBeans

Everytime I try to run a JSP in NetBeans I get an error. The error is:
C:\Documents and Settings\Administrator\My Documents\NetBeansProjects\WebApplication1\nbproject\build-impl.xml:564: The module has not been deployed.
How do I fix that? The JSP compiles fine but it doesn't run.

Well, try a forum/mailinglist/issuetracker devoted to Netbeans. I haven't used it for more than 5 minutes, so I can't help in detail.

Similar Messages

  • Problems Running out of IDE (Netbeans) LDAP SSL

    I am kind of new to Java and I have a problem with a code that is using a TrustStore. Basically if I run the code within Netbeans everything work but if I do the "Clean and Build" and execute the JAR file when I check my logger out when running out of the IDE I am getting the following exception.
    Mar 06, 2015 9:40:58 AM ad_pass_reset.AD_Pass_reset INFO: Bind error: javax.naming.CommunicationException: WIN-A321J1VGM4K:636 [Root exception is java.lang.ExceptionInInitializerError]
    Which is caused by this part
    public AD_Pass_reset() {   
                Logger logger = Logger.getLogger("MyLog"); 
                try {
                    Hashtable ldapEnv = new Hashtable();
                    ldapEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
                    ldapEnv.put(Context.PROVIDER_URL, "ldap://" + serverIP + ":636");
                    ldapEnv.put(Context.SECURITY_AUTHENTICATION, "simple");
                    ldapEnv.put(Context.SECURITY_PRINCIPAL, DAUser);
                    ldapEnv.put(Context.SECURITY_CREDENTIALS, DAPass);
                    ldapEnv.put(Context.SECURITY_PROTOCOL, "ssl");
                    ldapContext = new InitialDirContext(ldapEnv);
                catch (Exception e) {
                    logger.info("Bind error: " + e);
                    System.exit(-1);
    And from what I have found the Bind error could be caused because the code is not able to use the Certificate, here is how I call the truststore
         String keystore = "C:\\Program Files\\Java\\jre7\\lib\\security\\securitycacerts";
         System.setProperty("javax.net.ssl.trustStore",keystore);
         System.setProperty("javax.net.ssl.keyStorePassword", "12345!");
         System.setProperty("javax.net.debug", "all");
    I know that my LDAP is works with the SSL because I can connect using the LDP.exe and in fact if I run my application using netbeans everything works.
    Does anybody know how to get around this?
    Thank you

    I am kind of new to Java and I have a problem with a code that is using a TrustStore. Basically if I run the code within Netbeans everything work but if I do the "Clean and Build" and execute the JAR file when I check my logger out when running out of the IDE I am getting the following exception.
    Mar 06, 2015 9:40:58 AM ad_pass_reset.AD_Pass_reset INFO: Bind error: javax.naming.CommunicationException: WIN-A321J1VGM4K:636 [Root exception is java.lang.ExceptionInInitializerError]
    Which is caused by this part
    public AD_Pass_reset() {   
                Logger logger = Logger.getLogger("MyLog"); 
                try {
                    Hashtable ldapEnv = new Hashtable();
                    ldapEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
                    ldapEnv.put(Context.PROVIDER_URL, "ldap://" + serverIP + ":636");
                    ldapEnv.put(Context.SECURITY_AUTHENTICATION, "simple");
                    ldapEnv.put(Context.SECURITY_PRINCIPAL, DAUser);
                    ldapEnv.put(Context.SECURITY_CREDENTIALS, DAPass);
                    ldapEnv.put(Context.SECURITY_PROTOCOL, "ssl");
                    ldapContext = new InitialDirContext(ldapEnv);
                catch (Exception e) {
                    logger.info("Bind error: " + e);
                    System.exit(-1);
    And from what I have found the Bind error could be caused because the code is not able to use the Certificate, here is how I call the truststore
         String keystore = "C:\\Program Files\\Java\\jre7\\lib\\security\\securitycacerts";
         System.setProperty("javax.net.ssl.trustStore",keystore);
         System.setProperty("javax.net.ssl.keyStorePassword", "12345!");
         System.setProperty("javax.net.debug", "all");
    I know that my LDAP is works with the SSL because I can connect using the LDP.exe and in fact if I run my application using netbeans everything works.
    Does anybody know how to get around this?
    Thank you

  • Problem running pform_report.jsp in Report Builder 9i

    I downloaded the .ZIP file from the Examples page on the otn site. I follow the instructions,
    but when I try opening up any of the files, it creates an error window "can not display window" and the
    whole program zapps out. was anyone successful in running the sample in reports builder?
    do you have to use a PC for this?
    My main problem is:
    Im trying to learn how to create a parameter form on the web. not using the "user parameters"
    and the runtime form.
    ANY HELP ON HOW TO DO THIS WOULD BE GREATLY APPRECIATED!!

    hello,
    this example is not quite designed for beeing run in the builder since it calls itself passing parameters. however, you should be able to see the idea behind it by looking at the JSP source code.
    regarding your issue when opening the file, we have never experienced such behaviour but the example was developed on a windows platform. maybe the files get corrupted when getting unzipped. can you open the JSP file in e.g. vi ?
    regards,
    philipp

  • Problem Running a jsp page in JDeveloper 9i

    I have an application in JDeveloper 9i. i have compiled the application and when i right click one of the jsp's and say Run, it is not working and give the following message in the console: The system cannot execute the specified program.
    I don't know what to do now. Please help me out to get out of this situation. I am new to JDeveloper.
    - DeveloperBujji.

    Does your jar file include the libraries that you are "importing" into your code?
    (Maybe javax.print.*)

  • Problem in running a jsp page on tomcat 5.0

    hi....
    i made a java class abc.java and then compiled it to get a java class file named abc.class in a package named pkg.
    Then i copied this package in the classes folder of the WEB-INF folder in tomcat 5.0.
    After that i created a jsp page in which i imported this class file. Now when i run the jsp page on tomcat 5.0 i get an error saying this:
    javax.servlet.ServletException: pkg/abc (Unsupported major.minor version 49.0)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:244)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.UnsupportedClassVersionError: pkg/abc (Unsupported major.minor version 49.0)
         java.lang.ClassLoader.defineClass0(Native Method)
         java.lang.ClassLoader.defineClass(ClassLoader.java:502)
         java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
         org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLoader.java:1634)
         org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.java:860)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1307)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1189)
         org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1214)
         org.apache.jasper.compiler.Node$UseBean.accept(Node.java:1116)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
         org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2213)
         org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2219)
         org.apache.jasper.compiler.Node$Root.accept(Node.java:456)
         org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
         org.apache.jasper.compiler.Generator.generate(Generator.java:3272)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:244)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:495)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:476)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:464)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    Can anyone please tell me the solution to this problem?
    thanks

    This post:
    http://mail-archives.apache.org/mod_mbox/jakarta-tomcat-user/200408.mbox/%[email protected]ys.com%3E
    Leads me to believe that you're compiling and targeting a java version that your tomcat installation doesn't support. What version of the JDK are you using?
    Good Luck
    Lee

  • Problems while Running a JSP report

    Hello
    I am Running a JSP report and got NullPointerException at oracle.reports.jsp.ReportTag.doStartTag(..). I even tested the sample report provided in the Application server and even that gave the same exception as follows:
    Reports Error Page
    Thu Mar 02 13:56:49 IST 2006
    javax.servlet.jsp.JspException: REP-52266: The in-process Reports Server rep_ultra1_oracleas6 failed to start.java.lang.InterruptedException
    javax.servlet.jsp.JspException: REP-52266: The in-process Reports Server rep_ultra1_oracleas6 failed to start.java.lang.InterruptedException
         at oracle.reports.jsp.ReportTag.doStartTag(ReportTag.java:464)
         at examples.tools._test._jspService(_test.java:52)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)
         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.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    Kindly provide a solution for this problem. Its quite urgent to solve this issue.
    With regards

    Hi,
    I posted this message in jdeveloper forum yesterday, but there was no response. So I thought of posting it in this forum to check my luck.
    Thanks
    Siva...

  • Problem running JSP program on OAS 4.0.8.1 with JSP patch

    Hi all
    I've been running a JSP application on OAS 4.0.8.1 for a month now, but a week ago, when I updated a Java package on the server, the application will no longer run. The simple JSP pages with no bean-tags runs fine, but the ones with bean-tags doesn't work anymore.
    This is the error message:
    Request URI:/jsp/sag/login.jsp
    Exception:
    java.lang.VerifyError
    at java.lang.ClassLoader.resolveClass(Compiled Code)
    at oracle.jsp.app.JspClassLoader.loadClass(Compiled Code)
    at java.lang.ClassLoader.loadClass(Compiled Code)
    at oracle.jsp.app.JspAppLoader.instantiatePage(Compiled Code)
    at oracle.jsp.app.JspAppLoader.reloadPage(Compiled Code)
    at oracle.jsp.app.JspAppLoader.loadPage(Compiled Code)
    at oracle.jsp.app.JspAppLoader.getPage(Compiled Code)
    at oracle.jsp.app.JspApplication.dispatchRequest(Compiled Code)
    at oracle.jsp.JspServlet.doDispatch(Compiled Code)
    at oracle.jsp.JspServlet.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at oracle.OAS.servlet.servletrunner.exec(Compiled Code)
    I've read on java.sun.com that verifyerrors normally is due to bad package-files, but I've rebuilt the package at least 10-times now, so thats probably not it. What could it be?
    The application runs fine in JDeveloper 3.1
    Thanks on advance,
    Christian Holm

    Hi,
    I am trying to run JSPs on OAS 4.0.8.1.
    I have installed JSP patch, downloaded form olab.com
    I am not able to execute JSPs. I am getting 2 different problems.
    1. If I call the JSP directly from browser, Netscape will ask for save option, it won't execute.
    2. If I call the JSP from another page with submit button, I am getting the following error :
    The requested access method is not allowed for that object.
    Same error for any JSP.
    The same problem for all the samples available with JSP patch.
    Hi chrholm,
    I already tested for 1 month, so
    could you please help me to configure OAS 4.0.8.1 for JSPs.
    Could you please send me mail : [email protected]
    Any help appreciated.
    Thanks,
    Naidu
    null

  • Problem in running any jsp or servelt in eclipse

    Hi all,
    my J2ee app was working good. & today when i tried to run any jsp page or servlet the following error appears to me "the selection did not contain any resources that can run on a server" , i use Apache tomcat 6.0.18 & eclipse j2ee.
    can any one help me in solving this problem?

    That should have been a different error message. You said you got the same, which is impossible. Don't rephrase errors.
    If you get a "Requested resource not available" error message from the application server in your webbrowser, then this simply means that either the URL is wrong or that the resource is actually not there where you think it is. It's actually exactly the same as a HTTP 404 error, if you know what it is.
    Check the URL. Most common mistake by starters is that they didn't know that the URL is case sensitive. If your contextroot is for example called 'Playground', then you should call it by http://localhost:8080/Playground, not http://localhost:8080/playground.

  • Problem with Jdev11G while running the jsp files

    Hi Experts
    I have a porblem with my jdev 11g
    when i create a new application and create a new jsf page (ex PAGE1.jspx) and run it every thing is fine...
    When i create a second page (ex PAGE2.jspx) and run it then it is displaying the PAGE1.jspx only and
    then i need to manually type the page2 url in browser to access the page2.
    If create n number of pages and run any of the page it is navigating to the PAGE1.jspx only
    I was not having this problem when iam working with jdev 10g .
    Is there and setting i need to change to avoid this or is it the feature of 11g
    Thanks
    Gayaz

    Hi
    there is nothing selected in default property of project properties of veiw controller
    run/Debug/profile section..
    only one check box is checked .i.e (Attempt to run archive file before default).
    When i uncheck that one iam unable to run my application
    It is displaying a popup wiht a message "chose default target to run".
    One thing i noticed is when i run the pages from faces-config.xml by selecting the
    page icon and right click and run .. iam able to see the exact jsp in browser
    when i run the jsp directly iam getting the problem....
    Thanks
    Gayaz

  • Problem when using jsp:include.. / in JSP when run on OC4J903

    I have a very unusual JSP question when run in OC4J903(EM or standalone) version (previous OC4J version was ok). Here is the description
    1. run P1.jsp and a parameter(text1) will pass to P2.jsp
    2. In P2.jsp, include "includePage.jsp" before show the parameter.
    question:
    1. The P1.jsp parameter will be null if using "POST" method, but "GET" is work.
    anyone have a indea ? or is that a bug in OC4J903 version
    P1.jsp
    <html>
    <head>
    <title>Test</title>
    </head>
    <body>
    <form method=POST action='P2.jsp'>
    <input type=text name='text1' size=30>
    <input type=submit value='OK'>
    </form>
    </body>
    </html>
    P2.jsp
    <html>
    <head>
    <title>Test</title>
    </head>
    <jsp:include page="includePage.jsp" flush="true">
    <jsp:param name="importParam" value="P2 Export" />
    </jsp:include>
    <body>
    <%
    out.print("Here shows the param from P1: " + request.getParameter("text1")+"<br>");     
    %>
    </body>
    </html>
    includePage.jsp
    <%@ page import="java.io.*"%>
    <%
    out.print("Here runs the include page. The param from P2 is: " + request.getParameter("importParam")+"<br>");
    %>

    I have a very unusual JSP question when run in OC4J903(EM or standalone) version (previous OC4J version was ok). Here is the description
    1. run P1.jsp and a parameter(text1) will pass to P2.jsp
    2. In P2.jsp, include "includePage.jsp" before show the parameter.
    question:
    1. The P1.jsp parameter will be null if using "POST" method, but "GET" is work.
    anyone have a indea ? or is that a bug in OC4J903 version
    P1.jsp
    <html>
    <head>
    <title>Test</title>
    </head>
    <body>
    <form method=POST action='P2.jsp'>
    <input type=text name='text1' size=30>
    <input type=submit value='OK'>
    </form>
    </body>
    </html>
    P2.jsp
    <html>
    <head>
    <title>Test</title>
    </head>
    <jsp:include page="includePage.jsp" flush="true">
    <jsp:param name="importParam" value="P2 Export" />
    </jsp:include>
    <body>
    <%
    out.print("Here shows the param from P1: " + request.getParameter("text1")+"<br>");     
    %>
    </body>
    </html>
    includePage.jsp
    <%@ page import="java.io.*"%>
    <%
    out.print("Here runs the include page. The param from P2 is: " + request.getParameter("importParam")+"<br>");
    %>

  • Problem trying to run compile jsp containing JSTL tags

    Hi,
    I am facing a problem regarding compiling jsp containing JSTL tags.
    Can anybody help me out?

    Yes it is giving an error when i try to compile the jsp.
    And it's giving error on the include of the taglib in the jsp as
    C:\dev\ppdev\DOMA\jspcompile\WEB-INF\jstl\c-rt.tld" is an invalid archive file!
    Actually we are not using th default entry for taglib. Instead we have made an entry in the web.xml. Like this
    <taglib>
    <taglib-uri>/WEB-INF/c.tld</taglib-uri>
    <taglib-location>/WEB-INF/jstl/c.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/c-rt.tld</taglib-uri>
    <taglib-location>/WEB-INF/jstl/c-rt.tld</taglib-location>
    </taglib>
    And using this uri in the jsp page like this
    <%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>
    <%@ taglib uri="/WEB-INF/c-rt.tld" prefix="c_rt" %>
    And when we try to compie the jsp its giving the error.
    C:\dev\ppdev\DOMA\jspcompile\WEB-INF\jstl\c-rt.tld" is an invalid archive file!
    I would appreciate your help and update me if any more information is required.

  • Please help.  Got TopLink working, but now I can't run a JSP page

    I am using JDeveloper 9.0.3.
    I got TopLink working successfully. Meaning I can access the DB using my mapped TopLink classes from my java code in JDeveloper.
    However, now I can't even run the default .jsp page.
    I am getting the error:
    Error instantiating application at file:/C:/LBIT/LBIT-oc4j-app.xml: Error parsing data-sources config at file:/C:/LBIT/LBIT-data-sources.xml: Fatal error at line 0 offset 0 in file:/C:/LBIT/LBIT-data-sources.xml: The encoding "windows-1252" is not supported.
    If I go change the "LBIT-data-sources.xml" file to "ISO-8859-1," as soon as I run the .jsp page (from JDeveloper) the "LBIT-data-sources.xml" file gets overwritten with a new one that contains the "windows-1252" encoding line again.
    What can I do to fix this???
    I know someone else has run into this problem!!!
    Please help. Thanks so much.
    Andy

    You could change the encoding by doing the following.
    Stop Embedded OC4J Server (Run | Terminate | Embedded OC4J Server)
    Tools | Preferences
    Select Environment
    Change the Encoding to ISO-xxxxx
    Click OK
    Run your JSP now.
    Atleast this should fix encoding generated into data-sources.xml
    raghu
    JDev Team

  • "Invalid directive" error when running a JSP

    I am getting following error while trying to run a JSP:
    org.apache.jasper.compiler.ParseException: /jsp/hellobean.jsp(0,4) Invalid directive
    ... followed by trace below...
    at org.apache.jasper.compiler.Parser$Directive.accept(Parser.java:214)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1126)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1091)
    at org.apache.jasper.compiler.Parser.parse(Parser.java:1087)
    =====
    here is my jsp code:
    <%@ import="HelloBean" %>
    <BEAN NAME="hello" TYPE="HelloBean" INTROSPECT="yes" CREATE="yes" SCOPE="request">
    </BEAN>
    <HTML>
    <HEAD><TITLE>Hello</TITLE></HEAD>
    <BODY>
    <H1>
    Hello, <%= hello.getName() %>
    </H1>
    </BODY>
    </HTML>
    Here is my HelloBean code:
    public class HelloBean {
         private String name = "World";
         public void setName(String name) {
              this.name = name;
         public String getName() {
              return name;
    There is nothing fancy/complex I am trying to achieve - jyst trying to run an example from a book.
    Any clues?
    Help is greatly appreciated.

    Hello Amol,
    You previous suggestion solved the problem but now I am facing another one:
    =======
    Generated servlet error:
    C:\jakarta-tomcat-4.0-b7\work\localhost\examples\jsp\_0002fjsp_0002fhellobean_jsp.java:59: Can't make static reference to method java.lang.String getName() in class HelloBean.
    out.print( HelloBean.getName() );
    ^
    ===============
    Here is my JSP code:
    <%@page import="HelloBean" %>
    <BEAN NAME="HelloBean"
    TYPE="HelloBean"
    INTROSPECT="yes"
    CREATE="yes"
    SCOPE="request">
    </BEAN>
    <HTML>
    <HEAD><TITLE>Hello</TITLE></HEAD>
    <BODY>
    <H1>
    Hello, <%= HelloBean.getName() %>
    </H1>
    </BODY>
    </HTML>
    Since CREATE is set to "yes", I'd expect an instance of the HelloBean class to be cerated but it does not seem to be the case.
    Any clues?

  • OAF - "500 Internal Server Error" when run "test_fwktutorial.jsp"

    Dear All,
    I need your help,
    I am new user of JDeveloper , i have configured successfully JDeveloper accordingly Oracle Document but I am facing a problem when I run "test_fwktutorial.jsp" for testing purpose.
    oracle.apps.fnd.common.AppsException: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object.
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1509)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:362)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:211)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:171)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1294)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1149)
         at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1118)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1085)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1072)
         at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:595)
         at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:602)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:579)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:533)
         at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:1160)
         at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:227)
         at OAErrorPage.jspService(_OAErrorPage.java:66)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:847)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:813)
         at test_fwktutorial._jspService(_test__fwktutorial.java:104)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object.
         at oracle.apps.fnd.common.Pool.createObject(Pool.java:1286)
         at oracle.apps.fnd.common.Pool.borrowObject(Pool.java:1027)
         at oracle.apps.fnd.security.DBConnObjPool.borrowObject(DBConnObjPool.java:584)
         at oracle.apps.fnd.security.AppsConnectionManager.borrowConnection(AppsConnectionManager.java:330)
         at oracle.apps.fnd.common.Context.borrowConnection(Context.java:1719)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnectionFinal(AppsContext.java:2314)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnection(AppsContext.java:2251)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2108)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1918)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1762)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1775)
         at oracle.apps.fnd.common.Context.getJDBCConnection(Context.java:1453)
         at oracle.apps.fnd.cache.GenericCacheLoader.load(GenericCacheLoader.java:170)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1500)
         ... 49 more
    Caused by: oracle.apps.fnd.common.AppsException: oracle.apps.fnd.common.AppsException: java.sql.SQLException: Io exception: Invalid number format for port number
         at oracle.apps.fnd.security.AppsConnectionManager.makeGwyuidConn(AppsConnectionManager.java:937)
         at oracle.apps.fnd.security.AppsConnectionManager.getGwyuidConn(AppsConnectionManager.java:1016)
         at oracle.apps.fnd.security.AppsConnectionManager.makeGuestConnection(AppsConnectionManager.java:814)
         at oracle.apps.fnd.security.DBConnObj.<init>(DBConnObj.java:230)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at oracle.apps.fnd.common.Pool.createObject(Pool.java:1273)
         ... 62 more
    Caused by: oracle.apps.fnd.common.AppsException: java.sql.SQLException: Io exception: Invalid number format for port number
         at oracle.apps.fnd.security.ConnectionManager.dbConnect(ConnectionManager.java:1522)
         at oracle.apps.fnd.security.ConnectionManager.dbConnect(ConnectionManager.java:1425)
         at oracle.apps.fnd.security.AppsConnectionManager.makeGwyuidConn(AppsConnectionManager.java:919)
         ... 70 more
    Caused by: java.sql.SQLException: Io exception: Invalid number format for port number
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:287)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:328)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:430)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:151)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:608)
         at java.sql.DriverManager.getConnection(DriverManager.java:525)
         at java.sql.DriverManager.getConnection(DriverManager.java:140)
         at oracle.apps.fnd.security.ConnectionManager.dbConnect(ConnectionManager.java:1509)
         ... 72 more
    Edited by: Arshad Hashmi on Oct 24, 2012 6:43 AM

    My DBC file as below , is there any prob. ?
    # $Header: template.dbc 120.0 2005/05/07 16:45:30 appldev ship $
    # TEMPLATE.dbc
    # Template database configuration file.
    # Create one copy of this file for each database instance this
    # Applications Server will connect to. Each file should have the name
    # <database_instance_name>.dbc
    # and be located in this directory ($FND_TOP/secure).
    # Change each of the parameters below to values appropriate for
    # the database instance. Do not change the syntax.
    # This file can be gererated using the AdminAppServer tool.
    # This is a java utility that can be run from the command line.
    # Instructions to use this tool are documented in the Applications
    # Sysadmin Manual.
    # TWO_TASK
    # SQL*Net name of database.
    TWO_TASK=database
    # FNDNAM
    # Oracle User to be used for Oracle Applications connection.
    # The FNDNAM Oracle User must have Oracle Applications privilege level
    # 'Universal'.
    FNDNAM=APPS
    # GWYUID
    # Oracle User/Password of the public account to be used for initial
    # Oracle Applications connection.
    # The GWYUID Oracle User must have Oracle Applications privilege level
    # 'Public'.
    GWYUID=APPLSYSPUB/PUB
    # GUEST_USER_PWD
    # Applications User/Password of the Guest user.
    # The Guest Applications User is a public Applications user
    # with no responsibilities assigned. If no such user exists,
    # create one in the 'Define User' form. Do not use a user with
    # any active responsibilities. Note: This parameter is for
    # an applications user NOT an Oracle user. The Guest user
    # is seeded with 11i.
    GUEST_USER_PWD=GUEST/GUEST
    # THE FOLLOWING PARAMETERS ARE RELEVANT ONLY
    # IF JDBC IS BEING USED. IF THEY ARE NOT SUPPLIED, DEFAULTS
    # WILL BE USED.
    # APPS_JDBC_DRIVER_TYPE
    # The type of JDBC driver being used. If no value is supplied,
    # the thick (OCI) driver will be used. Give a value of THIN
    # or THICK depending on the type of JDBC driver to be used.
    # For a detailed discussion on the THIN vs the THICK driver,
    # refer to the JDBC documentation. For Release 11i , this
    # should be set to a value of THIN.
    APPS_JDBC_DRIVER_TYPE=THIN
    # DB_HOST
    # The host machine on which the database resides. This parameter
    # is required only if the THIN DRIVER is being used.
    DB_HOST=host_name
    # DB_PORT
    # The port of the host machine on which the database resides.
    # This is required only if the THIN driver is being used.
    DB_PORT=port_number
    # DB_NAME
    # Database instance name.
    # This is required only if the THIN driver is being used.
    # If no value is provided, the TWO_TASK is used.
    # DB_NAME=db_name

  • Problem in compiling JSP page in OC4J 10.1.3.0.0

    Dear all,
    I started the ocj4 container that came with Jdeveloper. After starting the ocj4 server, I try to test it with the Servlet and JSP example. The Servlet Example work fine but I encounter the following error when I run the JSP example.
    2006-01-12 11:08:39.379 NOTIFICATION J2EE JSP0008 Unable to dispatch JSP Page :Exception:oracle.jsp.provider.JspCompileException: <H3>Errors compiling:C:\Program Files\Oracle\j2ee\home\application-deployments\default\defaultWebApp\persist
    ence\_pages\_examples\_jsp\_jsp2\_el\_basic_2d_arithmetic_2e_jsp.java</H3><pre><
    /pre>
    I think this should be a setup problem, please kndly advise.

    After reading the theads in the forum, I am able to get the jsp running by using full path to specify the java executable.
    e.g. C:\Program Files\Java\jdk1.5.0_02\bin\java -jar oc4j.jar
    This should be a path problem. After I set the path variable correctly
    i.e. add C:\Program Files\Java\jdk1.5.0_<version>\bin to PATH environment variable. It work fine. I hope this help the newbie like me. :D
    Indeed, I wonder why we need two jdk for the oc4j. Follow the instruction, I need to install a jdk. However, I find there is another jdk under $ORACLE_HOME\jdk. This is make the situation confusing and saw quite a lot of threads are related to this problem long time ago!

Maybe you are looking for

  • Hard drive crashed - how to import my data back to itunes?

    my hard drive crashed. I reload windows, install itunes, but when i connect iphone it wants to delete everything off it. oddly enough it imported the photos. why cant it jsut import everything? the reason why i dont want to wipe it and start over is

  • Help with this calc; I can't get it to work...

    can someone please tell me what is wrong with this calc script in the attached document?  It's the field titled "Total Tips"  Thank you so much; I've spent a lot of time on it today.  This stuff is new to me.  Thanks.

  • Operations Manager 2012 R2 Enterprise Alerting

    Hi, at the moment we plan the migration from SCOM 2007 R2 to SCOM 2012 R2. We are looking for an enterprise alerting solution like the product from DERDACK. Do you know of any other vendors / products with the same capabilities? Thank you, Martin

  • Diff in TAXINN and TAXINJ

    Hii All... I am new in CIN can anyone please tell me what is the difference in these two procedure ? Which one is generally used and why ? And is there any difference in accounts to be maintained in both procedure. Can any one please tell me both Tax

  • FSE3 to create an html file in background

    I would like to publish our account hierarchy to our intranet by sending the accounting structure from FSE3 to a Html file that run nightly in the background.  We have created a BDC to use FSE3.  Runs great in foreground but fails in background due t