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

1

Eu tenho um aviso em catalina.log

com.sun.xml.ws.transport.http.DeploymentDescriptorParser getPrimaryWSDL Warning: Ignoring wrong wsdl=http://localhost:8080/service/wsdl. It should start with WEB-INF/wsdl. Going to generate and publish a new WSDL.

Só preciso de saber onde lê esta informação wsdl=http://localhost:8080/service/wsdl , verifiquei o ficheiro web.xml e não contém esta informação.

Eu verifiquei na Internet o método getPrimaryWSDL , mas não consegui encontrar onde ele lê esta informação:

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;
            }

Alguém pode ajudar a explicar isso?

    
por Anonym 19.09.2016 / 17:12

0 respostas