Ryan Sawatzky wrote:
Hello,
I was wondering if anyone could shed a little light on the following
exception that is thrown from my transformer->transform() function call.
XercesStdOutputStreamWriteException: Error writing to standard
stream!. The error code was 12. (, line -1, column -1)
I tried to look for information on this exception class, but couldn't
really find anything that would tell me what an error code 12 means.
I'm assuming you mean XalanStdOutputStreamWriteException, not
XercesStdOutputStreamWriteException. If so, then the error code 12
corresponds to the C run-time library errno value, so you'll need to look
that up in your compiler's documentation.
Dave