Hi All
Trying to learn
J2ee, I picked up Hello world example from ejb3 in action code. I created
HelloUserRemote interface as follows
(using nb 6.5.1)
And
HelloUserBean
Client code
Main java
And finally the
HelloUserClient
All code Compiles fine with Glassfish 2.1, nb6.5.1. I get the following error
WARNING: ACC003: Application threw an exception.
java.lang.NullPointerException at ejb3inaction.example.HelloUserClient.main(HelloUserClient.java:30) which is reffering to helloUserBean.sayHello("Curious George");
in HelloUserClient.main. Please could you help.