How to deploy a jsp app as portlet in portal?

i'm a new bee to this portal & portlet stuff.
so, pls let me know if my questions doesn't make sense.
i have a jsp app sitting in jdeveloper 9.0.3
can i deploy this jsp app as portlet and see it from
my portal?
srini

Hi Benjamin.
Can u explain more detail about the deployment..
I also use JDev and want to do like you do (that is deploy to 9iAS using JDev.
I tried to create new connection via Remote DCM..
but it gave me error.
I also read & tried the article that u suggested..
but still failed..
So, my questions are:
1)In step one, where in EM should i install Oc4jDcmServlet.ear? in OC4J_Portal(the same place i deploy jpdk)?
"Install the DCM Servlet, Oc4jDcmServlet.ear, to a running Oracle Enterprise Manager instance. This servlet is required to run in the same OC4J instance (same JVM) as the Enterprise Manager servlet. The DCM Servlet is located in:
<jdev_install>/dcm/lib/Oc4jDcmServlet.ear "
2)I download JDev into my drive C.
and i did found /dcm/lib/Oc4jDcmServlet.ear
I not sure what to type..and where should i run the command..
In the article,it run from c:\winnt\system32\cmd.exe.
But when i ty to run it, it gave me error
"Exception in thread "main" java.util.zip.ZipException: The system cannot find th
e path specified
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(Unknown Source)
at java.util.jar.JarFile.<init>(Unknown Source)
at java.util.jar.JarFile.<init>(Unknown Source)"
should i run the command in the server?Where?
What command should i type?
Java -jar ${ORACLE_HOME}/j2ee/home/admin.jar ormi://${EM_OC4J_HOST}:${EM_OC4J_PORT} ${IAS_ADMIN_USER} ${IAS_ADMIN_PASS} -deploy -file Oc4jDcmServlet.ear -deploymentName Oc4jDcmServlet "
Thanks..

