com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl: Unable to create envelope from given source:
JDK1.8
把 xerces和xalan的jar包移除,搞定。
Maven的话,就排除一下,类似这样:
<dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> <version>1.1.1</version> <exclusions> <exclusion> <groupId>xalan</groupId> <artifactId>xalan</artifactId> </exclusion> <exclusion> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> </exclusion> </exclusions> </dependency>
|