I´ve my ejb, with it´s client packed in an ear which it´s deployed on a was7 Now I need to test it with junit so I created a standalone java application I added the jar generated by the ejb client and try calling it before making the actual test cases:
@EJB private static ConfiguratorIDA conf;
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
try {
conf.setupIsbanDataAccess();
} catch (NegocioException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
My was is running as well as my ejb but when a I run my application I get NullPointerException on conf.setupIsbanDataAccess();
Does anyone knows how to call an ejb in an standalone java app? Thanks in advance.