How to get Dowload servlet logs (JNLP logs)

I need to get all the runtime exceptions and logs while downloading the application data from server site.
How can I do that.
I tried by writing the below code in the web.xml but it doesn't work -
<servlet>
<servlet-name>JnlpDownloadServlet</servlet-name>
<servlet-class>jnlp.sample.servlet.JnlpDownloadServlet</servlet-class>
<init-param>
     <param-name>
     logLevel
     </param-name>
     <param-value>
     DEBUG
     </param-value>
     </init-param>
     <init-param>
     <param-name>
     logPath
     </param-name>
     <param-value>
     /logs/jnlpdownloadservlet.log
     </param-value>
     </init-param>
</servlet>
Please help me.

992968 wrote:
Hello,
Thank you for the quick response.
Like, we see the log messages with "tail -f /var/log/messages", is there anything like this to get a continuous log messages?or only LogMiner tool is the way to see the archived log messages?
Thanks & Regards.I think you are confusing the archivelogs (which is what you are showing us) with the alert log.
The archivelog is used to recover the database.
The alert log is where the database writes its run-time "console" messages. It is found in the directory specified by the background_dump_dest initialization parameter and is named "alert<$ORACLE_SID>.log. It can be read by any text editor.
Edited by: EdStevens on Mar 19, 2013 8:43 AM

