Application Server Matrix

Comparison table of Application Servers. These are taken from Comparison of application servers and also IBM WebSphere Application Server Product Vendor Edition Release SE JEE EJB Servlet JSP JAX-RS JAX-WS JMS JPA JDBC Websphere IBM 7.0 2008 6 5.0 3.0 2.5 2.1 2.1 1.1 1.2 4.0 Websphere IBM 5.1 2004 1.3 Websphere IBM 5.0 2002 […]

Read More »

Setting the build-level in Websphere Application Server (WAS)

In the MANIFEST.MF file in the ear, you will need to set the follwing property Implementation-Version: 4.23.0.1 In ANT you can use this <manifest file=”MANIFEST.MF”> <attribute name=”Implementation-Version” value=”${version} ${TODAY}”/> </manifest> If you use Hudson/Jenkins, then you can place the build version from Hudson/Jenkins with this <manifest file=”MANIFEST.MF”> <attribute name=”Implementation-Version” value=”${BUILD_NUMBER}”/> </manifest>

Read More »