You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DeleteRequest against a valid WorkspacePermission ref fails with:
Exception in thread "main" java.io.IOException: HTTP/1.1 404 Could not determine Web Services Version from ''
Identified issue: The pattern defined for validating the requests was allowing only numbers and hence resources like these '9250166251u2788951014w1.js" were failing. After modifying the pattern string in Ref.java to below it worked fine. private static Pattern refPattern = Pattern.compile(".?/((?:/\w{2,}){1,2})/(\w+)(?:.js??.)$");