Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

what does this error mean???

Status
Not open for further replies.

DCCoolBreeze

Programmer
Jul 25, 2001
208
US
what does this error mean???

org.xml.sax.SAXParseException: The processing instruction must begin with the name of the target.
 
your xml parser does not like the format of the xml you gave it. It thinks there is a malformed processing instruction in the xml.

-pete
 
Thanks for the quick response. This is driving me crazy because I have striped the DTD and XML to the bear code. They are so small I will include them.

Now I am getting another error...

org.xml.sax.SAXParseException: Content is not allowed in trailing section

<!ELEMENT DNS (#PCDATA)>


<?xml version=&quot;1.0&quot;?>
<!DOCTYPE DNS SYSTEM &quot;DNS.dtd&quot; >
<DNS>Test</DNS>

I can run this using a stand alone java app but when I call it from CORBA it does not work...go figure. I have identical class paths.

What is a programmer to do???? :eek:(
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top