comparison gwt-client/src/main/java/org/dive4elements/river/client/server/CapabilitiesParser.java @ 8806:fc54202a4b1e

Do not use configuration EntityResolver here. Fixes a regression of a change in framework behaviour reported in issue1864.
author Tom Gottfried <tom@intevation.de>
date Wed, 03 Feb 2016 18:35:18 +0100
parents 238fc722f87a
children 5e38e2924c07
comparison
equal deleted inserted replaced
8805:52c078386433 8806:fc54202a4b1e
161 161
162 162
163 protected static Capabilities parse(InputStream is) 163 protected static Capabilities parse(InputStream is)
164 throws ServerException 164 throws ServerException
165 { 165 {
166 log.debug("GCServiceImpl.parseCapabilitiesResponse"); 166 Document doc = XMLUtils.parseDocument(is, false, null);
167
168 Document doc = XMLUtils.parseDocument(is, false);
169 167
170 if (doc == null) { 168 if (doc == null) {
171 throw new ServerException(ERR_GC_DOC_NOT_VALID); 169 throw new ServerException(ERR_GC_DOC_NOT_VALID);
172 } 170 }
173 171

http://dive4elements.wald.intevation.org