working java Hibernate 3.3.2.GA offline?

Knoriaphano

New Member
I am having problems parsing Hibernate's XML offline. I need to know how to specify the DTD when there is no network connection. Here is my Hibernate config.\[code\] <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <!-- Database connection settings --> <property name="connection.driver_class">com.mysql.jdbc.Driver</property><property name="connection.url">jdbc:mysql://localhost:3306/global_data</property><property name="connection.username">root</property><property name="connection.password">pass</property>\[/code\]...I have tried to change the PUBLIC to SYSTEM in the xml config and still get an error as well. I am using eclipse IDE and I just point my project build path to the user lib that I manually import all the hibernate lib into.
 
Back
Top