> I'm having some real problems with getting translations to work correctly > while on a Solaris Box. We are using XalanC version 1.2.0 > Is anyone aware of any bugs that might be related to this and only occure on a > Solaris/unix system?
That's a very old version of Xalan-C, so I'm not sure if there is anything we can do to diagnose or fix any problems. You should really consider upgrading to a newer version. > Error occurs on line: > return transform( > *theParsedSource, > theStylesheelSource, > theResultTarget); What error? > If following line is added: > const XSLTInputSource* testParsedSource = 0; > > and the return line is modified: > return transform( > *testParsedSource, > theStylesheelSource, > theResultTarget); > > Then we get past the numeric_error and blow up later on due to a segmentation fault. Well, that's bound to fail because you are dereferencing a null pointer, which is undefined behavior. What numeric_error are you talking about? Do you get an actual error message? Dave
