Forum Discussion
No RepliesBe the first to reply
Related Content
- 4 years ago
Recent Discussions
- 15 years ago
Observed on Windows with 5.6.1, 5.7.0 (SoapUI-5.7.0-windows-bin.zip).
My solution was to patch lib/xom-1.1.jar (nu.xom.Verifier) that way
instead of throwMalformedURIException just System.out.println
// before
// throwMalformedURIException(path, "Double slash (//) in path ["+path+"]");
// after
System.out.println("Double slash (//) in path ["+path+"]");