Scale It [
https://community.jboss.org/people/meselfe] created the discussion
"Re: Trying to resolve systemId as a non-file URL"
To view the discussion, visit:
https://community.jboss.org/message/727908#727908
--------------------------------------------------------------
Looking at the code of the JBossEntityResolver Im still not sure what the warning is about
but yeah im going to adjust the logging level.
URL url = new URL(systemId);
if (warnOnNonFileURLs && url.getProtocol().equalsIgnoreCase("file") ==
false)
{
log.warn("Trying to resolve systemId as a non-file URL: " +
systemId);
}
InputStream ins = url.openStream();
if (ins != null)
{
inputSource = new InputSource(ins);
inputSource.setSystemId(systemId);
}
else
{
log.warn("Cannot load systemId as URL: " + systemId);
}
--------------------------------------------------------------
Reply to this message by going to Community
[
https://community.jboss.org/message/727908#727908]
Start a new discussion in JBoss Web Services at Community
[
https://community.jboss.org/choose-container!input.jspa?contentType=1&...]