Hi,
I'm trying to parse a hibernate config file (hbm.xml) with SAX.
I'm using a SAXbuilder and its build method:
SAXBuilder builder = new SAXBuilder();
Document doc = builder.build(myFil);
I have an error executing this line:
"IOException hibernate.sourceforge.net"
The header of the XML file is the folowing:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
If anyone could help me...
thanks.