Forum Discussion

lukano's avatar
lukano
Regular Visitor
2 years ago

ERROR [errorlog] nu.xom.MalformedURIException: Double slash (//) in path - SOLUTION

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+"]");

No RepliesBe the first to reply