/*
* Second step: use xUrlResolver interface to import the remote StarOffice.ServiceManager,
* retrieve its property DefaultContext and get the remote servicemanager
*/
Object initialObject = xUnoUrlResolver.resolve( unoUrl );
XPropertySet xPropertySet = (XPropertySet)UnoRuntime.queryInterface(
XPropertySet.class, initialObject);
Object context = xPropertySet.getPropertyValue("DefaultContext");
m_xRemoteContext = (XComponentContext)UnoRuntime.queryInterface(
XComponentContext.class, context);