How to check if application started succesfully

Hi to all!
I need a script to check if application and db side started succesfully after cold backup has finished. Db side can be tested by system tables. But how to check if all components of apps have been started succesfully ?
Thanks in advanced

If you need more extensive checking of your eBusiness environments you may want to check out the perl modules HTTP::WebTest and WWW::Mechanize. They allow you to check specific urls and login to the application via a script. You can do an end to end test of the login process. It doesn't work with forms but for the initial SSW screen they are very good.
We do this to track our service levels and because we have integrated SiteMinder SSO into our environment which is not picked up by the Applications script. Also the SiteMinder service is controlled by an external organization.
Does anyone know if the status script for oracle apps can pickup a jvm that has gone bad (ie. You attempt to login but the jvm process has had a problem and apache returns an error when you execute the jsp login page)?

Similar Messages

  • How to check when system started? Need ASAP!!

    HI,
    Guys is there a way that I can tell that when the system started and stopped at certain time? If there is, how can i check?
    Please let me know ASAP.
    Thanks,
    I will post points for sure!!

    Afi,
    Check dev_disp.old in work directory .. Towards the end you can something like  change server state from ACTIVE to SHUTDOWN .. You will get some idea from that.  Check dev_disp to see when the server is started
    Thanks
    Prince Jose

  • URGENT- how to check when application was unistalled

    How do you check WHEN an application was unistalled?
    this is very urgent
    Thank you

    Hi and Welcome to the Community!
    Refer:
    KB29215 How to view event logs on a BlackBerry smartphone
    I'm not at all sure if those logs show what you need, or if it would have required that more verbose logging be enabled prior to the app removal. But, you can look to see.
    If the device is on BES, then it's possible that the BES Admin can dig deeper...but you'd need to ask them about that.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to check via wlst that application was deployed on specific server?

    There is several managed servers(not in claster) on environment.
    My application is deployed on a few of them.
    1. How to check if application was already deployed on some specific managed server?
    2. Is it possible to redeploy application only on one managed server?
    3. How to redeploy application on all managed servers?
    Edited by: vbez on Sep 13, 2010 6:26 AM

    How to check if application was already deployed on some specific managed server?
    applicationRuntime = cmo.getAppRuntimeStateRuntime();
    state = applicationRuntime.getCurrentState("deploymentname", "deploymenttarget");Is it possible to redeploy application only on one managed server?
    If you redeploy an application it is deployed to all the targets it has been assigned to.
    How to redeploy application on all managed servers?
    See above. If your application has been targetted to the managed servers
    it gets redeployed to these targetted servers.

  • How do I stop applications from coming up when I power up my computer. If this were a Windows system I would be able to take the app out of the start up folder. On the Mac I don't know how.

    How do I stop applications from coming up when I power up my computer. If this were a Windows system I would be able to take the app out of the start up folder. On the Mac I don't know how.

    The app (Excel) is in the dock. When I left click on it there is no check next to open at login.
    Lets go back to the beginning when I installed ms office both word and excel were in the dock. then one day excel dissapeared. I put it back in the dock and that is when it started opening during login. There is only one X showing in the dock.
    Maybe I have little gremlins.

  • Hi, sorry this is so basic, but how do I stop certain applications starting automatically on startup?

    sorry this is so basic but how do I stop certain applications starting automatically on startup?

    Is this for a computer model or an iDevice model? If the former you've posted in the wrong forum. But here's the answer.
    Open General preferences in System Preferences. There are two options you can check that affect this behavior:
    Check the boxes you thing you prefer. When you next shutdown the computer you should be asked in a dialog about reopening applications on restart. Select the option to not reopen.

  • How do I sign my VB / VS 2010 based shared COM add-in for Excel so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?

    My COM add-in is developed using VS 2010 and VB. It's a shared COM add-in (not VSTO) and it works with Excel 2007 - 2013. My installer is signed with a code signing certificate but it would appear that my add-in's .dll should also be signed if the user has
    checked the "Require application add-ins to be signed by a trusted publisher" option.
    The "Sign the assembly" option is checked in my add-in's VB -> My Project -> Signing. I have a .snk file selected which I seem to recall generating 6 or 7 years ago when I ported the COM add-in from VB6 to .NET. 
    I have an up-to-date Comodo code signing certificate (a pfx file called MyCompanyCodeSigningCertificatePrivateKey.pfx) which I purchased to use with the installer and was wondering if and how I could use this.
    I tried selecting my pfx file in the My Project -> Signing -> "Choose a strong name key file" dialog. It made a copy of the pfx file in my project folder but when I tried to build the project, I got the following error:
    Error 1 Cannot import the following key file: MyCompanyCodeSigningCertificatePrivateKey.pfx. The key file may be password protected. To correct this, try to import the certificate again or manually install the certificate to the Strong Name CSP with the
    following key container name: VS_KEY_C0B6F251F0FB6016
    After a little research, I found out I might be able to use signtool to sign the dll in a post-build step.
    I added the following command to the post-build event, before the command I use to regasm the assembly.
    "path to signtool\signtool" sign /f "MyCompanyCodeSigningCertificatePrivateKey.pfx" /p "xxxx" /v "$(TargetPath)"
    When I built the project, the dll appeared to get signed (the output window showed a bunch of confirming text as well as "Successfully signed: c:\MyAddIn\bin\Release\MyAddIn.dll") but the next step in the post-build (regasm myaddin.dll /codebase)
    issued a warning RA0000 (see below) but reported "Types registered successfully".
    Here's the message I get from regasm, even though the output window says the dll was sucessfully signed:
    RegAsm : warning RA0000: Registering an unsigned assembly with /codebase can cause your assembly to interfere with other applications that may be installed on the same computer. The /codebase switch is intended to be used only with signed assemblies. Please give your assembly a strong name and re-register it.
    Types registered successfully
    I'm not using a shim if that makes a difference.
    How do I sign my add-in so it loads when the user has checked "Require application add-ins to be signed by a trusted publisher"?
    Any tips would be appreciated.

    Hello,
    Why do you need to use the regasm utility from the post-build action?
    There is a difference between signing the assembly with a strong name and digital signature. The
    How to: Sign an Assembly with a Strong Name article in MSDN explains how to sign an assembly with a strong name (.snk). See
    How to digitally sign a strong named assembly for adding a digital signature.
    You may also find the
    What's the Difference, Part Five: certificate signing vs strong naming article helpful.

  • How  can you load local server urls on application start?

    Background:
    I've been searching for close to two days for an answer to this question, it's full of gotchas and I can't quite get it figured out.
    I have an application which contains several web services. These services load up listeners when the services are invoked which makes them available for input. The user has the option of disabling automatic load of these services and invoking them manually by typing in the local url and starting the app. The can allow the autoload which uses a the or allowing the auto load to start. Currently the local url is hardcoded in a property file and this is how the services knows the local endpoint to envoke when it autostarts.
    <servlet id="AutoStart_01">
    <servlet-name>autoStart</servlet-name>
    <servlet-class>com.loadmy.StartupClass.Here</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    This works all fine and well until it's deployed onto a machine that runs a local weblogic cluster that has more than one jvm (and multiple ports) loading the application up.
    Problem
    The question is, how can you get the applicaton to recoginize the local url for the jvm that is running which can be on different ports? Here's what I've tried
    A - Using Inet.Address - This doesn't let you know what port your application is on
    B - Using the load servlet on start up ( Only the init() function is called and the request object hasn't been created and the request object is what contains ther protocol, server and port information)
    C - Loading a jsp page (READ... purposefully loading a jsp page) on application start. The thought here is that this contains a request object, but unfortunately on this doesn't work in my servlet container (currently tomcat 6 but the application is for a web logic machine)
    D - I thought about possibly using System.properties() but no luck there
    I'm at witts end on this one and I know there is something that can recoginze the local servlet container and extract the url and port from it.
    Any suggestions would be great.
    Flabergasted [sic]

    Hi,
    I had a simmilar requirement once, i also had to display some meaningful message with the busy mode icon, but i guess that comes directly from the WD Framework and is not possible to be changed. Refer the following thread, i raised that time.
    Web Dynpro ABAP
    Dont have much idea if somethig exists in portal for this.
    Regards,
    Runal

  • Macbook upgrade to Lion.. how do i minimize what applications start up from boot ?

    how do i minimize what applications start up from boot (start-up) ??
    excel, word, safari and mail are all opening
    takes too long

    Disable Resume...
    How To Disable Lion's 'Resume' Feature - MacRumors.com
    And if you restart your Mac from the Apple menu > Restart
    Deselect:   Reopen windows when logging back in

  • How to check whether calendar is being used in any of the sap application

    Hello All,
    We are having few factory calendars. However some of the calendar having valid to year 2010. Can you please let me know how to check whether these calendar is being used in any of the sap application/module
    kindly reply as early as possible
    Regards
    Girish

    Hi RKS
    yesterday BLOG by our SUMMER WANG helps every SRM consultant to debug the PO error
    /people/summer.wang/blog/2010/05/11/trouble-shooting-of-srm-po-transfer-error
    Good work Summer wang !!
    Muthu

  • Just started:  how to check installation?

    Hi all. I am a complete newbie in AS in the third generation. I 've just started with AS. Can't you tell me how to check that it's working?
    For example, when i create database i can check it by
    sqlplus / as sysdba
    select * from dual;

    Refer this:
    http://download.oracle.com/docs/cd/B31017_01/core.1013/b28940/getting.htm#i1014519

  • How to check whether the Application Server directory exits or not

    Hi,
    I have a selection screen in which I give the Application server file name(UNIX file) as input. Here, I would like to check whether the Server directory exists or not.
    Let us say, the path I gave in the selection screen is /usr/sap/tmp/testfile.txt . Here, the file name is testfile.txt and the server directory is /usr/sap/tmp . I would like to check whether this directory /usr/sap/tmp exists in the server or not. I am not bothered about the file name as I am going to write data into the file. I am mainly concerned about whether the directory exists in the server or not. and one more thing... this is the Application Server path not the Local path.
    Can anyone help me on the same how to check whether the server directory exists or not.
    Thanks in advance.
    Best Regards,
    Pradeep.

    Also you can use the FM EPS_GET_DIRECTORY_LISTING for this purpose.
      Store the directory name
        l_dpath = p_file+0(l_no).
      Validate the directory of the application server
        CALL FUNCTION 'EPS_GET_DIRECTORY_LISTING'
          EXPORTING
            dir_name               = l_dpath
          TABLES
            dir_list               = l_i_dlist
          EXCEPTIONS
            invalid_eps_subdir     = 1
            sapgparam_failed       = 2
            build_directory_failed = 3
            no_authorization       = 4
            read_directory_failed  = 5
            too_many_read_errors   = 6
            empty_directory_list   = 7
            OTHERS                 = 8.
      If any problem occurs with the directory then display proper
      error message
        IF sy-subrc <> 0.
        Display error message
          MESSAGE e018 WITH 'Problem with directory entered'(008).
        ENDIF. " sy-subrc <> 0
    Regards,
    Joy.

  • How to check the usage of ram and cpu Performance for the particular application like sqlserver ,ms word

    how to check the usage of ram and cpu  Performance for the particular application like sqlserver ,ms word
    ranki

    Hi,
    You can use Performance Monitor and add the required counters.
    Check the below Technet article on Performance Monitor.
    http://technet.microsoft.com/en-us/library/cc749249.aspx
    Below are the steps to monitor the process in Performance Monitor.
    - Go to the Performance Monitor. 
    - Right-click on the graph and select "Add Counters".
    - In the "Available counters" list, open the "Process" section by clicking on the down arrow next to it. Select "% Processor Time" (and any other counter you want).
    - In the "Instances of selected object" list, select the process you want to track. Then click on "Add >>" button. Click on OK.
    Regards,
    Jack
    www.jijitechnologies.com

  • How to check the dependency of Timesten Application version 11.2.1 for OEL 6U4

    How to check the dependency of Timesten Application version 11.2.1 for OEL 6U4

    Hi Chris,
    THank for your reply.. My requirement is I am planning to upgrade my Server OS from OEL 5U8/5U3 servers to OEL 6U4. And we are using timesten application 11.2.1 version as of now. So wanted to check if the same version of TImesten can we install them on OEL 6U4 . if we can install it successfully what are the dependent RPM packages we need to consider for installing the timesten application and will there be any issues using the application? .
    Is timesten 11.2.2 is the officially supported and stable version on OEL6U4?
    And also can you suggest me if I want to check other applications dependency like rhino-2.3 and postgres 8.1.23 version how I need to check if this applications versions are certified to run on OEL 6U4.
    IT would be great help if you can suggest me on this.
    Naveen

  • How to check weather oracle db is started or not and how to start at oracle

    Hi
    could u please tell me how to check weather database is started or not
    and also how to start . (on unix and windows)
    waiting for ur reply.
    rajendra

    Hi rajendra,
    You can use the following command at Unix/Aix operating system.
    login into unix/aix operating system
    & run the following command.
    sqlplus "connect /as sysdba"
    you come in sql prompt
    & than run the following query
    sql>select status from v$instance;
    In windos you can check DB status using MMC.
    if you have any query than message me freely.
    Karan
    Edited by: karan Singh on Jun 24, 2008 5:10 PM
    Edited by: karan Singh on Jun 24, 2008 5:12 PM

Maybe you are looking for