Hello,

I've written a short Java-programm to extract some information out of a
spreadsheet. The spreadsheet is chooseable by a JFileChooser. It worked
well until OOo 1.3. With OOo 2.0.2 I get the error:

com.sun.star.lang.IllegalArgumentException: URL seems to be an
unsupported one.
   at
com.sun.star.lib.uno.environments.remote.Job.remoteUnoRequestRaisedException(Job.java:275)
   at com.sun.star.lib.uno.environments.remote.Job.execute(Job.java:141)
   at
com.sun.star.lib.uno.environments.remote.JobQueue.enter(JobQueue.java:377)
   at
com.sun.star.lib.uno.environments.remote.JobQueue.enter(JobQueue.java:346)
   at
com.sun.star.lib.uno.environments.remote.JavaThreadPool.enter(JavaThreadPool.java:106)
   at
com.sun.star.lib.uno.bridges.java_remote.java_remote_bridge.sendRequest(java_remote_bridge.java:860)
   at
com.sun.star.lib.uno.bridges.java_remote.java_remote_bridge.sendRequest(java_remote_bridge.java:809)
   at
com.sun.star.lib.uno.bridges.java_remote.ProxyFactory$Handler.request(ProxyFactory.java:159)
   at
com.sun.star.lib.uno.bridges.java_remote.ProxyFactory$Handler.invoke(ProxyFactory.java:141)
   at $Proxy3.loadComponentFromURL(Unknown Source)
   at BestandsSQLBuilder20.useConnection(BestandsSQLBuilder20.java:103)
   at BestandsSQLBuilder20.main(BestandsSQLBuilder20.java:47)
         String path = fileChoose.getSelectedFile().toURI().toString();

Code :
<------
           PropertyValue[] loadProps = new PropertyValue[1];
           loadProps[0] = new PropertyValue();
           loadProps[0].Name = "Hidden";
           loadProps[0].Value = new Boolean(true);

           XComponent xSpreadsheetComponent =
xComponentLoader.loadComponentFromURL(
                   path, "_blank", 0, loadProps);
----->

Thanks for your effort!
Sascha Holzhauer


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to