vote up 2 vote down star

I have an oc4j installation bereft of any release notes or version documentation. In the absence of such documents, how do I know for sure, which version of oc4j I am using?

flag

80% accept rate

4 Answers

vote up 2 vote down check

Check Server header in HTTP headers. For example with wget or curl;

wget -S <url-to-server>
curl -I <url-to-server>

or with browser, which can show HTTP headers.

There should be a header something like

Server: Oracle-Application-Server-10g/10.1.3.1.0 Oracle-HTTP-Server
link|flag
And here is comprehensive list of Oracle DB and oc4j release dates. www-wnt.gsi.de/oragsi/products/… – swapnonil Oct 29 '08 at 7:48
vote up 1 vote down

If you simply enter the URL of the server (like http://yourserver:yourport), you will get a welcome page stating the version.

In my case, http://myserver:7777 shows "Welcome to Oracle Application Server 10g (10.1.3.1.0)". If you don't know the port, try 7777, 7778 and 8888.

If you know where the Oracle software is installed, go to the ORACLE_HOME/install directory and look in the readme.txt file. This will start "The installation of Oracle Application Server xx was successful", where xx is the version. If you don't know the location of the software, you could search your file system for readme.txt files - one of them is likely to document your OC4J installation.

link|flag
vote up 1 vote down

If you have access to the OC4J JAR file, you can do:

java -jar oc4j.jar -version
link|flag
vote up 1 vote down

You could display the OC4J-related system properties. We embed the following scriptlets into a JSP page:

<%= System.getProperty( "oracle.j2ee.container.name" ) %>

and

<%= application.getAttribute( "oracle.jsp.versionNumber" ) %>

Sample output:

Oracle J2EE Container: Oracle Containers for J2EE 10g (10.1.3.3.0)
Oracle JSP Version: Oracle Containers for J2EE 10g (10.1.3.1.0)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.