Bob Crothers wrote:

Hi,

I have Java code that looks like:

nxOfficeWriterOutputStream out = new nxOfficeWriterOutputStream();
PropertyValue[] propertyValue = new PropertyValue[1];
propertyValue[0] = new PropertyValue();
propertyValue[0].Name = "OutputStream";
propertyValue[0].Value = new com.sun.star.uno.Any(com.sun.star.io.XOutputStream.class,
out);
storable.storeToURL("private:stream", propertyValue);


Most of the time this works fine. Sometimes I get the following exception.

com.sun.star.lib.uno.environments.remote.JobQueue.removeJob - unexpected:java.lang.InterruptedException

I *guess* the InterruptedException is raised by some method of nxOfficeWriterOutputStream, called from within storable.storeToURL. (But I may be completely wrong, as I do not know the class nxOfficeWriterOutputStream at all.)


-Stephan

Does anyone have any ideas why I get the exception and what I should do to handle the exception.

Thanks
Bob Crothers

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



Reply via email to