Servlets not running in weblogic 8.1

          Hello. I created a domain called "mydomain". I have configured a directory structure
          whose context is /Test and contains the following directories under it web-inf/classes.
          when i wrote a servlet named "ServletTest" under the package "com.test.servlets"
          and placed it under "web-inf/classes" directory. As the server is running on the
          port 7001, i requested the servlet from browser by issuing "http://localhost:7001/Test/ServleTest".
          For this i have writtent the <servlet-name>ServletTest<servlet-test>and<servlet-class>com.test.servlets.ServletTest</servlet-class>
          in the web.xml file. But i am getting the following message in the browser where
          i requested the servlet:
          "Error 404--Not Found
          From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
          10.4.5 404 Not Found
          The server has not found anything matching the Request-URI. No indication is given
          of whether the condition is temporary or permanent.
          If the server does not wish to make this information available to the client,
          the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code
          SHOULD be used if the server knows, through some internally configurable mechanism,
          that an old resource is permanently unavailable and has no forwarding address."
          Can any one help me to solve this problem, there by start running my servlets
          on Weblogic 8.1???
          Thank you,
          Chandra sekhar
          

          Please check your mappings definitions.
          You already defined the servlet class, but not the mapping for the URL.
          Jin
          "Chandrasekhar" <[email protected]> wrote:
          >
          >Hello. I created a domain called "mydomain". I have configured a directory
          >structure
          >whose context is /Test and contains the following directories under it
          >web-inf/classes.
          >when i wrote a servlet named "ServletTest" under the package "com.test.servlets"
          >and placed it under "web-inf/classes" directory. As the server is running
          >on the
          >port 7001, i requested the servlet from browser by issuing "http://localhost:7001/Test/ServleTest".
          >For this i have writtent the <servlet-name>ServletTest<servlet-test>and<servlet-class>com.test.servlets.ServletTest</servlet-class>
          >in the web.xml file. But i am getting the following message in the browser
          >where
          >i requested the servlet:
          >
          >"Error 404--Not Found
          >From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
          >10.4.5 404 Not Found
          >The server has not found anything matching the Request-URI. No indication
          >is given
          >of whether the condition is temporary or permanent.
          >
          >If the server does not wish to make this information available to the
          >client,
          >the status code 403 (Forbidden) can be used instead. The 410 (Gone) status
          >code
          >SHOULD be used if the server knows, through some internally configurable
          >mechanism,
          >that an old resource is permanently unavailable and has no forwarding
          >address."
          >
          >Can any one help me to solve this problem, there by start running my
          >servlets
          >on Weblogic 8.1???
          >
          >Thank you,
          >Chandra sekhar
          >
          >
          

