Look at your EJB implementation. If it looks like this:
@Remote
...
public class SomeEJBImpl implements SomeEJB {
...
}
Change it this way:
@Remote(SomeEJB.class)
...
public class SomeEJBImpl implements SomeEJB {
...
}
A daily Java developers challenges, problems and solutions.
@Remote
...
public class SomeEJBImpl implements SomeEJB {
...
}
@Remote(SomeEJB.class)
...
public class SomeEJBImpl implements SomeEJB {
...
}
No comments:
Post a Comment