I'm trying to deploy an EJB3 EAR project to WebSphere 7. From RSA 8.0 i select the EAR file when i select the EAR project > run as > Server > WAS7 i get "the server does not support version 6.0 of the J2EE Enterprise application specification" Error. I changed my JRE/JDK to 1.5 in RSA, still the same? ... Is it a specific jar which causes this
|
feedback
|
|
J2EE versions (J2EE 1.3, J2EE 1.4, JEE5, JEE6) are not the same like JRE/JDK Version, this are two different thinks.
The Websphere Application Server 7 supports (only) JEE5 but not JEE6. So you need to buld JEE5 application, reducing JRE/JDK from 6 to 5 is not enough, you also need to build a JEE5 EAR, without usage of any of the great JEE6 Features. So if it is only for your own, then I recommend to use a Glassfish v3 instead, it has JEE6 support. | |||
feedback
|