Reputation: 4518
Recently I have updated IBM SDK 6
to IBM SDK 7
but getting error as
package javax.ejb does not exist
package javax.mail does not exist
so do I need to download and place those jar? Does IBM SDK 7
supports EJB2.5
Upvotes: 0
Views: 348
Reputation: 131
The packages you listed are part of Java EE (Enterprise Edition). The IBM SDK for Java supplies Java SE (Standard Edition), which Java EE runs on top of. To get the javax.ejb and javax.mail classes, you will need to install a Java EE implementation.
Upvotes: 0