Yes, that one was already reported and its fixed in CVS now. Thanks for
reporting it though, since you never know.
----------------------------------------
Dean Roddey
Software Weenie
IBM Center for Java Technology - Silicon Valley
[EMAIL PROTECTED]
"J. Cameijo Cerdeira" <[EMAIL PROTECTED]>@telecom.pt on 02/23/2000
04:32:16 AM
Please respond to [EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
cc:
Subject: RE: [BUG] XMLString::toUpperCase doesn't work
Hello,
I've found that the upperCase() method in the native transcoder is
completely screwed up in version 1.1.0.d05 on linux.
Here's a working version (in file
$(XERCESCROOT)/util/Transcoders/Iconv/IconvTransService.cpp)
void IconvTransService::upperCase(XMLCh* const toUpperCase) const
{
XMLCh *p = toUpperCase;
for ( ; *p != 0; p++ ) {
*p = towupper(*p);
}
}
J. Cameijo
Cerdeira