次の単純なコードは例外をスローします。
entityManager.createQuery("SELECT c FROM Customer c");
でも書いたら
entityManager.createNativeQuery("SELECT c.* FROM Customer c", Customer.class)
その後、エラーなしで動作します。何が間違っている可能性がありますか? Toplink-essentials で GlassFish v2.1 を使用しています。