6 messages in org.apache.directory.usersRe: Error when open configuration file
FromSent OnAttachments
zhangzhongliangNov 27, 2007 11:57 pm 
Pierre-Arnaud MarcelotNov 28, 2007 2:24 am 
Emmanuel LecharnyNov 28, 2007 2:32 am 
Felix KnechtNov 28, 2007 2:41 am 
Pierre-Arnaud MarcelotNov 28, 2007 3:04 am 
Pierre-Arnaud MarcelotNov 28, 2007 4:21 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: Error when open configuration fileActions...
From:Emmanuel Lecharny (elec@gmail.com)
Date:Nov 28, 2007 2:32:34 am
List:org.apache.directory.users

Pierre-Arnaud Marcelot wrote:

Hi,

Thanks for reporting this.

I think this issue is related to an issue I figured out some time ago.

We are using Dom4J to parse the file and it seems the parser tries to load the XSD definition contained in the file: <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">

Unfortunately, if you're not connected to Internet, Dom4J won't be able to load this XSD and the parsing will fail.

I tried to suppress this XSD checking thing in the configuration of the parser but I could not find the right way to do it in the documentation or Javadoc.

What about : public ServerConfiguration parse( InputStream inputStream ) throws ServerConfigurationParserException { try { SAXReader reader = new SAXReader(); ---> reader.setValidation( false );

?