Similar Messages

  • Urgent!! Servlet not running

    Hi friends,
    i have installed tomcat 4.1 in D:\Tomcat 4.1
    i created following directory structure,
    test directory under D:\Tomcat 4.1\webapps
    jsp and Web-inf are under test directory
    classes directory is under Web-inf
    then i added following line to server.xml
    <Context path="/test" docBase="test" debug="0" reloadable="true"
    crossContext="true"></Context>
    then i placed web.xml under Web-inf
    web.xml is
    <?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>
    <display-name>Test</display-name>
    <description>
    Test
    </description>
    <session-config>
    <session-timeout>30</session-timeout> <!-- session times out
    after 30 minutes -->
    </session-config>
    </web-app>
    After this i tried to access the servlet (HelloWorldExample) whose class file is stored in classes directory eith following url
    http://localhost:8080/test/servlet/HelloWorldExample
    And it gives me following error
    HTTP Status 404 - /test/servlet/HelloWorldExample
    type Status report
    message /test/servlet/HelloWorldExample
    description The requested resource (/test/servlet/HelloWorldExample) is not available.
    Apache Tomcat/4.1.18
    pls help me i m feeling frustrated, i am trying it for last 3 days
    --Bhupendra Mahajan[b]

    I uncommented the lines u said in global web.xml
    restarted server
    and yes, it is WEB-INF
    and i have started getting new error
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.util.MissingResourceException: Can't find bundle for base name LocalStrings, locale en_US
         at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:804)
         at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:694)
         at java.util.ResourceBundle.getBundle(ResourceBundle.java:538)
         at HelloWorldExample.doGet(HelloWorldExample.java:24)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
         at java.lang.Thread.run(Thread.java:536)
    Apache Tomcat/4.1.18
    what should i do next??
    --Bhupendra Mahajan

  • Applicaiton not running in weblogic

    hi,
    we are previously using Eclipse IDE for J2EE application with tomcat, we are planning to move to JDeveloper with Weblogic, but the application build-ed successfully but not getting deployed in the integrated weblogic server getting following error,
    we use to build the application using ANT and its manually get deployed in the weblogic server, but its not getting deployed in the Integrated server.
    Deployement error details are follow.
    <May 4, 2012 9:12:50 AM IST> <Error> <J2EE> <BEA-160197> <Unable to load descriptor C:\Users\parajend.ISLCH-1000\AppData\Roaming\JDeveloper\system11.1.2.1.38.60.81\o.j2ee\drs\FCSSI\Project1WebApp.war/WEB-INF/web.xml of module Project1WebApp.war. The error is weblogic.descriptor.DescriptorException: VALIDATION PROBLEMS WERE FOUND
    problem: cvc-complex-type.2.4a: Expected element 'filter-class@http://java.sun.com/xml/ns/javaee' instead of 'display-name@http://java.sun.com/xml/ns/javaee' here in element filter@http://java.sun.com/xml/ns/javaee:<null>
    problem: cvc-complex-type.2.4a: Expected elements 'servlet-class@http://java.sun.com/xml/ns/javaee jsp-file@http://java.sun.com/xml/ns/javaee' instead of 'display-name@http://java.sun.com/xml/ns/javaee' here in element servlet@http://java.sun.com/xml/ns/javaee:<null>
         at weblogic.descriptor.internal.MarshallerFactory$1.evaluateResults(MarshallerFactory.java:245)
         <May 4, 2012 9:12:50 AM IST> <Error> <HTTP> <BEA-101064> <[WebAppModule(FCSSI:FCSSI-Project1-context-root)] Error parsing descriptor in Web appplication "C:\Users\parajend.ISLCH-1000\AppData\Roaming\JDeveloper\system11.1.2.1.38.60.81\o.j2ee\drs\FCSSI\Project1WebApp.war"
    weblogic.application.ModuleException: VALIDATION PROBLEMS WERE FOUND
    problem: cvc-complex-type.2.4a: Expected element 'filter-class@http://java.sun.com/xml/ns/javaee' instead of 'display-name@http://java.sun.com/xml/ns/javaee' here in element filter@http://java.sun.com/xml/ns/javaee:<null>
    problem: cvc-complex-type.2.4a: Expected elements 'servlet-class@http://java.sun.com/xml/ns/javaee jsp-file@http://java.sun.com/xml/ns/javaee' instead of 'display-name@http://java.sun.com/xml/ns/javaee' here in element servlet@http://java.sun.com/xml/ns/javaee:<null>
         at weblogic.servlet.internal.WebAppModule.loadDescriptor(WebAppModule.java:1335)
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:372)
         at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:517)
         Truncated. see log file for complete stacktrace
    Caused By: weblogic.descriptor.DescriptorException: VALIDATION PROBLEMS WERE FOUND
    Regards,
    Paranthaman R

    Hi,
    seems hat i complains about the syntax you used in web.xml. When you say it works when deployed to a stand alone WLS, can you be more specific about the stand alone version and how you deploy the application to the integrated server ? Unless you used WLS 10.3.5 with the required patches I think that the deployment environment is not the same between your stand alone and the integrated server.
    Frank

  • Weblogic 6.1 sp2 , application which used to run on wl 6.1 sp1 does not run anymore

    Hi
    For some reason, my application 'portal' does not run on weblogic 6.1 sp2,
    It used to run fine on 6.1 sp1 .
    I am attaching the weblogic.log file with this msg.
    Thanks,
    Regards,
    Lalitha
    [weblogic6.1sp2logs.txt]

    Tobin is right, my apoplication is called "portal", I am not using WLPortal. Anyway,
    I managed to resolve my problem,I had sax2 , xp and xt parsers placed in the WEB-INF\lib
    directory of my application in addition to my own jar file. I removed the parsers
    , and now my application is running fine.
    It is strange though, since my application used to load and work flawlessly on
    weblogic 6 as well as weblogic 6.1 sp1 with the parsers in the lib directory....
    Anyhow, thanks a lot for the help.
    Regards,
    Lalitha
    "Tobin Paterson" <[email protected]> wrote:
    >
    Having applied WLS 6.1 sp2 upgrade today I am seeing the same fault.
    I am not using
    WL Portal. Also I think the original poster's application just happens
    to be called
    "portal" and is not using WL Portal.
    cheers,
    Tobin.
    "BEA Support" <[email protected]> wrote:
    Hello,
    Only WLCS and/or WLPS 3.5 sp 2 support WLS 6.1 sp 2
    WL Portal 4.0 support only WLS 6.1 sp 1.
    Regards,
    Developer Relations Engineer
    BEA Support
    "Lalitha" <[email protected]> a écrit dans le message de news:
    [email protected]..
    Hi
    For some reason, my application 'portal' does not run on weblogic
    6.1
    sp2,
    It used to run fine on 6.1 sp1 .
    I am attaching the weblogic.log file with this msg.
    Thanks,
    Regards,
    Lalitha

  • Servlets only running, not compileing

    Recently installed Tomcat on an old Win ME machine.
    The pre compiled servlet are running fine. However I am not able to compile any new ones.
    Anyone know what might be wrong?
    Thanks
    Andreas

    The error I am getting when trying to compile servlet
    'HelloWorld'
    (http://127.0.0.1:8080/servlet/HelloWorld)
    HTTP Status 404 - /servlet/HelloWorld
    type Status report
    message /servlet/HelloWorld
    description The requested resource
    (/servlet/HelloWorld) is not available.
    Apache Tomcat/4.1.24thanks
    AndreasThat is not trying to compile. That is trying to access. You must compile a servlet like you would a normal java class, using the javac or an ide.
    If you do not know how to do this, I suggest reading this: http://java.sun.com/docs/books/tutorial/index.html

  • Weblogic Startup Class does not run as Windows Service

    If you know the answer, plase send me an email at [email protected]
    I'm running a weblogic startup class that starts a Thread. I need to
    run a batch program that should be running as long as WebLogic is
    running (to process new orders).
    It works fine when I run WebLogic (5.1 SP8) from a script, but causes
    problem when I'm running it as a Windows Service. It calls the
    startup class, however, the startup class never spawns the Thread
    class.
    Following is excerpts from different components:
    =============================================================
    *** weblogic.properties ***
    weblogic.system.startupClass.pdfCreatorStart=WebLogicStartupPdfCreator
    *** WebLogicStartupPdfCreator.java ***
    public class WebLogicStartupPdfCreator implements T3StartupDef {
    public String startup(String name, Hashtable args) throws
    Exception {
    Thread t = new ProductionPdfBatchRunner();
    t.start();
    return "success";
    *** ProductionPdfBatchRunner.java ***
    public class ProductionPdfBatchRunner extends Thread {
    public void run() {
    try {
    //work being done here
    this.sleep(30000);
    catch (InterruptedException ie) {               
    catch(Exception e) {
    e.printStackTrace();
    =============================================================
    Thanks for any help

    Hi,
    Ok. Few suggestions.
    1. Can you review the SAP note:
    552286  Troubleshooting for the SAP Web Dispatcher
    2. When you said: "web dispatcher does not get started ", what error you got ? Can you be more details here ?
    3. Please check the trace file dev_webdisp" that generated in the work directory. If the log entries is not abvious, increase the trace level to 2 or 3, and reproduce and re-check the trace file.
    4. What is the output of the command "sapwebdisp -v"
    5. How about sapwebdisp.pfl ? Are those settings correct ?
    Hope this helps.
    Regards,
    Vincent

  • Weblogic 6.1 trial not running on win2k

    I installed WL 6.1 trial on my windows 2000 machine. When I run the default server it starts up but I cannot successfully access the "localhost:7001".
    The server is running but it doesn't seem to be listening for any requests.
    I've verified the port number. On netscape I get "connection reset by peer".
    Any ideas? Others on my team have installed the same version on the same OS without any problems.

    I have resolved the problem. It turns out that I have VPN (virtual private network) software on my machine that
    was causing the conflict. I have Aventail Connect 3.23 installed on my machine.
    I was experiencing the problem with Weblogic even when I did not have the software running.
    A colleague of mine mentioned that this software modifies the tcpip stack so it could have an effect
    even if its not running. I don't understand all the details but the important thing is that the server is now
    serving my requests.
    What I did to get it working was to go into the configuration for the software and java.exe and javaw.exe to the list of
    programs that should be not be "secured" by this software.
    The strange thing is that another person on my team does not experience the problem althoug he has the same software (same version) as I do. He did not need to
    make the change which I made.
    [email protected] wrote:
    Here is the output when I start the default server:
    C:\bea\wlserver6.1>set PATH=.\bin;C:\Borland\AppServer\bin;C:\Program Files\Vert
    ical Sky Client\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Utiliti
    es;C:\Program Files\IBM\Trace Facility;C:\Program Files\Personal Communications;
    C:\Notes;C:\IMNnq_NT;C:\Program Files\SQLLIB\BIN;C:\Program Files\SQLLIB\FUNCTIO
    N;C:\Program Files\SQLLIB\SAMPLES\REPL;C:\Program Files\SQLLIB\HELP;C:\Rational\
    common;C:\Rational\Rose\TopLink\;c:\jbuilder5\bin
    C:\bea\wlserver6.1>set CLASSPATH=.;.\lib\j2ee12.jar;.\lib\weblogic_sp.jar;.\lib\
    weblogic.jar
    C:\bea\wlserver6.1>echo off
    * To start WebLogic Server, use the password *
    * assigned to the system user. The system *
    * username and password must also be used to *
    * access the WebLogic Server console from a web *
    * browser. *
    C:\bea\wlserver6.1>"C:\bea\jdk131\bin\java" -hotspot -ms64m -mx64m -classpath .;
    .\lib\j2ee12.jar;.\lib\weblogic_sp.jar;.\lib\weblogic.jar -Dweblogic.Domain=mydo
    main -Dweblogic.Name=myserver "-Dbea.home=C:\bea" -Dweblogic.management.password
    = -Dweblogic.ProductionModeEnabled=true -Dweblogic.J2EE12OnlyModeEnabled=true "-
    Djava.security.policy==C:\bea\wlserver6.1/lib/weblogic.policy" weblogic.Server
    <Jan 30, 2002 10:20:41 AM EST> <Info> <Security> <Getting boot password from use
    r.>
    Enter password to boot WebLogic server:
    Starting WebLogic Server ....
    <Jan 30, 2002 10:20:49 AM EST> <Notice> <Management> <Loading configuration file
    .\config\mydomain\config.xml ...>
    <Jan 30, 2002 10:20:56 AM EST> <Notice> <WebLogicServer> <Starting WebLogic Admi
    n Server "myserver" for domain "mydomain">
    <Jan 30, 2002 10:21:04 AM EST> <Notice> <Management> <Starting discovery of Mana
    ged Server... This feature is on by default, you may turn this off by passing -D
    weblogic.management.discover=false>
    <Jan 30, 2002 10:21:24 AM EST> <Notice> <Management> <Application Poller not sta
    rted for production server.>
    <Jan 30, 2002 10:21:24 AM EST> <Notice> <WebLogicServer> <ListenThread listening
    on port 7001>
    <Jan 30, 2002 10:21:24 AM EST> <Notice> <WebLogicServer> <SSLListenThread listen
    ing on port 7002>
    <Jan 30, 2002 10:21:25 AM EST> <Notice> <WebLogicServer> <Started WebLogic Admin
    Server "myserver" for domain "mydomain" running in Production Mode>
    Michael Young wrote:
    Hi.
    Strange.
    Ok, one last thing to try. Try using the IP address of your win2k machine instead of localhost. If you don't know what that is you can run 'java utils.myip'
    after running setEnv.cmd to get it.
    If that works then there is some sort of network setup problem on your win2k box. If that doesn't work then please open a case with support.
    Thanks,
    Michael
    [email protected] wrote:
    Michael,
    thanks for your interest. I don't see any exceptions in the log files. The server is listening on port 7001 and port 7002 (secure). I have tried both
    netscape and
    internet explorer.
    Another test I tried resulted in the following:
    After starting the default server, I started the managed server (startManagedWebLogic.cmd). I entered the following command
    "startManagedWebLogic ms http://localhost:7001" at the command prompt.
    This is the exception that was thrown:
    Exception raised: weblogic.management.configuration.ConfigurationException:
    connecting
    to http://localhost:7001/wl_management_internal2/Bootstrap - with nested
    exception:
    [java.net.SocketException: Connection reset by peer: JVM_recv in socket
    input stream re
    ad]
    java.net.SocketException: Connection reset by peer: JVM_recv in socket input
    stream rea
    d
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:86)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:186)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:204)
    at
    weblogic.net.http.MessageHeader.parseHeader(MessageHeader.java:132)
    at weblogic.net.http.HttpClient.parseHTTP(HttpClient.java:280)
    at
    weblogic.net.http.HttpURLConnection.getInputStream(HttpURLConnection.java:28
    3)
    at
    java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:230)
    at weblogic.management.Admin.getBootstrapLocalServer(Admin.java:983)
    at weblogic.management.Admin.initialize(Admin.java:311)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:354)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:197)
    at weblogic.Server.main(Server.java:35)
    --------------- nested within: ------------------
    weblogic.management.configuration.ConfigurationException: connecting to
    http://localhost:7001/wl_management_internal2/Bootstrap - with nested exception:
    [java.net.SocketException: Connection reset by peer: JVM_recv in socket
    input stream re
    ad]
    at
    weblogic.management.Admin.getBootstrapLocalServer(Admin.java:1068)
    at weblogic.management.Admin.initialize(Admin.java:311)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:354)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:197)
    at weblogic.Server.main(Server.java:35)
    Reason: Fatal initialization exception
    Michael Young wrote:
    Hi.
    Are there any exceptions or errors in your log file? Does the log file show the server listening on port 7001 with a message something like:
    ####<Jan 25, 2002 1:49:14 PM CST> <Notice> <WebLogicServer> <jefferson> <myserver> <ListenThread> <system> <> <000202> <ListenThread listening on port
    7001>
    If your browser is set to go through a proxy try setting it to connect directly.
    Try another browser (ie) - do you get the same behavior?
    Regards,
    Michael
    tdhaliwal wrote:
    I installed WL 6.1 trial on my windows 2000 machine. When I run the default server it starts up but I cannot successfully access the "localhost:7001".
    The server is running but it doesn't seem to be listening for any requests.
    I've verified the port number. On netscape I get "connection reset by peer".
    Any ideas? Others on my team have installed the same version on the same OS without any problems.--
    Michael Young
    Developer Relations Engineer
    BEA Support
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Servlet does not run

    Hi, I have a servlet which I was developing in my local computer using Tomcat, then I had to upload the servlet in a server which is running Web Logic, I put the name of the serlet and the path of the class of the servlet location and still not running, also some of the libraries that I use in the servlet are already located in the lib directory of the server (WEB-INF\lib), any ideas?, thanks in advance.

    Hi, I asked to the server administrator if they have to restart the server in order to run new servlets and he said that no, these are the entries that I have:
    <servlet>
    <servlet-name>GanttChart</servlet-name>
    <servlet-class>com.gepower.gees.gms.times.GanttChart</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>GanttChart</servlet-name>
    <url-pattern>/servlet/GanttChart</url-pattern>
    </servlet-mapping>
    I don't know what's going wrong, any ideas?, thanks.

  • Can not run the test form using servlet (patch 8)

    Installed 9I AS 1.0.2.2.1 and forms patch 8 on Windows 2000.
    Configured the Forms Listener Servlet by following the white paper "Forms 6i Patch 8: Oracle Forms Listener Servlet for Deployment of Forms on the Internet".
    I can get the page titled Forms 6i Listener Servlet using URL: http://myserver/servlet/oracle.forms.servlet.ListenerServlet.
    However, I can not run the test form using the servlet by the url:
    http://myserver/servlet/f60servlet?config=servlet. In the formsweb.cfg file I also added a section
    [servlet]
    serverURL=/servlet/oracle.forms/servlet.ListenerServlet
    No meaningful error message. At first it seems very slow, and then shows the "The page can not be displayed" page.
    Please advise.
    Thanks.

    u must add "Script Alias ifcgi60 "$ORACLE_HOME/forms60/cgi" in confirguration.

  • How can i know the servlet is running or not?

    Hi all,
           I have a doubt regarding servlet. I created one servlet and deployed in server. Now i called (RUN) the servlet from the browser. And it is running. Now can i know that the servlet is running or not in the server without seeing in the browser. Can we know the status of the servlet with its URL in the server whether it is running or not?
             Let me explain my problem. In my servlet it will run continously read one table and  do some operation depending on the entries in that table. Now i called the servlet from the browser. After some time i closed the browser. If browser is there i can know whether servlet is running or not. But now how can i know that servlet is running or not. Becoz eventhough we closed the browser the servlet will run in the background. How can i achieve this?
    Thanks and Regards,
    VJR.

    Hi!
    With first call, the servlet will be loaded, and it remains so until server-shutdown, but you need a timer-mechanism execute method calls continuously.
    Regards,
    Thomas

  • Servlet File Not running on Server

    Hi All,
    I have a servlet file named "TestServlet", when I run this file(http://mydomain.com/TestServlet) on server it won't run, but its running on my local machine. Am using Tomcat 5.5.9 and jdk1.5.0_05 and Server configuration also same as my local machine configuration. Please! let me know any suggestion that why its not running on server machine.
    *1. web.xml is:*
    <?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>
        <display-name>My Servlet</display-name>
        <description>
          My Test Servlet
        </description>
        <servlet>
            <servlet-name>TestServlet</servlet-name>
            <servlet-class>com.test.TestServlet</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>TestServlet</servlet-name>
            <url-pattern>/TestServlet</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-list>
    </web-app>*2. TestServlet.java file is:*
    package com.test;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class TestServlet extends HttpServlet
         public void doPost (HttpServletRequest req, HttpServletResponse response)throws ServletException, IOException
              * Set the content type(MIME Type) of the response.
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              * Write the HTML to the response
              out.println("<html>");
              out.println("<head>");
              out.println("<title> A very simple servlet example</title>");
              out.println("</head>");
              out.println("<body>");
              out.println("<h1>Welcome To TestServlet</h1>");
              out.println("</body>");
              out.println("</html>");
              out.close();
        public void doGet(HttpServletRequest request, HttpServletResponse response)
        throws IOException, ServletException
            doPost(request, response);
    }Thanks in Advance,
    Prasath Arjunan.

    PrasathArjunan wrote:
    Yes, I can run my JSPs on my server without any error,
    I don't know which port it has listening in my Server(Tomcat),
    My server also have installed Apache HTTP server and my application is under ROOT directory only.If you don't know then it is most likely the default 8080 port.
    I ask because in your url example you do not provide a port number, so requests are going to port 80. If you have Apache HTTP running there then you must have a connector installed in Apache HTTP that forwards requests to Tomcat? Because then I'd say the mappings are not entirely correct and servlet requests do not reach Tomcat. Post the connector configuration if you are using one.

  • Servlet is not running in a diffrent environment

    hi friends, until the web environment was there inside $CATLINA_HOME/webapps/ say myapps, every thing was working fine say servlets and jsps were running successfully. but now, when I changed the web environment to a different drive say E:\java\*myapps*, the html and jsp are working fine but servlet only is not running while throwing the error code 404
    requested resource /OnlineExam/servlet/myclass is not found.
    it sounds surprising as only after changing the drive it is not working.
    all the formalities I have done as it is shown from the successful run of html, jsp pages from that environment. and yes!, the required mappings are also done.
    here is tomcat 5.5.17 and used url for servlet is http://localhost/myapps/servlet/myclass
    any thing yet to do?

    I was thinking too that it must be a web.xml issue, sorry i didn't post it before though.
    here it is
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app 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">
        <context-param>
            <param-name>com.sun.faces.verifyObjects</param-name>
            <param-value>false</param-value>
        </context-param>
        <context-param>
            <param-name>com.sun.faces.validateXml</param-name>
            <param-value>true</param-value>
        </context-param>
        <context-param>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>client</param-value>
        </context-param>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
            </servlet>
        <servlet>
            <servlet-name>RegistrationData</servlet-name>
            <servlet-class>RegistrationData</servlet-class>
        </servlet>
        <servlet>
            <servlet-name>NewServlet</servlet-name>
            <servlet-class>NewServlet</servlet-class>
        </servlet>
        <servlet>
            <servlet-name>Storeimage</servlet-name>
            <servlet-class>Storeimage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>/faces/*</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>RegistrationData</servlet-name>
            <url-pattern>/RegistrationData</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>NewServlet</servlet-name>
            <url-pattern>/NewServlet</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>Storeimage</servlet-name>
            <url-pattern>/Storeimage</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
         <welcome-file>
                index.jsp
            </welcome-file>
        </welcome-file-list>
    </web-app>

  • Not running in a servlet

    Actually...I used the Multivalent Browser tool for reading the pdf file by my program....run it in a unix server....the program is running very well as a java program....When i convert it into servlet and run it ina apache jserv it will give the error like
    [13/06/2003 14:25:48:394 IST] java.lang.NoClassDefFoundError
    at multivalent.Document.<init>(Document.java:206)
    at multivalent.Document.<init>(Document.java:218)
    at servlet.filecontext4.extract(filecontext4.java:33)
    at servlet.filecontext4.doGet(filecontext4.java:130)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:271)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:311)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:317)
    at org.apache.jserv.JServConnection.run(JServConnection.java:188)
    at java.lang.Thread.run(Thread.java:536)
    Is there any problem in classpath....or any problem withh X11 window....
    or anything......
    Reply me...
    thanx a lot....

    Thnx for the rply...
    actualy i set a correct classpath in apache jserv...
    like
    wrapper.classpath=/var/www/html/med/java/Multivalent.jar......
    Is there anything

  • User could not login in Weblogic Server 8.1

    I have J2EE application running on Weblogic Server 8.1. When over 30 user concurrently logins into and use the system. My server was stucked.
    Here is the thread dump that I got.
    "Thread-1495" daemon prio=10 tid=048e09f0 nid=1693 lwp_id=7336247 runnable [0x29cfd000..0x29cfd4f0]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:134)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         - locked <6a4471c8> (a java.io.BufferedInputStream)
         at com.sun.jndi.ldap.Connection.run(Connection.java:780)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-993" daemon prio=10 tid=05709df8 nid=1157 lwp_id=7157855 runnable [0x2a60f000..0x2a60f4f0]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:134)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         - locked <420c6730> (a java.io.BufferedInputStream)
         at com.sun.jndi.ldap.Connection.run(Connection.java:780)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-15" daemon prio=10 tid=03d54cb8 nid=94 lwp_id=6756937 runnable [0x2a50d000..0x2a50d4f0]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:134)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         - locked <382eafa8> (a java.io.BufferedInputStream)
         at com.sun.jndi.ldap.Connection.run(Connection.java:780)
         at java.lang.Thread.run(Thread.java:534)
    "LDAPConnThread-1 ldap://uswdhsd0mfg01.wdh.mfg.com:389" daemon prio=10 tid=03d54718 nid=89 lwp_id=6756903 runnable [0x2a792000..0x2a7924f0]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:134)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
         - locked <37e7de20> (a java.io.BufferedInputStream)
         at netscape.ldap.ber.stream.BERElement.getElement(BERElement.java:101)
         at netscape.ldap.LDAPConnThread.run(LDAPConnThread.java:538)
         at java.lang.Thread.run(Thread.java:534)
    "ExecuteThread: '14' for queue: 'JmsDispatcher'" daemon prio=10 tid=01317c48 nid=88 lwp_id=6756392 in Object.wait() [0x2a813000..0x2a8134f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7dea0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7dea0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '13' for queue: 'JmsDispatcher'" daemon prio=10 tid=01317ae0 nid=87 lwp_id=6756390 in Object.wait() [0x2a894000..0x2a8944f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7df20> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7df20> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '12' for queue: 'JmsDispatcher'" daemon prio=10 tid=01317978 nid=86 lwp_id=6756389 in Object.wait() [0x2a915000..0x2a9154f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7dfa0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7dfa0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '11' for queue: 'JmsDispatcher'" daemon prio=10 tid=01317810 nid=85 lwp_id=6756388 in Object.wait() [0x2a996000..0x2a9964f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e020> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e020> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '10' for queue: 'JmsDispatcher'" daemon prio=10 tid=013176a8 nid=84 lwp_id=6756387 in Object.wait() [0x2aa17000..0x2aa174f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e0a0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e0a0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '9' for queue: 'JmsDispatcher'" daemon prio=10 tid=01317540 nid=83 lwp_id=6756385 in Object.wait() [0x2aa98000..0x2aa984f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e120> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e120> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '8' for queue: 'JmsDispatcher'" daemon prio=10 tid=013173d8 nid=82 lwp_id=6756384 in Object.wait() [0x2ab19000..0x2ab194f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e1a0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e1a0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '7' for queue: 'JmsDispatcher'" daemon prio=10 tid=01317270 nid=81 lwp_id=6756383 in Object.wait() [0x2ab9a000..0x2ab9a4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e220> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e220> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '6' for queue: 'JmsDispatcher'" daemon prio=10 tid=01317108 nid=80 lwp_id=6756382 in Object.wait() [0x2ac1b000..0x2ac1b4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e2a0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e2a0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '5' for queue: 'JmsDispatcher'" daemon prio=10 tid=01316fa0 nid=79 lwp_id=6756380 in Object.wait() [0x2ac9c000..0x2ac9c4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e320> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e320> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '4' for queue: 'JmsDispatcher'" daemon prio=10 tid=01316e38 nid=78 lwp_id=6756379 in Object.wait() [0x2ad1d000..0x2ad1d4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e3a0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e3a0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '3' for queue: 'JmsDispatcher'" daemon prio=10 tid=01316cd0 nid=77 lwp_id=6756378 in Object.wait() [0x2ad9e000..0x2ad9e4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e420> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e420> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '2' for queue: 'JmsDispatcher'" daemon prio=10 tid=01316b68 nid=76 lwp_id=6756377 in Object.wait() [0x2ae1f000..0x2ae1f4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e4a0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e4a0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '1' for queue: 'JmsDispatcher'" daemon prio=10 tid=01316a00 nid=75 lwp_id=6756376 in Object.wait() [0x2aea0000..0x2aea04f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e520> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e520> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '0' for queue: 'JmsDispatcher'" daemon prio=10 tid=01316898 nid=74 lwp_id=6756375 in Object.wait() [0x2af21000..0x2af214f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <37e7e5a0> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <37e7e5a0> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=04d0a2c8 nid=73 lwp_id=6756285 waiting for monitor entry [0x2afa2000..0x2afa24f0]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:93)
         - waiting to lock <37e7e6a0> (a java.lang.String)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=04d0a160 nid=72 lwp_id=6756284 waiting for monitor entry [0x2b023000..0x2b0234f0]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:93)
         - waiting to lock <37e7e6a0> (a java.lang.String)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=04d09ff8 nid=71 lwp_id=6756283 runnable [0x2b0a4000..0x2b0a44f0]
         at weblogic.socket.PosixSocketMuxer.poll(Native Method)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:100)
         - locked <37e7e6a0> (a java.lang.String)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    "SSLListenThread.Default" prio=10 tid=0004ad68 nid=70 lwp_id=6756281 runnable [0x2b125000..0x2b1254f0]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
         - locked <3804edd0> (a java.net.PlainSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:454)
         at javax.net.ssl.impl.SSLServerSocketImpl.accept(Unknown Source)
         at weblogic.t3.srvr.ListenThread.accept(ListenThread.java:735)
         at weblogic.t3.srvr.ListenThread.run(ListenThread.java:301)
    "ListenThread.Default" prio=10 tid=0004aed0 nid=69 lwp_id=6756280 runnable [0x2b1a6000..0x2b1a64f0]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
         - locked <3804ef60> (a java.net.PlainSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:454)
         at java.net.ServerSocket.accept(ServerSocket.java:425)
         at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:26)
         at weblogic.t3.srvr.ListenThread.accept(ListenThread.java:735)
         at weblogic.t3.srvr.ListenThread.run(ListenThread.java:301)
    "ExecuteThread: '5' for queue: 'JMS.TimerClientPool'" daemon prio=10 tid=03d545b0 nid=68 lwp_id=6756092 in Object.wait() [0x2b227000..0x2b2274f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <373eee00> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '4' for queue: 'JMS.TimerClientPool'" daemon prio=10 tid=03d54448 nid=67 lwp_id=6756091 in Object.wait() [0x2b2a8000..0x2b2a84f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <373eee80> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <373eee80> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '3' for queue: 'JMS.TimerClientPool'" daemon prio=10 tid=03d542e0 nid=66 lwp_id=6756090 in Object.wait() [0x2b329000..0x2b3294f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <373eef00> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <373eef00> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '2' for queue: 'JMS.TimerClientPool'" daemon prio=10 tid=03d54178 nid=65 lwp_id=6756089 in Object.wait() [0x2b3aa000..0x2b3aa4f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <373eef80> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '1' for queue: 'JMS.TimerClientPool'" daemon prio=10 tid=03d54010 nid=64 lwp_id=6756088 in Object.wait() [0x2b42b000..0x2b42b4f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <373ef000> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '0' for queue: 'JMS.TimerClientPool'" daemon prio=10 tid=03d53ea8 nid=63 lwp_id=6756087 in Object.wait() [0x2b4ac000..0x2b4ac4f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <373ef080> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "Thread-12" daemon prio=10 tid=0004aa98 nid=62 lwp_id=6755929 in Object.wait() [0x2b52d000..0x2b52d4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <36bf4728> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <36bf4728> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "Thread-11" daemon prio=10 tid=0004a930 nid=61 lwp_id=6755754 in Object.wait() [0x2b5ae000..0x2b5ae4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <36192610> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <36192610> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" daemon prio=10 tid=0004a7c8 nid=60 lwp_id=6755743 in Object.wait() [0x2b62f000..0x2b62f4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <361926d8> (a weblogic.jms.backend.BETimerTree)
         at weblogic.jms.backend.BETimerTree.execute(BETimerTree.java:146)
         - locked <361926d8> (a weblogic.jms.backend.BETimerTree)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
    "Thread-10" prio=10 tid=0004a660 nid=59 lwp_id=6755736 in Object.wait() [0x2b6b0000..0x2b6b04f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <36192768> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <36192768> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "Thread-9" prio=10 tid=0004a4f8 nid=58 lwp_id=6755732 in Object.wait() [0x2b731000..0x2b7314f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <36192808> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <36192808> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "Thread-8" prio=10 tid=0004a390 nid=57 lwp_id=6755728 in Object.wait() [0x2b7b2000..0x2b7b24f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <361928a8> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <361928a8> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "Thread-7" prio=10 tid=0004a228 nid=56 lwp_id=6755724 in Object.wait() [0x2b833000..0x2b8334f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <36192948> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <36192948> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "Thread-6" prio=10 tid=0004a0c0 nid=55 lwp_id=6755710 in Object.wait() [0x2b8b4000..0x2b8b44f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <361929e8> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <361929e8> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "weblogic.health.CoreHealthMonitor" daemon prio=8 tid=00049f58 nid=54 lwp_id=6755657 waiting on condition [0x2b935000..0x2b9354f0]
         at java.lang.Thread.sleep(Native Method)
         at weblogic.t3.srvr.CoreHealthMonitorThread.run(CoreHealthMonitorThread.java:163)
    "Thread-5" prio=10 tid=00049df0 nid=53 lwp_id=6755629 in Object.wait() [0x2b9b6000..0x2b9b64f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <36192b48> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <36192b48> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "LDAPConnThread-0 ldap://uswdhsd0mfg01.wdh.mfg.com:389" daemon prio=10 tid=00049c88 nid=52 lwp_id=6755613 runnable [0x2ba37000..0x2ba374f0]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:134)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
         - locked <36193420> (a java.io.BufferedInputStream)
         at netscape.ldap.ber.stream.BERElement.getElement(BERElement.java:101)
         at netscape.ldap.LDAPConnThread.run(LDAPConnThread.java:538)
         at java.lang.Thread.run(Thread.java:534)
    "VDE Transaction Processor Thread" prio=10 tid=00049b20 nid=50 lwp_id=6755590 in Object.wait() [0x2bb39000..0x2bb394f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <35ea90b8> (a com.octetstring.vde.backend.standard.TransactionProcessor)
         at java.lang.Object.wait(Object.java:429)
         at com.octetstring.vde.backend.standard.TransactionProcessor.waitChange(TransactionProcessor.java:365)
         - locked <35ea90b8> (a com.octetstring.vde.backend.standard.TransactionProcessor)
         at com.octetstring.vde.backend.standard.TransactionProcessor.run(TransactionProcessor.java:212)
    "ExecuteThread: '2' for queue: 'weblogic.admin.RMI'" daemon prio=10 tid=000499b8 nid=49 lwp_id=6755570 in Object.wait() [0x2bbba000..0x2bbba4f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <35ea9138> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '1' for queue: 'weblogic.admin.RMI'" daemon prio=10 tid=00049850 nid=48 lwp_id=6755567 in Object.wait() [0x2bc3b000..0x2bc3b4f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <35ea91b8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '0' for queue: 'weblogic.admin.RMI'" daemon prio=10 tid=000496e8 nid=47 lwp_id=6755566 in Object.wait() [0x2bcbc000..0x2bcbc4f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <35ea9238> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '1' for queue: 'weblogic.admin.HTTP'" daemon prio=10 tid=00049580 nid=46 lwp_id=6755565 in Object.wait() [0x2bd3d000..0x2bd3d4f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <35ea92b8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'" daemon prio=10 tid=00049418 nid=45 lwp_id=6755564 in Object.wait() [0x2bdbe000..0x2bdbe4f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <35ea9338> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "weblogic.security.SpinnerRandomSource" daemon prio=10 tid=000492b0 nid=44 lwp_id=6755557 in Object.wait() [0x2be3f000..0x2be3f4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <35ea9400> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.security.SpinnerRandomBitsSource.run(SpinnerRandomBitsSource.java:60)
         - locked <35ea9400> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "weblogic.time.TimeEventGenerator" daemon prio=10 tid=00049148 nid=43 lwp_id=6755555 in Object.wait() [0x2bec0000..0x2bec04f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <35ea9470> (a weblogic.time.common.internal.TimeTable)
         at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:285)
         - locked <35ea9470> (a weblogic.time.common.internal.TimeTable)
         at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:118)
         at java.lang.Thread.run(Thread.java:534)
    "ExecuteThread: '4' for queue: 'weblogic.kernel.System'" daemon prio=10 tid=00048fe0 nid=42 lwp_id=6755554 in Object.wait() [0x2bf41000..0x2bf414f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <35ea94e8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '3' for queue: 'weblogic.kernel.System'" daemon prio=10 tid=00048e78 nid=41 lwp_id=6755553 in Object.wait() [0x2bfc2000..0x2bfc24f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <35ea9568> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '2' for queue: 'weblogic.kernel.System'" daemon prio=10 tid=00048d10 nid=40 lwp_id=6755552 in Object.wait() [0x2c043000..0x2c0434f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <35ea95e8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '1' for queue: 'weblogic.kernel.System'" daemon prio=10 tid=00048ba8 nid=39 lwp_id=6755551 in Object.wait() [0x2c0c4000..0x2c0c44f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <35ea9668> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '0' for queue: 'weblogic.kernel.System'" daemon prio=10 tid=00048a40 nid=38 lwp_id=6755549 in Object.wait() [0x2c145000..0x2c1454f0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:154)
         - locked <35ea96e8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:174)
    "ExecuteThread: '24' for queue: 'weblogic.kernel.Default'" daemon prio=10 tid=000488d8 nid=37 lwp_id=6755548 in Object.wait() [0x2c1c8000..0x2c1c64f0]
         at java.lang.Object.wait(Native Method)
         at com.sun.jndi.ldap.Connection.readReply(Connection.java:418)
         - locked <3955e608> (a com.sun.jndi.ldap.LdapRequest)
         at com.sun.jndi.ldap.LdapClient.getSearchReply(LdapClient.java:701)
         at com.sun.jndi.ldap.LdapClient.search(LdapClient.java:624)
         at com.sun.jndi.ldap.LdapCtx.doSearch(LdapCtx.java:1947)
         at com.sun.jndi.ldap.LdapCtx.searchAux(LdapCtx.java:1809)
         at com.sun.jndi.ldap.LdapCtx.c_search(LdapCtx.java:1734)
         at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_search(ComponentDirContext.java:368)
         at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCompositeDirContext.java:328)
         at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(PartialCompositeDirContext.java:313)
         at javax.naming.directory.InitialDirContext.search(InitialDirContext.java:238)
         at com.mmgmsse.security.commons.ldap.update.LdapOperations.searchLdap(LdapOperations.java:350)
         at com.mgmse.security.commons.ldap.BasicLdapSecurityComponent.search(BasicLdapSecurityComponent.java:975)
         at com.mgmse.security.commons.ldap.BasicLdapSecurityComponent.getGroupRoles(BasicLdapSecurityComponent.java:1646)
         at com.mgmse.security.commons.ldap.BasicLdapSecurityComponent.getGroupsRoles(BasicLdapSecurityComponent.java:1599)
         at com.mgmse.security.commons.ldap.BasicLdapSecurityComponent.getAllGroupsAttributes(BasicLdapSecurityComponent.java:1051)
         at com.mgmse.security.commons.ldap.bd.SecurityAdministrationDelegate.getGroupsAndRoles(SecurityAdministrationDelegate.java:110)
         at com.mgmse.security.presentation.util.SecurityResourceHelper.getAllUserAssignedRoles(SecurityResourceHelper.java:458)
         at jsp_servlet._templates.__menulayout._jspService(__menulayout.java:434)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:638)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:423)
         at org.apache.struts.action.RequestProcessor.doInclude(RequestProcessor.java:1099)
         at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:272)
         at org.apache.struts.tiles.TilesRequestProcessor.processTilesDefinition(TilesRequestProcessor.java:254)
         at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:309)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:638)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:423)
         at org.apache.struts.action.RequestProcessor.doInclude(RequestProcessor.java:1099)
         at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:272)
         at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:320)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:638)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:423)
         at org.apache.struts.action.RequestProcessor.doInclude(RequestProcessor.java:1099)
         at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:272)
         at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:320)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.str

    Thread dump gives hint that socket connections between Weblogic and LDAP became unreponsive.
    Would suggest following
    o Restart Weblogic Server
    o Monitor LDAP server for potential long running ldap search queries.
    If above doesn't help, do netstat -a for more details about socket connections. It may help to understand if network communication is an issue or not. Involve n/w engineer if it needs.

  • My file upload java application working fine in tomcat 7  but not working in weblogic 11

    Hi All,
    My  file upload  java application  successfully run in tomcat 7 . But  I could not run it in Weblogic 11.   Getting following error message   . Please help.
    Please contact your administrator.org.springframework.beans.NullValueInNestedPathException: Invalid property &#039;fileData[0]&#039; of bean class [com.techm.util.UploadItem]: Cannot access indexed value in property referenced in indexed property path &#039;fileData[0]&#039;: returned null
      at org.springframework.beans.BeanWrapperImpl.setPropertyValue(BeanWrapperImpl.java:681)
      at org.springframework.beans.BeanWrapperImpl.setPropertyValue(BeanWrapperImpl.java:651)
      at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:78)
      at org.springframework.validation.DataBinder.applyPropertyValues(DataBinder.java:587)
      at org.springframework.validation.DataBinder.doBind(DataBinder.java:489)
      at org.springframework.web.bind.WebDataBinder.doBind(WebDataBinder.java:149)
      at org.springframework.web.bind.ServletRequestDataBinder.bind(ServletRequestDataBinder.java:110)
      at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter$ServletHandlerMethodInvoker.doBind(AnnotationMethodHandlerAdapter.java:566)
      at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.resolveHandlerArguments(HandlerMethodInvoker.java:213)
      at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:132)
      at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:326)
      at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:313)
      at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875)
      at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:807)
      at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571)
      at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:511)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    What version of spring are you using in tomcat?
    What version of WLS are you using.
    What JDK are you using in both environments?
    Is the issue random? or can you reproduce it at will?
    Thanks
    Luz

Maybe you are looking for

  • I lost the menu/toolbar at top of Firefox window. No 'File', 'Bookmarks' etc. How do I restore it?

    I was trying to find the Edit Options button referred to in the ADOBE READER INSTALLATIONS INSTRUCTIONS FOR MOZILLA FIREFOX, and clicked on the first toolbar listed under the Tools button I think, because I did not see what the instructions were sayi

  • I can no longer add an attachment to my e-mails while in Firefox, but am able to when using Safari. Why?

    I use FF 22.0 on my iMac (OS 10.6.8). Within the last day or so I can no longer add attachments to my att webmail emails while using FF - - doesn't matter what kind of file. Adding attachments to my att webmail using Safari works just fine. I prefer

  • No option to turn on cellular calls

    I have upgraded to Yosemite and have iOS 8 on my iPhone 5S. The option for iPhone cellular calls has been turn on my iPhone, but when i go to FaceTime > Preferences there is no option to turn on cellular calls like man of the instructions guide state

  • Application Error : Monty Thread 10 in Nokia 6600

    hai I Application accessing Http connections and using RecordStores ,its Working fine in nokia series 60 emulator , but when i am trying to work with nokia 6600 i got an error message Application Error : Monty Thread 10 Any one can help me regarding

  • Split Audio from Video?

    I am trying to edit a video and is there a way that I can cut out video and move it to another location in the timeline WITHOUT touching the audio?  Whenever I use the razor tool to cut out video, it splits the audio as well.  How do I move video aro