Well, I see two obvious issues...
> Fatal Error at file "XMLtest", line 2, column 89
> Message: An exception occured! Type:RuntimeException, Message:Could not
> open DTD file './http://www.pcia.com/wireres/protocol/dtd/wctpV1-0.dtd'
>
It shouldn't have added the ./ to the front of the URL. I'm not sure why it
did that. If you give a fully qualified system id, which you did, then it
should have not tried to make it relative to the parent entity.
> BinInputStream * FENSNetAccessor::makeNew(
> const XMLCh* const urlSource,
> XML4CExcepts::Codes& failReason )
> {
> BinInputStream* temp;
> return temp;
> }
>
That's obviously not correct. You are just returning some random value since
you never temp to point at anything. You have allocate an input stream and
return it.
--------------------------
Dean Roddey
The CIDLib C++ Frameworks
Charmed Quark Software
[EMAIL PROTECTED]
http://www.charmedquark.com
"Why put off until tomorrow what you can
put off until the day after tomorrow?"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]