Falsches wsdl=http://localhost:8080/service/wsdl wird ignoriert

Falsches wsdl=http://localhost:8080/service/wsdl wird ignoriert

Ich habe eine Warnung in catalina.log

com.sun.xml.ws.transport.http.DeploymentDescriptorParser getPrimaryWSDL Warnung: Falsches wsdl= wird ignorierthttp://localhost:8080/service/wsdl. Es sollte mit WEB-INF/wsdl beginnen. Ich werde ein neues WSDL generieren und veröffentlichen.

Ich muss nur wissen, woher diese Informationen stammen wsdl=http://localhost:8080/service/wsdl. Ich habe die Datei überprüft web.xmlund sie enthält diese Informationen nicht.

Ich habe die Methode im Internet überprüft getPrimaryWSDL, konnte jedoch keine folgende Information finden:

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

Kann das jemand erklären?

verwandte Informationen