How to find out the exact version of web server 7.0

Dear all,
I am using currently web server 7.0 and in error logs its shows me following version
Sun Java System Web Server 7.0 B12/04/2006 10:15
what i need how to find out what exact version i am using in my webserver 7.0 is it update 6 or update 7 or update 8
how to find out what exact version i am using in web server 7.0.....
thanks and regards
tiger

Web Server tells you specifically which Update release in the string you quote (in your string you are running the original release of Web Server 7.0).
My server is currently running Web Server 7.0 Update 7. The startup string looks like:
[19/Jan/2010:11:18:27] info (15407): CORE1116: Sun Java System Web Server 7.0U7 B12/14/2009 22:58

Similar Messages

  • How to find out the exact culpirit session

    How to find out the exact culpirit client machine process to kill the session and release.
    Thanks,

    We can not directly solve this mystery, only you can do so.
    V$SESSION contains data for all connected sessions.
    If no unique combination of fields exists that allows you to identify the culprit client session, then you are out of luck.
    See you started this thread with the premise that 1 session connected to the DB is a problem.
    OK, we will accept this as being true.
    Now via SQL how/what can you SELECT so that only 1 row is returned & that row corresponds to "problem client" session?
    Since this is YOUR system & not ours, only you can solve this mystery.

  • How to find out the exact BAdI

    hi all,
    can any one tell me how to find out the exact badi for the given transaction

    Hi,
    Execute this report !
    It gives you all the badis and user exits present for that particular transaction !
    REPORT z_user_exits_n_badis.
    TABLES:
    tstc,
    tadir,
    modsapt,
    modact,
    trdir,
    tfdir,
    enlfdir,
    sxs_attrt ,
    tstct.
    DATA: jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA: field1(30).
    DATA: v_devclass LIKE tadir-devclass.
    PARAMETERS:
    p_tcode LIKE tstc-tcode,
    p_pgmna LIKE tstc-pgmna .
    DATA:
    wa_tadir TYPE tadir.
    u2022     START-OF-SELECTION *
    START-OF-SELECTION.
    IF NOT p_tcode IS INITIAL.
    SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.
    ELSEIF NOT p_pgmna IS INITIAL.
    tstc-pgmna = p_pgmna.
    ENDIF.
    IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'PROG'
    AND obj_name = tstc-pgmna.
    MOVE : tadir-devclass TO v_devclass.
    IF sy-subrc NE 0.
    SELECT SINGLE * FROM trdir
    WHERE name = tstc-pgmna.
    IF trdir-subc EQ 'F'.
    SELECT SINGLE * FROM tfdir
    WHERE pname = tstc-pgmna.
    SELECT SINGLE * FROM enlfdir
    WHERE funcname = tfdir-funcname.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'FUGR'
    AND obj_name EQ enlfdir-area.
    MOVE : tadir-devclass TO v_devclass.
    ENDIF.
    ENDIF.
    SELECT * FROM tadir INTO TABLE jtab
    WHERE pgmid = 'R3TR'
    AND object IN ('SMOD', 'SXSD')
    AND devclass = v_devclass.
    SELECT SINGLE * FROM tstct
    WHERE sprsl EQ sy-langu
    AND tcode EQ p_tcode.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
    WRITE:/(105) sy-uline.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    u2022     Sorting the internal Table
    SORT jtab BY object.
    DATA : wf_txt(60) TYPE c,
    wf_smod TYPE i ,
    wf_badi TYPE i ,
    wf_object2(30) TYPE c.
    CLEAR : wf_smod, wf_badi , wf_object2.
    u2022     Get the total SMOD.
    LOOP AT jtab INTO wa_tadir.
    AT FIRST.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 sy-vline,
    2 'Enhancement/ Business Add-in',
    41 sy-vline ,
    42 'Description',
    105 sy-vline.
    WRITE:/(105) sy-uline.
    ENDAT.
    CLEAR wf_txt.
    AT NEW object.
    IF wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    ELSEIF wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    ENDIF.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 sy-vline,
    2 wf_object2,
    105 sy-vline.
    ENDAT.
    CASE wa_tadir-object.
    WHEN 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE modtext INTO wf_txt
    FROM modsapt
    WHERE sprsl = sy-langu
    AND name = wa_tadir-obj_name.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WHEN 'SXSD'.
    u2022     For BADis
    wf_badi = wf_badi + 1 .
    SELECT SINGLE text INTO wf_txt
    FROM sxs_attrt
    WHERE sprsl = sy-langu
    AND exit_name = wa_tadir-obj_name.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    ENDCASE.
    WRITE:/1 sy-vline,
    2 wa_tadir-obj_name HOTSPOT ON,
    41 sy-vline ,
    42 wf_txt,
    105 sy-vline.
    AT END OF object.
    WRITE : /(105) sy-uline.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) sy-uline.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    DATA : wf_object TYPE tadir-object.
    CLEAR wf_object.
    GET CURSOR FIELD field1.
    CHECK field1(8) EQ 'WA_TADIR'.
    READ TABLE jtab WITH KEY obj_name = sy-lisel+1(20).
    MOVE jtab-object TO wf_object.
    CASE wf_object.
    WHEN 'SMOD'.
    SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    WHEN 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD sy-lisel+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    Thanks
    Sarada

  • How to find out the exact time in UK with daylight savings.

    Hi,
    how can i get the exact time in UK even if the daylight savings time is implemented in UK..,
    now my code is implemented for IST ,how can i get the BST timings?
    Thankx.

    the setTimeZone method of SimpleDateFormat (actually inherited from DateFormat). Use it to set it to your timezone when parsing or formatting a date string for your timezone and set it to the UK timezone when parsing or formatting a date string for their timezone.
    Edit: IOW SimpleDateFormat was the answer, not a question.

  • How to find out the exact reason for backordered order in oracle apps R12

    Hi,    
         I am new to OM module.I booked an order and trying to do "pick release" the booked order but i couldn't do so, because the order is getting backordered.
    These are the things i checked
    1.On-hand quantity for the particular item i am booking is sufficient enough
    2.Item is in M1 org and onhand quantity is also in same org.
    Can you please help me how to find the exact reason for my order getting backordered.
    Regards
    Sandeep.G

    Hi Sandeep,
    Reasons for pick release resulting in back ordered can be found here:
    Reasons for a Sales Order to get Backordered!
    Failing pick release, orders getting backordered and other common issues with picking.
    Please review notes:
    Cannot Pick Release Items, Completes with Warning and the Item is Backordered. (Doc ID 1240404.1)
    Pick Release Process Completes In Warning Line Gets Backordered Though Onhand Is Present (Doc ID 1285514.1)
    Pick Release Backorders Sales Order Lines, Error in Log File "No Mtl_Sales_Order ID found for oe header" (Doc ID 398385.1)
    Reservation Remains After Pick Release Of Backordered Move Order (Doc ID 754518.1)
    In addition, please review:
    What is Back Order in OM? How are Backorders Handled | Oracle Apps
    Thanks &
    Best Regards,

  • How to find out the Oracle Version in Windows platform (OS level)

    Hi,
    I have installed Oracle 8.1.7, 9.2.0.1 and 10.2.0.1on my Windows machine for testing purpose.
    I want to list in my code as what are all the Oracle software version installed on my machine at OS level (before connecting into oracle).
    Is there any way to get this.
    Please help.
    Thanks,
    Riaz.

    Hi All,
    thanks for your inputs..
    In registry, where the oracle version info is getting stored... and if more than one Oracle is installed, then how did we get this info??
    thanks,
    riaz.

  • How to find out the firmware version in my Nokia 6...

    I have tried to follow your instructions about checking the firmware version in my Nokia 6630 but you missed some important final steps. How do you do it step by step?

    You shouldn't look at getting your firmware updated just because there's a newer version - only if you're experiencing faults. "If it ain't broke, don't fix it" is something well worth bearing in mind.
    http://www.nokia.co.uk/nokia/0,,77483,00.html
    Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
    Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

  • How to find out the ip address in app.server

    Hi,
    is there anyway to find the ip/hostnames from app.server or webcache?
    coz currently we have the setup of two webcache its acts as a load balancer and then 6 oracle app.server
    some times if anybody login to our site (hackers) if we want to track the details how do we proceed?
    is anybody having idea on this, coz i checked Apache logs on app.server it shows the ip's of our two web-cache server and then i tried to get some thing from webcache apache logs. but i couldn't find or i dont know how i clear on this.
    I just want to know did anyone knows abt this? is it possible to get the IP from app.server/webcache?
    pls let me know
    Thanks
    Murali..

    please check the webcache/logs/access_log. that shows the ip address of the machine hitting your webcache.

  • How to find out the SDM password in WAS server

    Hi Friends,
    can any one explain how to see the SDM password in WAS server. It is very need ful and urgent?
    Thanks & reagards

    Hi,
    in my opinion you can't see the password. But you can change it.
    Changing the (remote) SDM Password
    Since the SDM Server offers you functions that you can use remotely, they must be protected from unauthorized use. For this reason, the SDM requires remote users to authenticate themselves with a password. The default shipped password is sdm. You can change this password in the following ways:
    Pushbutton in the remote GUI
    changepassword command
    sdm changepassword sdmhome=<...> newpassword=<...> [password=<...>]
    where
    newpassword: New password
    password: Old password. Since 6.30 SP5, this parameter has been set optional so that the password can be changed without reference to its current value. If this parameter is specified, its value will be ignored.
    Note: changepassword command can be executed only if SDM server is stopped (see stop/start SDM Server) and it is in standalone mode (see jstartup). It would be better to return SDM in the same state as it was before the execution.
    regards
    Timm

  • How to find out the exact string in a single line?

    Hi,
    I have some data in table like below.
    CERTTEST
    CERT TEST
    CERT
    My requirement is fetch only CERT as a output.
    Please share your thoughts.
    Thanks

    Not sure what's the issue:
    with t as (
               select 'CERTTEST' str from dual union all
               select 'CERT TEST' from dual union all
               select 'CERT' from dual
    -- end of data sample
    select  str
      from  t
      where str = 'CERT'
    STR
    CERT
    SQL> SY.
    P.S. And if you need to seclect case insensitive CERT, use:
    SQL> with t as (
      2             select 'CERTTEST' str from dual union all
      3             select 'CERT TEST' from dual union all
      4             select 'CeRt' from dual union all
      5             select 'CERT' from dual
      6            )
      7  -- end of data sample
      8  select  str
      9    from  t
    10    where upper(str) = 'CERT'
    11  /
    STR
    CeRt
    CERT
    SQL>

  • Does anyone have any idea how to find out the version of weblogic plugin

    Does anyone have any idea about how to find out the current version of weblogic plugin used to connect from webserver to weblogic server?
    I could not find version in plugin directory.
    it's the same one that came prepackaged with Weblogic 9.2. we haven't change it.
    Sun One 6.1 SP6
    Weblogic 9.2
    Solaris 5.10
    Edited by: 985608 on 01-feb-2013 8:20
    Edited by: 985608 on 04-feb-2013 6:25
    Edited by: 985608 on 04-feb-2013 6:27

    Hi,
    You can find version of weblogic plugin using below command.
    strings <plugin module file> | grep -i wlsplugins
    Mark if this helps.
    Regards,
    Kishore

  • How to find out the IPS and DS Service Pack and patch levels in windows server.

    Hi,
    I have installed the Information Platform Services 4.0 and Data services 4.0 in windows QA system, now we need to install the same version of IPS & DS  in windows PRD system for this how could we find out the exact version of IPS & DS  ( Service pack and patch levels ) and where we can find the same.
    Many Thanks,
    Sudheer

    Hi Sudheer,
    On a Windows Operating Systems you can check the “Programs and Features” in control panel.You can see a list of both the Name and Version number of SAP BusinessObjects that is installed.
    option 2:
    Open CMC go to Settings. In the properties, you will find the Product Version.
    Please check below SAP notes for more information.
    http://service.sap.com/sap/support/notes/1602088
    Regards,
    Pavan

  • How do I find out the exact path of each and every file that LabVIEW finds and loads into memory for a given top level vi?

    How do I find out the exact path of each and every file that LabVIEW finds and loads into memory for a given top level vi? There is probably a trivial, easy way to get this info, but I have not yet found it!  Thanks..

    Or if you want to grab all the paths programatically, try the attached VI.
    Open the top level that you want all the paths from and close all others, then open the
    attached and run it. It will return an array of all the VIs that the VI
    in question uses, including vi.lib VIs. You can filter these as well if
    you like.
    Ed
    Message Edited by Ed Dickens on 08-01-2005 07:01 PM
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.
    Attachments:
    Get all paths.vi ‏29 KB

  • How to find out the IBM XL C/C++ compiler  Version in EBS

    I have Referred  the note
    1294357.1 - New Oracle E-Business Suite R12 Operating System and Tools Requirements on IBM AIX on Power Systems
    Please let me know the correct command to find out the IBM XL C/C++ compiler  version in EBS
    lslpp -l | grep vacpp
      vacpp.cmp.rte             9.0.0.14  COMMITTED  IBM XL C/C++ Compiler
      vacpp.cmp.tools           9.0.0.14  COMMITTED  IBM XL C/C++ Tools
      vacpp.memdbg.aix52.rte    9.0.0.14  COMMITTED  IBM XL C/C++ User Heap/Memory
      vacpp.memdbg.rte          9.0.0.14  COMMITTED  IBM XL C/C++ User Heap and
    From the above command Compiler version is showing as  9.0.0.14 Is it correct command to check the IBM XL C/C++ compiler version?
    (Or)
    lslpp -l | grep -i xlC
      xlC.aix61.rte             11.1.0.2  COMMITTED  XL C/C++ Runtime for AIX 6.1
      xlC.cpp                    9.0.0.0  COMMITTED  C for AIX Preprocessor
      xlC.rte                   11.1.0.2  COMMITTED  XL C/C++ Runtime
      xlC.sup.aix50.rte          9.0.0.1  COMMITTED  XL C/C++ Runtime for AIX 5.2
    From the above command how will identify the IBM XL C/C++ compiler version?

    Hi Hussain
    Thanks for the Reply
    Yes i have reviewd the above note Just i want to know the command that im using to find out the  the IBM XL C/C++ compiler  Version
    Below is the correct command ?We are planning to install new version of Complier 11 .
    But im confused to find out the current Version in my system the below command shows  9.0.0.14 is  IBM XL C/C++ Compiler is it the compiler version on my system?
    lslpp -l | grep vacpp
      vacpp.cmp.rte             9.0.0.14  COMMITTED  IBM XL C/C++ Compiler
      vacpp.cmp.tools           9.0.0.14  COMMITTED  IBM XL C/C++ Tools
      vacpp.memdbg.aix52.rte    9.0.0.14  COMMITTED  IBM XL C/C++ User Heap/Memory
      vacpp.memdbg.rte          9.0.0.14  COMMITTED  IBM XL C/C++ User Heap and

  • How to find out the versions of family pack and mini pack installed?

    There are family pack and mini pack for HRMS.
    How to find out the versions of family pack and mini pack installed
    just by a Unix command or sqlplus Select statement?
    Thanks

    you can get the Minipack version of the products by querying fnd_product_installations or ad_patchdriver_minipks, for family packs you need to query through Metalink, OR if you have u driver file which resides on $AY_TOP/discoverer, looks for the minipacks/familypack version in the driver file.

Maybe you are looking for

  • How to remove a Windows 7 partition that did not properly install in Lion?

    So I was in the process of installing Windows 7 and partitioning the hard drive to give 20 GB to Windows 7 when I accidentally tripped my charger and shut down my computer. When I turned it back on I realized 20 gb of memory was missing and I could n

  • My Zen Micro has the "hiccups"!

    I so WANT to love my Micro, but it's been hard to do so. I've had to send it in for an RMA twice already....and I've only had it for 3.5 months. It's been quite frustrating. Here's the latest episode: for some reason my unit has had these "hiccups".

  • Can we query a stored procedure results as an SQL Table ?

    Hi, Can we query a results from the results of a stored procedure returning a result set either as cursors or as PL/SQL Table like what we do like this select * from <tablename> select * from (select * from tablename) alias. instead of this, can we d

  • Has anyone else had an issue with Suspension of devices vs Canceling of devices?

    Back in July I contacted customer service about canceling our service on our mobile hot spot (jetpack). The customer service representative told me to "go online and suspend the service, it will eventually cancel out". So that is what I did. Today I

  • UAC Behaviour when set to "Prompt for Consent on the Secure Desktop"

    We are in the process of testing UAC on Windows 8.1. UAC is enabled for admins and the setting for "Behavior of the elevation prompt for administrators in Admin Approval mode" is set to "Prompt for consent on the secure desktop". This results in the