In my config if I include an entities file in the DOCTYPE declaration I get an Unsupported DTD error and cant do anything more with it.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"
[<!ENTITY % abc PUBLIC "-//AOL//ENTITIES abc entities" "./abc.ent">
%abc;]>
<beans>
...
...
</beans>
Can this be fixed ?


Reply With Quote