Kyle, thank you for the reply.
I found it in a review on theserverside.com, someone replied on the review:
here the link:
http://www.theserverside.com/reviews/thread.jsp?thread_id=17947 Message #79783
" 2.1 It does not work. The SAME application is working UNMODIFIED on JBoss and weblogic, but not on websphere. For example have you tried to run local ejb calls in websphere ? If you want do it, you have to discover that there is a local namespace and use IN YOUR CODE. Since this, i have in my code (write once run anywhere BUT on websphere):
(WEBSPHERE SPECIFIC)
static final String WASLOCALJNDISTRING = "local:ejb/";
public static String getSequenceLocalHome() {
if (SystemProperties.isWebsphere())
return WASLOCALJNDISTRING + SEQUENCE_HOME;
return SEQUENCE_LOCAL_HOME;
}
...."