Similar Messages

  • How to get the manageserver thread_dump in logs

    Hi,
    i tried to get the thread_dump in logs.But i am not able to do that.i am getting thread_dumps in console only.
    Could you please let me know how to get the manageservers thraed_dumps in log files.
    Regards
    Madhu

    Hi,
    try kill -7 command to take the thread dump you need to provide PID of the admin server as an parameter in the command, for example Admin server pic is 1045 the command will be:
    kill -7 1045 > Adminthreaddump
    This command will create Adminthreaddump file with the complete admin server dump.
    Regards
    Veer

  • How to get javax.servlet package

    Hi guys
    Does anybody know how to get javax.servlet package?
    Thanks in advance.
    Regards,
    Mark.

    I just moved the servlet jar into java_home/jre/lib/ext and I made some progress. Instead I recieved this error
    ---------- Javac ----------
    Note: C:\jdk1.3.1_04\bin\java\lang\ThreadGroup.java uses or overrides a deprecated API.
    Note: Recompile with -deprecation for details.
    Normal Termination
    Output completed (17 sec consumed).
    DOes anyone have an idaea of what would cause this when it had compiled normally before?
    THanks Bruce

  • How to get the information of the log related to t.code generated by basis.

    In the log generated by the basis personnel we found the details of user and corresponding t.code used details.  How to get the information reg. which document he went into using this t.code? For example me29 t.code used by 'x' user.  The log is showing time date t.code and user.  By using me29n which document he attended is the requirement. How to get this information. Let me know it pl.
    TS

    Thanks all for the help.
    Here is my solution. A mix from Julian and Thomas.
    In future I will encapsulate the code in a function module.
    DATA: BEGIN OF usr_tabl OCCURS 10.
            INCLUDE STRUCTURE uinfo.
    DATA: END OF usr_tabl.
    DATA: th_opcode(1) TYPE x.
    DATA: LV_TID LIKE  SY-INDEX.
    CONSTANTS: opcode_list LIKE th_opcode VALUE 2.
    CALL 'ThUsrInfo' ID 'OPCODE' FIELD opcode_list
      ID 'TAB' FIELD usr_tabl-sys.
    CALL FUNCTION 'TH_USER_INFO'
      EXPORTING
        CLIENT = sy-mandt
        USER   = sy-uname
      IMPORTING
        TID    = LV_TID.
    read table usr_tabl with key tid = lv_tid.
    IF sy-subrc = 0.
      CASE usr_tabl-type.
        WHEN 2.
          write :/ usr_tabl-type, 'SYSTEM'." (system)
        WHEN 4.
          write :/ usr_tabl-type, 'GUI'." (Gui)
        WHEN 32.
          write :/ usr_tabl-type, 'RFC'."(RFC)
        WHEN 202.
          write :/ usr_tabl-type, 'PLUG-IN'." (Plug-in &).
      endcase.
    ENDIF.

  • How to get the Capability of the Logged In User

    Hi All,
    I am trying to get the Capabilities of the logged in user, but iam only getting the capabilities of the "Configurator" irrespective of who has logged in.
    I am using the following code.
    <Field name='Capability'>
    <Display class='Label'/>
    <Default>
    <invoke name='getCapabilities' class='com.waveset.ui.FormUtil'>
    <ref>:display.session</ref>
    </invoke>
    </Default>
    </Field>
    Iam using Sun IDM 5.0 with Service Pack 4. Before service pack was installed i was getting the correct result. Now iam not getting the result after the service pack is installed.
    What might be the issue ?
    Can anyone guide me on this.
    Thanks in Advance.
    Regards,
    Siva

    hi danareed
    Could you post the code to do that?, I'm trying to get the capabilitites for Any given user from the WSObject getting the AdminGroups, but I'm unable to get the capabilities from this object, what I get is an array of AdminGroup objects, how I can get the capabilities from here?
    <get>
    <invoke name='getObjectIfExists'>
              <select>
                <ref>context</ref>
                <ref>given_context</ref>
                <ref>:display.session</ref>
                <invoke name='getLighthouseContext'>
                  <ref>WF_CONTEXT</ref>
                </invoke>
              </select>
              <s>User</s>
    <s>myUser</s>
    </invoke>
    <s>AdminGroups</s>
    </get>thanks
    Edgar Torres

  • How to get "Current" Room RoomID for logged user ?

    Hi everyone
    Does someone here knows how to get the <i>current</i> <b>RoomID</b> of the Room the user has <u>'open'</u> from a java WebDynpro view ?
    I know I can get the list of rooms for the logged user, but I don't know how to get the <u>open/current</u> room for that user, for querying the roomid in the wdp view after that...
    Thanks
    Best regards
    Manuel
    ps. Sorry for my english, I hope you all understand me...

    Hi,
    I have the same problem, has you solved it? How?
    Thanks in advance,
    Regards,

  • How to get the Role of the logged in User?

    Hi All,
    Enclosed below is the code am trying to use to get the role for a logged in portal user. But it fails
    1. Due to class path errors although I have imported the necessary jar files.
    2. Am unable to invoke/find getSAPUser() method or invoke the UMFactory.
    Iterator rit = null;
    IWDClientUser clientUser = WDClientUser.getCurrentUser();
    IUser user = clientUser.getSAPUser();
    rit = user.getRoles(true);
    IRoleFactory rfact = UMFactory.getRoleFactory();
    while (rit.hasNext()) {
    String roleName = (String) rit.next();
    IRole role = rfact.getRole(roleName);
    wdContext.currentContextElement().setRole(role);
    What could be the problem and what are the jars that need to imported as I am using EP7.0
    Thanks for all your help in advance.
    Best regards,
    Divya

    Hi Divya,
    Add WD_RUNTIME/com.sap.security/lib/com.sap.security.api.jar to your project`s java build path.
    Best regards, Maksim Rashchynski.

  • How to get the currency of the logged in user using an el expression

    I want to get the currency of the logged in user using an el expression. I can get the same using ApplSessionUtil.getCurrency(). But can i get the same using an el exprssion?. I want to use this el expression for setting the default value of a VO attriubte
    Thanks in advance

    Hi
    If you are getting the currency value from ApplSessionUtil.getCurrency() set the result of the value to one of your VO on Bean and use it in your el expression .
    Thanks
    Raghav

  • How to get ther servlet name from the Httprequest / servletContext

    Hi,
    How can I get the servlet name from the Http Request / Servlet conext?
    Arthik

    I have a requirement to call the business logic either in local server / external server.
    Local / External server
    The original / main request is made to the server from the client and from the server if the main request requires some resource (second request from server side) available in the external server then I need to make a URL connection. If the requested resource is the local resource then I need to by-pass the HTTP call. So I need to verify the server name , port with the originally requested server.Then I need to check if the request servelt is available in local or not.
    Can you please help me.

  • How to get rid of Word at Log On

    Installed Office for Mac on my MacBook, now it automatically opens up when I log on. How can I get rid of that?

    So that others with the same question can find a quick solution, could you please take a moment and mark posts either "helpful" or "solved?"
    Thanks.

  • How to get the name of currently logged in user in the network

    Hi all,
    I want to know if there's a way to get the name of the currently logged in user in the network.
    SYS_CONTEXT('USERENV','OS_USER') won't work for me because our users do not loggin in portal.
    Any ideas?
    Thanks in advance.
    Brett

    Hello, I had the same problem. Here is a smaller version to find the Group of the current User.
    The VI get the members of a Group and match it with the Username.
    Note :
    If the User belongs to multiple Groups the the VI returns only the 1st Groupname
    If the User belongs to no Group then the VI returns "unknown Group"
    The VI is written with LabVIEW 2010 and TestStand 4.2.1
    Attachments:
    current user group.vi ‏20 KB
    TestStand get Group of current User.PNG ‏43 KB

  • How to get apps back under old log in name

    Hello
    From the end of April to the beginning of July my user name was my work e-mail address.
    Do these log ins expire if not used for a few months as I can't seem to log on any more.
    I am no longer at this e-mail address as I left this employer.
    I want to be able to download the apps I got while employed to my new telephone and set my home e-mail address instead of the work one.
    Is this possible?
    How can I reset the password if the notification presumeably goes to my old workplace?
    Thanks for walking me through this.

    One of our senior members, sdgardne, has written a great post highlighting ways to regain access to your BlackBerry ID (and hopefully regain access to apps you've previously installed). See if you can find anything here:
    http://supportforums.blackberry.com/t5/BlackBerry-World/How-to-regain-access-to-your-BBID/td-p/25467...
    I hope that helps you.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • System.out and System.err  How to get to show up in log

    Does anyone know if there is anyway to get System.out and System.err
    messages to appear in the log?
    Trying to build and debug a JSP project is a complete nightmare when the
    remote developers cannot see System.out or System.err messages from helper
    classes.
    Platform= Windows NT 4.0
    Weblogic running as a Service
    Thanks in advance!

    Write a wrapper class to redirect the std out to what ever stream you want.
    HTH
    Saman

  • How to get the Form runtim diagnostics log file

    Hi,
    I followed the instruction of Metalink Notes:
    R12: Forms Runtime Diagnostics (FRD), Tracing And Logging For Forms In Oracle Applications http://ID 438652.1
    Option 1: Obtain FRD Trace Using Profile Options
    Method 1: Using profile option 'ICX: Forms Launcher'
    I was not able to get the log file.
    Any suggestions

    Yes, I follow the instruction, set profile at user level, and bounce Apache.
    When I log in to application, I do see a message that the low level trace is enabled.
    the directory is:
    /u1/dev/inst/apps/apps/dev/logs/ora/10.1.2/forms

  • How to get New Added User's log from shared services in 2012--Important

    Hi Experts
    All my user are MSAD users but i want to generate See log for all users in Hyperion who are all added in 2012.
    Please let me know ,we will get this information from Backend SQL and what are the tables related for this.
    Any one help me in this...highly appreciated.
    Thanks,
    RK

    Hi,
    You don't add MSAD users in shared services. The users is added to the directory that is configured as MSAD in shared services and you will
    see the user in shared services after that. I don't think so that Hyperion can provide any info regarding the users addition in shared services.
    Thanks,
    Sourabh

Maybe you are looking for

  • Attachments (word docs and PDFs) to emails can not be opened by the receivers. Are received as .dat files or application/octet-stream

    Attachments I add to emails (word doc or PDFs) can not be opened by the email receivers. Word documents attachments are received with ATT00427.dat (application/octet-stream) or .doc with (application/octet-stream). PDF attached files arrive with .pdf

  • Font conversion of symbols

    Before purchasing I would like to know how the font conversion works and if there are further settings once purchased. In my free trial I converted a simple music chord chart (lyrics and chords only, not notation) and though it did a fair job of conv

  • No WOL in Windows 7

    I am running Boot Camp 3.1 with Windows 7 64bit on my iMac 27" (2.8 GHz Quad-Core). Everything runs fine so far, except Wake On LAN. When Win7 goes to sleep I can wake it up once, but after the next sleep it cannot be turned on again with a magic pac

  • Ueser Exit - Payment file duplication- F110

    Hi All Payment file duplication in target system. Wherein since the Print Job was scheduled twice by user, the duplication of payment had taken place. The payment medium program u201CRFFOAVIS_FPAYMu201D is use to control the generation of duplicate p

  • Video sizes

    In iMovie HD, I noticed that the first few clips also have an aspect ratio issue (where part of the screen is just a black border [as shown below]). how do i fix it?