Hi, I'm currently trying to do my first steps with ibatis-3 (beta-2) and can't execute a very simple select statement. I can do everything fine with ibatis-2 but fail miserably with ibatis-3. Seems to me that the parsing of my config is failing. Here is my SQLConfiguration.xml file
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//ibatis.apache.org//DTD Config 3.0//EN" "http://ibatis.apache.org/dtd/ibatis-3-config.dtd"> <configuration> <properties resource="database/ora9207.properties " /> <environments default="development"> <environment id="development"> <transactionManager type="JDBC"/> <dataSource type="POOLED"> <property name="driver" value="${driver}"/> <property name="url" value="${url}"/> <property name="username" value="${username}"/> <property name="password" value="${password}"/> </dataSource> </environment> </environments> <mappers> <mapper resource="database/maps/Student.xml"/> </mappers> </configuration> And my Student.xml: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/ibatis-mapper-3.dtd"> <sqlMap namespace="Student"> <select id="getAllStudenten" resultType="entities.Student"> select name,descr as description from student s </select> </sqlMap> It seems that ibatis-3 is trying to read the dtd via internet but fails to do so, though the proper ibatis-jar file is on my classpath. I'd appreciate any help. /Axel --------------------------------------------------------------------- To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org For additional commands, e-mail: user-java-h...@ibatis.apache.org