Thank you, Rob and Joel. You're absolutely right, I didn't understand XML very well,
and didn't recognize that I needed to put the individual tags inside a single Root Tag.
Thanks, again, for your quick and accurate assistance.
-Kevin
>>> "Hanson, Rob" <[EMAIL PROTECTED]> 02/03/04 12:46PM >>>
>
>
> PIP 189165
> Hello, world!
> ...
> Attempt to insert start tag after close of document
> element at ./test.pl line 11
A rule of XML is that there MAY ONLY BE ONE ROOT ELEMENT. You have two.
You need to put and inside a single element. The
following would be well-formed XML.
PIP 1891