Similar Messages

  • How to add the SSO Server Administration portlet to portal

    hi
    I want to use SSO Server Administration portlet ,but when i Navigator to the administer tab .in the portal suntab there is not SSO Server Administration .I want to know why? and how to add the SSO Server Administration portlet to portal.(note:the portal system havn't SSO Server Administration portlet ) .how could i can do it. help !~help!

    thank you IPeters .this problem was solved. the way is: login the portal with orcladmin and the password is the Infru password. In the administrator sub i see the SSO Server Administration portlet .
    thank you very much.

  • How to deploy a WAR file to Sun One Portal Server

    Would someone please tell me the instruction of how to deploy a WAR file to Sun One Portal Server 6.2. Thank you.

    I would advise against this. We tried that and it totally hosed the server.xml file and took our staging portal server down.
    I have no idea what was "in" the server.xml or other files, but trying to deploy a .war file using the WS admin interface hosed portal server's settings.

  • How to deploy my .WAR as a portlet, not a new page.

    Hi,
    I already know how to deploy my war file in the Portal. But How can I deploy it as a portlet?
    I have tried deploy a simple helloworld.jsp into sample provider. And it works. But when I try to create a new provider (which already config .properties , and provider.xml file). It always gives me "404 Not found" error.
    Oracle support said it must be something wrong with setting problem. But we havn't solve this problem yet.
    Can anyone give me a help or advice?
    help~~~~ please

    hi Harsha,
    Thanks for help.
    I post my instruction to deploye my war file. It was from Oracle support. But it still doesn't work well.
    Could you check?
    Thanks a lot
    1.Go to the Middletier ORACLE_HOME
    2.Go to ORACLE_HOME\j2ee\OC4J_Portal\applications\jpdk\jpdk\htdocs\
    3.Create a folder called test
    4.Copy your jsp files under this "test" folder
    5.Go to ORACLE_HOME\j2ee\OC4J_Portal\applications\jpdk\jpdk\WEB-INF\deployment
    6.Copy the file sample.properties which is there to a file called test.properties
    7.Edit test.properties and make the following changes:
    serviceClass=oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter
    loaderClass=oracle.portal.provider.v2.http.DefaultProviderLoader
    showTestPage=true
    definition=providers/test/provider.xml
    autoReload=true
    testPageURI=/htdocs/testpage/TestPage.jsp
    8.Go to ORACLE_HOME\j2ee\OC4J_Portal\applications\jpdk\jpdk\WEB-INF\providers
    9.Create a folder called test
    10.Create a file called provider.xml and put the contents as follows:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <?providerDefinition version="3.1"?>
    <provider class="oracle.portal.provider.v2.DefaultProviderDefinition">
    <localePersonalizationLevel>none</localePersonalizationLevel>
    <session>true</session>
    <defaultLocale>en</defaultLocale>
    <preferenceStore class="oracle.portal.provider.v2.preference.FilePreferenceSt
    ore">
    <name>prefStore1</name>
    <useHashing>true</useHashing>
    </preferenceStore>
    <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition">
    <id>1</id>
    <name>MyJsp</name>
    <title>MyJsp</title>
    <shortTitle>MyJsp</shortTitle>
    <description>This portlet is a sample implemented by Me.</description>
    <timeout>40</timeout>
    <timeoutMessage>MyJsp timed out</timeoutMessage>
    <showEdit>false</showEdit>
    <showEditDefault>false</showEditDefault>
    <showPreview>false</showPreview>
    <showDetails>false</showDetails>
    <hasHelp>false</hasHelp>
    <hasAbout>false</hasAbout>
    <acceptContentType>text/html</acceptContentType>
    <renderer class="oracle.portal.provider.v2.render.RenderManager">
    <renderContainer>true</renderContainer>
    <contentType>text/html</contentType>
    <showPage>/htdocs/test/test.jsp</showPage>
    </renderer>
    </portlet>
    <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition">
    <id>2</id>
    <name>MyJsp2</name>
    <title>MyJsp2</title>
    <shortTitle>MyJsp2</shortTitle>
    <description>This portlet is a sample implemented by Me.</description>
    <timeout>40</timeout>
    <timeoutMessage>MyJsp2 timed out</timeoutMessage>
    <showEdit>false</showEdit>
    <showEditDefault>false</showEditDefault>
    <showPreview>false</showPreview>
    <showDetails>false</showDetails>
    <hasHelp>false</hasHelp>
    <hasAbout>false</hasAbout>
    <acceptContentType>text/html</acceptContentType>
    <renderer class="oracle.portal.provider.v2.render.RenderManager">
    <renderContainer>true</renderContainer>
    <contentType>text/html</contentType>
    <showPage>/htdocs/test/test1.jsp</showPage>
    </renderer>
    </portlet>
    </provider>
    11.In the above change the name of the jsp files from test.jsp and test1.jsp to whatever the name of your jsp file is
    12.Test that the following provider test page comes up:
    http://midtier:port/jpdk/providers/test
    (It should show the name of the 2 portlets above)
    13.If there is a 500 Internal server error, restart OC4J_Portal and try again
    14.Once you get the test page above, go to Portal and register the provider.
    Give the URL as http://midtier:port/jpdk/providers
    and the Service Id as urn:test
    15.Add the portlet to the page.

  • Deploying BC4J JSP app to 9iAS (via EJB?)

    Hello. Please help a newbie (new to Java, JDev, JSP, and 9iAS R2).
    I've just built my first BC4J JSP app in JDev, and I've even setup a remote DCM connection to my 9iAS R2 server.
    1. JDev release notes say that BC4J deployment from JDev to 9iAS R2 is not supported. Confusing. What is the best way to deploy this app?
    2. I've created an EJB .ear file in JDev 9.0.3 and deployed it using the EM from OC4J_home. It seemed to deploy okay, but I don't know how to find it via an http path (I know, sounds dumb). Do I need to include a port number? Do I still point to my JSP page, or do I point to a servlet? What would a sample path look like?
    3. Can you recommend a good book, something like "Oracle 9iAS and JSP Apps for Dummies?"
    Thanks in advance.
    -Tony.

    Hello - I've just asked one of the BC4J team to take a look at your questions, so please keep a lookout for a response.
    I am not super familiar with BC4J, but since it's deployed as a J2EE application it should work in the following way:
    When you deploy an EAR file which contains a Web application module, you have to tell the server what URL pattern it should use to know when to send the request to the Web application. The deployment screens in OEM prompt you to enter these URLs when the deployment is done.
    Once the deployment is complete (and assuming that you've not modified the HTTP server port) you should then be able to access the application using
    http://<server-host>:7777/<url>
    where <url> is the pattern you entered for the Web application during the deployment process.
    cheers
    -steve-

  • How to deploy Oracle10g jsp report in Apache

    while i am deploying Oracle jsp report in Apache through webapplication it is showing this exception...
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to read TLD "META-INF/taglib.tld" from JAR file "file:/E:/Softwares/rajivudyogasri/build/web/WEB-INF/lib/reports_tld.jar": org.apache.jasper.JasperException: Failed to load or instantiate TagExtraInfo class: oracle.reports.jsp.ReportTagExtraInfo
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:375)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
    root cause
    org.apache.jasper.JasperException: Unable to read TLD "META-INF/taglib.tld" from JAR file "file:/E:/Softwares/rajivudyogasri/build/web/WEB-INF/lib/reports_tld.jar": org.apache.jasper.JasperException: Failed to load or instantiate TagExtraInfo class: oracle.reports.jsp.ReportTagExtraInfo
         org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:50)
         org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:407)
         org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:179)
         org.apache.jasper.compiler.TagLibraryInfoImpl.<init>(TagLibraryInfoImpl.java:181)
         org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:423)
         org.apache.jasper.compiler.Parser.parseDirective(Parser.java:492)
         org.apache.jasper.compiler.Parser.parseElements(Parser.java:1552)
         org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
         org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
         org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:155)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:295)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:303)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.27 logs.
    Apache Tomcat/5.5.27
    Thanks inadvance

    Hi,
    you can refer to this link: How to deploy jsp in R12 environment?
    Rgds,

  • AccessDenied Error deploying Java JSP app using Eclipse to Azure

    Hi,
    Following the the tutorial for deploying java servlet app on Azure using Eclipse on windows.
    Getting AccessDenied error while trying to upload, sample works locally.
    Thanks
    Raj

    Hi Raj,
    Which tutorial do you follow? Please have a look at below article, it gives details steps about how to deploy application to azure use Eclipse, please try again step by step, hope this helps.
    #http://msdn.microsoft.com/en-us/library/azure/hh690944.aspx
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to deploy my own apps...

    Hi developers
    This is sure from india.now i am developing tasklogger project in servelt. my doubt is how to deploy my application in tomcat 4.1
    . please give a solution. because of i am new for servlets.
    with regards
    sure

    1) go to my computer-properties- advanced tab-environment variables.
    Then go for system variables and click new and write:
    Variable name: CATALINA_HOME
    Variable value: c:\Tomcat 4.1( i.e. specify ur tomcat root folder)
    After writing click ok.
    2) again do same for setting
    Variable name: JAVA_HOME
    Variable value: c:\jdk1.4(specify ur jdk folder)
    Variable name: PATH
    Variable value:
    C:\jdk1.4\bin;C:\jdk1.4\lib;C:\Tomcat 4.1\bin;
    Variable name: CLASSPATH
    Variable value: C:\jdk1.4\lib;C:\Program Files\Java\j2re1.4.0_02\lib;C:\Tomcat\*.jar;
    3) write ur serlet source file(helloworld.java)
    4) open dos promt & compile ur pgm:
    c:\Tomcat 4.1\webapps\ur application name\src\servlet> javac helloworld.java
    5) put ur class file in c:\Tomcat 4.1\webapps\ur application name\web-inf\classes\ helloworld.class
    6) write ur web.xml-
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <servlet>
    <servlet-name>Hello</servlet-name>
    <servlet-class> helloworld </servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>HelloWorld</servlet-name>
    <url-pattern> \ ur application name\hello
    </url-pattern>
    </servlet-mapping>
    </web-app>
    7) start ur tomcat click on startup batch file under c:\Tomcat 4.1\bin\startup.bat
    8) give url: http:\\ localhost:8080\ ur application name\hello
    9) u will find ur response.
    10) If u have problem in compiling ur java file then make a file on notepad and write:-
    set path=�%path%�; C:\jdk1.4\bin;C:\jdk1.4\lib;C:\Tomcat 4.1\bin;
    set classpath=�%classpath%�; C:\jdk1.4\lib;C:\Program Files\Java\j2re1.4.0_02\lib;C:\Tomcat\*.jar;
    save this file as anyname.bat and save in :- c:\Tomcat 4.1\webapps\ur application name\src\servlet
    after coming on this dir i.e. c:\Tomcat 4.1\webapps\ur application name\src\servlet
    run ur bat flie and compile ur java file

  • How to deploy BC4J JSP to 9iAS

    I got a JSP error below when executing a JSP page in my BC4J JSP application. I deployed the WAR file created by JDeveloper 9.0.3 to 9iAS 9.0.3 using the Enterprise Manager. I also installed the BC4J Framework into the 9iAS.
    The Servlets and HTML files are working but JSP. What did I do wrong? Thank you.
    Request URI:/Registration/ApprovedPersonnelView1_Query.jsp
    Exception:
    java.io.FileNotFoundException: d:\ora9ias\apache\apache\htdocs\Registration\ApprovedPersonnelView1_Query.jsp (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.(FileInputStream.java:59)
         at oracle.jsp.provider.JspFilesystemResource.fromStream(JspFilesystemResource.java:174)
         at oracle.jsp.provider.JspFilesystemResource.fromReader(JspFilesystemResource.java:190)
         at oracle.jsp.app.JspAppLoader.fromReader(JspAppLoader.java:2129)
         at oracle.jsp.app.JspAppLoader.reloadPage(JspAppLoader.java:1339)
         at oracle.jsp.app.JspAppLoader.loadPage(JspAppLoader.java:1230)
         at oracle.jsp.app.JspAppLoader.getPage(JspAppLoader.java:886)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:408)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:285)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:204)
         at oracle.jsp.JspServlet.service(JspServlet.java:174)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:500)
         at org.apache.jserv.JServConnection.run(JServConnection.java:321)
         at java.lang.Thread.run(Thread.java:479)

    I got the same error when testing JSP demo after installed 9iAS. Maybe this is not the problem with deployment. Do you have any idea what could be wrong? Thanks.

  • How to deploy report jsp on portal

    Pls tell me how to deploy a report made in 9iDS as JSP on portal.
    Thanx.
    Anant Kulkarni.

    Thanx a lot Nishanth
    Yes my report is a .jsp file.
    Can u pls specify the exact steps I should follow coz I have never used portal before. I have tried creating portal page but it didn't prompted me for JSP as a type while choosing source. One more thing - IS IT NECCESSARY TO HAVE 9IDS INSTALL ON THE M/C WHERE Application Server is running. ??????
    Pls help. Pls take out some time for me.
    Thanx.

  • How to deploy a jsp file?

    Hello,
    I am new to Java. I have been developing a small web application which contains three files HTML,SERVLET and a JSP. I don't have any problem with the html & Servlet, It runs well and I get the desired output.
    I use the JSP file for validation.
    But, How to run this JSP?
    i.e. I want to run this JSP page from Servlet while performing some validations.
    Plz let me know
    where should I put this JSP? (I am using Tomcat server)
    Is there any need to enter data into web.xml similar to Servlet?
    Is there any need to set some environmental variables etc etc...
    Hope a quick respone.
    Thank you.

    This is my servlet code........
    import java.sql.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class ServerConfig extends HttpServlet
    Connection con;
    Statement st;
    ResultSet rs;
    public void init(ServletConfig config) throws ServletException
         super.init(config);
         try
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         con=DriverManager.getConnection("jdbc:odbc:ServerConfig"," "," ");
         st=con.createStatement();
         }catch(Exception se){System.out.println("problem with connection establishment");}
    public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
         String s1,s2,s3,s4;
         res.setContentType("text/html");
         PrintWriter out = res.getWriter();
         int branches = Integer.parseInt(req.getParameter("txtBranches"));
         int users = Integer.parseInt(req.getParameter("txtUsers"));
         int accounts = Integer.parseInt(req.getParameter("txtAccounts"));
         int transactions = Integer.parseInt(req.getParameter("txtTransactions"));
         out.println("<HTML>");
         out.println("<HEAD><TITLE>Server Configuraion</TITLE></HEAD>");
         out.println("<BODY>");
         out.println("<B>Best Server Configuraion</B><HR>");
         out.println("<FORM>");
         out.println("Branches: " + branches);
         out.println("<BR>");
         out.println("Users: "+ users);
         out.println("<BR>");
         out.println("Accounts: "+ accounts);
         out.println("<BR>");
         out.println("Transactions: "+ transactions);
         out.println("<HR>");
         try
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         System.out.println("DriverLoaded");
         Connection con=DriverManager.getConnection("jdbc:odbc:ServerConfig"," "," ");
         System.out.println("Connected");
         Statement st=con.createStatement();
         ResultSet rs=st.executeQuery("select DatabaseConfig,ApplicationConfig,WebConfig,BranchConfig from Configuration                     where Branches="+ branches +" and Transactions="+ transactions +" and                                         Accounts="+ accounts +" and Users="+ users +";");
         rs.next();
         s1 = rs.getString(1);
         s2 = rs.getString(2);
         s3 = rs.getString(3);
         s4 = rs.getString(4);
         if (s1.length()==0)||(s2.length()==0)||(s3.length()==0)
    //Plz let me know how should I call JSP?????
    out.println("Database Server:<BR>    <textarea rows=5 cols=30>"+s1+"</textarea><BR>");
         out.println("Application Server:<BR>    <textarea rows=5 cols=30>"+s2+"</textarea><BR>");
         out.println("Branch Server:<BR>    <textarea rows=5 cols=30>"+s3+"</textarea><BR>");
         out.println("Web Server:<BR>    <textarea rows=5 cols=30>"+s4+"</textarea><BR>");
         out.println("</FORM>");
         out.println("</BODY>");
         out.println("</HTML>");
         con.close();
         }catch(Exception ex){System.out.println(ex);ex.printStackTrace();}
    };

  • How to unload a JSP app

    Folks,
    I was wondering can anyone suggest how to unload a JSP application? Is there a command that I could use
    to allow a user to exit the application??
    I would be grateful for any help
    Peter

    Peter,
    You have to get your client/server model in your head straight. With JSP's you are talking about an "WEB-application". This means the application is running on a remote server (or local), and is accessed through a web browser on a client PC. Of course the running and configuration cannot be influenced from the client (but from using servlets on the server that have been designed to do so by the software dleiverer of the server (to make life easier), these are usually protected by passwords, so that not everybody can change the configuration of YOUR webserver and application server).
    Unloading servlets is done by the AS (application server), when the AS is stopped or re-started.
    If you want to make users "leave" the application. Re-root them to the home page set in the browser and clear the complete history in a javascript function (client side programming).
    regards,
    Jeroen.

  • Any Demos,OBE or Simple documentation to explain how to deploy JDev 11 App.

    Hi All;
    pls any help like Online Demos or OBE or Simple Documentations
    explaining how to deploy JDev 11 in OAS .
    Note: I downloaded OC4J 11
    best regards
    Forakora

    are the ant tasks that come with the oc4j embedded in jDeveloper11g tp4 in the same ones from oc4j 10g and if so do they still work for deploying, connection pools and connection factories etc... in short can I use the old documentation for the ant-tasks or is there newer documentation of ocj4 ant-tasks any where?
    is http://download.oracle.com/docs/cd/B31017_01/web.1013/b28951/anttasks.htm still a good source of information?

  • How to deploy a JSP Client

    I tried to deploy EmployeeClientJSP.jsp and faced this error
    java.lang.NullPointerException: domain was null
         com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIConnection com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIServer.addNode(java.net.InetAddress, int, java.lang.String, java.lang.String, com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIContext, boolean, java.lang.String, boolean)
         com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIConnection com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIServer.getConnection(java.net.InetAddress, int, java.lang.String, java.lang.String, com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIContext, boolean, java.lang.String, boolean)
         javax.naming.Context com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIInitialContextFactory.getInitialContext(java.util.Hashtable)
         javax.naming.Context javax.naming.spi.NamingManager.getInitialContext(java.util.Hashtable)
         javax.naming.Context javax.naming.InitialContext.getDefaultInitCtx()
         void javax.naming.InitialContext.init(java.util.Hashtable)
         void javax.naming.InitialContext.<init>(java.util.Hashtable)
         void EmployeeClientJSP.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         [EmployeeClientJSP.jsp]
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
         boolean com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.ApplicationServerThread, com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.EvermindHttpServletRequest, com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
         void com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(java.lang.Thread)
         void com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run()

    I tried to deploy EmployeeClientJSP.jsp and faced this error
    java.lang.NullPointerException: domain was null
         com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIConnection com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIServer.addNode(java.net.InetAddress, int, java.lang.String, java.lang.String, com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIContext, boolean, java.lang.String, boolean)
         com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIConnection com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIServer.getConnection(java.net.InetAddress, int, java.lang.String, java.lang.String, com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIContext, boolean, java.lang.String, boolean)
         javax.naming.Context com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.rmi.RMIInitialContextFactory.getInitialContext(java.util.Hashtable)
         javax.naming.Context javax.naming.spi.NamingManager.getInitialContext(java.util.Hashtable)
         javax.naming.Context javax.naming.InitialContext.getDefaultInitCtx()
         void javax.naming.InitialContext.init(java.util.Hashtable)
         void javax.naming.InitialContext.<init>(java.util.Hashtable)
         void EmployeeClientJSP.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         [EmployeeClientJSP.jsp]
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
         boolean com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.ApplicationServerThread, com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.EvermindHttpServletRequest, com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
         void com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(java.lang.Thread)
         void com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run()

  • How to deploy a JSP with jsp:plugin with applet type?

    Hi,
    I am a new comer for JSP and when to try to a simple JSP with plugin for applet. Following is part of my JSP script:
    <jsp:plugin type="applet" code="DigitalClock" align="center" height="25" width="300"
    >
         <jsp:params>
              <jsp:param name="language" value="<%=request.getLocale().getLanguage()%>" />
              <jsp:param name="country" value="<%=request.getLocale().getCountry()%>" />
              <jsp:param name="bgcolor" value="FFFFFF" />
              <jsp:param name="fgcolor" value="CC0066" />
         </jsp:params>
              <jsp:fallback>
              <p>Unable to start plugin.</p>
         </jsp:fallback>
    </jsp:plugin>
    ===========
    And Java plugin tell me that can't find DigitalClock class. I want to ask how to deply this JSP using deploytool.
    Thanks,
    Wise

    Hi
    It should be in such a way,
    The Jsp:param is similar to PARAM used in Applet.
    <jsp:plugin type="applet"
    code="MyApplet.class"
    width="475" height="350"
    <jsp:params>
    <jsp:param name = "PARAM1" value="VALUE1" />
    </jsp:params>
    </jsp:plugin>
    jsp:fallback Element
    It provides alternate text to browsers that do not Support OBJECT or EMBED. You can use this element in the same way as you provide alternate text in your applet.
    <jsp:fallback>
    <b> Error: This example requires java </b>
    </jsp:fallback>
    </jsp:plugin>
    I hope this will help you.
    Thanks
    Bakrudeen
    Technical Support Engineer
    Sun MicroSystems Inc, India

Maybe you are looking for

  • If A VERIZON AGENT does not respond and fix this then I am switching back to COMCAST

    I pay OVER TWO HUNDRED DOLLARS A MONTH for all these channels and every weekend when I have my only two days off to relax and watch these channels (that I pay an arm and a leg for!) ARE NOT WORKING. I have been taking pictures for MONTHS of the error

  • How do i unlock my i phone 4s sreen lock

    how can i unlock my iphone 4s screen lock if i forget he passsword

  • HDMI Auto Switch

    Hi! I have a HDMI in my laptop, Dell XPS L421X with XFCE. When I connect HDMI to TV I have the video, use ARandR to set the displays, but not sound. I Install pavucontrol (PulseAudio Volume Control) because in SoundMixer have not controls with pulsea

  • Standard iview and custom iview

    Hi, Have any one tried developing a custome MDM iview which displays the record details on click of a record in standard Result Set iview? There is a section in portal content development guide called "Configuring Data Exchange (Eventing)" which deal

  • Flashing dialogue box appears after startup

    Hi, I have a Macbook Pro 2.3GHz i5 4GB and I've noticed recently after startup that a quick dialogue box flashes on screen but I am unable to read or determine if there is something wrong. All that I am able to see is a yellow triangle but am unable