Error Code C9C25805
Explanation:
Bean method raised an EJBException that did not
contain an internal exception.
User Response:
Bean methods should utilize EJBExceptions to
encapsulate runtime errors. EJBExceptions are instances
of RuntimeException and therefore will not be surfaced back to
a client. Only Application Exceptions, exceptions specified on
the beans remote interface and RemoteExceptions are to be
surfaced back to the client as per the EJB1.1 specification.
EJBExceptions are not coded on the remote interface. Re-Code the
bean method to utilize EJBExceptions in this manner or
anticipate that the client will see this UNKNOWN/minor code
combination as a RemoteException.
Possible Solution:
Error may be caused by not setting "Synchronize to OS thread" property in
the Application Assembly Tool for a thread using "RunAs" identity.
|