Can anyone tell me why following exception comes?
java.rmi.ServerException: RuntimeException; nested exception is:
java.lang.IllegalStateException: Cannot obtain inMethodFlag for: getPrimaryKey
How to avoid it?
Thanks in advance.
Can anyone tell me why following exception comes?
java.rmi.ServerException: RuntimeException; nested exception is:
java.lang.IllegalStateException: Cannot obtain inMethodFlag for: getPrimaryKey
How to avoid it?
Thanks in advance.
According to the AllowedOperationsFlags
API it will be thrown when the getPrimaryKey()
has been called at a wrong time, e.g. during ejbCreate()
. It's hard to suggest a solution without more context about your particular problem and/or a SSCCE.