Deploy legacy servlet in S1AS

Hi,
Does S1AS support legacy servlet? As I know, Web Server 6.x support legacy servlet.
Thanks

Hi,
I am getting this error....
HTTP Status 404 - /servlets-examples/servlet/SendData
type Status report
message /servlets-examples/servlet/SendData
description The requested resource (/servlets-examples/servlet/SendData) is not available.
Thx,
Babloo

Similar Messages

  • Legacy servlets

    greetings,
    I am used to working with apache servers with the tomcat servlet engine, which is compliant with the servlet 2.3 specs -- entails the concept of web applications that are self contained . I am now working with an s1ws , specifically on a virtual server, and two directories have been created for me: 'public_html' and 'classes'. The public_html directory contains jsp/html and static content. The classes directory contains the servlet packages and classes.
    I am told that the servlet path is http:/domain_name:8000/servlet/ and I am also told that I must register the servlets with the server.
    How does one go about registering the servlets with the web server. Is is as simple as creating a deployment descriptor and placing it in the classes directory? According to servlet 2.3 specs the classes directory is supposed to be inside of the WEB-INF directory which contains the file web.xml. I have no WEB-INF directory. Any one know what the deal is?
    much obliged
    -Mani

    First, note that Web Server 6.1 supports Servlet 2.3 web applications and Web Server 6.0 supports Servlet 2.2 web applications.
    "Legacy Servlets" refers to a Servlet deployment methodology that predates both Servlet 2.2 and Servlet 2.3 (and hence predates the concept of web applications). Legacy Servlet support was deprecated in Web Server 6.0 and removed in Web Server 6.1. For information on using Legact Servlets, refer to the Programmer's Guide to Servlets at http://docs.sun.com/db/prod/s1websrv#hic

  • How migrate legacy servlets iPanet 4.1 to iPlanet 6.1

    Hi all.
    I have installed Java webserver 6.1on solaris.
    I cant migate my legacy servlets running on iPlanet 4.1 to Iplanet 6.1
    How do I do that?
    Please help me!!!
    PS: Is that possible?
    Thanks

    Hi Manish
    Thanks for your answer .
    We have verified what IPlanet 6.1 can deploy one sigle Legacy Servlet as "/".
    We need to deploy more than one servlet.
    Can You please explain me how can I deploy that on Single Virtual server 6.1 ?
    Thanks
    dany74

  • How can i deploy a servlet with eclispe

    Hello,
    will any one of u give me the steps to deploy a servlet with eclipse on portal server(J2EE Engine),
    in help of eclipse they given as, whole webapplication deployement, but that is also giving me a error, the procedure they given is, once we created a .war file for our servlet project we need to refer this to a .Ear file, and then this Ear can be deployed in to the server. Is it the same and only procedure to deploy a servlet with eclipse, or if there is any other method,please give me the steps also.
    when i am deploying with the .Ear file, it is giving the error as,
    Jun 4, 2005 11:34:31 AM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Deployment exception : Cannot determine sdm host (is empty). Please configure your engine/sdm correctly !
    but the sdm is working on the server with the same host, and local deployement is also done successfully, but from my system im not able to deploy!
    Thanks&Regards,
    Sireesha.

    Yeah, i am able to see the J2EE engine clusters, there the message server port is given as 3601. becoz scs instance number is 1 here. so it is not the problem,
    the error it is giving as,
    Jun 6, 2005 11:37:28 AM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : obtdev9
    SDM port : 50018
    URL to deploy : file:/C:/DOCUME1/sireesha.b/LOCALS1/Temp/temp56446MyServletEAR.ear
    Deployment exception : Server obtdev9 did not accept login request as apiadmin on port 50018 - CmdXmlFactory could not find Top Element within String: "null".
    Inner exception was :
    Server obtdev9 did not accept login request as apiadmin on port 50018 - CmdXmlFactory could not find Top Element within String: "null".
    is this may be the problem with port number?
    i am not knowing what is happening here...
    if you know the exact error based on the error messgae please help me,
    thanks to u for helping in this problem,
    Regards,
    sireesha.

  • How to embed URL of deployed java servlet into Android code

    I have deployed my servlet code on cloud which access the database cloud , but when i try to access the URL of deployed application , it asks for my credentials (username and password)....
    Now that i want to embedd my servlet link on cloud to my android app code , how to escape the credentials , or is their any way so that i can add my username and password in my servlet code itself. This is my servlet code and it is working fine..
    Context ctx = null;
            Hashtable ht = new Hashtable();
            ht.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
            Connection conn = null;
            Statement stmt = null;
            ResultSet rs = null;
            // out.print("system");
            try {
                ctx = new InitialContext(ht);
                javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup("javatrial5196db");
              //  out.print(ds.toString());
                conn = ds.getConnection();
                stmt = conn.createStatement();
                rs = stmt.executeQuery("select * from test");
                while (rs.next()) {
                    out.println(rs.getString("id") + "   " + rs.getString("password") + "<br>");
                conn.close();
                stmt.close();
            } catch (Exception e) {
                out.print(e);

    What is the intended behavior here, how will the user be authenticated if credentials are not obtained from the user ? By default the JCS applications will be secured and the system will prompt for login, you can disable the login by adding "<login-config/>". You can also configure the authentication to use BASIC / FORM authentication instead. Hard coding credentials to servlet / DB table does not sound like a good solution to me though.. For details on security refer to this document.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • How to deploy a servlet on WebLogic 6.1

              I have tried to deploy a servlet using WL6.1 following the instructions at this URL
              : http://edocs.beasys.com/wls/docs61/quickstart/quick_start.html
              but whenever I try to access the servlet from the web browser I get a HTTP 404 -
              Not Found message. The only step I omitted was step 2, as my servlet does not have
              package.
              Could anyone please advise ? Thanks.
              

              The inner classes are located in the same directory as the servlet itself, so isn't
              that part of the classpath by default. (i.e. java classes in the same package
              in the same folder find each other just fine).
              "Deepak Vohra" <[email protected]> wrote:
              >
              >Add the directory containing the inner classes to the Classpath.
              >
              >thanks,
              >
              >Deepak
              >
              >"Brian Schneider" <[email protected]> wrote:
              >>
              >>Yeah I've done that many times and redployed the war file. I even stopped
              >>and
              >>started the server each time still to no avail. Very frustrating.
              >>
              >>"Deepak Vohra" <[email protected]> wrote:
              >>>
              >>>Redeploy web application after servlet has been modified.
              >>>
              >>>http://edocs.bea.com/wls/docs70/webapp/
              >>>
              >>>
              >>>thanks,
              >>>
              >>>Deepak
              >>>
              >>>
              >>>
              >>>"Brian Schneider" <[email protected]> wrote:
              >>>>
              >>>>Makes sense. I made those public and for some reason it still is
              >doing
              >>>>the same
              >>>>thing:( Thanks again. Anything else would be great.
              >>>>
              >>>>"Deepak Vohra" <[email protected]> wrote:
              >>>>>
              >>>>>If a servlet as inner classes, the inner classes are loaded by a
              >different
              >>>>>classloader
              >>>>>than the Servlet class. For the servlet class to acces the inner
              >classes
              >>>>>make
              >>>>>the inner classes public.
              >>>>>
              >>>>>
              >>>>>"Brian Schneider" <[email protected]> wrote:
              >>>>>>
              >>>>>>Does it matter if the ExcelExport has inner classes (i.e. when compiled,
              >>>>>>3 class
              >>>>>>files exist)? The JspView is only one class.
              >>>>>>
              >>>>>>"Brian Schneider" <[email protected]> wrote:
              >>>>>>>
              >>>>>>>Yes... the compiled class is in the WEB-INF\classes\export (just
              >>>as
              >>>>>>the
              >>>>>>>JspView
              >>>>>>>is in the WEB-INF\classes\view folder).
              >>>>>>>
              >>>>>>>
              >>>>>>>"Deepak Vohra" <[email protected]> wrote:
              >>>>>>>>
              >>>>>>>>Is the ExportExcel servlet in the DefaultWebApp/WEB-INF/classes/export
              >>>>>>>>directory?
              >>>>>>>>
              >>>>>>>>
              >>>>>>>>
              >>>>>>>>Brian Schneider <[email protected]> wrote:
              >>>>>>>>>I am getting the same problem... but with my package defined.
              >>
              >>>The
              >>>>>>>weird
              >>>>>>>>>thing is the JspView works fine but the ExcelExport does not,
              >>even
              >>>>>>>though
              >>>>>>>>>(to me) they are configured the same. Here's the details of
              >my
              >>>>web.xml.
              >>>>>>>>>
              >>>>>>>>> <servlet>
              >>>>>>>>> <servlet-name>JspView</servlet-name>
              >>>>>>>>> <servlet-class>view.JspView</servlet-class>
              >>>>>>>>> </servlet>
              >>>>>>>>> <servlet>
              >>>>>>>>> <servlet-name>ExportExcel</servlet-name>
              >>>>>>>>> <servlet-class>export.ExportExcel</servlet-class>
              >>>>>>>>> </servlet>
              >>>>>>>>> <servlet-mapping>
              >>>>>>>>> <servlet-name>JspView</servlet-name>
              >>>>>>>>> <url-pattern>/servlet/view.JspView</url-pattern>
              >>>>>>>>> </servlet-mapping>
              >>>>>>>>> <servlet-mapping>
              >>>>>>>>> <servlet-name>ExportExcel</servlet-name>
              >>>>>>>>> <url-pattern>/servlet/export.ExportExcel</url-pattern>
              >>>>>>>>> </servlet-mapping>
              >>>>>>>>
              >>>>>>>
              >>>>>>
              >>>>>
              >>>>
              >>>
              >>
              >
              

  • Deployment of Servlets with JDeveloper

    Dear Sir,
    I am facing problems for using initialised parameters in the servlets while deploying them(servlets) through JDeveloper.
    Kindly, let me know how I can remove hardcoded driver and ipaddresses from my file and still use them with JDeveloper(i.e. in generalised form).
    Thanks
    Arvind
    null

    JDeveloper has an in built OC4J(an servlet and EJB container). It deploys in this app server.

  • Deploying a Servlet in Web Logic Server 6.0

              Hi,
              I am trying to deploy a simple servlet in WebLogic Server.
              I have done the following steps.
              1) Compiled the MyWorld.Java Servlet Successfully in c:test\ Directory..
              2) Created WEB-INF/Classes Directory in the home Directory of WebApplication Directory..
              C:\bea\wlserver6.0\config\mydomain\applications\
              3) Copied the Class file into the WebApplication Directory i.e
              C:\bea\wlserver6.0\config\mydomain\applications\WEB-INF/Classes
              4) Executed in the Browser using following URL:
              http://127.0.0.1:7001/MyWorld
              But, I am getting this error:
              Error 404--Not Found
              Please let me know if the above procedure is wrong, then what are the exact steps
              involved in Deploying a servlet in WebLogic Server.
              Thanks,
              Ram.
              

    My installation has a DefaultWebApp directory under mydomain/applications,
              try moving everything down there. (I'm on 6.1 but I think 6.0 is the same)
              Eliot Stock
              eliot [ at ] carbonfive [ dot ] com
              http://carbonfive.com
              "Ram" <[email protected]> wrote in message
              news:3bc71641$[email protected]..
              >
              > Hi,
              >
              > I am trying to deploy a simple servlet in WebLogic Server.
              > I have done the following steps.
              >
              > 1) Compiled the MyWorld.Java Servlet Successfully in c:test\ Directory..
              >
              > 2) Created WEB-INF/Classes Directory in the home Directory of
              WebApplication Directory..
              > C:\bea\wlserver6.0\config\mydomain\applications\
              > 3) Copied the Class file into the WebApplication Directory i.e
              >
              > C:\bea\wlserver6.0\config\mydomain\applications\WEB-INF/Classes
              >
              > 4) Executed in the Browser using following URL:
              > http://127.0.0.1:7001/MyWorld
              >
              > But, I am getting this error:
              >
              > Error 404--Not Found
              >
              > Please let me know if the above procedure is wrong, then what are the
              exact steps
              > involved in Deploying a servlet in WebLogic Server.
              >
              > Thanks,
              > Ram.
              >
              

  • Legacy Servlet to JSF

    Hi,
    I am writing an application in JSF that will replace another Java Servlet but perform the same functions. The first step is to establish the front page in JSF with all the options, but link to the legacy servlet for all those options, and replace them one by one until the legacy servlet is gone.
    I would like to run both applications in seperate containers, and use HTTP to redirect back and forth. Problem is, I don't know how to tell the legacy servlet to use the sessionid it has already established.
    The first time I call to the legacy servlet, it will create a session, and I can acquire the sessionid from HttpSession.getSessionId(), then pass that back (somehow, haven't figured out yet how to call into the JSF servlet either). But once that has been done, I can provide that sessionid in any legacy servlet invocation.
    Is this simple to do? How would I go about it?
    The next problem I have is securing this transmission, which would probably entail encryption. Perhaps I should just be running these two servlets in the same context and avoid all this confusion.
    Ideas?
    Thanks for any suggestions.

    Hi,
    Before starting the very first JSF page (and before
    the JSF front controller is invoked) I must use a
    servlet to read some parameters, init some objects
    and then jump to the first JSF page. Some objects
    that the bean generates must be saved in a JSF
    managed bean.
    The question is, how can I set those parameters in
    the managed bean if it wasn�t still initialised ?
    Code like this:
    ApplicationFactory factory = (ApplicationFactory)
    FactoryFinder.getFactory(FactoryFinder.APPLICATION_FAC
    TORY);
    Application app = factory.getApplication();
    ValueBinding vb =
    app.createValueBinding("#{AManagedBean}");
    AManagedBean mb=  (AManagedBean)
    vb.getValue(FacesContext.getCurrentInstance());     Fails with a null pointer exception (it seems to not
    t be finding �AmanagedBean�).
    you didn't even set the value, thats why you are getting a "null pointer exception". Try
    vb.setValue(FacesContext.getCurrentInstance(), AManagedBean)
    >
    Do you know how to set the properties in the
    s in the managed bean ? Any comment or help would be
    really welcome.
    First set any properties of the "AmanagedBean" and then create the value binding in any of the scopes(request, seesion, application)
    >
    Thanks in advance,
         - Juan

  • How to deploy a servlet in EBS R11

    I need to deploy a personal servlet in EBS R11, and I have no idea about where or how to do that.
    Please can some one help me?
    thinks a lot

    Brahim,
    There is are some testing servlets used in 11i,
    For testing purpose you can deploy your servlet in the following directory,
    $COMMON_TOP/java/oracle/apps/fnd/test
    The standard testing servlet can be accessed from
    http://host:port/oa_servlets/oracle.apps.fnd.test.HelloWorldServlet
    Thanks.
    With Regards,
    Kali.
    OSSI.

  • Problem when deploy my servlet

    I have developed a simple servlet.
    There are some code to do file operation in
    my program. When I use JDeveloper to develop
    and test, it works well. This is just because
    the file it need just locates in the current
    directory.
    But after I deploying it, it can't access
    that file any more. Now I just
    wonder how could I tell it where to get
    the file, just write the absolute file path,
    or could I set some envirenment variables.
    Platform: win2k server
    Thanks
    null

    It could be that you haven't set the classpath correctly in the runtime environment, or it could be that you didn't package all of the files you needed when you deployed your servlet.
    The online documentation explains how to deploy a servlet. In JDev 3.1, you'll find this information under:
    User Guides
    -> Developing Applications
    -> Developing Web Applications
    -> Developing Java Servlets
    -> Deploying Java Servlets
    Blaise

  • Deploy a Servlet

    I created a Servlet .When i run through "Run " Tab it executes properly.But i want to deploy that servlet.How to solve this prob.

    I am using Jdeveloper.
    And I have installed Oracle Application Server for Forms and Reports Services.
    I am able to run forms and reports on this server.
    But when I try to deploy the servlet through the Enterprise Manager it is not loading and not deploying.
    When I installed oracle application server for J2EE and WebCashe.
    I created connection in Jdeveloper
    and
    deployment profile
    and created WAR file
    By using Enterprise Manager I can deploy this WAR file.
    Now the servlet is running by specifying the URL in browser.
    But
    At the same time I need to run Forms and Reports which is not possible in this.
    I think u got what my prob is.
    plz help me out i am knew to this oracle application server.

  • To Deploy a Servlet using Tomcat

    I am trying to deploy an example servlet in tomcat.
    my example servlet code is
    import javax.servlet.http.*;
    import javax.servlet.*;
    import java.io.*;
    public class HitServlet extends HttpServlet {
    private int mCount;
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    String message = "Hits: " + ++mCount;
    response.setContentType("text/plain");
    response.setContentLength(message.length());
    PrintWriter out = response.getWriter();
    out.println(message); } }
    i 've placed my servlet in the directory
    webapps/midp/WEB-INF/classes/HitServlet.java
    i've successfully compiled the code. Then started the tomcat server & thro' IE tried to open the url to http://localhost:8080/midp/hits.
    but i 'm receiving the error the servlet bob is missing. i've placed the web.xml & server.xml in the folders specified in the tutorial. in server.xml i've added the code
    <Context path="/midp" docBase="midp" debug="0" reloadable="true" privileged="true"/>
    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>bob</servlet-name> <servlet-class>HitServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>bob</servlet-name> <url-pattern>/hits</url-pattern> </servlet-mapping> </web-app>
    If u can guide me to deploy the servlet it'll be very helpfull.
    With Best Regards
    Ramkumar

    one idea that I have is the CATALINA_HOME and CATALINA_BASE.
    We use CATALINA_BASE to install our stuff in another directory than that of the tomcat installation.
    in the tomcat-engine.log you should se sth similar to:
    2003-06-18 09:19:04 StandardHost[localhost]: Installing web application at context path /hits from URL file:<xxx/webapps/midp>
    2003-06-18 09:19:04 WebappLoader[/gtfn]: Deploying class repositories to work directory $CATALINA_BASE/work/Apache/localhost/gtfn
    ...

  • Deploy a servlet in Tomcat

    Hi,
    I am trying to deploy a servlet in Tom cat.
    I could not access the servlet after deployment. Plz help me.
    Here is my servlet code.
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class ProcessData extends HttpServlet
    public void init(ServletConfig config) throws ServletException
    super.init(config);
    public void service(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException, NumberFormatException
         res.setContentType("text/html");
         PrintWriter out = res.getWriter();
         out.println("I am in Servlet");
    I compiled it and copied the class file into the
    Tomcat classes (WEB-INF directory) folder.
    and made an entry in web.xml as,
    <servlet>
    <servlet-name>SendData</servlet-name>
    <servlet-class>SendData</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>SendData</servlet-name>
    <url-pattern>servlet/SendData</url-pattern>
    </servlet-mapping>
    WEB_INF is present here,
    D:\tomcat\tomcat-jwsdp-1.4\webapps\servlets-examples\WEB-INF
    I am trying to access the servlet by using,
    http://localhost:8888/servlets-examples/servlet/SendData

    Hi,
    I am getting this error....
    HTTP Status 404 - /servlets-examples/servlet/SendData
    type Status report
    message /servlets-examples/servlet/SendData
    description The requested resource (/servlets-examples/servlet/SendData) is not available.
    Thx,
    Babloo

  • Deployment of servlet on Websphere

    Hi! i have deployed a servlet on Websphere , and some time it gives following error..
    [02.01.29 19:42:09:643 EST] 5bedbab WebApp X Error.occurred.while.invoking.error.reporter
    com.ibm.servlet.engine.webapp.WebAppErrorReport: [JSP 1.0 Processor] reported an error
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:97)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:75)
         at com.sun.jsp.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:237)
         at com.sun.jsp.runtime.JspServlet.serviceJspFile(JspServlet.java:839)
         at com.sun.jsp.runtime.JspServlet.service(JspServlet.java:749)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:626)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:160)
         at com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:287)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:105)
         at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:360)
         at com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:775)
         at com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:701)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:404)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:203)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:107)
         at com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:77)
         at com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
         at com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:155)
         at com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:300)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp$ServiceRunnable.run(SQEventListenerImp.java:230)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp.notifySQEvent(SQEventListenerImp.java:104)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQEventSource.notifyEvent(SQEventSource.java:212)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.notifyService(SQWrapperEventSource.java:353)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.run(SQWrapperEventSource.java:220)
         at com.ibm.servlet.engine.oselistener.outofproc.OutOfProcThread$CtlRunnable.run(OutOfProcThread.java:248)
         at java.lang.Thread.run(Thread.java:481)
    com.ibm.servlet.engine.webapp.NoTargetForURIException: No target servlet configured for uri: /tools/scmt/
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcherInfo.getTargetServlet(WebAppRequestDispatcherInfo.java:104)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:322)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:203)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:111)
         at com.ibm.servlet.engine.webapp.WebApp.sendError(WebApp.java:604)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:104)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:75)
         at com.sun.jsp.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:237)
         at com.sun.jsp.runtime.JspServlet.serviceJspFile(JspServlet.java:839)
         at com.sun.jsp.runtime.JspServlet.service(JspServlet.java:749)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:626)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:160)
         at com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:287)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:105)
         at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:360)
         at com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:775)
         at com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:701)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:404)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:203)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:107)
         at com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:77)
         at com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
         at com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:155)
         at com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:300)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp$ServiceRunnable.run(SQEventListenerImp.java:230)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp.notifySQEvent(SQEventListenerImp.java:104)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQEventSource.notifyEvent(SQEventSource.java:212)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.notifyService(SQWrapperEventSource.java:353)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.run(SQWrapperEventSource.java:220)
         at com.ibm.servlet.engine.oselistener.outofproc.OutOfProcThread$CtlRunnable.run(OutOfProcThread.java:248)
         at java.lang.Thread.run(Thread.java:481)
    [02.01.29 19:42:09:709 EST] 5bedbab WebGroup A SRVE0091I: [Servlet LOG]: "A recursive error was detected.The server cannot use specified error page. Please check the application error-path."
    [02.01.29 19:42:09:710 EST] 5bedbab WebGroup A SRVE0092I: [Servlet LOG]: "Original Error: ": com.ibm.servlet.engine.webapp.WebAppErrorReport: [JSP 1.0 Processor] reported an error
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:97)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:75)
         at com.sun.jsp.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:237)
         at com.sun.jsp.runtime.JspServlet.serviceJspFile(JspServlet.java:839)
         at com.sun.jsp.runtime.JspServlet.service(JspServlet.java:749)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:626)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:160)
         at com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:287)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:105)
         at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:360)
         at com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:775)
         at com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:701)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:404)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:203)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:107)
         at com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:77)
         at com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
         at com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:155)
         at com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:300)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp$ServiceRunnable.run(SQEventListenerImp.java:230)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp.notifySQEvent(SQEventListenerImp.java:104)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQEventSource.notifyEvent(SQEventSource.java:212)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.notifyService(SQWrapperEventSource.java:353)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.run(SQWrapperEventSource.java:220)
         at com.ibm.servlet.engine.oselistener.outofproc.OutOfProcThread$CtlRunnable.run(OutOfProcThread.java:248)
         at java.lang.Thread.run(Thread.java:481)
    [02.01.29 19:42:09:741 EST] 5bedbab WebGroup A SRVE0092I: [Servlet LOG]: "Recursive Error: ": com.ibm.servlet.engine.webapp.WebAppErrorReport: No target servlet configured for uri: /tools/scmt/
         at com.ibm.servlet.engine.webapp.WebApp.sendError(WebApp.java:638)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:104)
         at com.ibm.servlet.engine.webapp.WebAppDispatcherResponse.sendError(WebAppDispatcherResponse.java:75)
         at com.sun.jsp.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:237)
         at com.sun.jsp.runtime.JspServlet.serviceJspFile(JspServlet.java:839)
         at com.sun.jsp.runtime.JspServlet.service(JspServlet.java:749)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:626)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:160)
         at com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:287)
         at com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:105)
         at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:360)
         at com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:775)
         at com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:701)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:404)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:203)
         at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:107)
         at com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:77)
         at com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
         at com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:155)
         at com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:300)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp$ServiceRunnable.run(SQEventListenerImp.java:230)
         at com.ibm.servlet.engine.oselistener.SQEventListenerImp.notifySQEvent(SQEventListenerImp.java:104)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQEventSource.notifyEvent(SQEventSource.java:212)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.notifyService(SQWrapperEventSource.java:353)
         at com.ibm.servlet.engine.oselistener.serverqueue.SQWrapperEventSource$SelectRunnable.run(SQWrapperEventSource.java:220)
         at com.ibm.servlet.engine.oselistener.outofproc.OutOfProcThread$CtlRunnable.run(OutOfProcThread.java:248)
         at java.lang.Thread.run(Thread.java:481)
    can any one suggest the root cause of this problem and solution for this .
    thank's in advance

    The root cause of this monster stack is buried in the middle:
    No target servlet configured for uri: /tools/scmt/

Maybe you are looking for

  • Macbook pro mid 2010 15" 16 GB ram upgrade possible?

    I recently purchased RAM from Crucial.com for 8 GB and after having researched a bit online I've heard of users upgrading to 16 GB.  Is this true?  Here are the specs of my cpu: MacBook Pro 15" Mid 2010 OSX Yosemite 10.10.1 Memory 8 GB 1067 MHz DDR3

  • How do i edit a saved document?

    how do I edit a saved document?

  • Trackpad unresponsive and button overly responsive

    I have this macbook for a little less than 2 years. I have recently installed leopard and everything was fine for awhile. Over the past few weeks the trackpad does not respond to clicking only movement (clicking is enabled in system prefs) and the tr

  • Address book duplicates icloud

    I just updated to the new 10.7.2 with iCLoud - now I get many duplicates in my address book and also in iCal (birthdays and events) How do I reset it so it doesn't keep updating duplicate contacts - I have done the Check For Duplicates and gone throu

  • When finder wakes... & other things.

    Can anyone direct me to an automator action or applescript/shell script that waits for finder to wake from sleep after it has been put to sleep? Here's the script I'm using to put it to sleep after a shell script puts it to sleep initially. display d