Hi,
Can anyone help me how to add the DOCTYPE in the xml output file. I am build an xml through the program but I need to add
<!DOCTYPE Test SYSTEM 'Test.dtd'>
at the top of the xml file. My xml file looks like:
<?xml version="1.0" ?>
<Test>
.... more elements here
</Test>
now I also want to add
<!DOCTYPE Test SYSTEM 'Test.dtd'>
after <?xml version="1.0" ?>
how can I do this in the code.
Thanks
Can anyone help me how to add the DOCTYPE in the xml output file. I am build an xml through the program but I need to add
<!DOCTYPE Test SYSTEM 'Test.dtd'>
at the top of the xml file. My xml file looks like:
<?xml version="1.0" ?>
<Test>
.... more elements here
</Test>
now I also want to add
<!DOCTYPE Test SYSTEM 'Test.dtd'>
after <?xml version="1.0" ?>
how can I do this in the code.
Thanks