// Result can be null for some error cases. This will be
// handled by jaxrpc runtime so we don't treat it as an exception.
if( inv.method != null ) {
inv.setWebServiceMethod(inv.method);
if ( !container.authorize(inv) ) {
inv.exception = new Exception
("Client not authorized for invocation of "
+ inv.method);
}
} else {