[VFS] Closed OutputStream from FileContent does not throw IOException if further written to

2007-02-15 Thread Christian Möller
Hi, I've a question regarding the behaviour of OutputStreams received from org.apache.commons.vfs.FileContent.getOutputStream(): If I call close() on them and further write some bytes to the stream, these writes take place silently without throwing an IOException (as it is done by usual Java

Re: [VFS] Closed OutputStream from FileContent does not throw IOException if further written to

2007-02-15 Thread Mario Ivankovits
Hi Christian! os.write(SOME_BYTES); os.close(); os.write(SOME_BYTES); // Neither IOE is thrown nor bytes are written Why? No idea, lets have a look at it. Could you please file a bug report in JIRA [1] (maybe with patch attached ;-) ) Thanks! Ciao, Mario [1] http://issues.apache.org

Re: [VFS] Closed OutputStream from FileContent does not throw IOException if further written to

2007-02-15 Thread Christian Möller
Mario Ivankovits schrieb: Hi Christian! os.write(SOME_BYTES); os.close(); os.write(SOME_BYTES); // Neither IOE is thrown nor bytes are written Why? No idea, lets have a look at it. Could you please file a bug report in JIRA [1] (maybe with patch attached ;-) ) Done: VFS-111 Sorry,