WHAT AM I MISSING? sqlMapConfig.xml

Newbie to iBatis: I have this sqlMapConfig.xml but for some reason it generates the following error: Element "sqlMapConfig" requires additional elements.

(to be more mercise, it says:

Caused by: com.ibatis.common.exception.NestedRuntimeException: Error occurred. Cause: com.ibatis.common.xml.NodeletException: Error parsing XML. Cause: org.xml.sax.SAXParseException: Element "sqlMapConfig" requires additional elements.)

this is my file, anyone?

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE sqlMapConfig PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"

"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">

<sqlMapConfig>

<transactionManager type="JDBC">

<dataSource type="SIMPLE">

<property value="com.mysql.jdbc.Driver" name="JDBC.Driver"/>

<property value="jdbc:mysql://localhost/TA" name="JDBC.ConnectionURL"/>

<property value="root" name="JDBC.Username"/>

<property value="root#23" name="JDBC.Password"/>

</dataSource>

</transactionManager>

<sqlMap resource="com/jhexagon/ibatis/xml/UserIdentity.xml"/>

<sqlMap resource="com/jhexagon/ibatis/xml/Files.xml"/>

<sqlMap resource="com/jhexagon/ibatis/xml/TA.xml"/>

<sqlMap resource="com/jhexagon/ibatis/xml/Target.xml"/>

</sqlMapConfig>

[1436 byte] By [xianwinwina] at [2007-10-2 20:15:30]
# 1
" http://ibatis.apache.org/dtd/sql-map-config-2.dtd">its needed for validationsql-map-config-2.dtdthis is a file can be dowwnload
SAIFUL_RAHMAN_FAIZ_COMa at 2007-7-13 22:57:49 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...