I think this:
// Run up past any spaces
while (*srcPtr)
{
if (!XMLPlatformUtils::fgTransService->isSpace(*srcPtr))
break;
}
should be something like
// Run up past any spaces
while (*srcPtr)
{
if (!XMLPlatformUtils::fgTransService->isSpace(*srcPtr))
break;
srcPtr++
}
in XMLURL.cpp, function parse.
Mike Crawford
[EMAIL PROTECTED]
http://www.goingware.com
