> I am getting internal errors with Apples XSLT proceessing:-
>
[quoted text clipped - 24 lines]
>
> Many thanks in advance,
There's no obvious relationship between the error you're seeing and the
code you've shown us.
I don't see anything wrong with that code. I somewhat doubt it's a data
error, but can't tell without seeing it. I think it's mostly likely
something else has gone insane before that point.

Signature
"Harry?" Ron's voice was a mere whisper. "Do you smell something ... burning?"
- Harry Potter and the Odor of the Phoenix
> I am getting internal errors with Apples XSLT proceessing:-
>
[quoted text clipped - 4 lines]
> 2008-05-26 22:24:30.228 RTF2XHTML Converter[1821] Invalid parameter not
> satisfying: aString != nil
That error message has nothing to do with XSLT processing. It's from an
NSTextField in your user interface. The method name of
_objectValue:forString:errorDescription: isn't documented but it's
likely to be related to an NSFormatter attached to the text field (via
NSFormatter's getObjectValue:forString:errorDescription:).
The mention of the assertion comparing a string to nil suggests that
you're feeding bogus data into the cell, and the formatter is choking on
it. That data might have come from your XSLT code, but that doesn't
necessarily mean it's the XSLT code that's broken.

Signature
Tom "Tom" Harrington
Independent Mac OS X developer since 2002
http://www.atomicbird.com/
Aaron Gray - 27 May 2008 20:22 GMT
>> I am getting internal errors with Apples XSLT proceessing:-
>>
[quoted text clipped - 15 lines]
> it. That data might have come from your XSLT code, but that doesn't
> necessarily mean it's the XSLT code that's broken.
This is odd my user interface consists of four buttons that select source
files, XSLT file, destination folder, and a convert button.
I have put NSAlert's in the code and it definately occurs in the
objectByApplyingXSLT method call. And it does not return from that call.
I shall miss out that call and if it does the error still then probably
rebuild everything and see if it does it again, I suppose as I can not think
what else to do.
Aaron