Cvc-elt.1: Cannot Find The Declaration Of Element 'soap:Envelope'

前端 未结 2 1816
陌清茗
陌清茗 2020-12-11 17:56

Currently I\'m using XSD for SOAP XML, but when I run my SOAP XML and XSD on FREEFORMATTER.COM, I get this error:

Cvc-elt.1: Cannot Find The Declarati

2条回答
  •  不知归路
    2020-12-11 18:39

    Perhaps if you validate the xml against xsd, you need to initialize the builderFactory to be "aware of namespaces" - it is false by default.

    final DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
    builderFactory.setNamespaceAware(true);
    final DocumentBuilder builder = builderFactory.newDocumentBuilder();
    builder.parse(...);
    

提交回复
热议问题