JSP deployment on IIS 4.0

Hi all,
Has anybody successfully deployed JSP application using IIS 4.0 and JRUN?
Thanks
Akshay Mistry
null

Hi,
Do you have a stack trace?

Similar Messages

  • How to run JSP's in IIS

    Hi All
    Could anyone let me know is there anyway to run JSP's in IIS. There are certain ways:
    1. Can use JRUN Studio as plugin to IIS & this can be downloaded from www.macromedia.com
    2. Plugging a adapter/redirector called isapi-redirect.dll
    But Im looking for some freeware tool that should have the same capability as the tools mentioned above. Could anyone help me out in this issue.
    Cheers
    Sudharsan.S

    This was written for versions 4.x of Tomcat, but I believe it still applies. This had me up and running in 5-6 minutes.
    http://www.onjava.com/pub/a/onjava/2002/12/18/tomcat.html

  • Deployment to IIS help

    Hi,
    I am trying to deploy my program to an IIS server (5.0) I'm having problems setting the classpath. I've installed JRE on the server. Is this enough? Do I need to install more components??
    Thanks for your help.

    Aaron, please clarify your questions.
    What is your application deployment platform comprised of? How many Logical Tiers - running where / what?
    What kind of components are you trying
    to deploy onto IIS?
    Also, please look at and apply the bug patches outlined in article:
    "Latest IIS Security Patch isn't Enough" http://www.zdnet.com/zdhelp/stories/main/0,5594,2570776,00.html
    I hope this helps,
    John

  • IIS Issue:when trying to download code from AWS S3 and deploy in IIS server using Power Shell script while Windows startup Default Application pool is not started.

    Hi,
    I am trying to launch Amazon EC2 windows server 2008 R2 instance using AWS Auto Scaling feature. I have used cusmized AMI in Autoscaling Launch configuration to launch an instance.I have placed Power Shell script in AMI. 
    The responsibility of script is to download code from AWS S3 and deploy in IIS server while windows startup first time.
    When i check status, IIS is started succesfully. But default Application pool is not started.
    To resolve this issue i have written one scheduled script. It helps to start the application pool if any application pool is in stopped state.
    After this Application pool is started but i am not able to communicate with IIS server through browser.  
    Please help any one to resolve this issue.
    Thanks in advance

    Hi Vchreddy,
    For the IIS issue, we recommend you can post in IIS forum for more effective support:
    http://forums.iis.net/
    Thanks for your understanding.

  • Using ADWrapper but has error when deploy to IIS

    Dear all,
    I am using below link to develop the program.
    Active Directory in VB.Net
    But has error when deploy to IIS as attached screen. Do you  know how to solve??

    Dear all,
    I am using below link to develop the program.
    Active Directory in VB.Net
    But has error when deploy to IIS as attached screen. Do you  know how to solve??
    Hi,
    I am moving this thread to Using Forums >Where is the Forum For…?
    forum, the owner of the forum will direct you to a proper forum.
    I would recommend you check this thread
    http://social.msdn.microsoft.com/Forums/en-US/13bb6961-720d-4604-8eff-22251604cd94/active-directory?forum=whatforum
     which shared a place where you could get help, and since this thread has lasted for a long time, you could create a new thread of that forum to get supports.
    Hello,
    Thank you for the post.  I would suggest posting your question in one of the below mentioned Web sites. Hope this helps you.
    http://social.technet.microsoft.com/Forums/en/winserverDS/threads
    http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?dg=microsoft.public.windows.server.active_directory&cat=en_us_5bd43452-4bab-4720-8df9-d5f37d3153b9&lang=en&cr=us
    Have a great day!
    Tier 2 Application Support  Server and Tools Online Operations Team
    Thanks for your understanding.
    Regards.
    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.

  • JSP Deployment Issues

    Guys:
              I saw your names posted in the weblogic jsp news group. I thought you
              might be able to help me with a jsp deployment problem. A number of our
              jsps take a long time to compile. As a result, the first user who
              accesses our jsps after deployment pays a significant latency penalty.
              To get around this problem, we manually "touch" each jsp as part of
              deployment. That way when users access the site, they get reasonalble
              response time.
              The problem we face is that we are now in a clustered environment in
              production and staging. As a result, it can take a long time to
              manually "touch" each jsp. There is also a secondary issue. Our
              staging and production environments are hosted by an extenal service
              provider. We are uncomfortable with deploying source code -- e.g., jsps
              -- in these environments.
              Here is what I have done to date:
              I have written a unix script that invokes the weblogic.jspc compiler for
              each jsp. The intent is to pre-compile the JSPs ahead of time. In our
              testing this script we still notice that Weblogic (e.g., 4.5.1) still
              attempts to recompile the jsps on-demand when they are first accessed
              from the browser by the first user after jsp deployment. (This defeats
              the purpose of pre-compiling the jsps.)
              What are we doing wrong and what can we do so that the jsp-s are
              pre-compiled and not re-compiled on demand. Again, at a minimum we want
              to avoid the latency problems associated with the first user. Best case
              scenario, we would like to ship a jar file that contains the compiled
              jsp servlet classes.
              Your recommendations are most appreciated.
              Mark C. Berman
              Javelin Solutions
              [email protected]
              

    I've never tried this, but I don't see any reason why it wouldn't
              work... Don't even register the JSPServlet. Build the JSPs (servlets)
              and deploy them like any other servlet. You can register them with a
              .jsp extension or you could give them a different alias altogether.
              The WL JSP compiler (weblogic.jspc) may be used to compile the jsps
              into servlets during the normal build process and there are options
              that may be used to modify the package, install dir, etc.
              Hope that helps.
              Jason
              On Tue, 26 Dec 2000 17:09:25 -0600, mark berman
              <[email protected]> wrote:
              >Guys:
              >
              >I saw your names posted in the weblogic jsp news group. I thought you
              >might be able to help me with a jsp deployment problem. A number of our
              >jsps take a long time to compile. As a result, the first user who
              >accesses our jsps after deployment pays a significant latency penalty.
              >To get around this problem, we manually "touch" each jsp as part of
              >deployment. That way when users access the site, they get reasonalble
              >response time.
              >
              >The problem we face is that we are now in a clustered environment in
              >production and staging. As a result, it can take a long time to
              >manually "touch" each jsp. There is also a secondary issue. Our
              >staging and production environments are hosted by an extenal service
              >provider. We are uncomfortable with deploying source code -- e.g., jsps
              >-- in these environments.
              >
              >Here is what I have done to date:
              >
              >I have written a unix script that invokes the weblogic.jspc compiler for
              >each jsp. The intent is to pre-compile the JSPs ahead of time. In our
              >testing this script we still notice that Weblogic (e.g., 4.5.1) still
              >attempts to recompile the jsps on-demand when they are first accessed
              >from the browser by the first user after jsp deployment. (This defeats
              >the purpose of pre-compiling the jsps.)
              >
              >What are we doing wrong and what can we do so that the jsp-s are
              >pre-compiled and not re-compiled on demand. Again, at a minimum we want
              >to avoid the latency problems associated with the first user. Best case
              >scenario, we would like to ship a jar file that contains the compiled
              >jsp servlet classes.
              >
              >Your recommendations are most appreciated.
              >
              >Mark C. Berman
              >Javelin Solutions
              >[email protected]
              >
              

  • Error while accessing JSP deployed on Oracle AS

    Hi,
    I have developed an application and deployed in on the oracle AS 10.1.2
    In my application i have a Jsp on which i have the following code
    <?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <%@ page import="javax.servlet.*"%>
    <%@ page import="javax.servlet.http.*"%>
    <%@ page import="java.io.*"%>
    <%@ page import="java.util.*"%>
    <%@ page import="java.net.*"%>
    <% String strFileName = request.getParameter("prmFileName");
    //String strFileName = "d:\\Report.xls";
    response.setContentType( "application/vnd.ms-excel; charset=ISO-8859-1");
    PrintWriter out1 = response.getWriter();
    //System.out.println(strFileName);
    FileReader fread = new FileReader (strFileName);
    BufferedReader bfd = new BufferedReader(fread);
    String inputLine;
    while ((inputLine = bfd.readLine()) != null)
    out1.println (inputLine);
    bfd.close();
    out1.close();
    %>
    When i access this jsp through the application i get this error..
    during developement i had tested this jsp by deploying it on jboss and it worked properly but now i am faced with this error
    500 Internal Server Error
    java.lang.IllegalStateException: OutputStream already retrieved     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.EvermindHttpServletResponse.getWriter(EvermindHttpServletResponse.java:1001)     at ReportXlsOpen.jspService(_ReportXlsOpen.java:57)     [SRC:/ReportXlsOpen.jsp:12]     at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].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[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)     at java.lang.Thread.run(Thread.java:534)
    Thanks & Regards,
    Madhur

    You don't need to get the output writer "out1". you can use "out" in your scriplets the same way as "request" and "response".

  • Location of java servlet (not jsp) deployed on Java Stack

    Hello,
    Why this forum? this post is related to the way of calling a java servlet deployed on the java stack, so it's related to the structure of the stack than to real java programming.
    Usually, I develop JSP servlets which are easily called either with a mapping or not. I have deployed now a java servlet and added a mapping to it by modifying the xml source itselft in its descriptor, but after deployement I am not able to reach the resource.
    In the windows explorer of the java stack I find in j2ee>cluster>server>apps my application as follows:
    app_ear>servlet_jsp>app>root>WEB-INF>classes>my class files
    app_ear>servlet_jsp>app>root>app.jsp
    This time it's not a jsp that I want to call: app/app.jsp but my java servlet which lies in the classes subdir.
    Could someone help my to achieve this or is it the wrong way, we can only request jsp applications?
    Kind regards,
    Tanguy Mezzano

    Hi Vladimir,
    here's my web.xml code:
    <?xml version="1.0" encoding="UTF-8"?>
    <!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>
         <display-name>WEB APP</display-name>
         <description>WEB APP description</description>
         <servlet>
              <servlet-name>SSORedirect3.jsp</servlet-name>
              <jsp-file>/SSORedirect3.jsp</jsp-file>
         </servlet>
         <servlet-mapping>
              <servlet-name>AuthenticatorServlet</servlet-name>
              <url-pattern>/SSOredirect3</url-pattern>
         </servlet-mapping>
         <security-constraint>
              <display-name>SecurityConstraint</display-name>
              <web-resource-collection>
                   <web-resource-name>WebResource</web-resource-name>
                   <url-pattern>/*</url-pattern>
                   <http-method>GET</http-method>
                   <http-method>POST</http-method>
              </web-resource-collection>
              <auth-constraint>
                   <role-name>DefaultSecurityRole</role-name>
              </auth-constraint>
         </security-constraint>
         <security-role>
              <role-name>DefaultSecurityRole</role-name>
         </security-role>
    </web-app>
    And in my jsp file, I have a form with this kind of code:
    <form name="xyz" method="GET" action="http://j2eeserver:50000/SSOredirect3/SSOredirect3">
    I get this error in my logs:
    com.sap.engine.services.servlets_jsp.server.exceptions.ServletNotFoundException: Requested resource [SSOredirect3/servlet/AuthenticatorServlet] not found.
    Exception id: [000C299F469E00650001D8E900000CCC000458E27823275B]#
    Best regards,
    Tanguy Mezzano

  • NEWBIE JSP Deployment Problems

    I know this is will probly bore to some of you but I'm trying to evalutate this software.
    I created a test JSP via the wizard and ran it in Jdev ok. Deployed and Copied the files to the Apache web server provided with 8.1.7. Ran on browser and got this error:
    java.lang.RuntimeException: JSP Registry could not locate runtime property file:....
    I included the business classes but apparently I'm still missing something...
    I have been searching for documentation on this error but not much luck so far...

    I have deployed a JSP with BC4J Application on an Oracle IAS and it works fine, but to do it i had to include a path to the .jar file that contains my classes in Jserv.properties
    When i need to change, add or manipulate something in the jar file or include a new jar file, i have to shut down the service because while active, the files that are being pointed by the conf file become locked... I have read something about "zones" and i have no idea about apache or OracleJSP configuration. I began yesterday to read the JavaServer Pages Developer4s Guide and Reference... But it has 420 pages and i will last a lot till i find what i4m looking for.
    If you can explain me the way you make your jar file accesible by the system in a correct way or the pages in which it is explained, please, make me know.

  • JSP Deployment:Tomcat:Oracle Prepared Statement error

    I'm deploying my BC4J JSP application to Linux/Tomcat 4.0.1.
    The html and basic jsp (Query form display) work but whenever I try to hit the database (i.e. display a browse or execute a query), I get the following in the Browser window:
    Application Error
    Return
    Error Message: oracle.jdbc.driver.OraclePreparedStatement
    There are no other messages. Everything works in the JDeveloper IDE.
    I'm sure I've done something wrong in the configuration.
    Can anyone point me in the right direction?
    TIA
    Thanks, George

    Thanks for the info Sung.
    We solved the problem late yesterday. The Tomcat documentation indicates that .jar files shared by the application and the server must reside in <Tomcat_home>/common/lib/. However, we went by the JDeveloper document which stated that most of the library files belong in <Tomcat_home>/lib/.
    When we moved classes12.jar to /common/lib/ the problem was resolved.
    In order to resolve other problems that arose, we had to move all of the indicated .jar files for JDeveloper into /common/lib/.
    One of the JDeveloper documentation folks should probably evaluate this for a change to the documentation.
    Thanks for your help!
    Thanks, George

  • File Open: Asks twice to open document in IE6.0(Weblogic server with JSPs deployed)

              HI,
              This may not be appropriate question on this discussion forum. But in case if
              somebody has answer for this, please let me know:
              Problem:
              I am trying to open some documents in my JSP(JSPs are deployed on Weblogic5.1)
              where a BLOB will be streamed and written to ServletOutputStream. Some piece of
              code which does this, I have pasted below:
              // start attachmentviewer.jsp
              <% BufferedInputStream is = null;
              BufferedOutputStream os = null;
              response.setContentType(mimeType.trim()); // say application/msword for word document
              response.setHeader("Content-Disposition","attachment; filename=\""+attachmentViewBean.getAttachmentName()+
              "\";"); //bean method gets attachment name
              is = new BufferedInputStream(attachmentViewBean.getAttachment().getBinaryStream());
              // gets blob
              os= new BufferedOutputStream(response.getOutputStream());
              byte[] buff = new byte[6500];
              int bytesRead;
              out.clearBuffer();
              while(-1 != (bytesRead = is.read(buff, 0, buff.length)))
              os.write(buff, 0, buff.length);
              %>
              // end attachmentviewer.jsp
              I am closing handles etc. after this.
              This works fine in Netscape6.0 in which
              a dialog box prompts user to open/save
              document once and does correspondigly
              after user action.
              In IE 6.0 first file open dialog comes
              informing its open/saving
              attachmentviewer.jsp. Upon clicking open it
              again opens another dialog box
              informing to open/save for actual file
              name put in response's setHeader method.
              I observed this to happen in IE6.0, but
              works fine in IE5.5 prompting user once.
              If anyone has any idea/suggestions/tips
              about this, please lemme know.
              Thanks,
              Yogesh
              

    i was able to solve it by clearing the output stream (jsp page - out.clear() ) before using it, even resetting the jsp response does the trick..
    thanks,
    prakash.m
    Edited by message2prakash at 02/08/2008 10:35 AM
    Edited by message2prakash at 02/08/2008 10:36 AM

  • 6.0 jsp deploy

    I can't get a jsp to be served up from a managed server. It works from the
              admin server however.
              I created a new domain (FooDomain) and ran an admin server with
              a jsp copied into the default web app dir:
              C:\bea\wlserver6.0\config\FooDomain\applications\DefaultWebApp_fooAdminServe
              r
              I can bring this jsp up in the browser AND when I update the
              jsp it redeploys just fine.
              Then I do the same the thing with a managed server, putting the
              jsp in:
              C:\bea\wlserver6.0\config\FooDomain\applications\DefaultWebApp_fooManServer1
              This does not work at all. I can't see the jsp and I get the
              following error from the dos screen running the FooManServer:
              <Jan 7, 2001 11:24:38 PM EST> <Error> <HTTP> <HttpServer(4899834,null
              default ct
              x,fooManServer1) found no context for "GET /hello.jsp?name=bike HTTP/1.1".
              This
              should not happen unless the default context failed to deploy.>
              Right after the managed server boots it gives me this error:
              <Jan 7, 2001 11:40:30 PM EST> <Error> <J2EE> <Error deploying application
              Defaul
              tWebApp_fooManServer1: error retrieving component [Caching Stub]Proxy for
              FooDom
              ain:Name=DefaultWebApp_fooManServer1,Location=fooManServer1,Type=WebAppCompo
              nent
              Config,ApplicationConfig=DefaultWebApp_fooManServer1>
              I get a 400 error on the browser! Not a 404!
              Any ideas on what is going on here?
              

    It looks like the default web app is not being loaded on your managed
              server. Two things to check are
              1. that DefaultWebApp_fooManServer1 is targeted to your managed server
              2. that it is deployed.
              I think that this is something we should do automatically for the default
              web app, but currently, we don't so its possible to have the system
              configured such that the default app is not acutally loaded for a particular
              server.
              mark
              Mike Sprague wrote:
              > I can't get a jsp to be served up from a managed server. It works from the
              > admin server however.
              >
              > I created a new domain (FooDomain) and ran an admin server with
              > a jsp copied into the default web app dir:
              >
              > C:\bea\wlserver6.0\config\FooDomain\applications\DefaultWebApp_fooAdminServe
              > r
              >
              > I can bring this jsp up in the browser AND when I update the
              > jsp it redeploys just fine.
              >
              > Then I do the same the thing with a managed server, putting the
              > jsp in:
              >
              > C:\bea\wlserver6.0\config\FooDomain\applications\DefaultWebApp_fooManServer1
              >
              > This does not work at all. I can't see the jsp and I get the
              > following error from the dos screen running the FooManServer:
              >
              > <Jan 7, 2001 11:24:38 PM EST> <Error> <HTTP> <HttpServer(4899834,null
              > default ct
              > x,fooManServer1) found no context for "GET /hello.jsp?name=bike HTTP/1.1".
              > This
              > should not happen unless the default context failed to deploy.>
              >
              > Right after the managed server boots it gives me this error:
              > <Jan 7, 2001 11:40:30 PM EST> <Error> <J2EE> <Error deploying application
              > Defaul
              > tWebApp_fooManServer1: error retrieving component [Caching Stub]Proxy for
              > FooDom
              > ain:Name=DefaultWebApp_fooManServer1,Location=fooManServer1,Type=WebAppCompo
              > nent
              > Config,ApplicationConfig=DefaultWebApp_fooManServer1>
              >
              > I get a 400 error on the browser! Not a 404!
              >
              > Any ideas on what is going on here?
              

  • JDEV 3.1 (JSP) deployment on iPlanet

    Hello JSP developers,
    We receive the following message when deploying JSP app. on Netscape iPlanet webserver
    Error Message: JBO-26002: Error Parsing the XML file "/vanilla_package/ReportView" .
    The JSP app. works as expected in Jdev31 env.
    and I have the deployment jar file with ALL
    the necessary JSP and XML files.
    Cheers
    Kedar
    null

    Hi Juan,
    Thanks. Now Jrun is recognizing Oracle jdeveloper zip-jar files.
    What I did was -
    I moved .property file (unzipped from zipped-deployed file) to a folder other than the app. folder of JRun. And put that folder in the classpath. I started working. I don't know why? But it works.
    One more thing. Why have you moved PoolMgr from ampPool? Your jbohtmlsrc.zip still contains its java file
    IMPORTANT THING:
    I am now getting this error whenever I run JSP page which fetches some data.
    Error Message: JSP Page threw a non-Exception Throwable.
    I have generated a default application using wizards and simply deployed it. But I get the above error. WHY?
    HOW to trouble shoot it? I am using Oracle 8.1.5. (jdeveloper 3.2)
    null

  • Web.xml + jsp deployment problem

    Hi people,
    I have an eclipse project that has 1 servlet and 1 jsp page. I'm having problem in deployment. The servlet works fine but jsp is not accessible. The structure of my web.xml file is as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <display-name>IBNSubscriberServlet</display-name>
         <servlet>
              <description></description>
              <display-name>SubscriberServlet</display-name>
              <servlet-name>SubscriberServlet</servlet-name>
              <servlet-class>com.ibn.servlets.SubscriberServlet</servlet-class>          
         </servlet>
         <servlet-mapping>
              <servlet-name>SubscriberServlet</servlet-name>
              <url-pattern>/SubscriberServlet</url-pattern>
         </servlet-mapping>
         <servlet>
             <servlet-name>MonitoringG7</servlet-name>
             <jsp-file>/com.ibn.view.MonitoringG7.jsp</jsp-file>
         </servlet>     
         <servlet-mapping>
              <servlet-name>MonitoringG7</servlet-name>
              <url-pattern>/*</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
              <welcome-file>index.htm</welcome-file>
              <welcome-file>index.jsp</welcome-file>
              <welcome-file>default.html</welcome-file>
              <welcome-file>default.htm</welcome-file>
              <welcome-file>default.jsp</welcome-file>
         </welcome-file-list>
    </web-app>On requesting this JSP url, http://localhost:8080/IBNSubscriberServlet/MonitoringG7.jsp the http 404 status message comes which says the resource is not found. Cn someone please check the above jsp mappings in the web.xml file?
    Inside my "src", folder I have "com.ibn.view" which contains jsp file.
    thanks.

    this is how my web.xml looks like now.
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <display-name>IBNSubscriberServlet</display-name>
         <servlet>
              <description></description>
              <display-name>SubscriberServlet</display-name>
              <servlet-name>SubscriberServlet</servlet-name>
              <servlet-class>com.ibn.servlets.SubscriberServlet</servlet-class>          
         </servlet>
         <servlet-mapping>
              <servlet-name>SubscriberServlet</servlet-name>
              <url-pattern>/SubscriberServlet</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
              <welcome-file>index.htm</welcome-file>
              <welcome-file>index.jsp</welcome-file>
              <welcome-file>default.html</welcome-file>
              <welcome-file>default.htm</welcome-file>
              <welcome-file>default.jsp</welcome-file>
         </welcome-file-list>
    </web-app>If there is a mapping problem then the JSP should not work in tomcat as well, but it is. And i have just one servlet in the project and that is mapped my eclipse as above.

  • Simple jsp deployment - does it need weblogic.xml ?

              Hi,
              I am a newbie and trying out a very simple jsp application which connects to Oracle
              for a simple db lookup. This app used to work with Tomcat/ Apache.
              I am trying to deploy it on WLS7.0 . It does not use servlets - only JSPs.
              Could someone tell me what is the minimum level of configuration I need to deploy
              these JSPs to WLS7.0 ?
              Do I need both web.xml and weblogic.xml ?
              Do I need all the parameters in both these files ?
              Thanks a lot !
              

    WLS7.0 Does use servlet you have to register the servlet inside the
              web.xml file for a web application. It looks like this:
              <servlet>
                   <servlet-name>testservlet</servlet-name>
                   <servlet-class>
                        com.mypackage.MyTestServlet
                   </servlet-class>
              <init-param>
              <param-name>EnvironmentFile</param-name>
              <param-value>/WEB-INF/config/webstore.properties</param-value>
              </init-param>
              </servlet>
              <servlet-mapping>
              <servlet-name>testservlet</servlet-name>
              <url-pattern>/mytestservlet</url-pattern> <!-- this is the
              name on the url-->
              </servlet-mapping>
              Abraham wrote:
              > Hi,
              >
              > I am a newbie and trying out a very simple jsp application which connects to Oracle
              > for a simple db lookup. This app used to work with Tomcat/ Apache.
              >
              > I am trying to deploy it on WLS7.0 . It does not use servlets - only JSPs.
              >
              > Could someone tell me what is the minimum level of configuration I need to deploy
              > these JSPs to WLS7.0 ?
              > Do I need both web.xml and weblogic.xml ?
              >
              > Do I need all the parameters in both these files ?
              >
              > Thanks a lot !
              

Maybe you are looking for

  • How to Update the Basic Data text in Material Master.

    Hi Abapers, I have more than 5000 materials for update basic Data text inside Material Master. how to update basic data text using abap programe? is there any bapi or normal program?. anybody give me sample of this. Thanks S.Muthu. IT Dept.

  • PROLEM IN RETRIVING MATNR FROM MSEG IN STOCK REPORT

    HI FRIENDS , IAM DOING A REPORT IN WHICH I HAVE TO DISPLAY THOSE MATERIAL NUMBER WHICH HAS UNRESTRICTED STOCK AS OF TODAY AND ALSO THOSE WHICH HAVE TRANSACTION DONE IN LAST ONE YEAR THAT I THINK HAVE TO TAKE FRM MKPF AND MSEG , I SELECTED MATNR FROM

  • Locating and reinstalling missing files in Lightroom 1.4 ....

    I would like to know how to re-install missing files once you locate a missing folder or set of files, I don't understand what to do next (once you have found the files) in order to put the file back into it's original location so the files will work

  • URGENT   yahoo download attachment name is being changed by Safari

    Every time I download an attachment from yahoo mail (PDF or Jpg, word, etc.) , my computer automatically changes the name of the document to "securedownload#_". It further loses any attachment extension associated with the attachment which at times m

  • Using a microphone to measure speed

    My problem is that i am trying to measure the speed of a fan using a microphone with labview, any ideas??????