Ignorando wsdl=http://localhost:8080/service/wsdl incorrecto

Ignorando wsdl=http://localhost:8080/service/wsdl incorrecto

Tengo una advertencia en catalina.log

com.sun.xml.ws.transport.http.DeploymentDescriptorParser getPrimaryWSDL Advertencia: ignorar wsdl= incorrectohttp://localhost:8080/servicio/wsdl. Debería comenzar con WEB-INF/wsdl. Voy a generar y publicar un nuevo WSDL.

Solo necesito saber desde dónde lee esta información wsdl=http://localhost:8080/service/wsdl. Revisé el web.xmlarchivo y no contiene esta información.

Revisé el método en Internet getPrimaryWSDLpero no pude encontrar dónde se lee esta información:

if (wsdlFile != null) {
            if (!wsdlFile.startsWith(JAXWS_WSDL_DD_DIR)) {
                logger.log(Level.WARNING, "Ignoring wrong wsdl={0}. It should start with {1}. Going to generate and publish a new WSDL.", new Object[]{wsdlFile, JAXWS_WSDL_DD_DIR});
                return null;
            }

¿Alguien puede ayudar a explicar esto?

información relacionada