Get current weblogic version number

Hi.
I want as much as possible information from current ADF application instance. I know how to get ADF Faces version, User agent, Skin, Session ID, Java version,... I don't know hot to get current application's server version and name.
Any ideas?
10x
Regards

It is old but still working:
import java.io.IOException;
import java.io.PrintWriter;
import java.text.DateFormat;
import java.util.Date;
import java.util.Enumeration;
import java.util.Properties;
import javax.servlet.*;
import javax.servlet.http.*;
/*http://127.0.0.1:7101/yourwebappname/servlet/SuperSnoop*/
public class SuperSnoop extends HttpServlet {
private static final String CONTENT_TYPE = "text/html; charset=UTF-8";
public void init(ServletConfig config) throws ServletException {
super.init(config);
private String makeTitle( String title )
return new String("<H2>"+title+"</H2>\n");
private String showRequestParams( HttpServletRequest request )
StringBuffer sb = new StringBuffer(512);
Enumeration e = request.getParameterNames();
String key = null;
String value = null;
sb.append(makeTitle("Request Parameters"));
sb.append("<table>");
while( e.hasMoreElements() ){
key = (String)e.nextElement();
value = request.getParameter(key);
sb.append( makeRow( key, value ));
sb.append("</table>");
return sb.toString();
private String showInitParams() {
StringBuffer sb = new StringBuffer(512);
ServletContext context = getServletContext();
Enumeration e = context.getInitParameterNames();
String key = null;
String value = null;
sb.append(makeTitle("Initialization Parameters"));
sb.append("<table>");
while( e.hasMoreElements() ){
key = (String)e.nextElement();
value = context.getInitParameter(key);
sb.append( makeRow( key, value ));
sb.append("</table>");
return sb.toString();
private String showServletContextInfo()
StringBuffer sb = new StringBuffer(512);
ServletContext context = getServletContext();
sb.append(makeTitle("Servlet Context"));
sb.append("<table>");
sb.append( makeRow( "Server Info", context.getServerInfo()));
sb.append( makeRow( "Servlet Context Name", context.getServletContextName()));
sb.append( makeRow( "Real Path", context.getRealPath("/")));
sb.append("</table>");
return sb.toString();
private String showContextAttributes() {
StringBuffer sb = new StringBuffer(512);
ServletContext context = getServletContext();
Enumeration e = context.getAttributeNames();
String key = null;
String value = null;
sb.append(makeTitle("Servlet Context Attributes"));
sb.append("<table>");
while( e.hasMoreElements() ){
key = (String)e.nextElement();
value = context.getAttribute(key).toString();
sb.append( makeRow( key, value ));
sb.append("</table>");
return sb.toString();
private String showSysProps() {
StringBuffer sb = new StringBuffer(512);
Properties p = System.getProperties();
Enumeration e = p.propertyNames();
String key = null;
String value = null;
sb.append(makeTitle("System Properties"));
sb.append("<table>");
sb.append(makeRow("System Time", today() ));
while( e.hasMoreElements() ){
key = (String)e.nextElement();
value = p.getProperty( key );
sb.append( makeRow( key, value ));
sb.append("</table>");
return sb.toString();
private String showHeaders( HttpServletRequest request ) {
StringBuffer sb = new StringBuffer(512);
Enumeration e = request.getHeaderNames();
String key = null;
String value = null;
sb.append( makeTitle("Request Headers"));
sb.append("<table>");
while( e.hasMoreElements() ){
key = (String)e.nextElement();
value = request.getHeader(key);
sb.append( makeRow( key, value ));
sb.append("</table>");
return sb.toString();
private String showRequestInfo(HttpServletRequest request) {
StringBuffer sb = new StringBuffer(512);
sb.append(makeTitle( "Request Info"));
sb.append("<table>\n");
sb.append( makeRow( "ContextPath", request.getContextPath() ));
sb.append( makeRow( "Method", request.getMethod() ));
sb.append( makeRow( "RequestURL", request.getRequestURL().toString()));
sb.append( makeRow( "ServletPath", request.getServletPath() ));
sb.append( makeRow( "CharacterEncoding", request.getCharacterEncoding() ));
sb.append( makeRow( "ContentType", request.getContentType() ));
sb.append( makeRow( "RemoteAddress", request.getRemoteAddr() ));
sb.append( makeRow( "RemoteHost", request.getRemoteHost() ));
sb.append( makeRow( "Scheme", request.getScheme() ));
sb.append( makeRow( "ServerName", request.getServerName() ));
sb.append( makeRow( "ServerPort", Integer.toString(request.getServerPort()) ));
sb.append("</table>\n");
return sb.toString();
private String makeRow( String left, String right ) {
StringBuffer sb = new StringBuffer(128);
sb.append( "<tr>\n" );
sb.append( "\t<td>"+left+"</td>\n");
sb.append( "\t<td>"+right+"</td>\n");
sb.append( "</tr>\n" );
return sb.toString();
private String today()
Date now = new Date();
DateFormat dateFormatter = DateFormat.getDateTimeInstance();
return dateFormatter.format( now );
public void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<head>");
out.println("<title>SysProps Servlet</title>");
out.println("</head>");
out.println("<body>");
out.println( today() );
out.println( showHeaders(request) );
out.println( showRequestInfo(request) );
out.println( showRequestParams(request) );
out.println( showServletContextInfo() );
out.println( showContextAttributes() );
out.println( showInitParams() );
out.println( showSysProps() );
out.println("</table>");
out.println("</body>");
out.println("</html>");
out.close();
public void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException {
response.setContentType(CONTENT_TYPE);
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<head><title>SuperSnoop</title></head>");
out.println("<body>");
out.println("<p>The servlet has received a POST. This is the reply.</p>");
out.println("</body></html>");
out.close();
}

Similar Messages

  • How to get current process version when photos imported?

    I have Lightroom 5 but my photos are still imported with the old process version (2010)  How can I get the current process version (2012) to be applied automatically on my imported photos?

    Hi Andreas,
    Did you ever get an answer to your problem?
    I am facing the same issue now and i cannot get a lead.
    Thanks,
    Dimitris

  • How to get current/present version guid from CRMD_ORDERADM_H ?

    Hi,
    Can any one tell me  how to get the current version guid value from CRMD_ORDERADM_H table for Business Object type 'BUS2000113' .
    For example for one contract if we have more than one version then how to get the latest version guid from this table?
    If I use FM ' BBP_PD_CTR_GETDETAIL'  and in version table how to know which one is the latest/current version?
    Need information for versions.
    Thanks a lot.
    Kevin.

    Hello Kevin,
           In FM  <b>' BBP_PD_CTR_GETDETAIL'</b> look at version table <b>E_VERSION</b> - Here you can check 'VERSION_' or there is another field 'CREATED_AT' - by using these you will get latest version.
    Regards,
    Shiv

  • To get Current Business Partner number In BADi

    Hi All,
    In Tcode BP (for creating Business Partner) i am using BADi  'BUPA_GENERAL_UPDATE'. In this i want get Current Business partner No Assigned for the current Creation process.Suggest me how to get Current Businees Partner no assigned or current creation.
    (Actually in the program wher this BADi is calling there is internal table mem_but000 which has the but000 details incluiding what Business partner number assigned for current creation.Is it possible to get details from this itab in my BADi implementation Method.)

    Hi,..
    U can use field symbols and get the values of the internal table into ur BADI
    FIELD-SYMBOLS: <fs_wa> TYPE table .
    UNASSIGN <fs_wa>.
    ASSIGN ('(program name)mem_but000 ') TO <fs_wa> .
    program name is the name of the program where this internal table mem_but000 is having data..
    U will get all the entries of the internal table in field symbol..
    decalre internal table like mem_but000 and assign the filed symbol data into internal table .
    IF sy-subrc EQ 0.(sy-subrc check for the assign statement)
    t_mem_but000  = <fs_wa>.
    endif.
    regards
    Sheeba

  • Getting Current Source Line Number

    I am pulling my already sparse hair out trying to perform the most remedial of tasks: I am trying to trace my code execution to debug it and to log error messages, which is done in C with something like the ubiquitous
    'printf ("%s:%d\n", __FILE__, __LINE__);'
    I can't for the life of me find anything like __FILE__ and __LINE__ in Java.
    How do I determine the current source line number??? I could live without the __FILE__ part if I had to, but the line number is imperative. Where do I get it?
    Thanks,
    Bill Rebey

    "debug" still being a hard work in Java... the oldest Java nightmare :^)))
    you may avoid this problem using labels in your code (the problem you must fill your code with debug stuff - if the code is a big one, you will get crazy about that :^) )
    or you may adopt a tool able to trace your code execution....
    JBuilder do it for you...
    Togheter is another good software available out there
    (unfortunatelly, both of them are really expensive...)
    I don�t remember now about other tools.. (the java has a flag to produce debug output - check in the forum about the debug syntax....)

  • How do I get otool's version number?

    I need to find out otool's version number in order to post a bug, but I can't find a command line option for this.
    Specs:
    * otool v?.?.?
    * Xcode 4.5
    * Mac OS X 10.8.2
    * MacBook Pro 2009

    Aha! There it is! I guess I didn't manage to stumble down that path through the menus.
    There was a slight additional problem that I've also been investigating: I didn't spot the version number at first, until I tried expanding the image to see what some of the tiny, unreadable squiggles were. One of them was the version number. I've seen this a lot lately, in most of the (7 so far) browsers that I've loaded onto the phone. I have some test pages with lots of text, with lots of HTML tags, but I've carefully excluded any hints as to sizes. No font tags, no width= or size= attributes, etc. FF and others format various chunks of text at different sizes, for no reasons that I can discern. I see a lot of cases where one chunk of text is shown really tiny, and only readable if the page is blown up to a huge size. Different browsers pick different pieces of text to make unreadable this way.
    When I view the same test pages on various browsers on my linux or OSX boxes, the text all comes out the same size, as intended (which is handy for people with visual problems). There's something weird going on with text size on Android and IOS systems, but I haven't been able to diagnose (or fix) it yet. Googling the issue doesn't turn up any clues, just other questions about the issue. Maybe I'll post a question here, after I've worked out a few more test cases.

  • Getting the Test Stand version number of an old sequence file

    A customer wants a small change to a previous deployment.
    They have returned the original sequence file to me but the deployment is about two years old.
    Is there anyway that I can get the TestStand Version number from the old sequence file so that I will know which version to save it in.
    I am currently using TestStand 4.2.1.83. 
    Thanks,
    Sean
    Solved!
    Go to Solution.

    As Sean stated back in 2010, you can also read the version number in clear text. You can read some parts of the file in a text editor, the version number is one of those....
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • The version number cannot be greater than current version number

    i am deployingmy ssis package which is in 2012.(version 6)
    and my ssis server also in 2012.
    but i am getting error:
    "the version number in package is not valid, the version number cannot be greater than current verison number"
    and one more thing how to see ifmy package is in 2012,by looking it in notepad?

    Hi coool_sweet,
    Based on the error message that "The version number in the package is not valid. The version number cannot be greater than current version number.", we can infer that the underlying cause may be that the current SSIS package is created in SQL Server
    2012, while you are trying to open or execute it in SQL Server 2008R2 or earlier versions.
    As to your scenario, I guess you are using old version of the DTEXEC instead of the new one to run the package. That means, the exe shipped with 2008R2 or earlier versions is picked up when it is expected to use the one shipped with 2012. So, obviously this
    happens when SQL Server 2012 is running along with SQL Serve r2008R2 or earlier versions on the same machine.
    To fix this issue, there are three workarounds to correct this.
    Hard code the path of SQL Server 2012's DTEXEC while calling the SSIS package as shown below.
    C:\Program Files\Microsoft SQL Server\110\DTS\Binn\DTEXEC.exe /F "D:\MyFolder\MyPackage.dtsx"
    Rename the old exe in the 2008R2 path to a different name (Example:- C:\Program Files\Microsoft SQL Server\100\DTS\Binn\DTEXEC_Old.exe)
    Go to PATH environmental variable and edit it in such a way that "C:\Program Files\Microsoft SQL Server\110\DTS\Binn" path appears well before the "C:\Program Files\Microsoft SQL Server\100\DTS\Binn" path.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Get os version number

    I was able to get the os name using
    intrinsic.flash.system.Capabilities.os
    but i wish to get the os version number as well.
    currently running windows xp 5.1
    but intrinsic.flash.system.Capabilities.os only returns
    windows xp
    i also went through other fields in the capabilities class, i
    don't think there is anything that gives me what i want.
    any thought?
    thanks!

    Hi dpark,
    thanks!...I am seeing my version number (5.1) in that long
    string...i guess i can just play with index and extract it.

  • What sqlite version is used in the current AIR versions?

    What sqlite version is used in the current Adobe AIR versions? Is there a possibility to get the sqlite version number which is used in current adobe air version?
    I want to know if sqlite supports "locking" in Adobe AIR. I want to use one sqlite database file on a server and multiple clients should have access to the file (INSERT, UPDATE, DELETE).

    http://forums.adobe.com/message/3586411
    2.6 use 3.6.16. It's not visible in the public doc

  • How do I determine the executable version number?

    Hi.
    I have a VI and a build specification for it.  In the Version Information section of the build specification, I set the version number to auto-increment.  I would like to display this version number on an indicator on the front panel of the executable, but I have not found a property that provides this information. Does anybody know how to get the executable version number? I am aware that it is possible to right-click on the .exe file in windows explorer, go to properties and get it that way, but I would like to display it on the VI itself.
    On a related topic, I have noticed that only the 'build' field of the version gets auto-incremented. How does the application builder decide when it is time to increment the major, minor and fix fields?  Or will it only ever auto-increment the build field and I am supposed to update the other fields manually? (That would actually make sense, but I would like confirmation.)
    Thanks in advance,
    Alejandro
    Solved!
    Go to Solution.

    -Please check this if its helpful
    http://digital.ni.com/public.nsf/allkb/935BA7FB426305398625711E0055F1FA
    -And vote for this if you like idea
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Get-EXE-version-in-LabVIEW/idi-p/1324119
    Thanks
    uday,
    Please Mark the solution as accepted if your problem is solved and help author by clicking on kudoes
    Certified LabVIEW Associate Developer (CLAD) Using LV13

  • Element Object version Number

    Where can I get the object version number of an element. I cant seem to find it in any of the element tables
    Thanks

    If I correctly understood you:
    SQL> INSERT INTO checkpoint VALUES
      2  ( 1
      3  , person_typ('Ignat'));
    1 row created.
    SQL> INSERT INTO checkpoint VALUES
      2  ( 2
      3  , employee_typ ( 'Scott', 111 ) );
    1 row created.
    SQL> INSERT INTO checkpoint VALUES
      2  ( 3
      3  , visitor_typ ( 'Adams', 333 ) );
    1 row created.
    SQL> column person format a30
    SQL> select  id,
      2          person,
      3          sys_typeid(person)
      4    from  checkpoint
      5  /
            ID PERSON(NAME)                   SYS_TYPEID(PERSON)
             1 PERSON_TYP('Ignat')            01
             2 EMPLOYEE_TYP('Scott', 111)     02
             3 VISITOR_TYP('Adams', 333)      03
    SQL> As you can see, function sys_typeid gives you type "version" number. Now, how to trace that "version" number to type name? Unfortunately, data dictionary views do not provide that. This is another example of DD inefficiency. If you check SYS.TYPE$ table:
    SQL> desc sys.type$
    Name                                                                     Null?    Type
    TOID                                                                     NOT NULL RAW(16)
    VERSION#                                                                 NOT NULL NUMBER
    VERSION                                                                  NOT NULL VARCHAR2(30)
    TVOID                                                                    NOT NULL RAW(16)
    TYPECODE                                                                 NOT NULL NUMBER
    PROPERTIES                                                               NOT NULL NUMBER
    ATTRIBUTES                                                                        NUMBER
    METHODS                                                                           NUMBER
    HIDDENMETHODS                                                                     NUMBER
    SUPERTYPES                                                                        NUMBER
    SUBTYPES                                                                          NUMBER
    EXTERNTYPE                                                                        NUMBER
    EXTERNNAME                                                                        VARCHAR2(4000)
    HELPERCLASSNAME                                                                   VARCHAR2(4000)
    LOCAL_ATTRS                                                                       NUMBER
    LOCAL_METHODS                                                                     NUMBER
    TYPEID                                                                            RAW(16)
    ROOTTOID                                                                          RAW(16)
    SPARE1                                                                            NUMBER
    SPARE2                                                                            NUMBER
    SPARE3                                                                            NUMBER
    SUPERTOID                                                                         RAW(16)
    HASHCODE                                                                          RAW(17)
    SQL> you'll notice ROOTTOID which is, unfortunately, not mapped into DD XXX_TYPE views. What you can do is something like:
    SQL> CREATE OR REPLACE
      2    TYPE TRAINEE_TYP UNDER EMPLOYEE_TYP(trainee_id NUMBER)
      3      NOT FINAL
      4  /
    Type created.
    SQL> set linesize 132
    SQL> column owner format a5
    SQL> column root_type_owner format a15
    SQL> column supertype_owner format a15
    SQL> column type_name format a15
    SQL> column root_type_name format a15
    SQL> column supertype_name format a15
    SQL> column typeid format a6
    SQL> select  tc.owner,
      2          tc.type_name,
      3          tc.typeid,
      4          roottoid,
      5          tc.supertype_owner,
      6          tc.supertype_name,
      7          tp.owner root_type_owner,
      8          tp.type_name root_type_name
      9    from  dba_types tc,
    10          sys.type$ t,
    11          dba_types tp
    12    where t.toid = tc.type_oid
    13      and tp.type_oid = nvl(t.roottoid,t.toid)
    14      and tc.owner = 'SCOTT'
    15      and tc.type_name in ('PERSON_TYP','EMPLOYEE_TYP','VISITOR_TYP','TRAINEE_TYP')
    16    order by tc.typeid
    17  /
    OWNER TYPE_NAME       TYPEID ROOTTOID                         SUPERTYPE_OWNER SUPERTYPE_NAME  ROOT_TYPE_OWNER ROOT_TYPE_NAME
    SCOTT PERSON_TYP      01                                                                      SCOTT           PERSON_TYP
    SCOTT EMPLOYEE_TYP    02     33A90A8C974E4BF4B369D443E27A83B9 SCOTT           PERSON_TYP      SCOTT           PERSON_TYP
    SCOTT VISITOR_TYP     03     33A90A8C974E4BF4B369D443E27A83B9 SCOTT           PERSON_TYP      SCOTT           PERSON_TYP
    SCOTT TRAINEE_TYP     04     33A90A8C974E4BF4B369D443E27A83B9 SCOTT           EMPLOYEE_TYP    SCOTT           PERSON_TYP
    SQL> SY.

  • How to pull application names & version numbes  from  weblogic servers ??

    Hi Friends,
    I have situation that I need to display the application names and version number of ear/war/jar files that got deployed on weblogic servers using WLST or any simple way to do that.
    Scenario: I have 2 manged servers MNG1 & MNG2 and I had deployed google.1.4.5.ear, web.4.514.war & xxx.jar files and targeted to MSG1 & MSG2.
    ++++++
    Now I want to pull the applications names and the version numbers associated with it and display to some kind of dashboard page like below.
    | Application Name | Dev Environment | TEST Environment | PROD Environmnet |
    google 1.4.5 1.4.5 1.4.5
    web 4.514 4.514 4.514
    Like this .....
    can any one tell me the best way for achieving this task
    Thanks in advance,
    newbee
    Edited by: user11140631 on Dec 23, 2009 11:18 PM

    HI,
    Here i have developed a Simple JMX Code which displays the Application Name, It's Current Status and The Application Version. Please let me know this is what u wanted?
    import java.util.*;
    import java.util.Enumeration;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.management.ObjectName;
    import weblogic.jndi.Environment;
    import weblogic.management.*;
    import weblogic.management.runtime.*;
    import javax.management.*;
    public class ApplicationStatusChecker
    MBeanServer server = null; // MBeanServer
    MBeanHome mbeanHome=null;
    Hashtable inStart = new Hashtable();
    public ApplicationStatusChecker()
    try {
    Environment env = new Environment();
    env.setProviderUrl("t3://localhost:7001");
    env.setSecurityPrincipal("weblogic"); // username
    env.setSecurityCredentials("weblogic"); // password
    Context myCtx = env.getInitialContext();
    mbeanHome =(MBeanHome)myCtx.lookup("weblogic.management.home.localhome");
    server = mbeanHome.getMBeanServer();
    catch (Exception ex)
    System.err.println("\n\n\tCannot get MBeanServer: "+ex);
    public void getAllMBeans()
    Set set=mbeanHome.getAllMBeans();
    Iterator it=set.iterator();
    while(it.hasNext())
    System.out.println("\n\t "+it.next());
    public void getMBeanByType(String type)
    Set set=mbeanHome.getMBeansByType(type);
    Iterator it=set.iterator();
    while(it.hasNext())
    ApplicationRuntimeMBean appRun=(ApplicationRuntimeMBean)it.next();
    int n=appRun.getActiveVersionState();
    String status="";
    if(n==0) status="UNPREPARED";
    if(n==1) status="PREPARED";
    if(n==2) status="ACTIVATED";
    System.out.println("Application Name : "+appRun.getApplicationName());
    System.out.println("Application Status : "+status);
    System.out.println("Application Version : "+appRun.getApplicationVersion());
    System.out.println("---------------------------------------");
    public static void main(String ar[]) throws Exception
    ApplicationStatusChecker sm=new ApplicationStatusChecker();
    sm.getMBeanByType("ApplicationRuntime");
    OUTPUT
    C:\DELETE>java ApplicationStatusChecker
    Application Name : UsernameTokenEar
    Application Status : ACTIVATED
    Application Version : null
    Application Name : consoleapp
    Application Status : ACTIVATED
    Application Version : null
    Application Name : bea_wls_internal
    Application Status : ACTIVATED
    Application Version : null
    Application Name      : complexServiceEar+
    Application Status    : ACTIVATED+
    Application Version   : VesionB+
    Application Name : bea_wls9_async_response
    Application Status : ACTIVATED
    Application Version : null
    Application Name : mejb
    Application Status : ACTIVATED
    Application Version : null
    Application Name : SystemModuleA
    Application Status : ACTIVATED
    Application Version : null
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic JMX And Wonders Are Here)

  • How to reference application version number and current date in page footer

    Am new to Apex and am creating first app for production users on Apex 4.0.1 ... I notice that Application Builder app itself displays the version number at bottom right of screen .. are there any substitution strings that I can use to get current date and application version in my own Apex app ... or do I need to create e.g Javascript to format the date and create my own substitution string ?
    Any help much appreciated .. thanks !

    I modified the Footer of our Default page template. Used JavaScript for the date, below is the code we use. The very last table is specific to our environment and it would need to be customized for your use or removed if not needed. I am a JavaScript novice so this may be crude but it does the job.
    Jeff
    <table width="100%" cellpadding="0" cellspacing="0"
    border="0">
    <tr>
    <td width="500">
    <script Language="JavaScript">
    <!--
    function GetDay(nDay)
         var Days = new Array("Sunday","Monday","Tuesday","Wednesday",
                              "Thursday","Friday","Saturday");
         return Days[nDay]
    function GetMonth(nMonth)
         var Months = new Array("January","February","March","April","May","June",
                                "July","August","September","October","November","December");
         return Months[nMonth]             
    function GetTime () {
      var curtime = new Date();
      var curhour = curtime.getHours();
      var curmin = curtime.getMinutes();
      var cursec = curtime.getSeconds();
      var time = "";
      if(curhour == 0) curhour = 12;
      time = (curhour > 12 ? curhour - 12 : curhour) + ":" +
             (curmin < 10 ? "0" : "") + curmin + ":" +
             (cursec < 10 ? "0" : "") + cursec + " " +
             (curhour > 12 ? "PM" : "AM");
      return time;
    function DateString()
         var Today = new Date();
         var suffix = "th";
         switch (Today.getDate())
              case 1:
              case 21:
              case 31:
                   suffix = "st"; break;
              case 2:
              case 22:
                   suffix = "nd"; break;
              case 3:
              case 23:
                   suffix = "rd"; break;
         var strDate = GetDay(Today.getDay()) + " - " + GetMonth(Today.getMonth()) + " " + Today.getDate(); strDate += suffix + ", " + Today.getFullYear() + " " ;
         return strDate
    //-->
    </script>
    <script Language="JavaScript">
    <!--
    document.write(DateString() + GetTime());
    //-->
    </script>
    </td>
    <td width="300" class="fineprint"><div align="right">
    </div></td>
    <td width="900" class="fineprint"><div align="right">
    &APP_USER.
    #APP_VERSION#
    </div></td>
    </tr>
    </table>
    <table width="100%" cellpadding="0" cellspacing="0"
    border="0">
    <tr>
    <td width="33%" align="left" valign="bottom"><img
    src="#WORKSPACE_IMAGES#iconseal-rust.gif" alt="NH State Seal" width="25"
    height="25" /></td>
    <td  width="33%" align="center" valign="bottom"><a href="http://www.nh.gov/" class="fineprint">NH.gov</a>
      <a href="http://www.nh.gov/disclaimer.html"
    class="fineprint">Privacy Policy</a>   <a
    href="http://www.nh.gov/wai/index.html" class="fineprint">Accessibility
    Policy</a></td>
    <td width="33%" class="fineprint"><div align="right">Copyright &#169 State of
    New Hampshire, 2007-2010</div></td>
    </tr>
    </table><br />
    #FORM_CLOSE#
    </body>
    </html>

  • What is the current version number?

    Can you tell me what the current version number for
    acrobat.com is? One of my computers (XP Home SP3) shows version #
    1.2.443, but I just intstalled it on another of my computers
    (actually, it automatically installed with acrobat 9 I think) (this
    computer has XP Pro SP3) and the version shows as 1.2.443. I also
    have a third computer with version 1.1.377. So now I am really
    confused...I JUST installed acrobat.com o this computer, yet it has
    an older version than one of my other computers that installed it
    long ago. So here are my questions:
    1. Why would they have different version numbers (especially
    the one that was just installed that has a different version
    number)?
    2. What exactly is the most current version number
    3. How (or where) do I get the most current version?

    Hi Mickey71,
    Thank you for trying out Acrobat.com! We hope you like it!
    What you're seeing is the AIR version number, rather than the
    Acrobat.com version number.
    Mine also shows version 1.2.443
    You ca get the latest Acrobat.com AIR version
    by
    clicking this link
    Acrobat.com on the web, IS the most current version, right
    when you visit Acrobat.com. So there is no need to go "get" the
    latest version
    Since the AIR application accesses the Web Acrobat.com, it
    will include most updates that make it to the Acrobat.com services.
    Hope this helps!
    Pete

Maybe you are looking for