// let's try the uncallable method
System.out.println("We'll try calling an uncallable method");
try
{
completeXMLDDBean.uncallableMethod();
throw new RuntimeException("Bean method in <excluded-list> was allowed to be invoked");
}
catch (EJBAccessException e)
{
System.out.println("Caught expected exception : " + e.getMessage());