"Jodeleit, Peter" wrote: > ok, just to make it more convenient ;) - what's the fix: postcondition is of > parse is "file closed" or "file not closed"??
When you call parse(String), the parser resolves the systemId and opens the stream. In this case, it will close the stream when leaving the parse method, even on failure. However, when you call parse(InputSource) and supply your own stream, then the parser should not attempt to close the stream. -- Andy Clark * IBM, TRL - Japan * [EMAIL PROTECTED]
