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

link|improve this question

36% accept rate
feedback

1 Answer

up vote 2 down vote accepted

J2EE versions (J2EE 1.3, J2EE 1.4, JEE5, JEE6) are not the same like JRE/JDK Version, this are two different thinks.

  • JRE/JDK is about the language, compiler an the java core framworks.
  • J2EE/JEE is about high level frameworks like EJB, JPA, JSF, CDI....

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.

link|improve this answer
Thanks, its because i created the EAR project on eclipse STS IDE which defaults to JEE6. Importing it to WAS7 would need me to choose JEE5 – sonx May 20 '11 at 12:03
feedback

Your Answer

 
or
required, but never shown

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