XURLTransformer xURLTranformer = (XURLTransformer)UnoRuntime.queryInterface(XURLTransformer.class, service);
xURLTranformer.parseStrict(urls);
XDispatch xDispatch = xDispatchProvider.queryDispatch(urls[0], "", FrameSearchFlag.GLOBAL);
if(xDispatch == null)
throw new NOAException("The command URL is not valid");
return new Dispatch(xDispatch, urls[0]);
}
catch(Throwable throwable) {
throw new NOAException(throwable);
}
}