Error during EJB3 call
问题 I have written a simple Ejb program, by looking from http://mrbool.com/how-to-use-enterprise-java-beans-3-x-based-application-with-websphere-8-5-application-server/28063 The files are package ejb3.test; import javax.ejb.Remote; /** * TODO: Document me! * * @author aprashanth * */ @Remote public interface ITestEJBRemoteInterface { public boolean checkNames(String fsName); } Implementation Class: package ejb3.test; /** * TODO: Document me! * * @author aprashanth * */ import java.util.Arrays;