Request thisReq =
server._create_request(ctx, "myFunction", argList, resultVal, exceptions, null);
thisReq.invoke();
result = thisReq.result().value();
// Should be an exception thrown.
assertTrue (thisReq.env ().exception () != null);
assertTrue (thisReq.env ().exception () instanceof UNKNOWN);
assertTrue (thisReq.env ().exception ().toString ().indexOf ("Caught an unknown exception with typecode id of IDL:org/jacorb/test/bugs/bugjac631/MyOwnException") != -1);