Is OAS 4.0.8 supports JSPs?

Hi We have ordered for Oracle Application Server 4.0.8. But website says JSPs in future versions.
I have already finished my project developed using JSPs. Now it is time to move my project to production.
Please let know whether OAS 4.0.8 supports JSPs or not. I can cancel my order if it doesn't support JSPs.
Thanks in advance,
Naidu
[email protected]

Officially (as of version 4.0.8.1) no, but unofficially yes. There is a beta JSP patch for OAS 4.0.8.1 that you can download at www.olab.com, which creates a JSPServlet application and uses that servlet to handle JSP requests. As far as I know it is very robust and of production quality, although it has not been officially rolled out yet. You need to get UID/PWD for the download area from the JSP Team.
Eric Ma

Similar Messages

  • Does WL 9 support JSP 2.1?

    Hi,
    I am writing a web application using Apache's MyFaces. I'm told to use MyFaces 1.2.4 my servlet container must support JSP 2.1 and Servlet 2.5 implementations. Does WebLogic 9.2.2 (Solaris 9), the server I'm running, support these?
    Thanks, - Dave

    Hi Dave,
    WLS 9.2.2 Supports the following :-
    J2EE Servlet 2.4, 2.3, and 2.2
    J2EE JSP 2.0, 1.2, and 1.1
    Details, Link:[http://e-docs.bea.com/wls/docs92/notes/new.html#wp1064437]
    Hope this helps :)
    Regards.

  • How iPlanet web server support JSP?

    We have a web server iPlanet. Before, all our web pages are HTML, but now we are thinking to design dynamic web pages to fit our need. We are thinking to use JSP with the help of dreamweaver ultra dev. How iPlanet support JSP? How to set up the configuration in order to run JSP pages from iPlanet?
    Please give me some detailed info.
    Thank you in advance!

    I would recommend that you talk to iPlanet and see if your service even supports JSP. If not, then you'll need to find another service that supports JSP and servlets.
    DesQuite

  • Does Weblogic Express support JSPs

    Does Weblogic Express support JSPs?
              

    Yep!!
              Kumar
              Bryan Boyer wrote:
              >
              > Does Weblogic Express support JSPs?
              

  • Browser that supports JSP

    Does the Personal Web Server 4.0 support code jsp?
    if the answer is no, then what browser does support it?
    Please tell me, as soon as possible

    PWS 4.0 is a web server, not a browser. All browsers support jsp since the web server will run the jsp page and generate html for the browser to view. You can look at a product called JRun to see if it provides an ISAPI extension for running servlets & JSP pages. If it supports this, you can JSP pages on PWS.

  • Does weblogic server supports JSP tag pooling

              We use lot of Custom Tags in our app, we want improve the performance of JSP pages.
              Does Weblogic JSP engine supports JSP Tag Pooling similar to what JASPER (Tomcat
              JSP Engine) supports.
              If not, is there any way to plug-in my own Tag Pooling classes into JSP Engine.
              Thanks
              Ramesh
              

    This type of questions are appropriate for the Forms discussion forum.
    raghu

  • Does JServer Support JSP

    Does Oracle 8i with JServer support JSP, and if it does not can we use Apache Tomcat and Oracle 8i.

    John,
    We are working with the Apache/Tomcat/JServer architecture right now, and haven't ironed out all the wrinkles, but are making progress. This is a test system, not production, so we don't yet know what the performance issues are but it should be possible. Oracle Support says they support deployment to Tomcat 3.0 and Apache 1.3.9
    I have a follow on question to this thread. Running with Tomcat and EJB leads to two JVMs running, with performance issues. Deploying JSPs to JServer will help us overcome part of this barrier, but our architecture also employs a servlet Command Pattern to handle Application Logic, while the BC4J deployed as an EJB handles business rules. Will we be able to deploy the servlet to JServer in the future as well? Thanks

  • IE Browser no Supporting JSP

    Hello Experts,
    I have Developed a project using jsp as front end a nd mysql as database with tomcat as web server
    My project is running efficiently in
    mozilla firefox
    but it is not working in Internet Explorer
    when the pure jsp file has to executed by taking inputs from previous page it is showing a blank page
    but its working fine in mozilla
    any suggestions please.........

    This is not the right forum for this question. It should be on the JSP forum.
    Do you use javascript? if so it's probably the culprit. All my JSP and JSF applications run fine in both Mozilla and IE, but javascript and CSS both suffer from IE not supporting them properly.
    Can you reduce your problem to a simple example (SSCCE) that fails and then put it up somewhere that we can look at or post the code?

  • OK.. ha ha funny. But really does ojsp really support jsp:include ?

    I've been reading this list for a month or so now and still have a nagging question.
    Has anyone gotten ojsp to work using an include of the form: <jsp:include page="/somefile.jsp" />?
    According to the Oracle JSP team you should be able to use it:
    <% request.setAttribute("show","script"); %>
    <jsp:include page="/search_navigation.jsp"/>
    [/CODE\
    Similar to the IBM Websphere example.
    <HR></BLOCKQUOTE>
    This sounds nice, but first the syntax above is missing the flush modifier (which ojsp requires to be set to "true"), second the server gives the error:
    A Servlet Error Occurred
    An unexpected error occured attempting to run this servlet.
    The most likely explanation is a problem with the servlet code.
    Please check the server log for a detailed message.
    So can anyone use the <jsp:include> action in ojsp (the current one on OTN)?
    Thanks in advance.

    Thanks for your reply. Answers below:
    <jsp:directive.page language="java" />
    <jsp:include page="/arena/pages/login.jsp" flush="true" />
    <html>
    <body>
    Hello there.
    </body>
    </html>Generates this code:
    package jsptest;
    import oracle.jsp.runtime.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.servlet.jsp.*;
    import java.io.*;
    import java.util.*;
    import java.lang.reflect.*;
    import java.beans.*;
    public class test1 extends oracle.jsp.runtime.HttpJsp {
    public final String _globalsClassName = null;
    // ** Begin Declarations
    // ** End Declarations
    public void _jspService(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
    /* set up the intrinsic variables using the pageContext goober:
    ** session = HttpSession
    ** application = ServletContext
    ** out = JspWriter
    ** page = this
    ** config = ServletConfig
    ** all session/app beans declared in globals.jsa
    JspFactory factory = JspFactory.getDefaultFactory();
    PageContext pageContext = factory.getPageContext( this, request, response, null, true, JspWriter.DEFAULT_BUFFER, true);
    // Note: this is not emitted if the session directive == false
    HttpSession session = pageContext.getSession();
    if (pageContext.getAttribute(OracleJspRuntime.JSP_REQUEST_REDIRECTED, PageContext.REQUEST_SCOPE) != null) {
    pageContext.setAttribute(OracleJspRuntime.JSP_PAGE_DONTNOTIFY, "true", PageContext.PAGE_SCOPE);
    factory.releasePageContext(pageContext);
    return;
    ServletContext application = pageContext.getServletContext();
    JspWriter out = pageContext.getOut();
    test1 page = this;
    ServletConfig config = pageContext.getServletConfig();
    try {
    // global beans
    // end global beans
    out.println( "");
    out.println( "");
    String __url = (String) "/arena/pages/login.jsp";
    // Include
    out.flush();
    pageContext.include( __url);
    if (pageContext.getAttribute(OracleJspRuntime.JSP_REQUEST_REDIRECTED, PageContext.REQUEST_SCOPE) != null) return;
    out.println( "");
    out.println( "");
    out.println( "<html>");
    out.println( "<body>");
    out.println( "Hello there.");
    out.println( "</body>");
    out.println( "</html>");
    out.flush();
    catch( Exception e) {
    try {
    if (out != null) out.clear();
    catch( Exception clearException) {
    pageContext.handlePageException( e);
    finally {
    if (out != null) out.close();
    factory.releasePageContext(pageContext);
    }You'll notice the out.flush() just prior to the pageContext.include(). BTW I have to have flush="true" or OAS throws a fit.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Sorry for any inconvenience caused.
    Thanks.<HR></BLOCKQUOTE>
    Thank you.
    null

  • MultiLanguage Support  (JSP)

    Hi,
    Can anybody tell me about how we can implement Multilanguage Support for a website using JSP.There is a Java.Util class called resource bundle which is used so if anybody knows about it and can also give me an insight to it. I'll be greatfull.

    Most servlet engines provide this feature. Check the documentation with yours.

  • NWDS doesn't fully support jsp development - Any ideas for tweaks?

    Hello,
    When I open jsp in NWDS I don't get proper jsp support.
    For example, if I type request. I don't get the methods request has to offer.
    I am familiar with the Lomboz plugin for jsp but I am looking for teaks inside NWDS without adding external plugins. Anyone familiar with such teaks?

    Hi Roy,
    I would suggest you to add servlet.jar, j2eeclient.jar to your project and try this.
    you will get the auto complete.
    If you need again a full fledged JSP custom tag development, CSS style building etc..my suggestion would be
    <a href="http://www-306.ibm.com/software/awdtools/architect/swarchitect/index.html">IBM Rational Software Architect</a>
    regards,
    Vivek Nidhi

  • Does Weblogic Express support JSP ?

    Hi
    I wanted to know if i can deploy JSPs if i use a WeblogicExpress instead
    of a Weblogic Server .Iam not able to understand the deifference between
    Weblogic Express and Weblogic Server inspite of reading the material on the
    web site .Can someone throw more light on this ? Is there anywhere i can
    compare the features of the different weblogic products at one place ?
    thanks
    Srinivas

    For this type of stuff you should talk to your sales-person.
    We just make it, not sell it, so we dont understand the difference
    either. :)
    Cheers
    Mark G.
    In article <[email protected]>, [email protected] says...
    Hi
    I wanted to know if i can deploy JSPs if i use a WeblogicExpress instead
    of a Weblogic Server .Iam not able to understand the deifference between
    Weblogic Express and Weblogic Server inspite of reading the material on the
    web site .Can someone throw more light on this ? Is there anywhere i can
    compare the features of the different weblogic products at one place ?
    thanks
    Srinivas
    ==================================================
    NewsGroup Rant
    ==================================================
    Rant 1.
    The less info you provide about your problem means
    the less we can help you. Try to look at the
    problem from an external perspective and provide
    all the data necessary to put your problem in
    perspective.

  • Servlet and JSP in OAS

    I'm developing web application with OAS
    4.0.8.1 and JDeveloper 3.0 and I want to call
    JSP from servlet using "RequestDispatcher".
    I downloaded JSP for OAS from www.olab.com.
    In the Release note, there is a description
    about RequestDispatcher, but I cannot
    understand about details.
    In what configuration can I use servlet and
    JSP together with RequestDispatcher. Anyone
    scceeded about that?
    null

    wan (guest) wrote:
    : Hi everyone,
    : I am using OAS 4.0.8 on Solaris 2.6. After viewing servlet
    : and JSP samples, I am kind of confuse whether OAS supports the
    : following options
    : 1. JSP
    : 2. servlet chaining
    : 3. running JDeveloper DB Servlet wizard
    : (oracle.jdeveloper.servlet.*) and Java Business Objects
    : (oracle.jbo.rt.cs)
    : Thank you for your time.
    I found a white paper 408newfead.pdf, that says under "Future
    Directions" that it will add jsp support. I read somewhere (I
    can't remember where exactly :( ) that said 4.0.8.1 would
    support
    JSPs. I don't know if this release is out yet.
    I wish Oracle would get with the times and put out a product that
    is consistent with the technology they are touting as the
    future.
    Having us download Suns server to run servlets and JSP is
    ridiculous for the worlds second largest software company!
    null

  • JSP in OAS 4.0.8.1

    Hi !
    OAS 4.0.8.1 available for download from technet does not seem to support JSP. How to get the add on for JSP ? I know that available at www.olab.com but a username and a password are required.
    How to get the username and the password for www.olab.com ?
    Or can someone send me this JSP add-on for OAS ?
    Thanks
    Rabah
    [email protected]

    I am looking for the same answer. If you find it, please send it to me at [email protected]
    Thanx
    --Michael                                                                                                                                                                                                                                   

  • Support of JSP in Oracle 8i

    Dear all friends,
    now I am using Sun Java Web server for serving my JSP's but I have heared that Oracle 8i support JSP .Could you please inform me that whether Oracle 8.1.5. has webserver itself and if it does ,does it support JSP.
    any suggestion would be appreciated
    Amirali

    Oracle 8.1.7 (due this summer)will indeed have a web server in the database for running servlets and JSPs. Oracle 8.1.5 and 8.1.6 do not have this.
    - Servlet Team

Maybe you are looking for

  • 128-bit floating point numbers on new AMD quad-core Barcelona?

    There's quite a lot of buzz over at Slashdot about the new AMD quad core chips, announced yesterday: http://hardware.slashdot.org/article.pl?sid=07/02/10/0554208 Much of the excitement is over the "new vector math unit referred to as SSE128", which i

  • What is Web dynpro?

    Hi, I am new to Web dynpro, I am an ABAP consultant. I want to shift to Web dynpro. can any one help me with the confusion i have? I want to know what is difference between Web dynpro in Java and Web dynpro in ABAP. In which part i want to shift in J

  • Time altered clips running out of control

    I have been encountering a problem where clips are changing their own speed. I took my original clip and sliced it into smaller segments, which were set to 75% speed. Theses clips seem to at randomly increase their speed and play through the entire o

  • Mobile Media Application Development

    I have been given 24 hours to conduct some preliminary research on the potential of a company wide mobile wide application development project. We are looking to synchronise pictures taken on our agents phones with the head office server. We use a va

  • Problème filtrage fichiers liés Dreamweaver CC

    Bonjour, il m'est impossible d'afficher dans la barre prevue à cet effet les fichiers CSS qui sont liés à mon document HTML. Etrangement cette anomalie n'est présente qu'à partir du fichier généré par l'extension DMXzone Bootstrap v 1.1.0. Pour être