Hibernate 3.2CR4:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration
PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory >
<!-- local connection properties -->
<property name="hibernate.connection.url">jdbc:sqlserver://10.1.210.52:1433;databaseName=abc</property>
<property name="hibernate.connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property>
<property name="hibernate.connection.username">rbtest</property>
<property name="hibernate.connection.password">pwd</property>
<!-- property name="hibernate.connection.pool_size"></property -->
<!-- dialect for Microsoft SQL Server -->
<property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
<property name="hibernate.show_sql">false</property>
<property name="hibernate.transaction.factory_class">org.hibernate.transaction.WebSphereTransactionManagerLookup</property>
</session-factory>
</hibernate-configuration>
It seems
http://hibernate.sourceforge.net/hibern ... on-3.0.dtd
link is not working and that is causing my application not to run.
Can anybody help me for workaround.